From 363b5c0020830b44767a741e686aa1460f3cc571 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 24 Nov 2024 14:30:08 -0500 Subject: [PATCH] feat: allow preprocessor directives in attribute lists --- grammar.js | 49 +- src/grammar.json | 252 +- src/node-types.json | 168 + src/parser.c | 987937 +++++++++++++++++++++-------------------- 4 files changed, 508606 insertions(+), 479800 deletions(-) diff --git a/grammar.js b/grammar.js index ad3c14b..69b085f 100644 --- a/grammar.js +++ b/grammar.js @@ -229,6 +229,8 @@ module.exports = grammar({ ']', ), + _attribute_list: $ => choice($.attribute_list, $.preproc_if_in_attribute_list), + attribute_target_specifier: _ => seq( choice('field', 'event', 'method', 'param', 'property', 'return', 'type'), ':', @@ -267,7 +269,7 @@ module.exports = grammar({ ), _class_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'class', field('name', $.identifier), @@ -283,7 +285,7 @@ module.exports = grammar({ ), _struct_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), optional('ref'), 'struct', @@ -293,7 +295,7 @@ module.exports = grammar({ ), enum_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'enum', field('name', $.identifier), @@ -313,7 +315,7 @@ module.exports = grammar({ ), enum_member_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), field('name', $.identifier), optional(seq('=', field('value', $.expression))), ), @@ -325,7 +327,7 @@ module.exports = grammar({ ), _interface_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'interface', field('name', $.identifier), @@ -341,7 +343,7 @@ module.exports = grammar({ ), _delegate_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'delegate', field('type', $.type), @@ -357,7 +359,7 @@ module.exports = grammar({ ), _record_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'record', optional(choice('class', 'struct')), @@ -406,7 +408,7 @@ module.exports = grammar({ type_parameter_list: $ => seq('<', commaSep1($.type_parameter), '>'), type_parameter: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), optional(choice('in', 'out')), field('name', $.identifier), ), @@ -432,7 +434,7 @@ module.exports = grammar({ constructor_constraint: _ => seq('new', '(', ')'), operator_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('type', $.type), optional($.explicit_interface_specifier), @@ -459,7 +461,7 @@ module.exports = grammar({ ), conversion_operator_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), choice( 'implicit', @@ -504,7 +506,7 @@ module.exports = grammar({ ), field_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), $.variable_declaration, ';', @@ -516,7 +518,7 @@ module.exports = grammar({ ), _constructor_declaration_initializer: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('name', $.identifier), field('parameters', $.parameter_list), @@ -524,7 +526,7 @@ module.exports = grammar({ ), destructor_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), optional('extern'), '~', field('name', $.identifier), @@ -533,7 +535,7 @@ module.exports = grammar({ ), method_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('returns', $.type), optional($.explicit_interface_specifier), @@ -545,7 +547,7 @@ module.exports = grammar({ ), event_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'event', field('type', $.type), @@ -558,7 +560,7 @@ module.exports = grammar({ ), event_field_declaration: $ => prec.dynamic(1, seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), 'event', $.variable_declaration, @@ -572,14 +574,14 @@ module.exports = grammar({ ), accessor_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('name', choice('get', 'set', 'add', 'remove', 'init', $.identifier)), $._function_body, ), indexer_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('type', $.type), optional($.explicit_interface_specifier), @@ -598,7 +600,7 @@ module.exports = grammar({ ), property_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('type', $.type), optional($.explicit_interface_specifier), @@ -635,14 +637,14 @@ module.exports = grammar({ ), parameter: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), optional($._parameter_type_with_modifiers), field('name', $.identifier), optional(seq('=', $.expression)), ), _parameter_array: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), 'params', field('type', choice($.array_type, $.nullable_type)), field('name', $.identifier), @@ -1117,7 +1119,7 @@ module.exports = grammar({ ), _local_function_declaration: $ => seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat($.modifier), field('type', $.type), field('name', $.identifier), @@ -1623,7 +1625,7 @@ module.exports = grammar({ )), _lambda_expression_init: $ => prec(-1, seq( - repeat($.attribute_list), + repeat($._attribute_list), repeat(prec(-1, alias(choice('static', 'async'), $.modifier))), optional(field('type', $.type)), field('parameters', $._lambda_parameters), @@ -1912,6 +1914,7 @@ module.exports = grammar({ ...preprocIf('_in_top_level', $ => choice($._top_level_item_no_statement, $.statement)), ...preprocIf('_in_expression', $ => $.expression, -2, false), ...preprocIf('_in_enum_member_declaration', $ => $.enum_member_declaration, 0, false), + ...preprocIf('_in_attribute_list', $ => $.attribute_list, -1, false), preproc_arg: _ => token(prec(-1, /\S([^/\n]|\/[^*]|\\\r?\n)*/)), preproc_directive: _ => /#[ \t]*[a-zA-Z0-9]\w*/, diff --git a/src/grammar.json b/src/grammar.json index bc92587..fc88e6f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -446,6 +446,19 @@ } ] }, + "_attribute_list": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "SYMBOL", + "name": "preproc_if_in_attribute_list" + } + ] + }, "attribute_target_specifier": { "type": "SEQ", "members": [ @@ -600,7 +613,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -687,7 +700,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -757,7 +770,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -898,7 +911,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -964,7 +977,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -1050,7 +1063,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -1143,7 +1156,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -1473,7 +1486,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -1691,7 +1704,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -1859,7 +1872,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2032,7 +2045,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2072,7 +2085,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2119,7 +2132,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2167,7 +2180,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2249,7 +2262,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2320,7 +2333,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2372,7 +2385,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2428,7 +2441,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2573,7 +2586,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2819,7 +2832,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -2872,7 +2885,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -5456,7 +5469,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -8568,7 +8581,7 @@ "type": "REPEAT", "content": { "type": "SYMBOL", - "name": "attribute_list" + "name": "_attribute_list" } }, { @@ -10665,6 +10678,199 @@ ] } }, + "preproc_if_in_attribute_list": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*if" + }, + "named": false, + "value": "#if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "PATTERN", + "value": "\\n" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_attribute_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_attribute_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*endif" + }, + "named": false, + "value": "#endif" + } + ] + } + }, + "preproc_else_in_attribute_list": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*else" + }, + "named": false, + "value": "#else" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "preproc_elif_in_attribute_list": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "PATTERN", + "value": "#[ \t]*elif" + }, + "named": false, + "value": "#elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_preproc_expression" + } + }, + { + "type": "PATTERN", + "value": "\\n" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_list" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_else_in_attribute_list" + }, + "named": true, + "value": "preproc_else" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_elif_in_attribute_list" + }, + "named": true, + "value": "preproc_elif" + } + ] + }, + { + "type": "BLANK" + } + ] + } + } + ] + } + }, "preproc_arg": { "type": "TOKEN", "content": { diff --git a/src/node-types.json b/src/node-types.json index d3c201a..f3f2b57 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -649,6 +649,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -1443,6 +1447,10 @@ { "type": "parameter", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -1658,6 +1666,10 @@ "type": "parameter_list", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -1913,6 +1925,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -1991,6 +2007,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -2149,6 +2169,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -2202,6 +2226,10 @@ { "type": "attribute_list", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -2318,6 +2346,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -2354,6 +2386,10 @@ { "type": "attribute_list", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -2427,6 +2463,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -2447,6 +2487,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "variable_declaration", "named": true @@ -2552,6 +2596,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "variable_declaration", "named": true @@ -3094,6 +3142,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -3164,6 +3216,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -3459,6 +3515,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -3587,6 +3647,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -3773,6 +3837,10 @@ "type": "modifier", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -4066,6 +4134,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -4161,6 +4233,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -4205,6 +4281,10 @@ { "type": "parameter", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -4454,6 +4534,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_list", + "named": true + }, { "type": "declaration", "named": true @@ -4497,6 +4581,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_list", + "named": true + }, { "type": "declaration", "named": true @@ -4655,6 +4743,70 @@ ] } }, + { + "type": "preproc_if_in_attribute_list", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "preproc_elif", + "named": true + }, + { + "type": "preproc_else", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "binary_expression", + "named": true + }, + { + "type": "boolean_literal", + "named": true + }, + { + "type": "character_literal", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer_literal", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_list", + "named": true + } + ] + } + }, { "type": "preproc_line", "named": true, @@ -4850,6 +5002,10 @@ { "type": "modifier", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } @@ -5037,6 +5193,10 @@ "type": "parameter_list", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -5360,6 +5520,10 @@ "type": "parameter_list", "named": true }, + { + "type": "preproc_if_in_attribute_list", + "named": true + }, { "type": "type_parameter_constraints_clause", "named": true @@ -5687,6 +5851,10 @@ { "type": "attribute_list", "named": true + }, + { + "type": "preproc_if_in_attribute_list", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index dda702e..bdf751b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7556 -#define LARGE_STATE_COUNT 3816 -#define SYMBOL_COUNT 517 +#define STATE_COUNT 7793 +#define LARGE_STATE_COUNT 3900 +#define SYMBOL_COUNT 521 #define ALIAS_COUNT 3 #define TOKEN_COUNT 217 #define EXTERNAL_TOKEN_COUNT 12 @@ -250,299 +250,303 @@ enum ts_symbol_identifiers { sym_attribute_argument_list = 224, sym_attribute_argument = 225, sym_attribute_list = 226, - sym_attribute_target_specifier = 227, - sym_namespace_declaration = 228, - sym_file_scoped_namespace_declaration = 229, - sym_type_declaration = 230, - sym_class_declaration = 231, - sym__class_declaration_initializer = 232, - sym_struct_declaration = 233, - sym__struct_declaration_initializer = 234, - sym_enum_declaration = 235, - sym_enum_member_declaration_list = 236, - sym_enum_member_declaration = 237, - sym_interface_declaration = 238, - sym__interface_declaration_initializer = 239, - sym_delegate_declaration = 240, - sym__delegate_declaration_initializer = 241, - sym_record_declaration = 242, - sym__record_declaration_initializer = 243, - sym_record_base = 244, - sym_primary_constructor_base_type = 245, - sym_modifier = 246, - sym_type_parameter_list = 247, - sym_type_parameter = 248, - sym_base_list = 249, - sym_type_parameter_constraints_clause = 250, - sym_type_parameter_constraint = 251, - sym_constructor_constraint = 252, - sym_operator_declaration = 253, - sym_conversion_operator_declaration = 254, - sym_declaration_list = 255, - sym_declaration = 256, - sym_field_declaration = 257, - sym_constructor_declaration = 258, - sym__constructor_declaration_initializer = 259, - sym_destructor_declaration = 260, - sym_method_declaration = 261, - sym_event_declaration = 262, - sym_event_field_declaration = 263, - sym_accessor_list = 264, - sym_accessor_declaration = 265, - sym_indexer_declaration = 266, - sym_bracketed_parameter_list = 267, - sym_property_declaration = 268, - sym_explicit_interface_specifier = 269, - sym_parameter_list = 270, - sym_parameter = 271, - sym__parameter_array = 272, - sym_constructor_initializer = 273, - sym_argument_list = 274, - sym_tuple_pattern = 275, - sym_argument = 276, - sym_block = 277, - sym_arrow_expression_clause = 278, - sym__function_body = 279, - sym_variable_declaration = 280, - sym_using_variable_declaration = 281, - sym_variable_declarator = 282, - sym_using_variable_declarator = 283, - sym_bracketed_argument_list = 284, - sym__name = 285, - sym_alias_qualified_name = 286, - sym__simple_name = 287, - sym_qualified_name = 288, - sym_generic_name = 289, - sym_type_argument_list = 290, - sym_type = 291, - sym_implicit_type = 292, - sym_array_type = 293, - sym__array_base_type = 294, - sym_array_rank_specifier = 295, - sym_nullable_type = 296, - sym_pointer_type = 297, - sym__pointer_base_type = 298, - sym_function_pointer_type = 299, - sym_calling_convention = 300, - sym_function_pointer_parameter = 301, - sym_ref_type = 302, - sym__ref_base_type = 303, - sym_scoped_type = 304, - sym__scoped_base_type = 305, - sym_tuple_type = 306, - sym_tuple_element = 307, - sym_statement = 308, - sym_break_statement = 309, - sym_checked_statement = 310, - sym_continue_statement = 311, - sym_do_statement = 312, - sym_empty_statement = 313, - sym_expression_statement = 314, - sym_fixed_statement = 315, - sym_for_statement = 316, - sym__for_statement_conditions = 317, - sym_return_statement = 318, - sym_lock_statement = 319, - sym_yield_statement = 320, - sym_switch_statement = 321, - sym_switch_body = 322, - sym_switch_section = 323, - sym_throw_statement = 324, - sym_try_statement = 325, - sym_catch_clause = 326, - sym_catch_declaration = 327, - sym_catch_filter_clause = 328, - sym_finally_clause = 329, - sym_unsafe_statement = 330, - sym_using_statement = 331, - sym_foreach_statement = 332, - sym__foreach_statement_initializer = 333, - sym_goto_statement = 334, - sym_labeled_statement = 335, - sym_if_statement = 336, - sym_while_statement = 337, - sym_local_declaration_statement = 338, - sym_local_function_statement = 339, - sym__local_function_declaration = 340, - sym_pattern = 341, - sym_constant_pattern = 342, - sym_parenthesized_pattern = 343, - sym_var_pattern = 344, - sym_type_pattern = 345, - sym_list_pattern = 346, - sym_recursive_pattern = 347, - sym_positional_pattern_clause = 348, - sym_property_pattern_clause = 349, - sym_subpattern = 350, - sym_relational_pattern = 351, - sym_negated_pattern = 352, - sym_and_pattern = 353, - sym_or_pattern = 354, - sym_declaration_pattern = 355, - sym__variable_designation = 356, - sym_parenthesized_variable_designation = 357, - sym_expression = 358, - sym_non_lvalue_expression = 359, - sym_lvalue_expression = 360, - sym__expression_statement_expression = 361, - sym_assignment_expression = 362, - sym_binary_expression = 363, - sym_postfix_unary_expression = 364, - sym_prefix_unary_expression = 365, - sym__pointer_indirection_expression = 366, - sym_query_expression = 367, - sym_from_clause = 368, - sym__query_body = 369, - sym__query_clause = 370, - sym_join_clause = 371, - sym__join_header = 372, - sym__join_body = 373, - sym_join_into_clause = 374, - sym_let_clause = 375, - sym_order_by_clause = 376, - sym__ordering = 377, - sym_where_clause = 378, - sym__select_or_group_clause = 379, - sym_group_clause = 380, - sym_select_clause = 381, - sym_conditional_expression = 382, - sym_conditional_access_expression = 383, - sym_as_expression = 384, - sym_is_expression = 385, - sym_is_pattern_expression = 386, - sym_cast_expression = 387, - sym_checked_expression = 388, - sym_invocation_expression = 389, - sym_switch_expression = 390, - sym__switch_expression_body = 391, - sym_switch_expression_arm = 392, - sym_when_clause = 393, - sym_await_expression = 394, - sym_throw_expression = 395, - sym_element_access_expression = 396, - sym_interpolated_string_expression = 397, - sym__interpolated_string_content = 398, - sym__interpolated_verbatim_string_content = 399, - sym__interpolated_raw_string_content = 400, - sym_interpolation = 401, - sym_interpolation_alignment_clause = 402, - sym_interpolation_format_clause = 403, - sym_member_access_expression = 404, - sym_member_binding_expression = 405, - sym_object_creation_expression = 406, - sym_parenthesized_expression = 407, - sym__parenthesized_lvalue_expression = 408, - sym_lambda_expression = 409, - sym__lambda_expression_init = 410, - sym__lambda_parameters = 411, - sym_array_creation_expression = 412, - sym_anonymous_method_expression = 413, - sym_anonymous_object_creation_expression = 414, - sym__anonymous_object_member_declarator = 415, - sym_implicit_array_creation_expression = 416, - sym_implicit_object_creation_expression = 417, - sym_implicit_stackalloc_expression = 418, - sym_initializer_expression = 419, - sym_declaration_expression = 420, - sym_default_expression = 421, - sym_with_expression = 422, - sym__with_body = 423, - sym_with_initializer = 424, - sym_sizeof_expression = 425, - sym_typeof_expression = 426, - sym_makeref_expression = 427, - sym_ref_expression = 428, - sym_reftype_expression = 429, - sym_refvalue_expression = 430, - sym_stackalloc_expression = 431, - sym_range_expression = 432, - sym_tuple_expression = 433, - sym_literal = 434, - sym_character_literal = 435, - sym_string_literal = 436, - sym_string_literal_content = 437, - sym_raw_string_literal = 438, - sym_boolean_literal = 439, - sym_identifier = 440, - sym__reserved_identifier = 441, - sym_preproc_if = 442, - sym_preproc_else = 443, - sym_preproc_elif = 444, - sym_preproc_if_in_top_level = 445, - sym_preproc_else_in_top_level = 446, - sym_preproc_elif_in_top_level = 447, - sym_preproc_if_in_expression = 448, - sym_preproc_else_in_expression = 449, - sym_preproc_elif_in_expression = 450, - sym_preproc_if_in_enum_member_declaration = 451, - sym_preproc_else_in_enum_member_declaration = 452, - sym_preproc_elif_in_enum_member_declaration = 453, - sym__preproc_expression = 454, - sym_preproc_parenthesized_expression = 455, - sym_preproc_unary_expression = 456, - sym_preproc_binary_expression = 457, - sym_preproc_region = 458, - sym_preproc_endregion = 459, - sym_preproc_line = 460, - sym_preproc_pragma = 461, - sym_preproc_nullable = 462, - sym_preproc_error = 463, - sym_preproc_warning = 464, - sym_preproc_define = 465, - sym_preproc_undef = 466, - aux_sym_compilation_unit_repeat1 = 467, - aux_sym_using_directive_repeat1 = 468, - aux_sym_global_attribute_repeat1 = 469, - aux_sym_attribute_argument_list_repeat1 = 470, - aux_sym__class_declaration_initializer_repeat1 = 471, - aux_sym__class_declaration_initializer_repeat2 = 472, - aux_sym__class_declaration_initializer_repeat3 = 473, - aux_sym__class_declaration_initializer_repeat4 = 474, - aux_sym_enum_member_declaration_list_repeat1 = 475, - aux_sym__record_declaration_initializer_repeat1 = 476, - aux_sym_record_base_repeat1 = 477, - aux_sym_type_parameter_list_repeat1 = 478, - aux_sym_base_list_repeat1 = 479, - aux_sym_type_parameter_constraints_clause_repeat1 = 480, - aux_sym_conversion_operator_declaration_repeat1 = 481, - aux_sym_declaration_list_repeat1 = 482, - aux_sym_accessor_list_repeat1 = 483, - aux_sym_bracketed_parameter_list_repeat1 = 484, - aux_sym__parameter_type_with_modifiers_repeat1 = 485, - aux_sym_argument_list_repeat1 = 486, - aux_sym_tuple_pattern_repeat1 = 487, - aux_sym_block_repeat1 = 488, - aux_sym_variable_declaration_repeat1 = 489, - aux_sym_using_variable_declaration_repeat1 = 490, - aux_sym_type_argument_list_repeat1 = 491, - aux_sym_type_argument_list_repeat2 = 492, - aux_sym_array_rank_specifier_repeat1 = 493, - aux_sym_function_pointer_type_repeat1 = 494, - aux_sym_calling_convention_repeat1 = 495, - aux_sym_tuple_type_repeat1 = 496, - aux_sym__for_statement_conditions_repeat1 = 497, - aux_sym_switch_body_repeat1 = 498, - aux_sym_try_statement_repeat1 = 499, - aux_sym_catch_clause_repeat1 = 500, - aux_sym_list_pattern_repeat1 = 501, - aux_sym_positional_pattern_clause_repeat1 = 502, - aux_sym_parenthesized_variable_designation_repeat1 = 503, - aux_sym__query_body_repeat1 = 504, - aux_sym__query_body_repeat2 = 505, - aux_sym_order_by_clause_repeat1 = 506, - aux_sym__switch_expression_body_repeat1 = 507, - aux_sym_interpolated_string_expression_repeat1 = 508, - aux_sym_interpolated_string_expression_repeat2 = 509, - aux_sym_interpolated_string_expression_repeat3 = 510, - aux_sym__lambda_expression_init_repeat1 = 511, - aux_sym_anonymous_object_creation_expression_repeat1 = 512, - aux_sym__with_body_repeat1 = 513, - aux_sym_string_literal_repeat1 = 514, - aux_sym_preproc_if_in_top_level_repeat1 = 515, - aux_sym_preproc_pragma_repeat1 = 516, - alias_sym_element_binding_expression = 517, - alias_sym_implicit_parameter = 518, - alias_sym_interpolation_quote = 519, + sym__attribute_list = 227, + sym_attribute_target_specifier = 228, + sym_namespace_declaration = 229, + sym_file_scoped_namespace_declaration = 230, + sym_type_declaration = 231, + sym_class_declaration = 232, + sym__class_declaration_initializer = 233, + sym_struct_declaration = 234, + sym__struct_declaration_initializer = 235, + sym_enum_declaration = 236, + sym_enum_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, }; static const char * const ts_symbol_names[] = { @@ -773,6 +777,7 @@ static const char * const ts_symbol_names[] = { [sym_attribute_argument_list] = "attribute_argument_list", [sym_attribute_argument] = "attribute_argument", [sym_attribute_list] = "attribute_list", + [sym__attribute_list] = "_attribute_list", [sym_attribute_target_specifier] = "attribute_target_specifier", [sym_namespace_declaration] = "namespace_declaration", [sym_file_scoped_namespace_declaration] = "file_scoped_namespace_declaration", @@ -1000,6 +1005,9 @@ static const char * const ts_symbol_names[] = { [sym_preproc_if_in_enum_member_declaration] = "preproc_if", [sym_preproc_else_in_enum_member_declaration] = "preproc_else", [sym_preproc_elif_in_enum_member_declaration] = "preproc_elif", + [sym_preproc_if_in_attribute_list] = "preproc_if_in_attribute_list", + [sym_preproc_else_in_attribute_list] = "preproc_else", + [sym_preproc_elif_in_attribute_list] = "preproc_elif", [sym__preproc_expression] = "_preproc_expression", [sym_preproc_parenthesized_expression] = "parenthesized_expression", [sym_preproc_unary_expression] = "unary_expression", @@ -1296,6 +1304,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_attribute_argument_list] = sym_attribute_argument_list, [sym_attribute_argument] = sym_attribute_argument, [sym_attribute_list] = sym_attribute_list, + [sym__attribute_list] = sym__attribute_list, [sym_attribute_target_specifier] = sym_attribute_target_specifier, [sym_namespace_declaration] = sym_namespace_declaration, [sym_file_scoped_namespace_declaration] = sym_file_scoped_namespace_declaration, @@ -1523,6 +1532,9 @@ static const TSSymbol ts_symbol_map[] = { [sym_preproc_if_in_enum_member_declaration] = sym_preproc_if, [sym_preproc_else_in_enum_member_declaration] = sym_preproc_else, [sym_preproc_elif_in_enum_member_declaration] = sym_preproc_elif, + [sym_preproc_if_in_attribute_list] = sym_preproc_if_in_attribute_list, + [sym_preproc_else_in_attribute_list] = sym_preproc_else, + [sym_preproc_elif_in_attribute_list] = sym_preproc_elif, [sym__preproc_expression] = sym__preproc_expression, [sym_preproc_parenthesized_expression] = sym_parenthesized_expression, [sym_preproc_unary_expression] = sym_preproc_unary_expression, @@ -2500,6 +2512,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__attribute_list] = { + .visible = false, + .named = true, + }, [sym_attribute_target_specifier] = { .visible = true, .named = true, @@ -3417,6 +3433,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_preproc_if_in_attribute_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_else_in_attribute_list] = { + .visible = true, + .named = true, + }, + [sym_preproc_elif_in_attribute_list] = { + .visible = true, + .named = true, + }, [sym__preproc_expression] = { .visible = false, .named = true, @@ -4728,17 +4756,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 3, - [6] = 3, - [7] = 7, - [8] = 7, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 2, + [8] = 2, [9] = 9, [10] = 10, - [11] = 7, - [12] = 7, - [13] = 13, - [14] = 14, + [11] = 11, + [12] = 11, + [13] = 11, + [14] = 11, [15] = 15, [16] = 16, [17] = 17, @@ -4746,97 +4774,97 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [19] = 19, [20] = 20, [21] = 21, - [22] = 21, + [22] = 22, [23] = 23, [24] = 24, [25] = 25, [26] = 26, - [27] = 21, - [28] = 21, + [27] = 27, + [28] = 28, [29] = 29, - [30] = 21, - [31] = 31, - [32] = 21, - [33] = 21, - [34] = 21, - [35] = 21, - [36] = 21, - [37] = 37, - [38] = 38, - [39] = 38, - [40] = 38, + [30] = 29, + [31] = 29, + [32] = 29, + [33] = 29, + [34] = 29, + [35] = 29, + [36] = 29, + [37] = 29, + [38] = 29, + [39] = 39, + [40] = 40, [41] = 41, - [42] = 41, + [42] = 40, [43] = 41, - [44] = 38, - [45] = 38, - [46] = 38, + [44] = 40, + [45] = 41, + [46] = 40, [47] = 41, - [48] = 38, + [48] = 40, [49] = 41, - [50] = 41, - [51] = 38, - [52] = 41, - [53] = 38, + [50] = 40, + [51] = 41, + [52] = 40, + [53] = 40, [54] = 41, - [55] = 38, - [56] = 41, + [55] = 41, + [56] = 40, [57] = 41, - [58] = 38, + [58] = 40, [59] = 41, - [60] = 60, - [61] = 61, - [62] = 61, + [60] = 41, + [61] = 40, + [62] = 62, [63] = 63, - [64] = 64, + [64] = 62, [65] = 65, - [66] = 66, + [66] = 62, [67] = 67, - [68] = 60, - [69] = 66, - [70] = 65, + [68] = 63, + [69] = 69, + [70] = 70, [71] = 71, - [72] = 72, - [73] = 64, - [74] = 60, - [75] = 71, - [76] = 76, + [72] = 65, + [73] = 73, + [74] = 74, + [75] = 70, + [76] = 69, [77] = 65, - [78] = 67, - [79] = 63, - [80] = 61, - [81] = 64, - [82] = 76, - [83] = 72, - [84] = 63, - [85] = 63, - [86] = 86, - [87] = 72, - [88] = 76, - [89] = 67, - [90] = 61, - [91] = 71, - [92] = 66, - [93] = 86, - [94] = 72, - [95] = 86, - [96] = 65, - [97] = 60, - [98] = 64, - [99] = 76, + [78] = 71, + [79] = 79, + [80] = 79, + [81] = 81, + [82] = 73, + [83] = 63, + [84] = 81, + [85] = 74, + [86] = 79, + [87] = 67, + [88] = 63, + [89] = 62, + [90] = 65, + [91] = 70, + [92] = 69, + [93] = 70, + [94] = 81, + [95] = 73, + [96] = 69, + [97] = 81, + [98] = 74, + [99] = 79, [100] = 67, - [101] = 86, - [102] = 66, + [101] = 73, + [102] = 74, [103] = 71, - [104] = 104, - [105] = 105, - [106] = 104, - [107] = 104, - [108] = 104, - [109] = 104, - [110] = 105, - [111] = 111, - [112] = 112, + [104] = 71, + [105] = 67, + [106] = 106, + [107] = 106, + [108] = 108, + [109] = 108, + [110] = 106, + [111] = 106, + [112] = 106, [113] = 113, [114] = 113, [115] = 113, @@ -4848,7 +4876,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [121] = 113, [122] = 113, [123] = 113, - [124] = 113, + [124] = 124, [125] = 113, [126] = 113, [127] = 113, @@ -4866,1772 +4894,1772 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [139] = 113, [140] = 113, [141] = 113, - [142] = 142, - [143] = 142, - [144] = 111, - [145] = 112, - [146] = 112, - [147] = 111, - [148] = 112, - [149] = 111, - [150] = 112, - [151] = 111, - [152] = 112, - [153] = 111, - [154] = 111, - [155] = 112, - [156] = 112, - [157] = 111, - [158] = 111, - [159] = 111, - [160] = 112, - [161] = 112, - [162] = 111, - [163] = 112, - [164] = 112, - [165] = 111, - [166] = 111, - [167] = 111, - [168] = 111, - [169] = 112, - [170] = 112, - [171] = 111, - [172] = 112, - [173] = 173, - [174] = 112, - [175] = 111, - [176] = 173, - [177] = 111, - [178] = 111, - [179] = 111, - [180] = 112, - [181] = 173, - [182] = 111, - [183] = 112, - [184] = 112, - [185] = 111, - [186] = 111, - [187] = 112, - [188] = 112, - [189] = 112, - [190] = 111, - [191] = 112, - [192] = 173, - [193] = 111, - [194] = 173, - [195] = 112, - [196] = 111, - [197] = 112, - [198] = 112, - [199] = 111, - [200] = 111, - [201] = 111, - [202] = 112, - [203] = 112, - [204] = 111, - [205] = 112, - [206] = 112, - [207] = 111, - [208] = 111, - [209] = 112, - [210] = 112, - [211] = 211, - [212] = 111, - [213] = 112, - [214] = 112, - [215] = 111, - [216] = 216, - [217] = 111, - [218] = 218, - [219] = 219, - [220] = 111, - [221] = 112, - [222] = 216, - [223] = 216, - [224] = 219, - [225] = 216, - [226] = 112, - [227] = 112, - [228] = 112, - [229] = 111, - [230] = 112, - [231] = 218, - [232] = 216, - [233] = 233, - [234] = 219, - [235] = 216, - [236] = 218, - [237] = 111, - [238] = 112, - [239] = 111, - [240] = 111, - [241] = 219, - [242] = 233, - [243] = 218, - [244] = 244, - [245] = 111, - [246] = 246, - [247] = 111, - [248] = 248, - [249] = 112, - [250] = 246, - [251] = 111, - [252] = 111, - [253] = 246, + [142] = 113, + [143] = 113, + [144] = 144, + [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, + [224] = 224, + [225] = 124, + [226] = 226, + [227] = 221, + [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, + [252] = 252, + [253] = 253, [254] = 254, - [255] = 112, - [256] = 254, - [257] = 246, - [258] = 254, - [259] = 112, - [260] = 254, + [255] = 253, + [256] = 124, + [257] = 144, + [258] = 124, + [259] = 144, + [260] = 124, [261] = 254, - [262] = 112, - [263] = 111, - [264] = 112, - [265] = 112, - [266] = 248, + [262] = 253, + [263] = 124, + [264] = 144, + [265] = 124, + [266] = 144, [267] = 267, - [268] = 246, - [269] = 112, - [270] = 111, - [271] = 246, - [272] = 111, - [273] = 267, + [268] = 144, + [269] = 124, + [270] = 144, + [271] = 124, + [272] = 254, + [273] = 144, [274] = 254, - [275] = 112, - [276] = 111, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 279, - [281] = 279, - [282] = 277, - [283] = 278, - [284] = 278, + [275] = 254, + [276] = 267, + [277] = 253, + [278] = 254, + [279] = 252, + [280] = 253, + [281] = 124, + [282] = 144, + [283] = 253, + [284] = 284, [285] = 285, - [286] = 279, - [287] = 278, - [288] = 277, - [289] = 277, - [290] = 290, - [291] = 277, - [292] = 278, - [293] = 279, - [294] = 290, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 296, - [300] = 296, - [301] = 296, - [302] = 296, - [303] = 296, - [304] = 296, - [305] = 296, - [306] = 296, - [307] = 297, - [308] = 295, - [309] = 309, - [310] = 298, - [311] = 298, - [312] = 295, - [313] = 296, - [314] = 298, - [315] = 297, - [316] = 295, - [317] = 298, - [318] = 309, - [319] = 297, - [320] = 296, - [321] = 296, - [322] = 297, - [323] = 296, - [324] = 297, - [325] = 295, - [326] = 298, - [327] = 295, - [328] = 298, - [329] = 297, - [330] = 298, - [331] = 296, - [332] = 295, - [333] = 296, - [334] = 297, - [335] = 296, - [336] = 297, - [337] = 295, - [338] = 298, - [339] = 296, - [340] = 296, - [341] = 297, - [342] = 295, - [343] = 296, - [344] = 298, - [345] = 297, - [346] = 295, - [347] = 298, - [348] = 297, - [349] = 297, - [350] = 295, - [351] = 298, - [352] = 296, - [353] = 296, - [354] = 296, - [355] = 296, - [356] = 296, - [357] = 296, - [358] = 296, - [359] = 296, - [360] = 296, - [361] = 296, - [362] = 297, - [363] = 296, - [364] = 295, - [365] = 296, - [366] = 298, - [367] = 296, - [368] = 295, - [369] = 296, - [370] = 297, - [371] = 298, - [372] = 295, - [373] = 298, - [374] = 298, - [375] = 295, - [376] = 376, - [377] = 296, - [378] = 298, - [379] = 295, - [380] = 297, - [381] = 295, - [382] = 298, - [383] = 297, - [384] = 295, - [385] = 298, - [386] = 297, - [387] = 298, - [388] = 295, - [389] = 296, - [390] = 295, - [391] = 297, - [392] = 298, - [393] = 296, - [394] = 295, - [395] = 297, - [396] = 298, - [397] = 297, - [398] = 296, - [399] = 297, - [400] = 298, - [401] = 295, - [402] = 296, - [403] = 297, - [404] = 298, - [405] = 295, - [406] = 297, - [407] = 297, - [408] = 295, - [409] = 298, - [410] = 298, - [411] = 295, - [412] = 297, - [413] = 296, - [414] = 297, - [415] = 415, - [416] = 295, - [417] = 296, - [418] = 296, - [419] = 296, - [420] = 298, - [421] = 296, - [422] = 296, - [423] = 295, - [424] = 298, - [425] = 296, - [426] = 296, - [427] = 298, - [428] = 295, - [429] = 297, - [430] = 297, - [431] = 295, - [432] = 432, - [433] = 432, - [434] = 434, - [435] = 434, - [436] = 434, - [437] = 434, - [438] = 434, - [439] = 434, - [440] = 434, - [441] = 441, - [442] = 441, - [443] = 441, - [444] = 441, - [445] = 441, - [446] = 441, - [447] = 441, - [448] = 441, - [449] = 441, - [450] = 441, - [451] = 441, - [452] = 441, - [453] = 441, - [454] = 441, - [455] = 441, - [456] = 441, - [457] = 441, - [458] = 441, - [459] = 441, - [460] = 441, - [461] = 441, - [462] = 441, - [463] = 441, - [464] = 441, - [465] = 441, - [466] = 441, - [467] = 441, - [468] = 441, - [469] = 441, - [470] = 441, - [471] = 441, - [472] = 441, - [473] = 441, - [474] = 441, - [475] = 441, - [476] = 441, - [477] = 477, - [478] = 441, - [479] = 441, - [480] = 441, - [481] = 441, - [482] = 441, - [483] = 441, - [484] = 441, - [485] = 441, - [486] = 441, - [487] = 441, - [488] = 441, - [489] = 441, - [490] = 441, - [491] = 441, - [492] = 441, - [493] = 441, - [494] = 441, - [495] = 441, - [496] = 441, - [497] = 441, - [498] = 498, - [499] = 498, - [500] = 498, - [501] = 498, - [502] = 498, - [503] = 498, - [504] = 498, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 507, - [510] = 506, - [511] = 507, + [286] = 285, + [287] = 287, + [288] = 288, + [289] = 284, + [290] = 284, + [291] = 291, + [292] = 291, + [293] = 287, + [294] = 291, + [295] = 287, + [296] = 291, + [297] = 284, + [298] = 287, + [299] = 291, + [300] = 287, + [301] = 284, + [302] = 302, + [303] = 303, + [304] = 302, + [305] = 305, + [306] = 303, + [307] = 302, + [308] = 302, + [309] = 302, + [310] = 310, + [311] = 305, + [312] = 303, + [313] = 302, + [314] = 302, + [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, + [351] = 302, + [352] = 310, + [353] = 305, + [354] = 303, + [355] = 310, + [356] = 305, + [357] = 303, + [358] = 310, + [359] = 302, + [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, + [374] = 302, + [375] = 302, + [376] = 302, + [377] = 302, + [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, + [412] = 302, + [413] = 302, + [414] = 302, + [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, + [438] = 305, + [439] = 310, + [440] = 305, + [441] = 303, + [442] = 310, + [443] = 310, + [444] = 444, + [445] = 444, + [446] = 446, + [447] = 446, + [448] = 446, + [449] = 446, + [450] = 446, + [451] = 446, + [452] = 446, + [453] = 453, + [454] = 453, + [455] = 453, + [456] = 453, + [457] = 453, + [458] = 453, + [459] = 453, + [460] = 453, + [461] = 453, + [462] = 453, + [463] = 453, + [464] = 453, + [465] = 453, + [466] = 453, + [467] = 453, + [468] = 453, + [469] = 453, + [470] = 453, + [471] = 453, + [472] = 453, + [473] = 453, + [474] = 453, + [475] = 453, + [476] = 453, + [477] = 453, + [478] = 453, + [479] = 453, + [480] = 453, + [481] = 453, + [482] = 453, + [483] = 453, + [484] = 453, + [485] = 453, + [486] = 453, + [487] = 453, + [488] = 453, + [489] = 453, + [490] = 453, + [491] = 453, + [492] = 453, + [493] = 453, + [494] = 453, + [495] = 495, + [496] = 453, + [497] = 453, + [498] = 453, + [499] = 453, + [500] = 453, + [501] = 453, + [502] = 453, + [503] = 453, + [504] = 453, + [505] = 453, + [506] = 453, + [507] = 453, + [508] = 453, + [509] = 453, + [510] = 453, + [511] = 453, [512] = 512, [513] = 512, - [514] = 507, - [515] = 508, - [516] = 508, - [517] = 506, - [518] = 508, + [514] = 512, + [515] = 512, + [516] = 512, + [517] = 517, + [518] = 512, [519] = 512, - [520] = 506, - [521] = 506, - [522] = 507, - [523] = 507, - [524] = 508, - [525] = 512, - [526] = 512, - [527] = 508, - [528] = 506, - [529] = 529, + [520] = 512, + [521] = 512, + [522] = 512, + [523] = 523, + [524] = 523, + [525] = 523, + [526] = 523, + [527] = 523, + [528] = 523, + [529] = 523, [530] = 530, [531] = 530, - [532] = 530, - [533] = 529, - [534] = 529, - [535] = 530, - [536] = 536, + [532] = 532, + [533] = 532, + [534] = 530, + [535] = 535, + [536] = 535, [537] = 537, - [538] = 530, - [539] = 529, - [540] = 537, - [541] = 536, + [538] = 535, + [539] = 532, + [540] = 535, + [541] = 532, [542] = 530, - [543] = 543, - [544] = 544, - [545] = 545, - [546] = 546, - [547] = 546, - [548] = 546, - [549] = 545, - [550] = 545, - [551] = 546, - [552] = 545, - [553] = 545, - [554] = 546, - [555] = 546, - [556] = 556, - [557] = 546, - [558] = 546, - [559] = 545, - [560] = 560, - [561] = 560, - [562] = 560, + [543] = 535, + [544] = 535, + [545] = 530, + [546] = 532, + [547] = 532, + [548] = 548, + [549] = 549, + [550] = 549, + [551] = 548, + [552] = 552, + [553] = 549, + [554] = 548, + [555] = 555, + [556] = 549, + [557] = 548, + [558] = 552, + [559] = 555, + [560] = 548, + [561] = 561, + [562] = 548, [563] = 563, - [564] = 560, - [565] = 560, - [566] = 560, - [567] = 567, - [568] = 560, + [564] = 563, + [565] = 565, + [566] = 563, + [567] = 565, + [568] = 565, [569] = 563, - [570] = 570, - [571] = 571, - [572] = 571, + [570] = 563, + [571] = 565, + [572] = 563, [573] = 573, - [574] = 560, - [575] = 560, - [576] = 560, - [577] = 560, - [578] = 563, - [579] = 573, - [580] = 570, + [574] = 563, + [575] = 575, + [576] = 565, + [577] = 563, + [578] = 565, + [579] = 579, + [580] = 580, [581] = 581, - [582] = 560, - [583] = 563, + [582] = 582, + [583] = 583, [584] = 584, - [585] = 560, - [586] = 570, - [587] = 560, - [588] = 560, - [589] = 560, + [585] = 585, + [586] = 579, + [587] = 587, + [588] = 588, + [589] = 589, [590] = 590, - [591] = 560, - [592] = 560, + [591] = 591, + [592] = 584, [593] = 584, - [594] = 560, - [595] = 573, - [596] = 570, - [597] = 571, - [598] = 590, - [599] = 560, - [600] = 584, - [601] = 581, - [602] = 560, - [603] = 560, - [604] = 571, - [605] = 573, - [606] = 560, - [607] = 560, - [608] = 560, - [609] = 609, - [610] = 560, - [611] = 560, - [612] = 560, - [613] = 584, - [614] = 614, - [615] = 560, - [616] = 560, - [617] = 573, - [618] = 618, - [619] = 560, - [620] = 560, - [621] = 581, - [622] = 560, - [623] = 560, - [624] = 560, - [625] = 560, - [626] = 560, - [627] = 560, - [628] = 560, - [629] = 560, - [630] = 560, - [631] = 581, - [632] = 560, - [633] = 560, - [634] = 584, - [635] = 560, - [636] = 560, - [637] = 581, - [638] = 590, - [639] = 573, - [640] = 640, - [641] = 590, - [642] = 560, - [643] = 560, - [644] = 584, - [645] = 560, - [646] = 581, - [647] = 647, - [648] = 648, - [649] = 649, - [650] = 647, - [651] = 648, - [652] = 647, - [653] = 648, - [654] = 647, - [655] = 655, - [656] = 647, - [657] = 649, - [658] = 648, - [659] = 648, - [660] = 648, - [661] = 661, - [662] = 647, - [663] = 661, - [664] = 649, - [665] = 648, - [666] = 647, - [667] = 647, - [668] = 648, + [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, + [668] = 668, [669] = 669, - [670] = 670, - [671] = 671, - [672] = 648, - [673] = 648, - [674] = 648, - [675] = 647, - [676] = 647, - [677] = 647, - [678] = 648, - [679] = 661, - [680] = 647, - [681] = 681, - [682] = 647, - [683] = 647, - [684] = 648, - [685] = 648, - [686] = 648, - [687] = 655, - [688] = 688, - [689] = 689, - [690] = 647, - [691] = 691, - [692] = 648, - [693] = 648, - [694] = 648, - [695] = 648, - [696] = 647, - [697] = 647, - [698] = 648, - [699] = 648, - [700] = 648, - [701] = 648, - [702] = 648, - [703] = 703, - [704] = 648, - [705] = 705, - [706] = 647, - [707] = 707, - [708] = 708, - [709] = 709, - [710] = 647, - [711] = 647, - [712] = 648, - [713] = 647, - [714] = 691, - [715] = 715, - [716] = 647, - [717] = 648, - [718] = 648, - [719] = 648, - [720] = 648, - [721] = 715, - [722] = 647, - [723] = 723, - [724] = 647, - [725] = 691, - [726] = 647, - [727] = 647, - [728] = 648, - [729] = 647, - [730] = 647, - [731] = 648, - [732] = 648, - [733] = 648, - [734] = 648, - [735] = 648, - [736] = 648, - [737] = 647, - [738] = 648, + [670] = 668, + [671] = 668, + [672] = 669, + [673] = 668, + [674] = 669, + [675] = 669, + [676] = 676, + [677] = 668, + [678] = 678, + [679] = 676, + [680] = 669, + [681] = 669, + [682] = 668, + [683] = 669, + [684] = 668, + [685] = 669, + [686] = 669, + [687] = 668, + [688] = 668, + [689] = 668, + [690] = 678, + [691] = 669, + [692] = 668, + [693] = 669, + [694] = 668, + [695] = 669, + [696] = 669, + [697] = 668, + [698] = 668, + [699] = 699, + [700] = 668, + [701] = 669, + [702] = 669, + [703] = 668, + [704] = 669, + [705] = 669, + [706] = 668, + [707] = 668, + [708] = 668, + [709] = 668, + [710] = 669, + [711] = 668, + [712] = 669, + [713] = 668, + [714] = 668, + [715] = 668, + [716] = 669, + [717] = 669, + [718] = 668, + [719] = 668, + [720] = 669, + [721] = 668, + [722] = 668, + [723] = 668, + [724] = 669, + [725] = 668, + [726] = 668, + [727] = 676, + [728] = 669, + [729] = 729, + [730] = 669, + [731] = 669, + [732] = 669, + [733] = 668, + [734] = 668, + [735] = 669, + [736] = 669, + [737] = 668, + [738] = 668, [739] = 739, - [740] = 655, - [741] = 647, - [742] = 647, - [743] = 647, - [744] = 648, - [745] = 648, - [746] = 649, - [747] = 648, - [748] = 648, - [749] = 648, - [750] = 661, - [751] = 648, - [752] = 648, - [753] = 661, - [754] = 649, - [755] = 661, - [756] = 647, - [757] = 647, - [758] = 648, - [759] = 648, - [760] = 655, - [761] = 647, - [762] = 647, - [763] = 648, - [764] = 647, - [765] = 647, - [766] = 647, - [767] = 648, - [768] = 648, - [769] = 647, - [770] = 647, - [771] = 648, - [772] = 691, - [773] = 691, - [774] = 774, - [775] = 648, - [776] = 649, - [777] = 648, - [778] = 647, - [779] = 647, - [780] = 647, - [781] = 715, - [782] = 648, - [783] = 648, - [784] = 648, - [785] = 648, - [786] = 648, - [787] = 648, - [788] = 648, - [789] = 647, - [790] = 648, - [791] = 647, - [792] = 792, - [793] = 715, - [794] = 794, - [795] = 648, - [796] = 648, - [797] = 647, - [798] = 647, - [799] = 648, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 803, - [804] = 804, - [805] = 804, - [806] = 806, - [807] = 807, + [740] = 669, + [741] = 668, + [742] = 668, + [743] = 669, + [744] = 668, + [745] = 668, + [746] = 669, + [747] = 669, + [748] = 668, + [749] = 668, + [750] = 668, + [751] = 729, + [752] = 668, + [753] = 669, + [754] = 668, + [755] = 668, + [756] = 668, + [757] = 757, + [758] = 758, + [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, + [776] = 668, + [777] = 669, + [778] = 669, + [779] = 678, + [780] = 780, + [781] = 668, + [782] = 782, + [783] = 783, + [784] = 729, + [785] = 771, + [786] = 668, + [787] = 668, + [788] = 771, + [789] = 789, + [790] = 668, + [791] = 757, + [792] = 771, + [793] = 668, + [794] = 669, + [795] = 669, + [796] = 668, + [797] = 669, + [798] = 669, + [799] = 668, + [800] = 668, + [801] = 668, + [802] = 676, + [803] = 669, + [804] = 669, + [805] = 668, + [806] = 669, + [807] = 676, [808] = 808, [809] = 809, [810] = 810, [811] = 811, - [812] = 801, + [812] = 678, [813] = 813, [814] = 814, - [815] = 815, - [816] = 816, - [817] = 813, - [818] = 816, - [819] = 802, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 823, - [824] = 800, - [825] = 825, + [815] = 678, + [816] = 668, + [817] = 757, + [818] = 668, + [819] = 669, + [820] = 668, + [821] = 668, + [822] = 669, + [823] = 668, + [824] = 669, + [825] = 771, [826] = 826, - [827] = 820, + [827] = 826, [828] = 828, - [829] = 822, - [830] = 800, - [831] = 831, + [829] = 829, + [830] = 829, + [831] = 828, [832] = 832, - [833] = 825, - [834] = 828, + [833] = 833, + [834] = 826, [835] = 835, - [836] = 816, - [837] = 803, - [838] = 806, - [839] = 807, - [840] = 815, - [841] = 802, - [842] = 803, - [843] = 804, - [844] = 820, - [845] = 808, - [846] = 809, - [847] = 828, - [848] = 822, - [849] = 800, - [850] = 832, - [851] = 813, - [852] = 835, - [853] = 820, - [854] = 806, - [855] = 808, - [856] = 809, + [836] = 836, + [837] = 837, + [838] = 838, + [839] = 832, + [840] = 840, + [841] = 832, + [842] = 833, + [843] = 843, + [844] = 833, + [845] = 845, + [846] = 846, + [847] = 847, + [848] = 838, + [849] = 840, + [850] = 838, + [851] = 851, + [852] = 840, + [853] = 843, + [854] = 845, + [855] = 847, + [856] = 851, [857] = 857, - [858] = 825, - [859] = 807, - [860] = 835, - [861] = 814, + [858] = 858, + [859] = 843, + [860] = 837, + [861] = 861, [862] = 862, - [863] = 816, - [864] = 804, - [865] = 822, - [866] = 800, - [867] = 825, - [868] = 832, - [869] = 835, - [870] = 806, - [871] = 807, - [872] = 815, - [873] = 802, - [874] = 803, - [875] = 832, - [876] = 832, - [877] = 804, - [878] = 835, - [879] = 825, - [880] = 806, - [881] = 810, - [882] = 800, - [883] = 822, - [884] = 816, - [885] = 813, - [886] = 809, - [887] = 814, - [888] = 808, - [889] = 816, - [890] = 820, - [891] = 821, - [892] = 820, - [893] = 807, - [894] = 822, - [895] = 800, - [896] = 825, - [897] = 813, - [898] = 832, - [899] = 835, - [900] = 806, - [901] = 807, - [902] = 815, - [903] = 802, - [904] = 803, - [905] = 905, - [906] = 804, - [907] = 801, - [908] = 815, - [909] = 811, - [910] = 802, - [911] = 809, - [912] = 808, - [913] = 809, - [914] = 808, - [915] = 915, - [916] = 811, - [917] = 801, - [918] = 804, - [919] = 803, - [920] = 920, - [921] = 802, - [922] = 813, - [923] = 816, - [924] = 815, - [925] = 925, - [926] = 820, - [927] = 822, - [928] = 800, - [929] = 825, - [930] = 807, - [931] = 813, - [932] = 832, - [933] = 835, - [934] = 806, - [935] = 807, - [936] = 815, - [937] = 802, - [938] = 806, - [939] = 803, - [940] = 804, - [941] = 803, - [942] = 808, - [943] = 809, - [944] = 835, - [945] = 813, - [946] = 832, - [947] = 804, - [948] = 820, - [949] = 828, - [950] = 825, - [951] = 808, - [952] = 809, - [953] = 800, - [954] = 816, - [955] = 822, - [956] = 800, - [957] = 822, - [958] = 814, - [959] = 808, - [960] = 809, - [961] = 825, - [962] = 832, - [963] = 820, - [964] = 821, - [965] = 965, - [966] = 835, - [967] = 806, - [968] = 807, - [969] = 815, - [970] = 802, - [971] = 803, + [863] = 845, + [864] = 864, + [865] = 865, + [866] = 857, + [867] = 847, + [868] = 828, + [869] = 858, + [870] = 851, + [871] = 857, + [872] = 858, + [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, + [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, + [966] = 851, + [967] = 857, + [968] = 858, + [969] = 837, + [970] = 861, + [971] = 862, [972] = 972, - [973] = 804, - [974] = 974, - [975] = 975, - [976] = 813, - [977] = 816, - [978] = 814, - [979] = 810, - [980] = 814, - [981] = 820, - [982] = 965, - [983] = 808, - [984] = 965, - [985] = 809, - [986] = 813, - [987] = 816, - [988] = 810, - [989] = 822, - [990] = 800, - [991] = 825, - [992] = 832, - [993] = 835, - [994] = 806, - [995] = 807, - [996] = 815, - [997] = 802, - [998] = 803, - [999] = 804, - [1000] = 821, - [1001] = 810, - [1002] = 803, - [1003] = 802, - [1004] = 813, - [1005] = 815, - [1006] = 814, - [1007] = 965, - [1008] = 816, - [1009] = 807, - [1010] = 821, - [1011] = 820, - [1012] = 813, - [1013] = 822, - [1014] = 800, - [1015] = 1015, - [1016] = 825, - [1017] = 806, - [1018] = 832, - [1019] = 835, - [1020] = 965, - [1021] = 965, - [1022] = 806, - [1023] = 807, - [1024] = 1024, - [1025] = 965, - [1026] = 815, - [1027] = 965, - [1028] = 802, - [1029] = 803, - [1030] = 835, - [1031] = 832, - [1032] = 804, - [1033] = 825, - [1034] = 800, - [1035] = 809, - [1036] = 822, - [1037] = 816, - [1038] = 808, + [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, + [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, + [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] = 809, - [1041] = 809, - [1042] = 808, - [1043] = 811, - [1044] = 801, - [1045] = 1045, - [1046] = 820, - [1047] = 813, - [1048] = 801, - [1049] = 811, - [1050] = 821, - [1051] = 813, - [1052] = 810, - [1053] = 816, - [1054] = 801, - [1055] = 820, - [1056] = 822, - [1057] = 800, - [1058] = 825, - [1059] = 811, - [1060] = 832, - [1061] = 835, - [1062] = 1062, - [1063] = 806, - [1064] = 808, - [1065] = 807, - [1066] = 815, - [1067] = 802, - [1068] = 803, - [1069] = 804, - [1070] = 808, - [1071] = 809, - [1072] = 821, - [1073] = 828, - [1074] = 813, - [1075] = 810, - [1076] = 820, - [1077] = 801, - [1078] = 811, - [1079] = 808, - [1080] = 809, - [1081] = 804, - [1082] = 816, - [1083] = 822, - [1084] = 800, - [1085] = 825, - [1086] = 832, - [1087] = 803, - [1088] = 835, - [1089] = 806, - [1090] = 807, - [1091] = 815, - [1092] = 802, - [1093] = 802, - [1094] = 803, - [1095] = 804, - [1096] = 815, - [1097] = 807, - [1098] = 813, - [1099] = 821, - [1100] = 810, - [1101] = 814, - [1102] = 801, - [1103] = 806, - [1104] = 835, - [1105] = 811, - [1106] = 820, - [1107] = 821, - [1108] = 832, - [1109] = 810, - [1110] = 808, - [1111] = 1111, - [1112] = 965, - [1113] = 809, - [1114] = 801, - [1115] = 825, - [1116] = 811, - [1117] = 816, - [1118] = 1118, - [1119] = 1119, - [1120] = 800, - [1121] = 810, - [1122] = 822, - [1123] = 822, - [1124] = 800, - [1125] = 825, - [1126] = 801, - [1127] = 832, - [1128] = 835, - [1129] = 806, - [1130] = 811, - [1131] = 807, - [1132] = 820, - [1133] = 811, - [1134] = 815, - [1135] = 802, - [1136] = 816, - [1137] = 803, - [1138] = 804, - [1139] = 814, - [1140] = 813, - [1141] = 965, - [1142] = 821, - [1143] = 810, - [1144] = 965, - [1145] = 814, - [1146] = 809, - [1147] = 813, - [1148] = 810, - [1149] = 801, - [1150] = 811, - [1151] = 801, - [1152] = 811, - [1153] = 965, - [1154] = 814, - [1155] = 801, - [1156] = 811, - [1157] = 801, - [1158] = 816, - [1159] = 811, - [1160] = 801, - [1161] = 821, - [1162] = 820, - [1163] = 811, - [1164] = 822, - [1165] = 800, - [1166] = 825, - [1167] = 801, - [1168] = 832, - [1169] = 835, - [1170] = 806, - [1171] = 807, - [1172] = 815, - [1173] = 802, - [1174] = 803, - [1175] = 811, - [1176] = 804, - [1177] = 808, - [1178] = 801, - [1179] = 811, - [1180] = 965, - [1181] = 804, - [1182] = 808, - [1183] = 809, - [1184] = 801, - [1185] = 811, - [1186] = 801, - [1187] = 811, - [1188] = 801, - [1189] = 811, - [1190] = 801, - [1191] = 811, - [1192] = 801, - [1193] = 1193, - [1194] = 1194, - [1195] = 1195, - [1196] = 811, - [1197] = 813, - [1198] = 801, - [1199] = 811, - [1200] = 816, - [1201] = 1201, - [1202] = 820, - [1203] = 822, - [1204] = 801, - [1205] = 800, - [1206] = 811, - [1207] = 803, - [1208] = 801, - [1209] = 802, - [1210] = 825, - [1211] = 811, - [1212] = 832, - [1213] = 815, - [1214] = 807, - [1215] = 806, - [1216] = 835, - [1217] = 806, - [1218] = 807, - [1219] = 835, - [1220] = 815, - [1221] = 832, - [1222] = 965, - [1223] = 802, - [1224] = 803, - [1225] = 804, - [1226] = 808, - [1227] = 809, - [1228] = 825, - [1229] = 813, - [1230] = 801, - [1231] = 1231, - [1232] = 1232, - [1233] = 820, - [1234] = 813, - [1235] = 811, - [1236] = 808, - [1237] = 809, - [1238] = 800, - [1239] = 816, - [1240] = 822, - [1241] = 800, - [1242] = 825, - [1243] = 832, - [1244] = 822, - [1245] = 835, - [1246] = 806, - [1247] = 807, - [1248] = 815, - [1249] = 802, - [1250] = 820, - [1251] = 803, - [1252] = 804, - [1253] = 813, - [1254] = 814, - [1255] = 806, - [1256] = 820, - [1257] = 826, - [1258] = 808, - [1259] = 809, - [1260] = 816, - [1261] = 816, - [1262] = 814, - [1263] = 822, - [1264] = 965, - [1265] = 825, - [1266] = 832, - [1267] = 835, - [1268] = 806, - [1269] = 807, - [1270] = 815, - [1271] = 802, - [1272] = 803, - [1273] = 804, - [1274] = 801, - [1275] = 811, - [1276] = 801, - [1277] = 811, - [1278] = 801, - [1279] = 811, - [1280] = 810, - [1281] = 801, - [1282] = 811, - [1283] = 813, - [1284] = 813, - [1285] = 801, - [1286] = 826, - [1287] = 801, - [1288] = 965, - [1289] = 811, - [1290] = 809, - [1291] = 808, - [1292] = 814, - [1293] = 804, - [1294] = 803, - [1295] = 802, - [1296] = 815, - [1297] = 1297, - [1298] = 816, - [1299] = 807, - [1300] = 806, - [1301] = 821, - [1302] = 820, - [1303] = 1303, - [1304] = 822, - [1305] = 800, - [1306] = 825, - [1307] = 1307, - [1308] = 832, - [1309] = 835, - [1310] = 806, - [1311] = 1311, - [1312] = 835, - [1313] = 807, - [1314] = 815, - [1315] = 802, - [1316] = 803, - [1317] = 1317, - [1318] = 804, - [1319] = 1319, - [1320] = 832, - [1321] = 1321, - [1322] = 1322, - [1323] = 1323, - [1324] = 825, - [1325] = 1325, - [1326] = 800, - [1327] = 965, - [1328] = 822, - [1329] = 820, - [1330] = 816, - [1331] = 814, - [1332] = 808, - [1333] = 1333, - [1334] = 809, - [1335] = 965, - [1336] = 814, - [1337] = 801, - [1338] = 813, - [1339] = 816, - [1340] = 1340, - [1341] = 822, - [1342] = 811, - [1343] = 800, - [1344] = 825, - [1345] = 801, - [1346] = 832, - [1347] = 809, - [1348] = 835, - [1349] = 806, - [1350] = 808, - [1351] = 804, - [1352] = 816, - [1353] = 813, - [1354] = 803, - [1355] = 816, - [1356] = 802, - [1357] = 807, - [1358] = 820, - [1359] = 822, - [1360] = 815, - [1361] = 800, - [1362] = 825, - [1363] = 815, - [1364] = 832, - [1365] = 835, - [1366] = 806, - [1367] = 807, - [1368] = 815, - [1369] = 802, - [1370] = 803, - [1371] = 804, - [1372] = 808, - [1373] = 809, - [1374] = 807, - [1375] = 813, - [1376] = 822, - [1377] = 820, - [1378] = 835, - [1379] = 832, - [1380] = 808, - [1381] = 809, - [1382] = 1382, - [1383] = 825, - [1384] = 816, - [1385] = 822, - [1386] = 800, - [1387] = 825, - [1388] = 832, - [1389] = 835, - [1390] = 806, - [1391] = 807, - [1392] = 815, - [1393] = 802, - [1394] = 803, - [1395] = 804, - [1396] = 813, - [1397] = 814, - [1398] = 800, - [1399] = 820, - [1400] = 815, - [1401] = 820, - [1402] = 808, - [1403] = 809, - [1404] = 820, - [1405] = 816, - [1406] = 816, - [1407] = 813, - [1408] = 822, - [1409] = 800, - [1410] = 825, - [1411] = 832, - [1412] = 835, - [1413] = 806, - [1414] = 807, - [1415] = 815, - [1416] = 802, - [1417] = 803, - [1418] = 1418, - [1419] = 804, - [1420] = 802, - [1421] = 809, - [1422] = 808, - [1423] = 804, - [1424] = 803, - [1425] = 802, - [1426] = 815, - [1427] = 807, - [1428] = 806, - [1429] = 803, - [1430] = 810, - [1431] = 835, - [1432] = 822, - [1433] = 832, - [1434] = 825, - [1435] = 813, - [1436] = 800, - [1437] = 800, - [1438] = 822, - [1439] = 820, - [1440] = 816, - [1441] = 813, - [1442] = 825, - [1443] = 804, - [1444] = 814, - [1445] = 1445, - [1446] = 804, - [1447] = 832, + [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, + [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, + [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, + [1280] = 861, + [1281] = 862, + [1282] = 864, + [1283] = 835, + [1284] = 828, + [1285] = 829, + [1286] = 836, + [1287] = 845, + [1288] = 835, + [1289] = 836, + [1290] = 832, + [1291] = 833, + [1292] = 826, + [1293] = 838, + [1294] = 829, + [1295] = 840, + [1296] = 843, + [1297] = 845, + [1298] = 847, + [1299] = 851, + [1300] = 857, + [1301] = 858, + [1302] = 837, + [1303] = 861, + [1304] = 862, + [1305] = 864, + [1306] = 865, + [1307] = 828, + [1308] = 826, + [1309] = 829, + [1310] = 884, + [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, + [1365] = 847, + [1366] = 851, + [1367] = 857, + [1368] = 858, + [1369] = 837, + [1370] = 861, + [1371] = 862, + [1372] = 845, + [1373] = 828, + [1374] = 847, + [1375] = 832, + [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] = 803, - [1450] = 806, - [1451] = 802, - [1452] = 815, - [1453] = 816, - [1454] = 807, - [1455] = 806, - [1456] = 821, - [1457] = 820, + [1449] = 836, + [1450] = 835, + [1451] = 836, + [1452] = 835, + [1453] = 836, + [1454] = 835, + [1455] = 836, + [1456] = 835, + [1457] = 836, [1458] = 835, - [1459] = 807, - [1460] = 822, - [1461] = 800, - [1462] = 825, - [1463] = 832, - [1464] = 832, - [1465] = 835, - [1466] = 806, - [1467] = 807, - [1468] = 815, - [1469] = 802, - [1470] = 803, - [1471] = 815, - [1472] = 802, - [1473] = 803, - [1474] = 825, - [1475] = 804, - [1476] = 800, - [1477] = 822, - [1478] = 816, - [1479] = 813, - [1480] = 809, - [1481] = 808, - [1482] = 804, - [1483] = 820, - [1484] = 820, - [1485] = 808, - [1486] = 809, - [1487] = 813, - [1488] = 808, - [1489] = 809, - [1490] = 809, - [1491] = 810, - [1492] = 801, - [1493] = 808, - [1494] = 809, - [1495] = 808, - [1496] = 801, - [1497] = 804, - [1498] = 821, - [1499] = 1499, - [1500] = 821, - [1501] = 803, - [1502] = 802, - [1503] = 811, - [1504] = 801, - [1505] = 822, - [1506] = 801, - [1507] = 810, - [1508] = 813, - [1509] = 807, - [1510] = 816, - [1511] = 806, - [1512] = 835, - [1513] = 832, - [1514] = 825, - [1515] = 800, - [1516] = 813, - [1517] = 810, - [1518] = 813, - [1519] = 822, - [1520] = 816, - [1521] = 820, - [1522] = 820, - [1523] = 822, - [1524] = 800, - [1525] = 825, - [1526] = 816, - [1527] = 832, - [1528] = 835, - [1529] = 806, - [1530] = 807, - [1531] = 815, - [1532] = 802, - [1533] = 803, - [1534] = 1534, - [1535] = 804, - [1536] = 808, - [1537] = 809, - [1538] = 813, - [1539] = 813, - [1540] = 816, - [1541] = 820, - [1542] = 965, - [1543] = 822, - [1544] = 808, - [1545] = 809, - [1546] = 809, - [1547] = 816, - [1548] = 808, - [1549] = 822, - [1550] = 800, - [1551] = 825, + [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, + [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, + [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] = 835, - [1554] = 806, - [1555] = 807, - [1556] = 815, - [1557] = 802, - [1558] = 803, - [1559] = 804, - [1560] = 813, - [1561] = 814, - [1562] = 820, - [1563] = 820, - [1564] = 1564, - [1565] = 813, - [1566] = 804, - [1567] = 808, - [1568] = 809, - [1569] = 803, - [1570] = 800, - [1571] = 802, - [1572] = 801, - [1573] = 816, - [1574] = 815, - [1575] = 822, - [1576] = 800, - [1577] = 825, - [1578] = 832, - [1579] = 835, - [1580] = 806, - [1581] = 807, - [1582] = 815, - [1583] = 802, - [1584] = 803, - [1585] = 804, - [1586] = 807, - [1587] = 811, - [1588] = 806, - [1589] = 825, - [1590] = 835, - [1591] = 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, + [1569] = 829, + [1570] = 864, + [1571] = 865, + [1572] = 840, + [1573] = 832, + [1574] = 832, + [1575] = 833, + [1576] = 833, + [1577] = 864, + [1578] = 843, + [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] = 825, - [1594] = 835, - [1595] = 809, - [1596] = 800, - [1597] = 810, - [1598] = 822, - [1599] = 808, - [1600] = 816, - [1601] = 813, - [1602] = 809, - [1603] = 808, - [1604] = 820, - [1605] = 813, - [1606] = 804, - [1607] = 806, - [1608] = 803, - [1609] = 807, - [1610] = 815, - [1611] = 809, - [1612] = 808, - [1613] = 814, - [1614] = 802, - [1615] = 802, - [1616] = 803, - [1617] = 815, - [1618] = 807, - [1619] = 804, - [1620] = 806, - [1621] = 835, - [1622] = 804, - [1623] = 832, - [1624] = 825, - [1625] = 816, - [1626] = 800, - [1627] = 1627, - [1628] = 821, - [1629] = 820, - [1630] = 816, - [1631] = 822, - [1632] = 800, - [1633] = 825, - [1634] = 803, - [1635] = 832, - [1636] = 835, - [1637] = 806, - [1638] = 807, - [1639] = 815, - [1640] = 802, - [1641] = 803, - [1642] = 809, - [1643] = 804, - [1644] = 808, - [1645] = 820, - [1646] = 801, - [1647] = 821, - [1648] = 1648, - [1649] = 810, - [1650] = 801, - [1651] = 801, - [1652] = 801, - [1653] = 802, - [1654] = 808, - [1655] = 809, - [1656] = 801, - [1657] = 815, - [1658] = 814, - [1659] = 807, - [1660] = 806, - [1661] = 835, - [1662] = 811, - [1663] = 815, - [1664] = 832, - [1665] = 825, - [1666] = 800, - [1667] = 822, - [1668] = 820, - [1669] = 821, - [1670] = 1303, - [1671] = 1671, - [1672] = 1303, - [1673] = 1307, - [1674] = 1317, - [1675] = 1319, - [1676] = 816, - [1677] = 1201, - [1678] = 1321, - [1679] = 1195, - [1680] = 814, - [1681] = 1307, - [1682] = 821, - [1683] = 965, - [1684] = 1317, - [1685] = 1319, - [1686] = 1322, - [1687] = 1323, - [1688] = 1688, - [1689] = 1323, - [1690] = 831, - [1691] = 813, - [1692] = 826, - [1693] = 820, - [1694] = 816, - [1695] = 920, - [1696] = 820, - [1697] = 822, - [1698] = 800, - [1699] = 825, - [1700] = 925, - [1701] = 832, - [1702] = 835, - [1703] = 806, - [1704] = 807, - [1705] = 815, - [1706] = 802, - [1707] = 803, - [1708] = 1708, - [1709] = 804, - [1710] = 822, - [1711] = 808, - [1712] = 809, - [1713] = 800, - [1714] = 825, - [1715] = 832, - [1716] = 813, - [1717] = 835, - [1718] = 816, - [1719] = 813, - [1720] = 806, - [1721] = 820, - [1722] = 822, - [1723] = 800, - [1724] = 825, - [1725] = 807, - [1726] = 832, - [1727] = 835, - [1728] = 806, - [1729] = 807, - [1730] = 815, - [1731] = 802, - [1732] = 803, - [1733] = 804, - [1734] = 815, - [1735] = 808, - [1736] = 809, - [1737] = 802, - [1738] = 813, - [1739] = 1322, - [1740] = 814, - [1741] = 816, - [1742] = 803, - [1743] = 820, - [1744] = 804, - [1745] = 1303, - [1746] = 822, - [1747] = 800, - [1748] = 825, - [1749] = 1749, - [1750] = 832, - [1751] = 835, - [1752] = 816, - [1753] = 801, - [1754] = 806, - [1755] = 811, - [1756] = 807, - [1757] = 815, - [1758] = 802, - [1759] = 803, - [1760] = 810, - [1761] = 804, - [1762] = 1323, - [1763] = 1062, - [1764] = 1764, - [1765] = 808, - [1766] = 809, - [1767] = 1194, - [1768] = 1321, - [1769] = 1322, - [1770] = 813, - [1771] = 1303, - [1772] = 814, - [1773] = 1311, - [1774] = 816, - [1775] = 1322, - [1776] = 820, - [1777] = 1323, - [1778] = 822, - [1779] = 801, - [1780] = 800, - [1781] = 825, - [1782] = 828, - [1783] = 832, - [1784] = 801, - [1785] = 811, - [1786] = 809, - [1787] = 808, - [1788] = 835, - [1789] = 806, - [1790] = 1323, - [1791] = 1322, - [1792] = 807, - [1793] = 815, - [1794] = 802, - [1795] = 1321, - [1796] = 803, - [1797] = 804, - [1798] = 804, - [1799] = 803, - [1800] = 808, - [1801] = 809, - [1802] = 802, - [1803] = 821, - [1804] = 820, - [1805] = 813, - [1806] = 814, - [1807] = 815, - [1808] = 820, - [1809] = 807, - [1810] = 1303, - [1811] = 822, - [1812] = 800, - [1813] = 1307, - [1814] = 825, - [1815] = 1319, - [1816] = 832, - [1817] = 835, - [1818] = 806, - [1819] = 808, - [1820] = 809, - [1821] = 807, - [1822] = 816, - [1823] = 1317, - [1824] = 822, - [1825] = 815, - [1826] = 800, - [1827] = 825, - [1828] = 832, - [1829] = 802, - [1830] = 803, - [1831] = 806, - [1832] = 804, - [1833] = 835, - [1834] = 1834, - [1835] = 1835, - [1836] = 1834, - [1837] = 1835, - [1838] = 1834, - [1839] = 1835, - [1840] = 1840, + [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, + [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] = 1842, - [1843] = 1843, - [1844] = 1844, - [1845] = 1845, - [1846] = 1846, - [1847] = 1847, - [1848] = 1845, - [1849] = 1846, - [1850] = 1850, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1847, - [1857] = 1857, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1861, - [1862] = 1862, + [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] = 1864, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, - [1868] = 1868, - [1869] = 1869, - [1870] = 1852, - [1871] = 1857, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1875, + [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] = 1877, + [1877] = 1483, [1878] = 1878, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1855, - [1883] = 1883, - [1884] = 1884, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1894, + [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] = 1896, - [1897] = 1897, - [1898] = 1898, - [1899] = 1899, - [1900] = 1900, - [1901] = 1851, + [1896] = 862, + [1897] = 1483, + [1898] = 835, + [1899] = 836, + [1900] = 838, + [1901] = 1901, [1902] = 1902, - [1903] = 1903, - [1904] = 1904, - [1905] = 1905, - [1906] = 1906, - [1907] = 1859, + [1903] = 1902, + [1904] = 1901, + [1905] = 1902, + [1906] = 1901, + [1907] = 1907, [1908] = 1908, [1909] = 1909, [1910] = 1910, @@ -6645,12 +6673,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 1921, - [1922] = 1922, + [1921] = 1914, + [1922] = 1913, [1923] = 1923, [1924] = 1924, [1925] = 1925, - [1926] = 1926, + [1926] = 1916, [1927] = 1927, [1928] = 1928, [1929] = 1929, @@ -6663,4199 +6691,4199 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1936] = 1936, [1937] = 1937, [1938] = 1938, - [1939] = 1903, - [1940] = 1884, - [1941] = 1861, - [1942] = 1905, - [1943] = 1877, - [1944] = 1885, - [1945] = 1910, - [1946] = 1896, - [1947] = 1846, - [1948] = 1898, - [1949] = 1876, - [1950] = 1894, - [1951] = 1865, - [1952] = 1886, - [1953] = 1909, - [1954] = 1889, - [1955] = 1862, - [1956] = 1888, - [1957] = 1845, - [1958] = 1893, - [1959] = 1878, - [1960] = 1866, - [1961] = 1868, - [1962] = 1881, - [1963] = 1869, - [1964] = 1873, - [1965] = 1874, - [1966] = 1892, - [1967] = 1872, - [1968] = 1895, - [1969] = 1864, - [1970] = 1867, - [1971] = 1880, - [1972] = 1875, - [1973] = 1897, - [1974] = 1904, - [1975] = 1891, - [1976] = 1863, - [1977] = 1879, - [1978] = 1890, - [1979] = 1860, - [1980] = 1908, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1927, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1925, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, + [1954] = 1954, + [1955] = 1928, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1962, + [1963] = 1923, + [1964] = 1964, + [1965] = 1965, + [1966] = 1966, + [1967] = 1924, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 1971, + [1972] = 1972, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, [1981] = 1981, - [1982] = 1902, - [1983] = 1900, - [1984] = 1883, - [1985] = 1887, - [1986] = 1906, - [1987] = 1899, - [1988] = 1921, - [1989] = 1914, - [1990] = 1915, - [1991] = 1929, - [1992] = 1931, - [1993] = 1928, - [1994] = 1924, - [1995] = 1922, - [1996] = 1938, - [1997] = 1937, - [1998] = 1935, - [1999] = 1916, - [2000] = 1926, + [1982] = 1982, + [1983] = 1983, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1994, + [1995] = 1995, + [1996] = 1996, + [1997] = 1997, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, - [2002] = 1932, - [2003] = 1930, - [2004] = 1912, - [2005] = 1925, + [2002] = 2002, + [2003] = 2003, + [2004] = 2004, + [2005] = 2005, [2006] = 2006, [2007] = 2007, - [2008] = 1923, - [2009] = 1936, - [2010] = 1927, - [2011] = 1847, - [2012] = 2012, - [2013] = 1933, - [2014] = 1917, - [2015] = 1920, - [2016] = 1918, - [2017] = 1919, - [2018] = 1913, - [2019] = 1859, - [2020] = 1851, - [2021] = 1857, - [2022] = 1852, - [2023] = 1855, - [2024] = 2024, - [2025] = 1883, - [2026] = 1872, - [2027] = 1903, - [2028] = 1902, - [2029] = 1887, - [2030] = 1886, - [2031] = 1899, - [2032] = 1906, - [2033] = 1860, - [2034] = 1890, - [2035] = 1880, - [2036] = 1904, - [2037] = 1894, - [2038] = 1879, - [2039] = 1864, - [2040] = 1900, - [2041] = 1892, - [2042] = 1875, - [2043] = 1897, - [2044] = 1884, - [2045] = 1874, - [2046] = 1873, - [2047] = 1869, - [2048] = 1868, - [2049] = 1866, - [2050] = 1862, - [2051] = 1909, - [2052] = 1888, - [2053] = 1889, - [2054] = 1908, - [2055] = 1898, - [2056] = 1878, - [2057] = 1861, - [2058] = 1910, - [2059] = 1865, - [2060] = 1877, - [2061] = 1863, - [2062] = 1893, - [2063] = 1867, - [2064] = 1885, - [2065] = 1896, - [2066] = 1881, - [2067] = 1891, - [2068] = 1905, - [2069] = 1876, - [2070] = 1895, - [2071] = 2024, - [2072] = 2072, - [2073] = 1981, - [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, + [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, + [2065] = 2065, + [2066] = 1989, + [2067] = 1995, + [2068] = 1985, + [2069] = 1982, + [2070] = 1990, + [2071] = 1987, + [2072] = 1916, + [2073] = 1996, + [2074] = 2004, + [2075] = 1986, + [2076] = 1988, + [2077] = 2006, + [2078] = 1997, [2079] = 2079, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2092, + [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] = 2094, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2097, - [2099] = 2097, - [2100] = 2100, - [2101] = 2097, - [2102] = 2100, - [2103] = 2097, - [2104] = 2097, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2097, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2112, - [2113] = 2097, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 2111, - [2118] = 2118, - [2119] = 2119, - [2120] = 2118, - [2121] = 2119, - [2122] = 2122, - [2123] = 2100, - [2124] = 2119, - [2125] = 2119, - [2126] = 2116, - [2127] = 2119, - [2128] = 2119, - [2129] = 2100, - [2130] = 2100, - [2131] = 2122, - [2132] = 2097, - [2133] = 2097, - [2134] = 2122, - [2135] = 2100, - [2136] = 2097, - [2137] = 2100, - [2138] = 2138, - [2139] = 2100, - [2140] = 2116, - [2141] = 2111, - [2142] = 2142, - [2143] = 2111, + [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, + [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, + [2141] = 2141, + [2142] = 2017, + [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2119, - [2147] = 2100, - [2148] = 2100, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, [2149] = 2149, [2150] = 2150, - [2151] = 2100, - [2152] = 2122, - [2153] = 2100, - [2154] = 2116, - [2155] = 2097, - [2156] = 2100, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, [2157] = 2157, [2158] = 2158, - [2159] = 2122, - [2160] = 2119, - [2161] = 2105, - [2162] = 2118, - [2163] = 2097, - [2164] = 2118, - [2165] = 2106, - [2166] = 2116, - [2167] = 2157, - [2168] = 2157, - [2169] = 2158, - [2170] = 2170, - [2171] = 2105, - [2172] = 2111, - [2173] = 2106, - [2174] = 2122, - [2175] = 2157, - [2176] = 2170, + [2159] = 2159, + [2160] = 2160, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, + [2167] = 2165, + [2168] = 2165, + [2169] = 2169, + [2170] = 2165, + [2171] = 2169, + [2172] = 2165, + [2173] = 2165, + [2174] = 2174, + [2175] = 2175, + [2176] = 2165, [2177] = 2177, - [2178] = 2115, - [2179] = 2111, - [2180] = 2118, - [2181] = 2119, - [2182] = 2110, - [2183] = 2109, - [2184] = 2119, - [2185] = 2105, - [2186] = 2111, - [2187] = 2112, - [2188] = 2106, - [2189] = 2114, - [2190] = 2111, - [2191] = 2122, - [2192] = 2119, - [2193] = 2193, - [2194] = 2119, - [2195] = 2195, - [2196] = 2196, - [2197] = 2122, - [2198] = 2118, - [2199] = 2122, - [2200] = 2116, - [2201] = 2107, - [2202] = 2119, - [2203] = 2203, - [2204] = 2177, - [2205] = 2205, - [2206] = 2116, - [2207] = 2118, - [2208] = 2119, - [2209] = 2118, - [2210] = 2119, - [2211] = 2211, - [2212] = 2203, - [2213] = 2097, - [2214] = 2119, - [2215] = 2116, + [2178] = 2165, + [2179] = 2179, + [2180] = 2180, + [2181] = 2181, + [2182] = 2182, + [2183] = 2183, + [2184] = 2184, + [2185] = 2185, + [2186] = 2179, + [2187] = 2187, + [2188] = 2187, + [2189] = 2189, + [2190] = 2190, + [2191] = 2189, + [2192] = 2169, + [2193] = 2187, + [2194] = 2187, + [2195] = 2185, + [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, + [2209] = 2209, + [2210] = 2169, + [2211] = 2169, + [2212] = 2209, + [2213] = 2169, + [2214] = 2179, + [2215] = 2215, [2216] = 2216, - [2217] = 2118, - [2218] = 2195, - [2219] = 2193, - [2220] = 2220, - [2221] = 2119, - [2222] = 2177, - [2223] = 2119, - [2224] = 2119, - [2225] = 2116, - [2226] = 2122, - [2227] = 2119, - [2228] = 2097, - [2229] = 2122, - [2230] = 2118, + [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] = 2232, - [2233] = 2233, - [2234] = 2118, - [2235] = 2122, - [2236] = 2236, - [2237] = 2118, - [2238] = 2238, - [2239] = 2177, - [2240] = 2119, - [2241] = 2119, - [2242] = 2122, - [2243] = 2119, - [2244] = 2119, - [2245] = 2245, - [2246] = 2122, - [2247] = 2119, - [2248] = 2097, - [2249] = 2118, - [2250] = 2119, - [2251] = 2233, - [2252] = 2203, - [2253] = 2196, - [2254] = 2119, - [2255] = 2118, - [2256] = 2119, - [2257] = 2236, - [2258] = 2258, - [2259] = 2118, - [2260] = 2122, - [2261] = 2261, - [2262] = 2231, - [2263] = 2203, + [2232] = 2185, + [2233] = 2190, + [2234] = 2189, + [2235] = 2165, + [2236] = 2187, + [2237] = 2237, + [2238] = 2237, + [2239] = 2174, + [2240] = 2175, + [2241] = 2175, + [2242] = 2231, + [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, + [2257] = 2257, + [2258] = 2179, + [2259] = 2187, + [2260] = 2190, + [2261] = 2187, + [2262] = 2190, + [2263] = 2187, [2264] = 2264, - [2265] = 2265, - [2266] = 2118, - [2267] = 2119, - [2268] = 2119, - [2269] = 2269, - [2270] = 2270, - [2271] = 2119, - [2272] = 2238, - [2273] = 2118, - [2274] = 2118, - [2275] = 2275, - [2276] = 2119, - [2277] = 2118, + [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] = 2118, - [2280] = 2097, - [2281] = 2115, - [2282] = 2282, - [2283] = 2097, - [2284] = 2122, - [2285] = 2119, - [2286] = 2106, - [2287] = 2122, - [2288] = 2116, - [2289] = 2289, - [2290] = 2282, - [2291] = 2105, - [2292] = 2097, - [2293] = 2293, - [2294] = 2097, - [2295] = 2119, - [2296] = 2296, - [2297] = 2297, + [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] = 2097, - [2301] = 2158, - [2302] = 2122, - [2303] = 2122, - [2304] = 2119, - [2305] = 2305, - [2306] = 2157, - [2307] = 2298, - [2308] = 2122, - [2309] = 2097, - [2310] = 2310, + [2300] = 2189, + [2301] = 2187, + [2302] = 2302, + [2303] = 2190, + [2304] = 2165, + [2305] = 2190, + [2306] = 2187, + [2307] = 2244, + [2308] = 2187, + [2309] = 2187, + [2310] = 2187, [2311] = 2311, - [2312] = 2119, - [2313] = 2119, - [2314] = 2314, + [2312] = 2190, + [2313] = 2190, + [2314] = 2189, [2315] = 2315, - [2316] = 2109, - [2317] = 2110, + [2316] = 2190, + [2317] = 2317, [2318] = 2318, - [2319] = 2158, - [2320] = 2320, - [2321] = 2321, - [2322] = 2322, - [2323] = 2323, - [2324] = 2122, - [2325] = 2112, - [2326] = 2122, - [2327] = 2157, - [2328] = 2328, - [2329] = 2119, - [2330] = 2122, - [2331] = 2157, - [2332] = 2119, - [2333] = 2119, - [2334] = 2119, - [2335] = 2114, - [2336] = 2157, - [2337] = 2119, - [2338] = 2115, - [2339] = 2339, - [2340] = 2314, - [2341] = 2122, - [2342] = 2097, - [2343] = 2122, - [2344] = 2107, - [2345] = 2345, - [2346] = 2346, + [2319] = 2190, + [2320] = 2165, + [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] = 2109, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2105, - [2357] = 2097, - [2358] = 2358, - [2359] = 2106, - [2360] = 2097, - [2361] = 2097, - [2362] = 2353, - [2363] = 2363, - [2364] = 2097, - [2365] = 2097, - [2366] = 2366, - [2367] = 2097, - [2368] = 2107, - [2369] = 2114, - [2370] = 2370, - [2371] = 2371, - [2372] = 2097, + [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, [2373] = 2373, [2374] = 2374, - [2375] = 2375, - [2376] = 2112, - [2377] = 2353, + [2375] = 2190, + [2376] = 2190, + [2377] = 2184, [2378] = 2378, [2379] = 2379, - [2380] = 2110, + [2380] = 2380, [2381] = 2381, - [2382] = 2097, - [2383] = 2383, - [2384] = 2157, - [2385] = 2158, - [2386] = 2158, - [2387] = 2157, - [2388] = 2371, - [2389] = 2157, - [2390] = 2158, - [2391] = 2157, - [2392] = 2350, - [2393] = 2157, - [2394] = 2157, - [2395] = 2158, - [2396] = 2157, - [2397] = 2158, - [2398] = 2157, - [2399] = 2358, - [2400] = 2158, - [2401] = 2157, - [2402] = 2157, - [2403] = 2157, - [2404] = 2157, - [2405] = 2379, - [2406] = 2158, - [2407] = 2370, - [2408] = 2355, - [2409] = 2374, - [2410] = 2158, - [2411] = 2381, - [2412] = 2157, - [2413] = 2157, - [2414] = 2158, - [2415] = 2366, - [2416] = 2157, - [2417] = 2157, - [2418] = 2195, + [2382] = 2187, + [2383] = 2187, + [2384] = 2190, + [2385] = 2187, + [2386] = 2386, + [2387] = 2187, + [2388] = 2237, + [2389] = 2181, + [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, + [2411] = 2411, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2183, + [2418] = 2418, [2419] = 2419, - [2420] = 2193, - [2421] = 2158, - [2422] = 2157, - [2423] = 2157, - [2424] = 2157, - [2425] = 2158, - [2426] = 2158, - [2427] = 2097, - [2428] = 2157, - [2429] = 2193, - [2430] = 2157, - [2431] = 2195, - [2432] = 2157, - [2433] = 2157, - [2434] = 2158, - [2435] = 2158, - [2436] = 2157, - [2437] = 2097, - [2438] = 2157, - [2439] = 2419, - [2440] = 2158, - [2441] = 2097, - [2442] = 2158, - [2443] = 2097, - [2444] = 2157, - [2445] = 2097, - [2446] = 2157, - [2447] = 2097, - [2448] = 2157, - [2449] = 2157, - [2450] = 2158, - [2451] = 2157, - [2452] = 2452, - [2453] = 2453, - [2454] = 2452, - [2455] = 2453, - [2456] = 2205, - [2457] = 2193, - [2458] = 2458, - [2459] = 2459, - [2460] = 2458, - [2461] = 2453, - [2462] = 2293, - [2463] = 2458, - [2464] = 2459, - [2465] = 2458, - [2466] = 2193, - [2467] = 2459, - [2468] = 2293, - [2469] = 2469, - [2470] = 2195, - [2471] = 2469, - [2472] = 2459, - [2473] = 2452, - [2474] = 2195, - [2475] = 2452, - [2476] = 2453, - [2477] = 2469, - [2478] = 2469, - [2479] = 2233, - [2480] = 2480, - [2481] = 2296, - [2482] = 2236, - [2483] = 2238, - [2484] = 2238, - [2485] = 2195, - [2486] = 2233, - [2487] = 2236, - [2488] = 2231, - [2489] = 2231, - [2490] = 2193, - [2491] = 2193, - [2492] = 2195, - [2493] = 2195, - [2494] = 2193, - [2495] = 2195, - [2496] = 2236, - [2497] = 2231, - [2498] = 2233, - [2499] = 2193, - [2500] = 2195, - [2501] = 2238, - [2502] = 2193, - [2503] = 2195, - [2504] = 2193, - [2505] = 2195, - [2506] = 2296, - [2507] = 1905, - [2508] = 2195, - [2509] = 2238, - [2510] = 2193, - [2511] = 2236, - [2512] = 1903, - [2513] = 2195, - [2514] = 2352, - [2515] = 2231, - [2516] = 2105, - [2517] = 2193, - [2518] = 1890, - [2519] = 2233, - [2520] = 2193, - [2521] = 2373, - [2522] = 2195, - [2523] = 2193, - [2524] = 2115, - [2525] = 2106, - [2526] = 2195, - [2527] = 2193, - [2528] = 2231, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [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, + [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] = 2381, - [2531] = 2531, - [2532] = 2370, - [2533] = 2374, - [2534] = 2534, - [2535] = 2366, - [2536] = 2355, - [2537] = 2358, - [2538] = 2322, - [2539] = 2350, - [2540] = 2353, - [2541] = 2541, - [2542] = 2379, - [2543] = 2371, - [2544] = 2115, - [2545] = 2238, - [2546] = 2546, - [2547] = 2105, - [2548] = 2238, - [2549] = 2236, - [2550] = 2550, - [2551] = 2106, - [2552] = 2233, - [2553] = 2553, - [2554] = 2554, - [2555] = 2236, - [2556] = 2116, - [2557] = 2231, - [2558] = 2375, - [2559] = 2233, - [2560] = 2236, - [2561] = 2238, - [2562] = 2233, - [2563] = 2231, - [2564] = 2353, - [2565] = 2107, - [2566] = 2114, - [2567] = 2112, - [2568] = 2110, - [2569] = 2353, - [2570] = 2109, - [2571] = 2347, - [2572] = 2105, - [2573] = 2106, - [2574] = 2345, - [2575] = 2363, - [2576] = 2105, - [2577] = 2106, - [2578] = 2375, - [2579] = 2579, - [2580] = 2378, - [2581] = 2115, - [2582] = 2238, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2305, - [2587] = 2587, - [2588] = 2588, - [2589] = 1933, - [2590] = 2590, - [2591] = 2591, - [2592] = 2347, - [2593] = 2374, - [2594] = 2299, - [2595] = 2269, - [2596] = 2596, - [2597] = 2597, - [2598] = 2231, - [2599] = 2599, - [2600] = 2600, - [2601] = 2106, + [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] = 2603, - [2604] = 1912, - [2605] = 2605, - [2606] = 2606, - [2607] = 2607, - [2608] = 2608, - [2609] = 2112, - [2610] = 2610, - [2611] = 2339, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2616, + [2603] = 2429, + [2604] = 2302, + [2605] = 2418, + [2606] = 2294, + [2607] = 2298, + [2608] = 2299, + [2609] = 2423, + [2610] = 2420, + [2611] = 2611, + [2612] = 2447, + [2613] = 2433, + [2614] = 2445, + [2615] = 2424, + [2616] = 2421, [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2105, - [2625] = 2625, - [2626] = 2238, - [2627] = 2238, - [2628] = 2236, - [2629] = 2233, - [2630] = 2353, - [2631] = 2231, - [2632] = 2632, - [2633] = 1913, - [2634] = 2231, - [2635] = 2275, - [2636] = 2107, - [2637] = 2637, - [2638] = 2638, - [2639] = 2639, - [2640] = 2236, - [2641] = 2641, - [2642] = 2233, - [2643] = 2643, - [2644] = 2644, - [2645] = 2233, - [2646] = 2646, - [2647] = 2236, - [2648] = 2270, - [2649] = 2264, - [2650] = 2245, - [2651] = 2298, - [2652] = 2363, - [2653] = 2310, + [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, + [2648] = 2648, + [2649] = 2649, + [2650] = 2302, + [2651] = 2294, + [2652] = 2298, + [2653] = 2653, [2654] = 2654, [2655] = 2655, - [2656] = 2231, - [2657] = 1855, - [2658] = 2658, + [2656] = 2656, + [2657] = 2657, + [2658] = 2407, [2659] = 2659, - [2660] = 2233, - [2661] = 2353, - [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2236, + [2660] = 2660, + [2661] = 2661, + [2662] = 2302, + [2663] = 2412, + [2664] = 2413, + [2665] = 2440, [2666] = 2666, - [2667] = 2667, - [2668] = 2238, + [2667] = 2415, + [2668] = 2416, [2669] = 2669, - [2670] = 2670, - [2671] = 2110, - [2672] = 2672, - [2673] = 2024, - [2674] = 2674, - [2675] = 2675, - [2676] = 2236, - [2677] = 2381, - [2678] = 2278, - [2679] = 2679, - [2680] = 2370, - [2681] = 2233, - [2682] = 2534, + [2670] = 2182, + [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] = 1925, + [2684] = 2684, [2685] = 2685, - [2686] = 2686, - [2687] = 2231, - [2688] = 1917, - [2689] = 2298, - [2690] = 1923, - [2691] = 2691, + [2686] = 2294, + [2687] = 2425, + [2688] = 2688, + [2689] = 2689, + [2690] = 2690, + [2691] = 2302, [2692] = 2692, - [2693] = 2107, - [2694] = 2114, - [2695] = 1922, - [2696] = 2696, - [2697] = 1927, - [2698] = 2698, - [2699] = 1936, - [2700] = 2323, + [2693] = 2298, + [2694] = 2694, + [2695] = 2294, + [2696] = 2298, + [2697] = 2180, + [2698] = 2299, + [2699] = 1986, + [2700] = 1988, [2701] = 2701, - [2702] = 1857, - [2703] = 2238, - [2704] = 2704, - [2705] = 2705, - [2706] = 2706, + [2702] = 2414, + [2703] = 1980, + [2704] = 1991, + [2705] = 2000, + [2706] = 2336, [2707] = 2707, - [2708] = 1924, - [2709] = 1928, - [2710] = 1929, - [2711] = 2366, - [2712] = 2109, - [2713] = 1930, - [2714] = 2261, + [2708] = 2004, + [2709] = 2709, + [2710] = 2710, + [2711] = 2711, + [2712] = 2374, + [2713] = 2713, + [2714] = 2714, [2715] = 2715, - [2716] = 2716, + [2716] = 2299, [2717] = 2717, - [2718] = 2355, - [2719] = 1935, + [2718] = 2718, + [2719] = 2617, [2720] = 2720, - [2721] = 1937, - [2722] = 2722, - [2723] = 2723, - [2724] = 1938, - [2725] = 2114, - [2726] = 2112, - [2727] = 2258, + [2721] = 2421, + [2722] = 2181, + [2723] = 2183, + [2724] = 2182, + [2725] = 2180, + [2726] = 2177, + [2727] = 2727, [2728] = 2728, - [2729] = 2311, - [2730] = 2328, - [2731] = 1932, - [2732] = 2238, + [2729] = 2177, + [2730] = 2730, + [2731] = 2302, + [2732] = 2294, [2733] = 2733, - [2734] = 2346, - [2735] = 2236, - [2736] = 2371, - [2737] = 2233, - [2738] = 2358, - [2739] = 2739, - [2740] = 2740, + [2734] = 2734, + [2735] = 2298, + [2736] = 2299, + [2737] = 2318, + [2738] = 2738, + [2739] = 2302, + [2740] = 2294, [2741] = 2741, - [2742] = 2742, - [2743] = 2265, - [2744] = 1920, - [2745] = 2379, - [2746] = 2353, - [2747] = 2315, - [2748] = 1921, - [2749] = 2231, - [2750] = 2231, - [2751] = 2318, - [2752] = 2320, - [2753] = 2321, - [2754] = 2238, - [2755] = 2236, - [2756] = 2233, - [2757] = 2757, - [2758] = 2110, - [2759] = 2233, - [2760] = 2760, + [2742] = 2298, + [2743] = 2299, + [2744] = 2744, + [2745] = 2344, + [2746] = 2746, + [2747] = 2423, + [2748] = 2302, + [2749] = 2749, + [2750] = 2750, + [2751] = 2751, + [2752] = 2752, + [2753] = 2294, + [2754] = 2298, + [2755] = 2299, + [2756] = 2002, + [2757] = 2174, + [2758] = 1992, + [2759] = 2759, + [2760] = 1998, [2761] = 2761, - [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 2231, - [2766] = 2378, - [2767] = 1914, - [2768] = 2109, - [2769] = 2236, + [2762] = 2420, + [2763] = 2421, + [2764] = 2373, + [2765] = 2765, + [2766] = 2429, + [2767] = 2378, + [2768] = 2379, + [2769] = 2380, [2770] = 2770, - [2771] = 2350, + [2771] = 2419, [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2297, - [2776] = 2238, - [2777] = 2383, - [2778] = 2373, - [2779] = 2354, - [2780] = 2349, - [2781] = 2351, - [2782] = 2352, - [2783] = 2353, - [2784] = 2353, - [2785] = 2353, - [2786] = 2322, - [2787] = 2353, - [2788] = 2345, - [2789] = 2353, - [2790] = 2353, - [2791] = 2298, - [2792] = 2370, - [2793] = 2355, - [2794] = 2353, - [2795] = 2374, + [2773] = 2302, + [2774] = 2447, + [2775] = 2294, + [2776] = 2298, + [2777] = 2386, + [2778] = 2299, + [2779] = 1989, + [2780] = 1995, + [2781] = 2781, + [2782] = 2093, + [2783] = 2783, + [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] = 2353, - [2798] = 2353, - [2799] = 2353, - [2800] = 2352, - [2801] = 2298, - [2802] = 2353, - [2803] = 2373, - [2804] = 2353, - [2805] = 2381, - [2806] = 2353, - [2807] = 2353, - [2808] = 1857, - [2809] = 1855, - [2810] = 2347, - [2811] = 2371, + [2797] = 2797, + [2798] = 2798, + [2799] = 2446, + [2800] = 2317, + [2801] = 2340, + [2802] = 2341, + [2803] = 1997, + [2804] = 2315, + [2805] = 2805, + [2806] = 2806, + [2807] = 2421, + [2808] = 2433, + [2809] = 2809, + [2810] = 2183, + [2811] = 2811, [2812] = 2812, - [2813] = 2375, - [2814] = 2379, - [2815] = 2115, + [2813] = 2813, + [2814] = 2814, + [2815] = 2815, [2816] = 2816, [2817] = 2817, [2818] = 2818, - [2819] = 2350, - [2820] = 2820, + [2819] = 2381, + [2820] = 1928, [2821] = 2821, - [2822] = 2534, + [2822] = 2343, [2823] = 2823, - [2824] = 2116, - [2825] = 2366, - [2826] = 2106, - [2827] = 2827, - [2828] = 2105, + [2824] = 2824, + [2825] = 2825, + [2826] = 2826, + [2827] = 2445, + [2828] = 2828, [2829] = 2829, - [2830] = 2358, - [2831] = 2318, + [2830] = 2830, + [2831] = 2831, [2832] = 2832, - [2833] = 2820, - [2834] = 2105, - [2835] = 2116, - [2836] = 2816, - [2837] = 2299, - [2838] = 2296, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 2838, [2839] = 2839, - [2840] = 2305, - [2841] = 2310, - [2842] = 2311, + [2840] = 2424, + [2841] = 2841, + [2842] = 1927, [2843] = 2843, - [2844] = 2339, + [2844] = 2844, [2845] = 2845, - [2846] = 2106, + [2846] = 2846, [2847] = 2847, - [2848] = 2245, - [2849] = 2328, - [2850] = 2270, - [2851] = 2297, + [2848] = 2848, + [2849] = 2175, + [2850] = 2422, + [2851] = 2428, [2852] = 2852, - [2853] = 2278, - [2854] = 2269, - [2855] = 2109, - [2856] = 2323, - [2857] = 2265, - [2858] = 2821, - [2859] = 2264, - [2860] = 2860, - [2861] = 2816, - [2862] = 2261, - [2863] = 2258, - [2864] = 2110, - [2865] = 2827, - [2866] = 2321, - [2867] = 2320, - [2868] = 2114, - [2869] = 2112, - [2870] = 2275, - [2871] = 2315, - [2872] = 2872, - [2873] = 2107, - [2874] = 2115, + [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, + [2867] = 2867, + [2868] = 2421, + [2869] = 2421, + [2870] = 2421, + [2871] = 2440, + [2872] = 2450, + [2873] = 2428, + [2874] = 2874, [2875] = 2875, [2876] = 2876, - [2877] = 2877, - [2878] = 2305, - [2879] = 2311, + [2877] = 2421, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2245, - [2884] = 2884, - [2885] = 2885, - [2886] = 2886, - [2887] = 2887, - [2888] = 2888, - [2889] = 2315, - [2890] = 2275, + [2881] = 2421, + [2882] = 1927, + [2883] = 2425, + [2884] = 2421, + [2885] = 2421, + [2886] = 2442, + [2887] = 2421, + [2888] = 2421, + [2889] = 2421, + [2890] = 2421, [2891] = 2891, - [2892] = 2892, - [2893] = 2893, - [2894] = 2318, + [2892] = 1928, + [2893] = 2445, + [2894] = 2374, [2895] = 2895, [2896] = 2896, [2897] = 2897, - [2898] = 2898, - [2899] = 2899, - [2900] = 2320, - [2901] = 2901, - [2902] = 2339, - [2903] = 2112, - [2904] = 2904, - [2905] = 2321, + [2898] = 2418, + [2899] = 2447, + [2900] = 2184, + [2901] = 2185, + [2902] = 2433, + [2903] = 2174, + [2904] = 2175, + [2905] = 2905, [2906] = 2906, [2907] = 2907, [2908] = 2908, [2909] = 2909, [2910] = 2910, [2911] = 2911, - [2912] = 2912, - [2913] = 2310, - [2914] = 2914, + [2912] = 2424, + [2913] = 2423, + [2914] = 2420, [2915] = 2915, - [2916] = 2916, - [2917] = 2917, - [2918] = 2918, - [2919] = 2110, - [2920] = 2920, - [2921] = 2921, - [2922] = 2922, - [2923] = 2107, - [2924] = 2924, - [2925] = 2925, - [2926] = 2926, - [2927] = 2927, + [2916] = 2429, + [2917] = 2617, + [2918] = 2177, + [2919] = 2919, + [2920] = 2185, + [2921] = 2373, + [2922] = 2317, + [2923] = 2359, + [2924] = 2340, + [2925] = 2341, + [2926] = 2386, + [2927] = 2315, [2928] = 2928, - [2929] = 2929, - [2930] = 2328, - [2931] = 2931, - [2932] = 2258, - [2933] = 2933, + [2929] = 2181, + [2930] = 2183, + [2931] = 2182, + [2932] = 2180, + [2933] = 2915, [2934] = 2934, - [2935] = 1855, - [2936] = 2936, - [2937] = 1857, - [2938] = 1835, - [2939] = 2278, - [2940] = 2264, + [2935] = 2347, + [2936] = 2381, + [2937] = 2378, + [2938] = 2859, + [2939] = 2343, + [2940] = 2407, [2941] = 2941, - [2942] = 2261, - [2943] = 2943, - [2944] = 2944, - [2945] = 2945, - [2946] = 2114, - [2947] = 2299, - [2948] = 2948, - [2949] = 2949, - [2950] = 2950, - [2951] = 2265, - [2952] = 2952, - [2953] = 2270, - [2954] = 2269, - [2955] = 2297, + [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, [2956] = 2956, - [2957] = 2957, - [2958] = 2816, + [2957] = 2318, + [2958] = 2184, [2959] = 2959, - [2960] = 2960, - [2961] = 2961, + [2960] = 2344, + [2961] = 2379, [2962] = 2962, - [2963] = 2963, - [2964] = 2964, - [2965] = 2965, - [2966] = 2323, + [2963] = 2340, + [2964] = 2183, + [2965] = 2336, + [2966] = 2966, [2967] = 2967, - [2968] = 2968, - [2969] = 2109, + [2968] = 2341, + [2969] = 2318, [2970] = 2970, [2971] = 2971, [2972] = 2972, [2973] = 2973, - [2974] = 2024, + [2974] = 2974, [2975] = 2975, - [2976] = 2976, + [2976] = 2413, [2977] = 2977, - [2978] = 2912, - [2979] = 2948, - [2980] = 2886, - [2981] = 2967, - [2982] = 2907, - [2983] = 2891, - [2984] = 2899, - [2985] = 2944, - [2986] = 2941, - [2987] = 2921, - [2988] = 2920, - [2989] = 2895, - [2990] = 2914, - [2991] = 2952, - [2992] = 2964, - [2993] = 2906, - [2994] = 2943, - [2995] = 2922, - [2996] = 2898, - [2997] = 2975, - [2998] = 2887, - [2999] = 2876, - [3000] = 2909, - [3001] = 2816, - [3002] = 2963, - [3003] = 2962, - [3004] = 2918, - [3005] = 2908, - [3006] = 2892, + [2978] = 2978, + [2979] = 2979, + [2980] = 2980, + [2981] = 2981, + [2982] = 2982, + [2983] = 2983, + [2984] = 2182, + [2985] = 2181, + [2986] = 2911, + [2987] = 2987, + [2988] = 2988, + [2989] = 2386, + [2990] = 2990, + [2991] = 2315, + [2992] = 2378, + [2993] = 2993, + [2994] = 2994, + [2995] = 2995, + [2996] = 2996, + [2997] = 2180, + [2998] = 2998, + [2999] = 2999, + [3000] = 3000, + [3001] = 3001, + [3002] = 2177, + [3003] = 3003, + [3004] = 1901, + [3005] = 3005, + [3006] = 3006, [3007] = 3007, - [3008] = 2910, - [3009] = 2904, - [3010] = 2945, - [3011] = 2884, - [3012] = 2927, - [3013] = 2816, - [3014] = 2363, - [3015] = 2816, - [3016] = 2877, - [3017] = 2957, - [3018] = 2915, - [3019] = 2961, - [3020] = 2925, - [3021] = 2897, - [3022] = 2971, - [3023] = 3023, - [3024] = 2968, - [3025] = 2378, - [3026] = 3026, + [3008] = 2416, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 2379, + [3013] = 2415, + [3014] = 3014, + [3015] = 3015, + [3016] = 3016, + [3017] = 1928, + [3018] = 2093, + [3019] = 3019, + [3020] = 3020, + [3021] = 1927, + [3022] = 3022, + [3023] = 2911, + [3024] = 3024, + [3025] = 3025, + [3026] = 2381, [3027] = 3027, - [3028] = 1835, - [3029] = 2880, - [3030] = 2534, + [3028] = 2411, + [3029] = 2373, + [3030] = 3030, [3031] = 3031, - [3032] = 2881, - [3033] = 2929, + [3032] = 3032, + [3033] = 3033, [3034] = 3034, - [3035] = 2885, - [3036] = 3036, - [3037] = 2816, - [3038] = 2024, - [3039] = 2534, + [3035] = 3035, + [3036] = 2407, + [3037] = 3037, + [3038] = 2343, + [3039] = 3039, [3040] = 3040, [3041] = 3041, - [3042] = 2816, - [3043] = 3043, - [3044] = 2796, + [3042] = 2412, + [3043] = 2317, + [3044] = 3044, [3045] = 3045, - [3046] = 2296, + [3046] = 3046, [3047] = 3047, - [3048] = 2381, + [3048] = 3048, [3049] = 3049, [3050] = 3050, [3051] = 3051, - [3052] = 2105, - [3053] = 2115, - [3054] = 2115, - [3055] = 2816, - [3056] = 2106, - [3057] = 2534, - [3058] = 2116, - [3059] = 2816, - [3060] = 2829, - [3061] = 2816, - [3062] = 2821, - [3063] = 2872, - [3064] = 2796, - [3065] = 2817, - [3066] = 3050, - [3067] = 2820, - [3068] = 2812, - [3069] = 2827, - [3070] = 2875, - [3071] = 2110, - [3072] = 2305, - [3073] = 2299, - [3074] = 2832, - [3075] = 2106, - [3076] = 2105, - [3077] = 2310, - [3078] = 2245, - [3079] = 2112, - [3080] = 2328, - [3081] = 2114, - [3082] = 2270, - [3083] = 2297, - [3084] = 2258, - [3085] = 2269, - [3086] = 2261, - [3087] = 2265, - [3088] = 2264, - [3089] = 2109, - [3090] = 2347, - [3091] = 2323, - [3092] = 2363, - [3093] = 2339, - [3094] = 2278, - [3095] = 2311, - [3096] = 2378, - [3097] = 2534, - [3098] = 2110, - [3099] = 2321, - [3100] = 2845, - [3101] = 2320, - [3102] = 2296, - [3103] = 2318, - [3104] = 2275, - [3105] = 2107, - [3106] = 2816, - [3107] = 2875, - [3108] = 2315, - [3109] = 2106, - [3110] = 2105, - [3111] = 2366, - [3112] = 2355, - [3113] = 2827, - [3114] = 2024, - [3115] = 2832, - [3116] = 2116, - [3117] = 2817, - [3118] = 2821, - [3119] = 2812, - [3120] = 2109, - [3121] = 2381, - [3122] = 2358, - [3123] = 2106, - [3124] = 2843, - [3125] = 2105, - [3126] = 2375, - [3127] = 2374, - [3128] = 2852, - [3129] = 2820, - [3130] = 2371, - [3131] = 2816, - [3132] = 2379, - [3133] = 2852, - [3134] = 2370, - [3135] = 2350, - [3136] = 2860, - [3137] = 2845, - [3138] = 2107, - [3139] = 2816, - [3140] = 2114, - [3141] = 2115, - [3142] = 2829, - [3143] = 2860, - [3144] = 2112, - [3145] = 2916, - [3146] = 2929, - [3147] = 2275, - [3148] = 2318, - [3149] = 2320, - [3150] = 2321, - [3151] = 2872, - [3152] = 2949, - [3153] = 2296, - [3154] = 2816, - [3155] = 2816, - [3156] = 3156, - [3157] = 2264, - [3158] = 2265, - [3159] = 2269, - [3160] = 2297, - [3161] = 2270, - [3162] = 2816, - [3163] = 2816, - [3164] = 2950, - [3165] = 2976, - [3166] = 2896, - [3167] = 2328, - [3168] = 2888, - [3169] = 2245, - [3170] = 2886, - [3171] = 2310, - [3172] = 3172, - [3173] = 2315, - [3174] = 3174, - [3175] = 2931, - [3176] = 2936, - [3177] = 2843, - [3178] = 2965, - [3179] = 2959, - [3180] = 2911, - [3181] = 3181, - [3182] = 3172, - [3183] = 3181, - [3184] = 3184, - [3185] = 2928, - [3186] = 2933, - [3187] = 2934, - [3188] = 2956, - [3189] = 2971, - [3190] = 2967, - [3191] = 2973, - [3192] = 2964, - [3193] = 2882, - [3194] = 2961, - [3195] = 3195, - [3196] = 3196, - [3197] = 3197, - [3198] = 2299, - [3199] = 2305, - [3200] = 2311, - [3201] = 2339, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 2957, - [3206] = 3206, - [3207] = 2109, - [3208] = 2110, - [3209] = 2112, - [3210] = 3210, - [3211] = 2278, - [3212] = 2323, - [3213] = 3213, - [3214] = 3214, - [3215] = 1857, - [3216] = 2876, - [3217] = 2261, - [3218] = 2258, - [3219] = 1855, - [3220] = 2114, - [3221] = 2943, - [3222] = 2107, - [3223] = 2925, - [3224] = 3224, - [3225] = 2922, - [3226] = 2921, - [3227] = 2920, - [3228] = 2918, - [3229] = 2915, - [3230] = 2912, - [3231] = 3231, - [3232] = 3232, - [3233] = 2910, + [3052] = 3052, + [3053] = 3053, + [3054] = 2347, + [3055] = 3055, + [3056] = 3056, + [3057] = 3057, + [3058] = 2380, + [3059] = 2344, + [3060] = 3060, + [3061] = 3061, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 3065, + [3066] = 3066, + [3067] = 3067, + [3068] = 3010, + [3069] = 2617, + [3070] = 3001, + [3071] = 3053, + [3072] = 2419, + [3073] = 3051, + [3074] = 3065, + [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, + [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] = 2909, + [3235] = 2988, [3236] = 3236, - [3237] = 3237, - [3238] = 2899, - [3239] = 2895, - [3240] = 2893, - [3241] = 2887, - [3242] = 3242, - [3243] = 3243, - [3244] = 2952, - [3245] = 2975, - [3246] = 1835, - [3247] = 3247, - [3248] = 3248, - [3249] = 2877, + [3237] = 2999, + [3238] = 3019, + [3239] = 3025, + [3240] = 1901, + [3241] = 3031, + [3242] = 3033, + [3243] = 3063, + [3244] = 3032, + [3245] = 3245, + [3246] = 2181, + [3247] = 2183, + [3248] = 1928, + [3249] = 1927, [3250] = 3250, - [3251] = 2972, - [3252] = 2908, - [3253] = 2968, - [3254] = 2945, - [3255] = 2885, - [3256] = 2963, - [3257] = 2962, - [3258] = 2948, - [3259] = 2927, - [3260] = 2893, - [3261] = 2941, - [3262] = 2914, - [3263] = 2907, - [3264] = 2906, - [3265] = 2898, - [3266] = 2904, - [3267] = 2892, - [3268] = 2891, + [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] = 3270, - [3271] = 2881, - [3272] = 2880, - [3273] = 2897, - [3274] = 2884, - [3275] = 2917, - [3276] = 2916, - [3277] = 2944, - [3278] = 3278, - [3279] = 2915, - [3280] = 2887, - [3281] = 2880, - [3282] = 2897, - [3283] = 3248, - [3284] = 3242, - [3285] = 3197, - [3286] = 3202, - [3287] = 3287, - [3288] = 3288, - [3289] = 3289, - [3290] = 3290, - [3291] = 3237, - [3292] = 3234, - [3293] = 3232, - [3294] = 3231, + [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] = 2096, - [3297] = 1835, - [3298] = 3298, - [3299] = 2534, + [3296] = 2336, + [3297] = 2411, + [3298] = 2318, + [3299] = 3299, [3300] = 3300, - [3301] = 3287, - [3302] = 2816, - [3303] = 3243, - [3304] = 3224, - [3305] = 3298, - [3306] = 3203, - [3307] = 3298, - [3308] = 2816, - [3309] = 2816, - [3310] = 2816, - [3311] = 2928, - [3312] = 3287, - [3313] = 2796, - [3314] = 3247, - [3315] = 3295, - [3316] = 3278, - [3317] = 3287, - [3318] = 2941, - [3319] = 2534, - [3320] = 2816, - [3321] = 2944, - [3322] = 2816, - [3323] = 2931, - [3324] = 2882, - [3325] = 2933, - [3326] = 3289, - [3327] = 2973, - [3328] = 3287, - [3329] = 3289, - [3330] = 3298, - [3331] = 2936, - [3332] = 3289, - [3333] = 2934, - [3334] = 3236, - [3335] = 3204, - [3336] = 3295, - [3337] = 2971, - [3338] = 3270, - [3339] = 2967, - [3340] = 3206, - [3341] = 3250, - [3342] = 2929, - [3343] = 1855, - [3344] = 1857, - [3345] = 3289, - [3346] = 2914, - [3347] = 2884, - [3348] = 2964, - [3349] = 2872, - [3350] = 2961, - [3351] = 2917, - [3352] = 2957, - [3353] = 2876, - [3354] = 3214, - [3355] = 3298, - [3356] = 2965, - [3357] = 2943, - [3358] = 3300, - [3359] = 3295, - [3360] = 2896, - [3361] = 3195, - [3362] = 2959, + [3301] = 2344, + [3302] = 2982, + [3303] = 3062, + [3304] = 2993, + [3305] = 3007, + [3306] = 2962, + [3307] = 3022, + [3308] = 3308, + [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, + [3337] = 3337, + [3338] = 3338, + [3339] = 2987, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3024, + [3345] = 3345, + [3346] = 3346, + [3347] = 2911, + [3348] = 3010, + [3349] = 3349, + [3350] = 3350, + [3351] = 3048, + [3352] = 3016, + [3353] = 3300, + [3354] = 3027, + [3355] = 3355, + [3356] = 2956, + [3357] = 3357, + [3358] = 3358, + [3359] = 3294, + [3360] = 2962, + [3361] = 3357, + [3362] = 3006, [3363] = 3363, - [3364] = 3300, - [3365] = 3298, - [3366] = 2816, - [3367] = 2911, - [3368] = 2888, - [3369] = 3295, - [3370] = 2816, - [3371] = 2972, - [3372] = 2816, - [3373] = 2909, - [3374] = 2378, - [3375] = 2925, - [3376] = 3184, - [3377] = 3269, - [3378] = 3289, - [3379] = 3379, - [3380] = 2922, - [3381] = 3289, - [3382] = 2921, - [3383] = 2920, - [3384] = 2918, - [3385] = 3289, - [3386] = 2363, - [3387] = 3287, - [3388] = 3213, - [3389] = 2912, - [3390] = 2910, - [3391] = 2898, - [3392] = 2816, - [3393] = 2907, - [3394] = 2908, - [3395] = 2968, - [3396] = 2956, - [3397] = 3295, - [3398] = 2927, - [3399] = 3300, - [3400] = 2024, - [3401] = 2906, - [3402] = 2945, - [3403] = 2885, - [3404] = 3295, - [3405] = 3196, - [3406] = 3406, - [3407] = 3298, - [3408] = 3300, - [3409] = 3298, - [3410] = 2904, - [3411] = 2899, - [3412] = 2892, - [3413] = 3300, - [3414] = 2895, - [3415] = 3300, - [3416] = 2886, - [3417] = 2847, - [3418] = 2881, - [3419] = 2952, - [3420] = 2891, - [3421] = 2948, - [3422] = 2975, - [3423] = 2096, - [3424] = 3295, - [3425] = 2877, - [3426] = 2963, - [3427] = 2962, - [3428] = 3300, - [3429] = 2829, - [3430] = 2847, - [3431] = 1903, - [3432] = 2816, - [3433] = 3433, - [3434] = 2816, - [3435] = 2816, - [3436] = 3436, - [3437] = 3437, - [3438] = 2816, - [3439] = 2816, - [3440] = 3440, - [3441] = 2812, - [3442] = 2816, - [3443] = 3443, - [3444] = 2097, - [3445] = 1905, - [3446] = 3027, - [3447] = 3447, - [3448] = 1855, - [3449] = 1857, - [3450] = 3450, - [3451] = 2796, - [3452] = 3452, - [3453] = 2378, - [3454] = 2363, - [3455] = 2817, - [3456] = 2816, - [3457] = 2816, - [3458] = 1890, + [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] = 3460, - [3461] = 2816, - [3462] = 3462, - [3463] = 3050, - [3464] = 3462, - [3465] = 2977, - [3466] = 3462, - [3467] = 2812, - [3468] = 3468, - [3469] = 3469, - [3470] = 3469, - [3471] = 3462, - [3472] = 3472, - [3473] = 2827, - [3474] = 3474, - [3475] = 3469, - [3476] = 3476, - [3477] = 3450, - [3478] = 3462, - [3479] = 3450, - [3480] = 3450, - [3481] = 3050, - [3482] = 3023, - [3483] = 3462, - [3484] = 3462, - [3485] = 3462, - [3486] = 2820, - [3487] = 3462, - [3488] = 3462, + [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, + [3474] = 3343, + [3475] = 3475, + [3476] = 3372, + [3477] = 3308, + [3478] = 3478, + [3479] = 3345, + [3480] = 3309, + [3481] = 3318, + [3482] = 3366, + [3483] = 3370, + [3484] = 2956, + [3485] = 3022, + [3486] = 3295, + [3487] = 3035, + [3488] = 3377, [3489] = 3489, - [3490] = 3490, - [3491] = 3462, - [3492] = 3462, - [3493] = 3462, - [3494] = 2816, - [3495] = 3469, - [3496] = 3496, - [3497] = 3497, - [3498] = 3469, - [3499] = 3450, - [3500] = 2829, - [3501] = 3501, - [3502] = 3462, - [3503] = 3469, - [3504] = 3504, - [3505] = 3505, - [3506] = 3450, - [3507] = 3462, - [3508] = 3508, - [3509] = 3509, - [3510] = 2872, + [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] = 2816, - [3513] = 3469, - [3514] = 3514, - [3515] = 3515, - [3516] = 3469, - [3517] = 3462, - [3518] = 3469, - [3519] = 3007, - [3520] = 2817, - [3521] = 2816, - [3522] = 2821, - [3523] = 3523, - [3524] = 3524, - [3525] = 3469, - [3526] = 3462, - [3527] = 3450, - [3528] = 3528, - [3529] = 3469, - [3530] = 3462, - [3531] = 3026, - [3532] = 3469, - [3533] = 3462, - [3534] = 3469, - [3535] = 3535, - [3536] = 3536, - [3537] = 3462, - [3538] = 3031, - [3539] = 3509, - [3540] = 3462, - [3541] = 3462, - [3542] = 3462, - [3543] = 3543, - [3544] = 3050, - [3545] = 3462, - [3546] = 3546, - [3547] = 2816, - [3548] = 3462, - [3549] = 3027, - [3550] = 3469, - [3551] = 3462, - [3552] = 3462, - [3553] = 3050, - [3554] = 2843, - [3555] = 3501, - [3556] = 3474, - [3557] = 3536, - [3558] = 2106, - [3559] = 3236, - [3560] = 2875, - [3561] = 3561, - [3562] = 3562, - [3563] = 3563, - [3564] = 3515, + [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, + [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, [3565] = 3565, - [3566] = 2816, - [3567] = 3567, + [3566] = 3566, + [3567] = 2908, [3568] = 3568, - [3569] = 3497, - [3570] = 3489, - [3571] = 2832, - [3572] = 3490, - [3573] = 3501, - [3574] = 3504, - [3575] = 3505, - [3576] = 3496, - [3577] = 3546, - [3578] = 3535, - [3579] = 3476, - [3580] = 2845, - [3581] = 2816, - [3582] = 2977, - [3583] = 3528, - [3584] = 3023, - [3585] = 3524, - [3586] = 3523, - [3587] = 2860, - [3588] = 3508, - [3589] = 2105, - [3590] = 3543, - [3591] = 3505, - [3592] = 3504, - [3593] = 3474, - [3594] = 3472, - [3595] = 2816, - [3596] = 3490, - [3597] = 3031, - [3598] = 3026, - [3599] = 3599, - [3600] = 3514, - [3601] = 3601, - [3602] = 3602, - [3603] = 3603, - [3604] = 3523, - [3605] = 3524, - [3606] = 3515, - [3607] = 3528, - [3608] = 3497, - [3609] = 3535, - [3610] = 3514, - [3611] = 2816, - [3612] = 3511, - [3613] = 3543, - [3614] = 2852, - [3615] = 3508, - [3616] = 3049, - [3617] = 3546, - [3618] = 3496, - [3619] = 3536, - [3620] = 2816, - [3621] = 3007, - [3622] = 3047, - [3623] = 3489, - [3624] = 2816, - [3625] = 3511, - [3626] = 2971, - [3627] = 2906, - [3628] = 3628, + [3569] = 3565, + [3570] = 3565, + [3571] = 3571, + [3572] = 3137, + [3573] = 3565, + [3574] = 2956, + [3575] = 3575, + [3576] = 3551, + [3577] = 3577, + [3578] = 3551, + [3579] = 2909, + [3580] = 2990, + [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, + [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, + [3626] = 3626, + [3627] = 3137, + [3628] = 3551, [3629] = 3629, - [3630] = 3629, - [3631] = 3213, - [3632] = 3629, - [3633] = 3629, - [3634] = 3184, - [3635] = 2934, - [3636] = 3174, - [3637] = 2933, - [3638] = 3049, - [3639] = 3181, - [3640] = 2928, - [3641] = 3641, - [3642] = 2097, - [3643] = 2908, - [3644] = 2896, - [3645] = 3561, - [3646] = 2927, - [3647] = 3647, - [3648] = 3629, - [3649] = 2888, - [3650] = 3047, - [3651] = 2097, - [3652] = 3629, - [3653] = 3629, - [3654] = 2907, - [3655] = 3655, - [3656] = 3202, - [3657] = 3181, - [3658] = 3658, - [3659] = 3629, - [3660] = 3497, - [3661] = 1857, - [3662] = 3501, - [3663] = 3472, - [3664] = 3504, - [3665] = 3505, - [3666] = 2916, - [3667] = 3641, - [3668] = 2917, - [3669] = 3629, - [3670] = 2968, - [3671] = 3671, - [3672] = 2948, - [3673] = 2945, - [3674] = 3629, - [3675] = 3629, - [3676] = 2898, - [3677] = 2893, - [3678] = 3250, - [3679] = 3195, - [3680] = 3213, - [3681] = 3629, - [3682] = 3196, - [3683] = 2885, - [3684] = 2884, - [3685] = 3197, - [3686] = 3629, - [3687] = 2963, - [3688] = 3515, - [3689] = 3689, - [3690] = 2929, - [3691] = 3691, - [3692] = 3514, - [3693] = 3629, - [3694] = 2877, - [3695] = 3511, - [3696] = 3508, - [3697] = 3543, - [3698] = 3671, - [3699] = 2975, - [3700] = 3629, - [3701] = 2956, - [3702] = 3629, - [3703] = 3703, - [3704] = 2952, - [3705] = 2973, - [3706] = 3629, - [3707] = 3629, - [3708] = 2882, - [3709] = 2886, - [3710] = 1835, - [3711] = 3203, - [3712] = 2887, - [3713] = 3523, - [3714] = 3524, - [3715] = 3528, - [3716] = 3535, - [3717] = 3546, - [3718] = 3718, - [3719] = 3496, - [3720] = 3629, - [3721] = 2944, - [3722] = 3489, - [3723] = 2895, - [3724] = 3204, - [3725] = 2899, - [3726] = 3270, - [3727] = 3671, - [3728] = 3206, - [3729] = 3269, - [3730] = 3629, - [3731] = 3562, - [3732] = 3563, - [3733] = 3234, - [3734] = 3734, - [3735] = 3641, - [3736] = 2931, - [3737] = 3474, - [3738] = 3629, - [3739] = 3629, - [3740] = 3671, - [3741] = 3629, - [3742] = 2936, - [3743] = 2941, - [3744] = 3181, - [3745] = 2949, - [3746] = 3629, - [3747] = 3671, - [3748] = 3629, - [3749] = 3565, - [3750] = 3568, - [3751] = 3536, - [3752] = 2909, - [3753] = 3629, - [3754] = 3629, - [3755] = 3671, - [3756] = 2965, - [3757] = 3243, - [3758] = 3248, - [3759] = 2959, - [3760] = 2972, + [3630] = 3525, + [3631] = 3631, + [3632] = 2911, + [3633] = 3551, + [3634] = 3611, + [3635] = 3565, + [3636] = 3636, + [3637] = 2911, + [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, + [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, + [3690] = 3690, + [3691] = 2175, + [3692] = 3604, + [3693] = 3577, + [3694] = 3694, + [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] = 2910, - [3763] = 3629, - [3764] = 1855, - [3765] = 2912, - [3766] = 3247, - [3767] = 3242, - [3768] = 2296, - [3769] = 3629, - [3770] = 2915, - [3771] = 2918, - [3772] = 2920, - [3773] = 2962, - [3774] = 2922, - [3775] = 3629, - [3776] = 3214, - [3777] = 3278, - [3778] = 2925, - [3779] = 2914, - [3780] = 3224, - [3781] = 3231, - [3782] = 3629, - [3783] = 3232, - [3784] = 3629, - [3785] = 3629, - [3786] = 3629, - [3787] = 2911, - [3788] = 3237, - [3789] = 3629, - [3790] = 3790, - [3791] = 2904, - [3792] = 3181, - [3793] = 3629, - [3794] = 2943, - [3795] = 2897, - [3796] = 3476, - [3797] = 2950, - [3798] = 2921, - [3799] = 2976, - [3800] = 3671, - [3801] = 3629, - [3802] = 3671, - [3803] = 2880, - [3804] = 2876, - [3805] = 2881, - [3806] = 2957, - [3807] = 2967, - [3808] = 2961, - [3809] = 3641, - [3810] = 2892, - [3811] = 2964, - [3812] = 3629, - [3813] = 3629, - [3814] = 2891, - [3815] = 3629, - [3816] = 3504, - [3817] = 3817, - [3818] = 3818, - [3819] = 3818, - [3820] = 3820, - [3821] = 3514, - [3822] = 3476, - [3823] = 3817, - [3824] = 3817, - [3825] = 3817, - [3826] = 3818, - [3827] = 3818, - [3828] = 3828, - [3829] = 3829, - [3830] = 3818, - [3831] = 3831, - [3832] = 3474, - [3833] = 3818, - [3834] = 3834, - [3835] = 3835, - [3836] = 3829, - [3837] = 3818, - [3838] = 3817, - [3839] = 3818, - [3840] = 3840, - [3841] = 3817, - [3842] = 3543, - [3843] = 3511, - [3844] = 3514, - [3845] = 3472, - [3846] = 3817, - [3847] = 3847, - [3848] = 3515, - [3849] = 3818, - [3850] = 3536, - [3851] = 3818, - [3852] = 3523, - [3853] = 3820, - [3854] = 3524, - [3855] = 3818, - [3856] = 3818, - [3857] = 3515, - [3858] = 3817, - [3859] = 3476, - [3860] = 3511, - [3861] = 3861, - [3862] = 3536, - [3863] = 3515, - [3864] = 3864, - [3865] = 3818, - [3866] = 3818, - [3867] = 3818, - [3868] = 3817, - [3869] = 3835, - [3870] = 3817, - [3871] = 3817, - [3872] = 3872, - [3873] = 3818, - [3874] = 3505, - [3875] = 3504, - [3876] = 3501, - [3877] = 3523, - [3878] = 3524, - [3879] = 3528, - [3880] = 3528, - [3881] = 3535, - [3882] = 3818, - [3883] = 3497, - [3884] = 3834, - [3885] = 3568, - [3886] = 3546, - [3887] = 3535, - [3888] = 3546, - [3889] = 3496, - [3890] = 3565, - [3891] = 3831, - [3892] = 3213, - [3893] = 3817, - [3894] = 3489, - [3895] = 3835, - [3896] = 3817, - [3897] = 3817, - [3898] = 3818, - [3899] = 3818, - [3900] = 3818, - [3901] = 3820, - [3902] = 3496, - [3903] = 3489, - [3904] = 3474, - [3905] = 3561, - [3906] = 3840, - [3907] = 2796, - [3908] = 3861, - [3909] = 3818, - [3910] = 3536, - [3911] = 3828, - [3912] = 3817, - [3913] = 3703, - [3914] = 3818, - [3915] = 3508, - [3916] = 3543, - [3917] = 3835, - [3918] = 3514, - [3919] = 3817, - [3920] = 3840, - [3921] = 3818, - [3922] = 3511, - [3923] = 3818, - [3924] = 3861, - [3925] = 3818, - [3926] = 3834, - [3927] = 3927, - [3928] = 3818, - [3929] = 3817, - [3930] = 3472, - [3931] = 3489, - [3932] = 2097, - [3933] = 3831, - [3934] = 3496, - [3935] = 3546, - [3936] = 2872, - [3937] = 3829, - [3938] = 3508, - [3939] = 3474, - [3940] = 3818, - [3941] = 3818, - [3942] = 3818, - [3943] = 3818, - [3944] = 3213, - [3945] = 3508, - [3946] = 3835, - [3947] = 3831, - [3948] = 3829, - [3949] = 3628, - [3950] = 2116, - [3951] = 3535, - [3952] = 3818, - [3953] = 3543, - [3954] = 3818, - [3955] = 3703, - [3956] = 3497, - [3957] = 3817, - [3958] = 3835, - [3959] = 3528, - [3960] = 3628, - [3961] = 3524, - [3962] = 3962, - [3963] = 3820, - [3964] = 3523, - [3965] = 3817, - [3966] = 3501, - [3967] = 2115, - [3968] = 3818, - [3969] = 3490, - [3970] = 3847, - [3971] = 3847, - [3972] = 3818, - [3973] = 3504, - [3974] = 3505, - [3975] = 3818, - [3976] = 3818, - [3977] = 3831, - [3978] = 3829, - [3979] = 3817, - [3980] = 3828, - [3981] = 3817, - [3982] = 3505, - [3983] = 3817, - [3984] = 3817, - [3985] = 3501, - [3986] = 3497, - [3987] = 3820, - [3988] = 3817, - [3989] = 3562, - [3990] = 3818, - [3991] = 3818, - [3992] = 3817, - [3993] = 3818, - [3994] = 3818, - [3995] = 3563, - [3996] = 3817, - [3997] = 3496, - [3998] = 2812, - [3999] = 2107, - [4000] = 3505, - [4001] = 3561, - [4002] = 2817, - [4003] = 3504, - [4004] = 3563, - [4005] = 3501, - [4006] = 3497, - [4007] = 2112, - [4008] = 2829, - [4009] = 3236, - [4010] = 3489, - [4011] = 3515, - [4012] = 3546, - [4013] = 3535, - [4014] = 2296, - [4015] = 2315, - [4016] = 3528, - [4017] = 3523, - [4018] = 3524, - [4019] = 2097, - [4020] = 3561, - [4021] = 3508, - [4022] = 3562, - [4023] = 3490, - [4024] = 3563, - [4025] = 3514, - [4026] = 3543, - [4027] = 3565, - [4028] = 2114, - [4029] = 2378, - [4030] = 2363, - [4031] = 3568, - [4032] = 2110, - [4033] = 3536, - [4034] = 3568, - [4035] = 3474, - [4036] = 2299, - [4037] = 3565, - [4038] = 3562, - [4039] = 2109, - [4040] = 3511, - [4041] = 3248, - [4042] = 3204, - [4043] = 3472, - [4044] = 3213, - [4045] = 3247, - [4046] = 3250, - [4047] = 3206, - [4048] = 3703, - [4049] = 3501, - [4050] = 3504, - [4051] = 3234, - [4052] = 3505, - [4053] = 3203, - [4054] = 3202, - [4055] = 3237, - [4056] = 3515, - [4057] = 3197, - [4058] = 3196, - [4059] = 3231, - [4060] = 3523, - [4061] = 3514, - [4062] = 3511, - [4063] = 3195, - [4064] = 3508, - [4065] = 3232, - [4066] = 4066, - [4067] = 3270, - [4068] = 3524, - [4069] = 3269, - [4070] = 3543, - [4071] = 3528, - [4072] = 3242, - [4073] = 3213, - [4074] = 2097, - [4075] = 3224, - [4076] = 3497, - [4077] = 3535, - [4078] = 3546, - [4079] = 3496, - [4080] = 3278, - [4081] = 2097, - [4082] = 3476, - [4083] = 3536, - [4084] = 2305, - [4085] = 3214, - [4086] = 3184, - [4087] = 3243, - [4088] = 3628, - [4089] = 3489, - [4090] = 3474, - [4091] = 3511, - [4092] = 3543, - [4093] = 3511, - [4094] = 3514, - [4095] = 3515, - [4096] = 3515, - [4097] = 3524, - [4098] = 3508, - [4099] = 3508, - [4100] = 3536, - [4101] = 3528, - [4102] = 3501, - [4103] = 4103, - [4104] = 3497, - [4105] = 3213, - [4106] = 3270, - [4107] = 3508, - [4108] = 3269, - [4109] = 3543, - [4110] = 3505, - [4111] = 3505, - [4112] = 3504, - [4113] = 3501, - [4114] = 3523, - [4115] = 3524, - [4116] = 3528, - [4117] = 3497, - [4118] = 3535, - [4119] = 3568, - [4120] = 3546, - [4121] = 3496, - [4122] = 3489, - [4123] = 3474, - [4124] = 2311, - [4125] = 3511, - [4126] = 3514, - [4127] = 3565, - [4128] = 3528, - [4129] = 3505, - [4130] = 3504, - [4131] = 3504, - [4132] = 3515, - [4133] = 2796, - [4134] = 3523, - [4135] = 3543, - [4136] = 3536, - [4137] = 3628, - [4138] = 3474, - [4139] = 2296, - [4140] = 4140, - [4141] = 3490, - [4142] = 3514, - [4143] = 2116, - [4144] = 3489, - [4145] = 3472, - [4146] = 3524, - [4147] = 3496, - [4148] = 3490, - [4149] = 3476, - [4150] = 4150, - [4151] = 3703, - [4152] = 3546, - [4153] = 3474, - [4154] = 3523, - [4155] = 3501, - [4156] = 3561, - [4157] = 3536, - [4158] = 4158, - [4159] = 4159, - [4160] = 3489, - [4161] = 3496, - [4162] = 3546, - [4163] = 3535, - [4164] = 3535, - [4165] = 3562, - [4166] = 3563, - [4167] = 3497, - [4168] = 3535, - [4169] = 2116, - [4170] = 3536, - [4171] = 2872, - [4172] = 2820, - [4173] = 2812, - [4174] = 2323, - [4175] = 2097, - [4176] = 3490, - [4177] = 2106, - [4178] = 4178, - [4179] = 3543, - [4180] = 4178, - [4181] = 3474, - [4182] = 3504, - [4183] = 3568, - [4184] = 3508, - [4185] = 2872, - [4186] = 2310, - [4187] = 3490, - [4188] = 3565, - [4189] = 3476, - [4190] = 3511, - [4191] = 3514, - [4192] = 2339, - [4193] = 2106, - [4194] = 3543, - [4195] = 3515, - [4196] = 3501, - [4197] = 2115, - [4198] = 3523, - [4199] = 2105, - [4200] = 3511, - [4201] = 3524, - [4202] = 3490, - [4203] = 3514, - [4204] = 3515, - [4205] = 2097, - [4206] = 2821, - [4207] = 3528, - [4208] = 2817, - [4209] = 3505, - [4210] = 4178, - [4211] = 3474, - [4212] = 2105, - [4213] = 3543, - [4214] = 3523, - [4215] = 3524, - [4216] = 3497, - [4217] = 3536, - [4218] = 3546, - [4219] = 3496, - [4220] = 3528, - [4221] = 3535, - [4222] = 3489, - [4223] = 3508, - [4224] = 3505, - [4225] = 3504, - [4226] = 3472, - [4227] = 3546, - [4228] = 3523, - [4229] = 3496, - [4230] = 3501, - [4231] = 3563, - [4232] = 3489, - [4233] = 3511, - [4234] = 3514, - [4235] = 4178, - [4236] = 3524, - [4237] = 3515, - [4238] = 4178, - [4239] = 2297, - [4240] = 2829, - [4241] = 3536, - [4242] = 3474, - [4243] = 3528, - [4244] = 3504, - [4245] = 2827, - [4246] = 3497, - [4247] = 3505, - [4248] = 3562, - [4249] = 3535, - [4250] = 2321, - [4251] = 3508, - [4252] = 3561, - [4253] = 3546, - [4254] = 4178, - [4255] = 3496, - [4256] = 2320, - [4257] = 3497, - [4258] = 3501, - [4259] = 3489, - [4260] = 3628, - [4261] = 2265, - [4262] = 2264, - [4263] = 2363, - [4264] = 2296, - [4265] = 3536, - [4266] = 2275, - [4267] = 2261, - [4268] = 3703, - [4269] = 4269, - [4270] = 3508, - [4271] = 4271, - [4272] = 3561, - [4273] = 3476, - [4274] = 4274, - [4275] = 3536, - [4276] = 3562, - [4277] = 3515, - [4278] = 3505, - [4279] = 2097, - [4280] = 3476, - [4281] = 2269, - [4282] = 3514, - [4283] = 3501, - [4284] = 3472, - [4285] = 3511, - [4286] = 3490, - [4287] = 2323, - [4288] = 3476, - [4289] = 3472, - [4290] = 3563, - [4291] = 3497, - [4292] = 3497, - [4293] = 3501, - [4294] = 3504, - [4295] = 3505, - [4296] = 2258, - [4297] = 3543, - [4298] = 3565, - [4299] = 3568, - [4300] = 3501, - [4301] = 3504, - [4302] = 2378, - [4303] = 4303, - [4304] = 3474, - [4305] = 2097, - [4306] = 3213, - [4307] = 3536, - [4308] = 4271, - [4309] = 3703, - [4310] = 3508, - [4311] = 2270, - [4312] = 4271, - [4313] = 2339, - [4314] = 2315, - [4315] = 2318, - [4316] = 2320, - [4317] = 2321, - [4318] = 2296, - [4319] = 3515, - [4320] = 3514, - [4321] = 2311, - [4322] = 3511, - [4323] = 2845, - [4324] = 3472, - [4325] = 2278, - [4326] = 2843, - [4327] = 3490, - [4328] = 2328, - [4329] = 3523, - [4330] = 3236, - [4331] = 2110, - [4332] = 3524, - [4333] = 2245, - [4334] = 3528, - [4335] = 3535, - [4336] = 3543, - [4337] = 3546, - [4338] = 2115, - [4339] = 2852, - [4340] = 2305, - [4341] = 3213, - [4342] = 2299, - [4343] = 3515, - [4344] = 3514, - [4345] = 3511, - [4346] = 4271, - [4347] = 3543, - [4348] = 3489, - [4349] = 4271, - [4350] = 3496, - [4351] = 3546, - [4352] = 3535, - [4353] = 3508, - [4354] = 2158, - [4355] = 2378, - [4356] = 3497, - [4357] = 3504, - [4358] = 4271, - [4359] = 3528, - [4360] = 4360, - [4361] = 3524, - [4362] = 3474, - [4363] = 3505, - [4364] = 3523, - [4365] = 3628, - [4366] = 3511, - [4367] = 3514, - [4368] = 3474, - [4369] = 3536, - [4370] = 3515, - [4371] = 3543, - [4372] = 3508, - [4373] = 3496, - [4374] = 2860, - [4375] = 3474, - [4376] = 2107, - [4377] = 2109, - [4378] = 3489, - [4379] = 3489, - [4380] = 3496, - [4381] = 3546, - [4382] = 3535, - [4383] = 3497, - [4384] = 2310, - [4385] = 3489, - [4386] = 3496, - [4387] = 3546, - [4388] = 3535, - [4389] = 3528, - [4390] = 3524, - [4391] = 2832, - [4392] = 3523, - [4393] = 2114, - [4394] = 3528, - [4395] = 3524, - [4396] = 3523, - [4397] = 3501, - [4398] = 3504, - [4399] = 3505, - [4400] = 3270, - [4401] = 2318, - [4402] = 3269, - [4403] = 2297, - [4404] = 2112, - [4405] = 3490, - [4406] = 2875, - [4407] = 3474, - [4408] = 3231, - [4409] = 3508, - [4410] = 2910, - [4411] = 3628, - [4412] = 3536, - [4413] = 2925, - [4414] = 3536, - [4415] = 3515, - [4416] = 3514, - [4417] = 3515, - [4418] = 3514, - [4419] = 3511, - [4420] = 3489, - [4421] = 3496, - [4422] = 3546, - [4423] = 3535, - [4424] = 3528, - [4425] = 3511, - [4426] = 3524, - [4427] = 3523, - [4428] = 3543, - [4429] = 2917, - [4430] = 2973, - [4431] = 3505, - [4432] = 3504, - [4433] = 3523, - [4434] = 3524, - [4435] = 3528, - [4436] = 3497, - [4437] = 3535, - [4438] = 3546, - [4439] = 3496, - [4440] = 3489, - [4441] = 2952, - [4442] = 2916, - [4443] = 3515, - [4444] = 3501, - [4445] = 3508, - [4446] = 3543, - [4447] = 2912, - [4448] = 2915, - [4449] = 2298, - [4450] = 3184, - [4451] = 3489, - [4452] = 3496, - [4453] = 3546, - [4454] = 3535, - [4455] = 3497, - [4456] = 3528, - [4457] = 3501, - [4458] = 3524, - [4459] = 3523, - [4460] = 3504, - [4461] = 3505, - [4462] = 3472, - [4463] = 3490, - [4464] = 3476, - [4465] = 3474, - [4466] = 3536, - [4467] = 2968, - [4468] = 3474, - [4469] = 3501, - [4470] = 3269, - [4471] = 3511, - [4472] = 4472, - [4473] = 3505, - [4474] = 3476, - [4475] = 3490, - [4476] = 3568, - [4477] = 3472, - [4478] = 3565, - [4479] = 3563, - [4480] = 3504, - [4481] = 3497, - [4482] = 3508, - [4483] = 3562, - [4484] = 3497, - [4485] = 3504, - [4486] = 3561, - [4487] = 3514, - [4488] = 3505, - [4489] = 3213, - [4490] = 2908, - [4491] = 3213, - [4492] = 3508, - [4493] = 3703, - [4494] = 3568, - [4495] = 3565, - [4496] = 3489, - [4497] = 3496, - [4498] = 3546, - [4499] = 3508, - [4500] = 2896, - [4501] = 3535, - [4502] = 3497, - [4503] = 3528, - [4504] = 2975, - [4505] = 3524, - [4506] = 3523, - [4507] = 3501, - [4508] = 3504, - [4509] = 3543, - [4510] = 3523, - [4511] = 3524, - [4512] = 3528, - [4513] = 3535, - [4514] = 3508, - [4515] = 3546, - [4516] = 3496, - [4517] = 3489, - [4518] = 3511, - [4519] = 3514, - [4520] = 2877, - [4521] = 3515, - [4522] = 3536, - [4523] = 3270, - [4524] = 3505, - [4525] = 3536, - [4526] = 2888, - [4527] = 2918, - [4528] = 2963, - [4529] = 2920, - [4530] = 2962, - [4531] = 2945, - [4532] = 3505, - [4533] = 3561, - [4534] = 3562, - [4535] = 3490, - [4536] = 3563, - [4537] = 3504, - [4538] = 3501, - [4539] = 3523, - [4540] = 3703, - [4541] = 3563, - [4542] = 3562, - [4543] = 2956, - [4544] = 2885, - [4545] = 3523, - [4546] = 3524, - [4547] = 3528, - [4548] = 3565, - [4549] = 3535, - [4550] = 3511, - [4551] = 3546, - [4552] = 3496, - [4553] = 3489, - [4554] = 3568, - [4555] = 3524, - [4556] = 3472, - [4557] = 3476, - [4558] = 3528, - [4559] = 3497, - [4560] = 3474, - [4561] = 3501, - [4562] = 2921, - [4563] = 3535, - [4564] = 3508, - [4565] = 3546, - [4566] = 3496, - [4567] = 3489, - [4568] = 2922, - [4569] = 2893, - [4570] = 4570, - [4571] = 3543, - [4572] = 2934, - [4573] = 3247, - [4574] = 2933, - [4575] = 4472, - [4576] = 3195, - [4577] = 2931, - [4578] = 2936, - [4579] = 3196, - [4580] = 3474, - [4581] = 1835, - [4582] = 2891, - [4583] = 2941, - [4584] = 3536, - [4585] = 3543, - [4586] = 2949, - [4587] = 3514, - [4588] = 2965, - [4589] = 3474, - [4590] = 3197, - [4591] = 4472, - [4592] = 2959, - [4593] = 2943, - [4594] = 3536, - [4595] = 3476, - [4596] = 3703, - [4597] = 2911, - [4598] = 2928, - [4599] = 2927, - [4600] = 2328, - [4601] = 2907, - [4602] = 3561, - [4603] = 3501, - [4604] = 3497, - [4605] = 3504, - [4606] = 3505, - [4607] = 2906, - [4608] = 2904, - [4609] = 3543, - [4610] = 3511, - [4611] = 3472, - [4612] = 3536, - [4613] = 2892, - [4614] = 3515, - [4615] = 3514, - [4616] = 2950, - [4617] = 3511, - [4618] = 3202, - [4619] = 3489, - [4620] = 3496, - [4621] = 4621, - [4622] = 3546, - [4623] = 3535, - [4624] = 2898, - [4625] = 3528, - [4626] = 3524, - [4627] = 2909, - [4628] = 3515, - [4629] = 3523, - [4630] = 2876, - [4631] = 3543, - [4632] = 3203, - [4633] = 3250, - [4634] = 3248, - [4635] = 2957, - [4636] = 1857, - [4637] = 2972, - [4638] = 3543, - [4639] = 3543, - [4640] = 3474, - [4641] = 2948, - [4642] = 3474, - [4643] = 3490, - [4644] = 2929, - [4645] = 3508, - [4646] = 3243, - [4647] = 3511, - [4648] = 3514, - [4649] = 3511, - [4650] = 3515, - [4651] = 3472, - [4652] = 3514, - [4653] = 3242, - [4654] = 3515, - [4655] = 4472, - [4656] = 3476, - [4657] = 3501, - [4658] = 2961, - [4659] = 3505, - [4660] = 2899, - [4661] = 3504, - [4662] = 2914, - [4663] = 3497, - [4664] = 2944, - [4665] = 2964, - [4666] = 3536, - [4667] = 3515, - [4668] = 2296, - [4669] = 3628, - [4670] = 2895, - [4671] = 2881, - [4672] = 3213, - [4673] = 3490, - [4674] = 3505, - [4675] = 3514, - [4676] = 2897, - [4677] = 3501, - [4678] = 3504, - [4679] = 3474, - [4680] = 3237, - [4681] = 3489, - [4682] = 3496, - [4683] = 3546, - [4684] = 3508, - [4685] = 3535, - [4686] = 3497, - [4687] = 3528, - [4688] = 3524, - [4689] = 3523, - [4690] = 3501, - [4691] = 3497, - [4692] = 3504, - [4693] = 3505, - [4694] = 3213, - [4695] = 3524, - [4696] = 2886, - [4697] = 3474, - [4698] = 2880, - [4699] = 3224, - [4700] = 2887, - [4701] = 3628, - [4702] = 3515, - [4703] = 3514, - [4704] = 3511, - [4705] = 1855, - [4706] = 2884, - [4707] = 3489, - [4708] = 2971, - [4709] = 4472, - [4710] = 3536, - [4711] = 3232, - [4712] = 3523, - [4713] = 3543, - [4714] = 3496, - [4715] = 2976, - [4716] = 2882, - [4717] = 3508, - [4718] = 3490, - [4719] = 3204, - [4720] = 2967, - [4721] = 3214, - [4722] = 3234, - [4723] = 3206, - [4724] = 3546, - [4725] = 3278, - [4726] = 3535, - [4727] = 3528, - [4728] = 3515, - [4729] = 3236, - [4730] = 4730, - [4731] = 3561, - [4732] = 3505, - [4733] = 3546, - [4734] = 3546, - [4735] = 3504, - [4736] = 3501, - [4737] = 3523, - [4738] = 3524, - [4739] = 3528, - [4740] = 3497, - [4741] = 3535, - [4742] = 4742, - [4743] = 3508, - [4744] = 3546, - [4745] = 3496, - [4746] = 3489, - [4747] = 3505, - [4748] = 3543, - [4749] = 3536, + [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, + [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, + [3974] = 3901, + [3975] = 3901, + [3976] = 3900, + [3977] = 3624, + [3978] = 3900, + [3979] = 2891, + [3980] = 3980, + [3981] = 3662, + [3982] = 3982, + [3983] = 3983, + [3984] = 3925, + [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, + [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] = 3508, - [4752] = 3515, - [4753] = 3514, - [4754] = 3496, - [4755] = 4750, - [4756] = 3496, - [4757] = 3489, - [4758] = 3489, - [4759] = 3490, - [4760] = 3543, - [4761] = 3501, - [4762] = 4762, - [4763] = 3474, - [4764] = 3497, - [4765] = 4765, - [4766] = 4766, - [4767] = 4750, - [4768] = 3565, - [4769] = 3568, - [4770] = 3565, - [4771] = 4771, - [4772] = 4772, - [4773] = 3515, - [4774] = 4774, - [4775] = 3628, - [4776] = 3628, - [4777] = 4750, - [4778] = 3535, - [4779] = 3505, - [4780] = 3511, - [4781] = 3536, - [4782] = 3562, - [4783] = 3474, - [4784] = 3568, - [4785] = 3505, - [4786] = 4750, - [4787] = 3514, - [4788] = 3563, - [4789] = 3511, - [4790] = 4750, - [4791] = 3504, - [4792] = 3563, + [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] = 3523, - [4795] = 3524, - [4796] = 4750, - [4797] = 3508, - [4798] = 3543, - [4799] = 4730, - [4800] = 3565, - [4801] = 4750, - [4802] = 3490, - [4803] = 3501, - [4804] = 3515, - [4805] = 4730, - [4806] = 3508, - [4807] = 3504, - [4808] = 3474, - [4809] = 3528, - [4810] = 3501, - [4811] = 3536, - [4812] = 3505, - [4813] = 3504, - [4814] = 3703, - [4815] = 3523, - [4816] = 3524, - [4817] = 3528, - [4818] = 3497, - [4819] = 3497, - [4820] = 3535, - [4821] = 3546, - [4822] = 3496, - [4823] = 3490, - [4824] = 4824, - [4825] = 3535, - [4826] = 3546, - [4827] = 3496, - [4828] = 3489, - [4829] = 3489, - [4830] = 3489, - [4831] = 3515, - [4832] = 4750, - [4833] = 3514, - [4834] = 3511, - [4835] = 4824, - [4836] = 4730, - [4837] = 3496, - [4838] = 3514, - [4839] = 3546, - [4840] = 3535, - [4841] = 3508, - [4842] = 3497, - [4843] = 3489, - [4844] = 3528, - [4845] = 3490, - [4846] = 3524, - [4847] = 3523, - [4848] = 3543, - [4849] = 3562, - [4850] = 3504, - [4851] = 3505, - [4852] = 3496, - [4853] = 4750, - [4854] = 3528, - [4855] = 3511, - [4856] = 3514, - [4857] = 4750, - [4858] = 4621, - [4859] = 3515, - [4860] = 3546, - [4861] = 3508, - [4862] = 2363, - [4863] = 3474, - [4864] = 3524, - [4865] = 4865, - [4866] = 3514, - [4867] = 3501, - [4868] = 3474, - [4869] = 3535, - [4870] = 2378, - [4871] = 4871, - [4872] = 3474, - [4873] = 3497, - [4874] = 3563, - [4875] = 3528, - [4876] = 3524, - [4877] = 4877, - [4878] = 4878, - [4879] = 3543, - [4880] = 4750, - [4881] = 3515, - [4882] = 3501, - [4883] = 4883, - [4884] = 3523, - [4885] = 4750, - [4886] = 4824, - [4887] = 3501, - [4888] = 4824, - [4889] = 3561, - [4890] = 3536, - [4891] = 4891, - [4892] = 3501, - [4893] = 3504, - [4894] = 4750, - [4895] = 3514, - [4896] = 3703, - [4897] = 3505, - [4898] = 4824, - [4899] = 4750, - [4900] = 3562, - [4901] = 3504, - [4902] = 3490, - [4903] = 4750, - [4904] = 4730, - [4905] = 4750, - [4906] = 3523, - [4907] = 3536, - [4908] = 4908, - [4909] = 3505, - [4910] = 4750, - [4911] = 3511, - [4912] = 4730, - [4913] = 4750, - [4914] = 4750, - [4915] = 3508, - [4916] = 4916, - [4917] = 3523, - [4918] = 3508, - [4919] = 4750, - [4920] = 3511, - [4921] = 3543, - [4922] = 4750, - [4923] = 3501, - [4924] = 3490, - [4925] = 3504, + [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, + [4869] = 4869, + [4870] = 4870, + [4871] = 3648, + [4872] = 3568, + [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, + [4907] = 4907, + [4908] = 3626, + [4909] = 3636, + [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] = 3536, - [4928] = 3543, - [4929] = 3563, - [4930] = 3515, - [4931] = 3489, - [4932] = 3496, - [4933] = 3546, - [4934] = 3535, - [4935] = 3497, - [4936] = 4936, - [4937] = 3528, - [4938] = 3563, - [4939] = 3524, - [4940] = 3523, - [4941] = 3504, - [4942] = 3536, - [4943] = 3505, + [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] = 3523, - [4946] = 3562, - [4947] = 3535, - [4948] = 3562, - [4949] = 4824, - [4950] = 4950, - [4951] = 3514, - [4952] = 4952, - [4953] = 3561, - [4954] = 3511, - [4955] = 3561, - [4956] = 4730, - [4957] = 2872, - [4958] = 3568, - [4959] = 3524, - [4960] = 4878, - [4961] = 3528, - [4962] = 3536, - [4963] = 3565, - [4964] = 3474, - [4965] = 4730, - [4966] = 4966, - [4967] = 3628, - [4968] = 3565, - [4969] = 3703, - [4970] = 3561, - [4971] = 3474, - [4972] = 3511, - [4973] = 3213, - [4974] = 4750, - [4975] = 3489, - [4976] = 4976, - [4977] = 3496, - [4978] = 4978, - [4979] = 3543, - [4980] = 4750, - [4981] = 3497, - [4982] = 3535, - [4983] = 4750, - [4984] = 4984, - [4985] = 3508, - [4986] = 3474, - [4987] = 3524, - [4988] = 3543, - [4989] = 3497, - [4990] = 3546, - [4991] = 3536, - [4992] = 3528, - [4993] = 3515, - [4994] = 3514, - [4995] = 3511, - [4996] = 3514, - [4997] = 4997, - [4998] = 4998, - [4999] = 4999, - [5000] = 3508, - [5001] = 3472, - [5002] = 3213, - [5003] = 5003, - [5004] = 4997, - [5005] = 5005, - [5006] = 5006, - [5007] = 5005, - [5008] = 3628, - [5009] = 3497, - [5010] = 3501, - [5011] = 4871, - [5012] = 3213, - [5013] = 3472, - [5014] = 5014, - [5015] = 5015, - [5016] = 3504, - [5017] = 3505, - [5018] = 3474, - [5019] = 3536, - [5020] = 2378, - [5021] = 2363, - [5022] = 5022, - [5023] = 3628, - [5024] = 3515, - [5025] = 5006, - [5026] = 5026, - [5027] = 5003, - [5028] = 3514, - [5029] = 5029, - [5030] = 3476, - [5031] = 3511, - [5032] = 4998, - [5033] = 3543, - [5034] = 5006, - [5035] = 3489, - [5036] = 3511, - [5037] = 3514, - [5038] = 3515, - [5039] = 5039, - [5040] = 4877, - [5041] = 3213, - [5042] = 3628, - [5043] = 2158, - [5044] = 5044, - [5045] = 5045, - [5046] = 5039, - [5047] = 2158, - [5048] = 3269, - [5049] = 5049, - [5050] = 3476, - [5051] = 3270, - [5052] = 4865, - [5053] = 5053, - [5054] = 5054, - [5055] = 4999, - [5056] = 3508, - [5057] = 3489, - [5058] = 3703, - [5059] = 5059, - [5060] = 3703, - [5061] = 3505, - [5062] = 3504, - [5063] = 5063, - [5064] = 3501, - [5065] = 3523, - [5066] = 3524, + [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] = 2195, - [5069] = 4878, - [5070] = 5070, - [5071] = 3528, - [5072] = 5006, - [5073] = 5073, - [5074] = 3497, - [5075] = 3476, - [5076] = 3474, - [5077] = 5053, - [5078] = 5039, - [5079] = 4997, - [5080] = 3536, - [5081] = 3474, - [5082] = 3535, - [5083] = 3546, - [5084] = 3496, - [5085] = 3489, - [5086] = 5086, - [5087] = 3496, - [5088] = 3546, - [5089] = 2847, - [5090] = 5067, - [5091] = 5070, - [5092] = 3270, - [5093] = 3496, - [5094] = 3546, - [5095] = 3213, - [5096] = 3535, - [5097] = 5049, - [5098] = 3497, - [5099] = 3528, - [5100] = 3524, - [5101] = 3523, - [5102] = 3703, - [5103] = 3474, - [5104] = 3536, - [5105] = 3501, - [5106] = 3703, - [5107] = 3504, - [5108] = 3476, - [5109] = 3505, - [5110] = 3535, - [5111] = 3703, - [5112] = 5015, - [5113] = 3515, - [5114] = 3511, - [5115] = 3543, - [5116] = 3508, - [5117] = 4926, - [5118] = 3511, - [5119] = 3514, - [5120] = 3528, - [5121] = 3515, - [5122] = 3508, - [5123] = 3536, - [5124] = 2363, - [5125] = 3543, - [5126] = 2193, - [5127] = 3524, - [5128] = 3523, - [5129] = 5129, - [5130] = 3543, - [5131] = 3472, - [5132] = 3505, - [5133] = 3504, - [5134] = 3501, - [5135] = 3523, - [5136] = 3524, - [5137] = 3528, - [5138] = 3497, - [5139] = 3535, - [5140] = 3546, - [5141] = 3496, - [5142] = 3489, - [5143] = 5143, - [5144] = 5144, - [5145] = 5145, - [5146] = 3628, - [5147] = 2353, - [5148] = 3628, - [5149] = 3472, + [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, + [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, + [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, + [5137] = 5137, + [5138] = 5138, + [5139] = 5139, + [5140] = 3592, + [5141] = 3747, + [5142] = 5138, + [5143] = 3638, + [5144] = 3648, + [5145] = 5132, + [5146] = 3250, + [5147] = 3618, + [5148] = 3577, + [5149] = 5149, [5150] = 5150, [5151] = 5151, - [5152] = 3703, - [5153] = 3628, - [5154] = 2353, - [5155] = 5006, - [5156] = 5039, - [5157] = 5157, - [5158] = 5006, + [5152] = 4854, + [5153] = 5124, + [5154] = 3838, + [5155] = 3747, + [5156] = 5061, + [5157] = 3250, + [5158] = 5158, [5159] = 5159, - [5160] = 5160, - [5161] = 3269, - [5162] = 4997, - [5163] = 3505, - [5164] = 5164, - [5165] = 5164, - [5166] = 3562, - [5167] = 5167, - [5168] = 3568, - [5169] = 3563, - [5170] = 5170, - [5171] = 5171, - [5172] = 5172, + [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] = 2353, - [5175] = 5175, - [5176] = 5176, - [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 3565, - [5182] = 3628, - [5183] = 3562, - [5184] = 3563, - [5185] = 5164, - [5186] = 5186, - [5187] = 3565, - [5188] = 5188, - [5189] = 5189, - [5190] = 5014, + [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, [5191] = 5191, - [5192] = 3474, - [5193] = 5176, - [5194] = 5164, - [5195] = 3213, - [5196] = 5179, - [5197] = 3703, + [5192] = 3590, + [5193] = 3638, + [5194] = 4868, + [5195] = 3558, + [5196] = 5196, + [5197] = 5136, [5198] = 5198, - [5199] = 5164, - [5200] = 5179, - [5201] = 3568, - [5202] = 4621, - [5203] = 3536, - [5204] = 5198, - [5205] = 3474, - [5206] = 2116, - [5207] = 5207, - [5208] = 3511, - [5209] = 3628, - [5210] = 5164, - [5211] = 5172, - [5212] = 3515, - [5213] = 3515, - [5214] = 5179, - [5215] = 3561, - [5216] = 5216, - [5217] = 5178, - [5218] = 5218, - [5219] = 3561, - [5220] = 2106, - [5221] = 5164, - [5222] = 5175, - [5223] = 5164, - [5224] = 2105, - [5225] = 5186, - [5226] = 5188, + [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] = 5218, - [5229] = 5229, - [5230] = 5230, - [5231] = 5231, - [5232] = 5164, - [5233] = 3568, - [5234] = 5231, - [5235] = 5178, - [5236] = 5229, - [5237] = 3565, - [5238] = 5198, - [5239] = 3703, - [5240] = 5191, - [5241] = 3514, - [5242] = 3511, - [5243] = 5188, - [5244] = 5164, - [5245] = 3514, - [5246] = 3489, - [5247] = 3496, - [5248] = 3546, - [5249] = 5186, - [5250] = 5250, - [5251] = 3508, - [5252] = 3535, - [5253] = 3543, - [5254] = 3497, - [5255] = 3528, - [5256] = 5179, - [5257] = 3524, - [5258] = 3523, - [5259] = 3501, - [5260] = 5260, - [5261] = 3489, - [5262] = 3496, - [5263] = 5175, - [5264] = 3546, - [5265] = 5231, - [5266] = 5229, - [5267] = 3504, - [5268] = 3535, - [5269] = 3505, - [5270] = 5164, - [5271] = 5164, - [5272] = 3504, - [5273] = 3501, - [5274] = 3523, - [5275] = 3524, - [5276] = 3528, - [5277] = 3497, - [5278] = 3535, - [5279] = 3562, - [5280] = 3508, - [5281] = 3546, - [5282] = 3496, - [5283] = 3489, - [5284] = 3528, - [5285] = 5180, - [5286] = 5229, - [5287] = 3524, - [5288] = 5231, - [5289] = 3511, - [5290] = 3514, - [5291] = 3523, - [5292] = 5164, - [5293] = 5175, - [5294] = 5227, - [5295] = 5175, - [5296] = 5191, - [5297] = 3474, - [5298] = 3563, - [5299] = 3565, - [5300] = 3543, - [5301] = 3568, - [5302] = 3563, - [5303] = 3562, - [5304] = 3543, - [5305] = 5305, - [5306] = 3213, - [5307] = 4621, - [5308] = 3703, - [5309] = 3508, - [5310] = 3497, - [5311] = 3543, - [5312] = 3561, - [5313] = 5164, - [5314] = 5179, - [5315] = 5164, - [5316] = 5231, - [5317] = 3213, - [5318] = 5229, - [5319] = 3515, - [5320] = 5164, - [5321] = 5178, - [5322] = 3628, - [5323] = 3511, - [5324] = 5207, - [5325] = 5179, - [5326] = 5164, - [5327] = 5179, - [5328] = 3501, - [5329] = 3504, - [5330] = 3505, - [5331] = 5164, - [5332] = 3213, - [5333] = 5178, - [5334] = 3515, - [5335] = 3505, - [5336] = 5179, + [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, + [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, + [5333] = 5333, + [5334] = 5324, + [5335] = 5332, + [5336] = 3624, [5337] = 5337, - [5338] = 5338, - [5339] = 5339, - [5340] = 5164, - [5341] = 5341, - [5342] = 5177, - [5343] = 3504, - [5344] = 5207, - [5345] = 5177, - [5346] = 5164, - [5347] = 3501, - [5348] = 5348, - [5349] = 5180, - [5350] = 3523, - [5351] = 5173, - [5352] = 2296, - [5353] = 3524, - [5354] = 3703, - [5355] = 3528, - [5356] = 3497, - [5357] = 5176, - [5358] = 3536, - [5359] = 5359, - [5360] = 3514, - [5361] = 3489, - [5362] = 5176, + [5338] = 5327, + [5339] = 5329, + [5340] = 5340, + [5341] = 3568, + [5342] = 5332, + [5343] = 3571, + [5344] = 3575, + [5345] = 3631, + [5346] = 3747, + [5347] = 3558, + [5348] = 3566, + [5349] = 3585, + [5350] = 5350, + [5351] = 3590, + [5352] = 3577, + [5353] = 3592, + [5354] = 3604, + [5355] = 3629, + [5356] = 3626, + [5357] = 5357, + [5358] = 3636, + [5359] = 5325, + [5360] = 5326, + [5361] = 5337, + [5362] = 5362, [5363] = 5363, - [5364] = 5364, - [5365] = 5365, - [5366] = 3543, - [5367] = 4621, - [5368] = 5218, - [5369] = 3496, - [5370] = 3535, - [5371] = 3508, - [5372] = 3546, - [5373] = 3496, - [5374] = 5177, - [5375] = 3489, - [5376] = 5164, - [5377] = 3546, - [5378] = 5173, - [5379] = 3514, - [5380] = 5173, - [5381] = 5381, - [5382] = 5177, - [5383] = 3508, - [5384] = 3474, - [5385] = 3515, - [5386] = 5179, - [5387] = 5179, - [5388] = 3535, - [5389] = 5164, - [5390] = 3497, - [5391] = 3536, - [5392] = 5164, - [5393] = 5164, - [5394] = 5179, - [5395] = 5164, - [5396] = 5396, - [5397] = 5179, - [5398] = 5207, - [5399] = 5179, - [5400] = 5164, - [5401] = 5401, - [5402] = 3528, - [5403] = 3213, - [5404] = 3543, - [5405] = 5179, - [5406] = 3505, - [5407] = 5179, - [5408] = 5408, - [5409] = 5164, - [5410] = 5227, - [5411] = 3536, - [5412] = 5180, - [5413] = 5413, - [5414] = 5164, - [5415] = 5415, - [5416] = 5396, - [5417] = 3511, - [5418] = 5418, - [5419] = 5164, - [5420] = 5179, - [5421] = 5164, - [5422] = 5164, - [5423] = 3474, - [5424] = 3536, - [5425] = 5425, - [5426] = 5164, - [5427] = 3504, - [5428] = 5218, - [5429] = 5164, - [5430] = 3501, - [5431] = 3628, - [5432] = 5164, - [5433] = 5164, - [5434] = 5164, - [5435] = 5164, - [5436] = 3628, - [5437] = 3524, - [5438] = 3523, - [5439] = 3524, - [5440] = 3528, - [5441] = 3515, - [5442] = 5164, - [5443] = 3703, - [5444] = 3703, - [5445] = 3497, - [5446] = 3535, - [5447] = 5198, - [5448] = 5164, - [5449] = 3628, - [5450] = 3523, - [5451] = 5175, - [5452] = 5179, - [5453] = 5186, - [5454] = 5188, - [5455] = 3561, - [5456] = 3501, - [5457] = 5178, - [5458] = 3504, - [5459] = 5164, - [5460] = 3511, - [5461] = 5164, - [5462] = 5462, - [5463] = 5179, - [5464] = 3505, - [5465] = 5164, - [5466] = 5164, - [5467] = 3474, - [5468] = 3514, - [5469] = 5164, - [5470] = 5227, - [5471] = 5164, - [5472] = 5191, - [5473] = 5179, - [5474] = 5164, - [5475] = 3489, - [5476] = 3496, - [5477] = 3546, - [5478] = 3536, - [5479] = 5164, - [5480] = 5229, - [5481] = 3508, - [5482] = 5164, - [5483] = 5231, - [5484] = 3213, - [5485] = 2233, - [5486] = 5486, - [5487] = 5486, - [5488] = 5486, - [5489] = 5486, - [5490] = 2353, - [5491] = 2353, - [5492] = 5486, - [5493] = 5493, - [5494] = 3026, - [5495] = 5486, - [5496] = 5486, - [5497] = 5486, - [5498] = 2238, - [5499] = 5486, - [5500] = 5486, - [5501] = 5486, - [5502] = 5486, - [5503] = 5486, - [5504] = 5486, - [5505] = 5486, - [5506] = 5486, - [5507] = 2977, - [5508] = 5486, - [5509] = 5486, - [5510] = 2353, - [5511] = 2195, - [5512] = 5486, - [5513] = 1834, - [5514] = 5486, - [5515] = 5486, - [5516] = 5486, - [5517] = 2193, - [5518] = 2231, - [5519] = 5486, - [5520] = 2353, - [5521] = 5486, - [5522] = 5522, - [5523] = 1835, - [5524] = 5486, - [5525] = 3007, - [5526] = 5486, - [5527] = 2353, - [5528] = 5486, - [5529] = 2236, - [5530] = 5486, - [5531] = 3031, - [5532] = 5486, - [5533] = 3023, - [5534] = 5486, - [5535] = 5486, - [5536] = 2353, - [5537] = 5486, - [5538] = 2353, - [5539] = 5539, + [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, + [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, + [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] = 5541, - [5542] = 5542, - [5543] = 5543, - [5544] = 5544, - [5545] = 5545, - [5546] = 2353, - [5547] = 5547, - [5548] = 5014, - [5549] = 5014, - [5550] = 5550, - [5551] = 5551, - [5552] = 5552, - [5553] = 2353, - [5554] = 5554, - [5555] = 2353, - [5556] = 5556, - [5557] = 5557, - [5558] = 5558, - [5559] = 2296, - [5560] = 2378, - [5561] = 2233, - [5562] = 5562, - [5563] = 5558, - [5564] = 5564, - [5565] = 5565, - [5566] = 5562, - [5567] = 2231, - [5568] = 5568, - [5569] = 2236, - [5570] = 2196, - [5571] = 5562, - [5572] = 5568, - [5573] = 5558, - [5574] = 5574, - [5575] = 5539, - [5576] = 2238, - [5577] = 5577, - [5578] = 5564, - [5579] = 5579, - [5580] = 5564, - [5581] = 5579, - [5582] = 5582, - [5583] = 2111, - [5584] = 5582, - [5585] = 5585, - [5586] = 5586, - [5587] = 5587, - [5588] = 5588, - [5589] = 5588, - [5590] = 5588, - [5591] = 5588, - [5592] = 5582, - [5593] = 5593, - [5594] = 5594, - [5595] = 5585, - [5596] = 5582, - [5597] = 5593, - [5598] = 5587, - [5599] = 5588, - [5600] = 5593, - [5601] = 5401, - [5602] = 5582, - [5603] = 5603, - [5604] = 5593, - [5605] = 5593, - [5606] = 5606, - [5607] = 5607, - [5608] = 5608, - [5609] = 2345, - [5610] = 5610, - [5611] = 5611, - [5612] = 5612, - [5613] = 5610, - [5614] = 5614, - [5615] = 5615, - [5616] = 5610, - [5617] = 5610, - [5618] = 5610, - [5619] = 5608, - [5620] = 5620, - [5621] = 5621, - [5622] = 5622, - [5623] = 5622, - [5624] = 5624, - [5625] = 5622, - [5626] = 5626, - [5627] = 5622, - [5628] = 5628, - [5629] = 5622, - [5630] = 5622, - [5631] = 5622, - [5632] = 5622, - [5633] = 5622, - [5634] = 5622, - [5635] = 5622, - [5636] = 5622, - [5637] = 5622, - [5638] = 5624, - [5639] = 5622, - [5640] = 5622, - [5641] = 5622, - [5642] = 5642, - [5643] = 5622, - [5644] = 5622, - [5645] = 5622, - [5646] = 5622, - [5647] = 5622, - [5648] = 5622, - [5649] = 5649, - [5650] = 2363, - [5651] = 5622, - [5652] = 5622, - [5653] = 5622, - [5654] = 5622, - [5655] = 5655, - [5656] = 5622, - [5657] = 5622, - [5658] = 5622, - [5659] = 5622, - [5660] = 5622, - [5661] = 5622, - [5662] = 5624, - [5663] = 5663, - [5664] = 5622, - [5665] = 5624, - [5666] = 5666, - [5667] = 5622, - [5668] = 5622, - [5669] = 5622, - [5670] = 5622, - [5671] = 5622, - [5672] = 5622, - [5673] = 5622, - [5674] = 5622, - [5675] = 5675, - [5676] = 5676, - [5677] = 5642, - [5678] = 5678, - [5679] = 5622, - [5680] = 5622, - [5681] = 5622, - [5682] = 5622, - [5683] = 5624, - [5684] = 5684, - [5685] = 5622, - [5686] = 5622, - [5687] = 5622, - [5688] = 2353, - [5689] = 2353, - [5690] = 2353, - [5691] = 2353, - [5692] = 2353, - [5693] = 2353, - [5694] = 2353, - [5695] = 2353, - [5696] = 5696, - [5697] = 2353, - [5698] = 2298, - [5699] = 5699, - [5700] = 2353, - [5701] = 2353, - [5702] = 2353, - [5703] = 2353, - [5704] = 2353, - [5705] = 2353, - [5706] = 2353, - [5707] = 2353, - [5708] = 2353, - [5709] = 5709, - [5710] = 5710, - [5711] = 2353, - [5712] = 2298, - [5713] = 5709, + [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, + [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, + [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, + [5712] = 5712, + [5713] = 5713, [5714] = 5714, [5715] = 5715, - [5716] = 2353, - [5717] = 2353, - [5718] = 2353, - [5719] = 5719, + [5716] = 5716, + [5717] = 2421, + [5718] = 5718, + [5719] = 5158, [5720] = 5720, - [5721] = 2353, + [5721] = 5721, [5722] = 5722, - [5723] = 2298, + [5723] = 2421, [5724] = 5724, - [5725] = 2353, - [5726] = 2298, - [5727] = 5568, - [5728] = 2353, - [5729] = 5729, + [5725] = 5725, + [5726] = 5726, + [5727] = 5727, + [5728] = 5728, + [5729] = 5158, [5730] = 5730, [5731] = 5731, - [5732] = 5732, + [5732] = 2421, [5733] = 5733, - [5734] = 5734, - [5735] = 5734, + [5734] = 2299, + [5735] = 2302, [5736] = 5736, - [5737] = 2847, - [5738] = 5738, + [5737] = 5737, + [5738] = 2419, [5739] = 5739, - [5740] = 5740, + [5740] = 2257, [5741] = 5741, - [5742] = 5740, - [5743] = 5733, - [5744] = 5744, - [5745] = 5745, + [5742] = 2298, + [5743] = 5743, + [5744] = 5736, + [5745] = 5741, [5746] = 5746, - [5747] = 5745, - [5748] = 5748, - [5749] = 5749, - [5750] = 5749, - [5751] = 5748, - [5752] = 5749, - [5753] = 5745, - [5754] = 5745, - [5755] = 5745, - [5756] = 5746, - [5757] = 5757, + [5747] = 5747, + [5748] = 5743, + [5749] = 5730, + [5750] = 5737, + [5751] = 2294, + [5752] = 2359, + [5753] = 5753, + [5754] = 5736, + [5755] = 5737, + [5756] = 5756, + [5757] = 5743, [5758] = 5758, - [5759] = 5759, - [5760] = 5745, - [5761] = 5745, - [5762] = 5745, - [5763] = 5763, - [5764] = 5745, - [5765] = 5765, - [5766] = 5763, - [5767] = 5767, - [5768] = 5745, - [5769] = 5745, - [5770] = 5770, - [5771] = 5745, - [5772] = 5745, - [5773] = 5748, - [5774] = 5765, - [5775] = 5775, - [5776] = 5749, - [5777] = 5749, - [5778] = 5748, - [5779] = 5749, - [5780] = 5765, - [5781] = 5765, - [5782] = 5763, - [5783] = 5745, - [5784] = 5745, - [5785] = 5745, - [5786] = 5745, - [5787] = 5745, - [5788] = 5745, - [5789] = 5749, - [5790] = 5748, - [5791] = 5763, - [5792] = 5792, - [5793] = 5763, - [5794] = 5748, - [5795] = 5745, - [5796] = 5748, - [5797] = 5745, - [5798] = 5749, - [5799] = 5745, - [5800] = 5746, - [5801] = 5749, - [5802] = 5749, - [5803] = 5748, - [5804] = 5745, - [5805] = 5748, - [5806] = 5763, - [5807] = 5765, - [5808] = 5745, - [5809] = 5749, - [5810] = 5745, - [5811] = 5745, - [5812] = 5748, - [5813] = 5749, - [5814] = 5748, - [5815] = 5745, - [5816] = 5745, - [5817] = 5745, - [5818] = 5758, - [5819] = 5745, - [5820] = 5748, - [5821] = 5821, - [5822] = 5745, - [5823] = 5749, - [5824] = 5763, - [5825] = 5748, - [5826] = 5745, - [5827] = 5749, - [5828] = 5745, - [5829] = 5745, - [5830] = 5745, - [5831] = 5745, - [5832] = 5745, - [5833] = 5833, - [5834] = 5758, - [5835] = 5745, - [5836] = 5745, - [5837] = 5758, - [5838] = 5763, - [5839] = 5749, - [5840] = 5745, - [5841] = 5758, - [5842] = 5745, - [5843] = 5748, - [5844] = 5749, - [5845] = 5745, - [5846] = 5748, - [5847] = 5745, - [5848] = 5745, - [5849] = 5745, - [5850] = 5763, - [5851] = 5765, - [5852] = 5852, - [5853] = 5745, - [5854] = 5854, - [5855] = 5745, - [5856] = 5745, - [5857] = 5745, - [5858] = 5858, - [5859] = 5745, - [5860] = 5745, - [5861] = 5745, - [5862] = 5862, + [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, + [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, + [5785] = 5785, + [5786] = 5786, + [5787] = 5787, + [5788] = 2393, + [5789] = 5789, + [5790] = 5790, + [5791] = 5787, + [5792] = 5787, + [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] = 5745, - [5865] = 5745, - [5866] = 5745, - [5867] = 5745, - [5868] = 5749, - [5869] = 5748, - [5870] = 5748, - [5871] = 5871, - [5872] = 3031, - [5873] = 5873, + [5864] = 5799, + [5865] = 5799, + [5866] = 5799, + [5867] = 5867, + [5868] = 5799, + [5869] = 5869, + [5870] = 5799, + [5871] = 2421, + [5872] = 2421, + [5873] = 2421, [5874] = 5874, - [5875] = 5875, - [5876] = 3007, - [5877] = 2977, - [5878] = 5878, - [5879] = 3026, - [5880] = 3023, - [5881] = 5881, - [5882] = 5882, - [5883] = 5883, + [5875] = 2421, + [5876] = 2421, + [5877] = 5877, + [5878] = 5741, + [5879] = 2421, + [5880] = 2374, + [5881] = 2374, + [5882] = 2374, + [5883] = 2421, [5884] = 5884, - [5885] = 5883, - [5886] = 5886, - [5887] = 5887, - [5888] = 5888, - [5889] = 5882, - [5890] = 5890, - [5891] = 5891, - [5892] = 5892, - [5893] = 5882, + [5885] = 2421, + [5886] = 2421, + [5887] = 2421, + [5888] = 2421, + [5889] = 2421, + [5890] = 2421, + [5891] = 2421, + [5892] = 2421, + [5893] = 2421, [5894] = 5894, [5895] = 5895, - [5896] = 5896, - [5897] = 5897, - [5898] = 5882, + [5896] = 2421, + [5897] = 2421, + [5898] = 2421, [5899] = 5899, [5900] = 5900, - [5901] = 5882, + [5901] = 2374, [5902] = 5902, [5903] = 5903, - [5904] = 5904, - [5905] = 5905, - [5906] = 5882, - [5907] = 5882, + [5904] = 2421, + [5905] = 2421, + [5906] = 2421, + [5907] = 2421, [5908] = 5908, - [5909] = 5908, - [5910] = 5882, - [5911] = 5911, - [5912] = 5882, + [5909] = 5877, + [5910] = 2421, + [5911] = 2421, + [5912] = 5912, [5913] = 5913, - [5914] = 5882, + [5914] = 5914, [5915] = 5915, - [5916] = 5913, - [5917] = 5882, - [5918] = 5882, - [5919] = 5882, + [5916] = 5916, + [5917] = 5917, + [5918] = 5918, + [5919] = 5919, [5920] = 5920, [5921] = 5921, - [5922] = 5922, + [5922] = 5921, [5923] = 5923, - [5924] = 5882, + [5924] = 5917, [5925] = 5925, - [5926] = 5882, + [5926] = 5926, [5927] = 5927, [5928] = 5928, - [5929] = 5882, + [5929] = 5927, [5930] = 5930, - [5931] = 5931, - [5932] = 5932, - [5933] = 5882, - [5934] = 5883, - [5935] = 5935, - [5936] = 5936, - [5937] = 5882, - [5938] = 5882, - [5939] = 5930, - [5940] = 5908, - [5941] = 5882, - [5942] = 5942, - [5943] = 5930, - [5944] = 5944, - [5945] = 5945, + [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] = 5949, + [5949] = 5926, [5950] = 5950, - [5951] = 5951, + [5951] = 5926, [5952] = 5952, - [5953] = 5953, - [5954] = 5954, - [5955] = 5955, - [5956] = 5956, - [5957] = 5957, - [5958] = 5958, - [5959] = 5959, - [5960] = 5960, - [5961] = 5960, - [5962] = 5960, - [5963] = 5960, - [5964] = 5960, - [5965] = 5960, - [5966] = 5960, - [5967] = 5960, - [5968] = 5960, - [5969] = 5960, - [5970] = 5960, - [5971] = 5960, - [5972] = 5960, - [5973] = 5960, - [5974] = 5960, - [5975] = 5960, - [5976] = 5960, - [5977] = 5960, - [5978] = 5960, - [5979] = 5960, - [5980] = 5960, - [5981] = 5960, - [5982] = 5960, - [5983] = 5960, - [5984] = 5960, - [5985] = 5960, - [5986] = 5960, - [5987] = 5960, - [5988] = 5960, - [5989] = 5960, - [5990] = 5960, - [5991] = 5960, - [5992] = 5960, - [5993] = 5960, - [5994] = 5960, - [5995] = 5960, - [5996] = 5996, - [5997] = 5997, - [5998] = 5996, - [5999] = 5996, - [6000] = 5997, - [6001] = 5997, - [6002] = 5997, - [6003] = 5996, - [6004] = 6004, - [6005] = 6004, - [6006] = 5996, - [6007] = 6004, - [6008] = 6004, - [6009] = 6004, - [6010] = 5996, - [6011] = 5997, - [6012] = 5997, - [6013] = 5996, - [6014] = 5996, - [6015] = 6004, - [6016] = 5997, - [6017] = 5997, - [6018] = 5997, - [6019] = 6004, - [6020] = 5996, - [6021] = 5996, - [6022] = 5997, - [6023] = 5997, - [6024] = 6004, - [6025] = 6004, - [6026] = 5996, - [6027] = 6004, - [6028] = 6004, - [6029] = 5997, - [6030] = 5996, - [6031] = 6004, - [6032] = 6004, - [6033] = 5996, - [6034] = 5997, - [6035] = 5997, - [6036] = 5996, - [6037] = 5997, - [6038] = 5997, - [6039] = 6004, - [6040] = 5996, - [6041] = 6004, - [6042] = 5996, - [6043] = 5997, - [6044] = 5996, - [6045] = 6004, - [6046] = 5996, - [6047] = 6004, - [6048] = 5997, - [6049] = 5996, - [6050] = 6004, - [6051] = 5997, - [6052] = 6004, - [6053] = 5997, - [6054] = 6004, - [6055] = 5996, - [6056] = 6056, - [6057] = 6057, + [5953] = 5926, + [5954] = 5926, + [5955] = 5926, + [5956] = 5928, + [5957] = 5925, + [5958] = 5926, + [5959] = 5926, + [5960] = 5926, + [5961] = 5961, + [5962] = 5926, + [5963] = 5926, + [5964] = 5927, + [5965] = 5926, + [5966] = 5930, + [5967] = 5926, + [5968] = 5927, + [5969] = 5926, + [5970] = 5930, + [5971] = 5926, + [5972] = 5926, + [5973] = 5926, + [5974] = 5926, + [5975] = 5926, + [5976] = 5926, + [5977] = 5926, + [5978] = 5928, + [5979] = 5927, + [5980] = 5980, + [5981] = 5930, + [5982] = 5926, + [5983] = 5926, + [5984] = 5927, + [5985] = 5930, + [5986] = 3034, + [5987] = 5926, + [5988] = 2972, + [5989] = 5928, + [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, + [6017] = 6017, + [6018] = 5926, + [6019] = 5928, + [6020] = 5926, + [6021] = 5927, + [6022] = 5930, + [6023] = 5925, + [6024] = 5980, + [6025] = 5926, + [6026] = 5980, + [6027] = 5927, + [6028] = 5925, + [6029] = 5927, + [6030] = 5930, + [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, + [6048] = 6048, + [6049] = 5926, + [6050] = 3003, + [6051] = 2990, + [6052] = 6017, + [6053] = 5926, + [6054] = 6054, + [6055] = 5926, + [6056] = 5928, + [6057] = 5926, [6058] = 6058, [6059] = 6059, [6060] = 6060, - [6061] = 6061, + [6061] = 2934, [6062] = 6062, [6063] = 6063, [6064] = 6064, [6065] = 6065, - [6066] = 6066, + [6066] = 6065, [6067] = 6067, [6068] = 6068, [6069] = 6069, - [6070] = 2296, - [6071] = 6071, + [6070] = 6068, + [6071] = 6068, [6072] = 6072, [6073] = 6073, - [6074] = 6074, - [6075] = 6075, - [6076] = 6076, + [6074] = 6068, + [6075] = 6068, + [6076] = 6068, [6077] = 6077, [6078] = 6078, - [6079] = 6079, + [6079] = 6068, [6080] = 6080, - [6081] = 2116, - [6082] = 6082, - [6083] = 6083, + [6081] = 6081, + [6082] = 6068, + [6083] = 6068, [6084] = 6084, [6085] = 6085, - [6086] = 2115, + [6086] = 6068, [6087] = 6087, [6088] = 6088, - [6089] = 2378, + [6089] = 6068, [6090] = 6090, - [6091] = 6091, - [6092] = 6092, + [6091] = 6068, + [6092] = 6078, [6093] = 6093, [6094] = 6094, - [6095] = 6095, + [6095] = 6087, [6096] = 6096, [6097] = 6097, - [6098] = 6098, + [6098] = 6078, [6099] = 6099, [6100] = 6100, [6101] = 6101, [6102] = 6102, [6103] = 6103, [6104] = 6104, - [6105] = 6105, + [6105] = 6068, [6106] = 6106, - [6107] = 6107, - [6108] = 6108, + [6107] = 6068, + [6108] = 6068, [6109] = 6109, - [6110] = 6110, + [6110] = 6068, [6111] = 6111, [6112] = 6112, [6113] = 6113, [6114] = 6114, - [6115] = 6092, - [6116] = 6116, + [6115] = 6115, + [6116] = 6065, [6117] = 6117, - [6118] = 6095, + [6118] = 6118, [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6122, - [6123] = 6092, - [6124] = 6095, - [6125] = 6095, + [6120] = 6112, + [6121] = 6068, + [6122] = 6068, + [6123] = 6068, + [6124] = 6068, + [6125] = 6068, [6126] = 6126, - [6127] = 2296, - [6128] = 6128, + [6127] = 6112, + [6128] = 6068, [6129] = 6129, [6130] = 6130, - [6131] = 6092, + [6131] = 6131, [6132] = 6132, [6133] = 6133, [6134] = 6134, @@ -10864,127 +10892,127 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6137] = 6137, [6138] = 6138, [6139] = 6139, - [6140] = 2115, + [6140] = 6140, [6141] = 6141, [6142] = 6142, [6143] = 6143, [6144] = 6144, [6145] = 6145, - [6146] = 6146, - [6147] = 6147, - [6148] = 6148, - [6149] = 6149, - [6150] = 6144, - [6151] = 6151, - [6152] = 6152, - [6153] = 6144, - [6154] = 1846, + [6146] = 6145, + [6147] = 6145, + [6148] = 6145, + [6149] = 6145, + [6150] = 6145, + [6151] = 6145, + [6152] = 6145, + [6153] = 6145, + [6154] = 6145, [6155] = 6145, - [6156] = 6156, - [6157] = 6144, - [6158] = 6151, - [6159] = 2363, - [6160] = 6143, - [6161] = 6143, - [6162] = 6151, - [6163] = 6163, + [6156] = 6145, + [6157] = 6145, + [6158] = 6145, + [6159] = 6145, + [6160] = 6145, + [6161] = 6145, + [6162] = 6145, + [6163] = 6145, [6164] = 6145, - [6165] = 6165, - [6166] = 6166, + [6165] = 6145, + [6166] = 6145, [6167] = 6145, - [6168] = 6168, - [6169] = 6151, - [6170] = 6170, - [6171] = 6171, - [6172] = 6143, - [6173] = 6173, - [6174] = 6174, - [6175] = 6175, - [6176] = 1845, - [6177] = 6143, - [6178] = 6151, - [6179] = 6179, - [6180] = 6180, - [6181] = 6181, - [6182] = 6182, - [6183] = 6183, - [6184] = 1847, + [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] = 6187, + [6187] = 6185, [6188] = 6188, - [6189] = 5579, - [6190] = 6190, - [6191] = 2378, - [6192] = 6190, - [6193] = 6193, - [6194] = 6187, - [6195] = 6195, - [6196] = 6196, - [6197] = 6197, - [6198] = 6198, - [6199] = 6199, - [6200] = 6200, - [6201] = 6201, - [6202] = 6181, - [6203] = 6203, - [6204] = 6181, - [6205] = 6205, - [6206] = 6193, - [6207] = 6207, - [6208] = 6208, - [6209] = 6209, - [6210] = 6210, - [6211] = 6211, - [6212] = 6193, - [6213] = 6181, - [6214] = 6214, - [6215] = 6182, - [6216] = 6216, - [6217] = 6187, - [6218] = 6142, - [6219] = 6214, - [6220] = 6182, - [6221] = 6182, - [6222] = 6214, - [6223] = 6223, - [6224] = 6190, - [6225] = 6225, - [6226] = 6226, - [6227] = 6227, - [6228] = 6193, - [6229] = 6229, - [6230] = 6181, - [6231] = 6193, - [6232] = 6232, - [6233] = 6233, - [6234] = 6234, - [6235] = 6235, - [6236] = 6236, - [6237] = 6190, - [6238] = 6187, - [6239] = 6239, - [6240] = 6240, - [6241] = 6241, - [6242] = 6193, - [6243] = 6181, - [6244] = 6244, - [6245] = 6245, - [6246] = 6225, - [6247] = 6214, - [6248] = 6214, - [6249] = 6225, - [6250] = 6250, + [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, [6251] = 6251, [6252] = 6252, - [6253] = 6182, - [6254] = 2106, - [6255] = 6187, - [6256] = 6190, + [6253] = 6253, + [6254] = 6254, + [6255] = 6255, + [6256] = 6256, [6257] = 6257, [6258] = 6258, [6259] = 6259, - [6260] = 2105, + [6260] = 2359, [6261] = 6261, [6262] = 6262, [6263] = 6263, @@ -11001,1285 +11029,1522 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6274] = 6274, [6275] = 6275, [6276] = 6276, - [6277] = 6276, - [6278] = 6278, + [6277] = 2185, + [6278] = 2184, [6279] = 6279, [6280] = 6280, [6281] = 6281, [6282] = 6282, [6283] = 6283, - [6284] = 2917, + [6284] = 2419, [6285] = 6285, [6286] = 6286, [6287] = 6287, - [6288] = 6287, + [6288] = 6288, [6289] = 6289, - [6290] = 6286, + [6290] = 6290, [6291] = 6291, - [6292] = 6278, + [6292] = 6292, [6293] = 6293, [6294] = 6294, [6295] = 6295, - [6296] = 6286, - [6297] = 6142, - [6298] = 6298, + [6296] = 6296, + [6297] = 6297, + [6298] = 6293, [6299] = 6299, [6300] = 6300, - [6301] = 6291, + [6301] = 6301, [6302] = 6302, [6303] = 6303, [6304] = 6304, [6305] = 6305, - [6306] = 6283, - [6307] = 6307, - [6308] = 3703, + [6306] = 6306, + [6307] = 6300, + [6308] = 6308, [6309] = 6309, [6310] = 6310, [6311] = 6311, - [6312] = 6280, - [6313] = 6293, - [6314] = 6314, + [6312] = 6300, + [6313] = 6313, + [6314] = 6300, [6315] = 6315, [6316] = 6316, - [6317] = 6287, - [6318] = 6304, - [6319] = 6271, + [6317] = 6293, + [6318] = 2359, + [6319] = 6319, [6320] = 6320, [6321] = 6321, - [6322] = 6309, + [6322] = 6293, [6323] = 6323, - [6324] = 6278, - [6325] = 6289, - [6326] = 6271, + [6324] = 6324, + [6325] = 6325, + [6326] = 6326, [6327] = 6327, [6328] = 6328, [6329] = 6329, [6330] = 6330, - [6331] = 6287, - [6332] = 3628, + [6331] = 2184, + [6332] = 6332, [6333] = 6333, [6334] = 6334, [6335] = 6335, [6336] = 6336, - [6337] = 6291, - [6338] = 6320, + [6337] = 6337, + [6338] = 6338, [6339] = 6339, - [6340] = 6340, + [6340] = 6338, [6341] = 6341, - [6342] = 6315, - [6343] = 6330, - [6344] = 6300, - [6345] = 6166, + [6342] = 6342, + [6343] = 6341, + [6344] = 6339, + [6345] = 6345, [6346] = 6346, - [6347] = 6286, - [6348] = 6289, - [6349] = 6286, + [6347] = 6347, + [6348] = 6338, + [6349] = 6349, [6350] = 6350, [6351] = 6351, - [6352] = 6352, + [6352] = 6339, [6353] = 6353, - [6354] = 6354, + [6354] = 6342, [6355] = 6355, - [6356] = 6276, - [6357] = 2972, - [6358] = 2321, + [6356] = 2446, + [6357] = 1914, + [6358] = 6338, [6359] = 6359, - [6360] = 6286, - [6361] = 6289, - [6362] = 6362, - [6363] = 6291, - [6364] = 6276, - [6365] = 6365, - [6366] = 6278, + [6360] = 6346, + [6361] = 6361, + [6362] = 6346, + [6363] = 6363, + [6364] = 1913, + [6365] = 6339, + [6366] = 6366, [6367] = 6367, - [6368] = 6368, - [6369] = 6287, - [6370] = 6271, + [6368] = 6341, + [6369] = 6341, + [6370] = 6370, [6371] = 6371, - [6372] = 6271, - [6373] = 6289, - [6374] = 6287, - [6375] = 6375, - [6376] = 6376, - [6377] = 6287, - [6378] = 6378, - [6379] = 6379, - [6380] = 6289, + [6372] = 6372, + [6373] = 6373, + [6374] = 6338, + [6375] = 6342, + [6376] = 6342, + [6377] = 6346, + [6378] = 6341, + [6379] = 6346, + [6380] = 6380, [6381] = 6381, [6382] = 6382, [6383] = 6383, [6384] = 6384, - [6385] = 1859, + [6385] = 6385, [6386] = 6386, - [6387] = 6387, + [6387] = 6384, [6388] = 6388, [6389] = 6389, - [6390] = 6390, - [6391] = 6391, - [6392] = 6392, + [6390] = 6384, + [6391] = 6384, + [6392] = 6380, [6393] = 6393, - [6394] = 3703, - [6395] = 6395, + [6394] = 6394, + [6395] = 6332, [6396] = 6396, [6397] = 6397, - [6398] = 6384, - [6399] = 6384, - [6400] = 1852, + [6398] = 6398, + [6399] = 6399, + [6400] = 6384, [6401] = 6401, [6402] = 6402, - [6403] = 6384, + [6403] = 6403, [6404] = 6404, - [6405] = 6401, + [6405] = 6405, [6406] = 6406, - [6407] = 6407, - [6408] = 6408, + [6407] = 6397, + [6408] = 6380, [6409] = 6409, [6410] = 6410, [6411] = 6411, [6412] = 6412, [6413] = 6413, - [6414] = 6414, - [6415] = 2278, + [6414] = 6411, + [6415] = 1916, [6416] = 6416, [6417] = 6417, [6418] = 6418, - [6419] = 6419, - [6420] = 6396, + [6419] = 6386, + [6420] = 6420, [6421] = 6421, - [6422] = 3703, + [6422] = 6420, [6423] = 6423, [6424] = 6424, - [6425] = 6425, - [6426] = 6395, + [6425] = 6386, + [6426] = 6393, [6427] = 6427, [6428] = 6428, - [6429] = 2318, + [6429] = 6393, [6430] = 6430, [6431] = 6431, - [6432] = 6432, - [6433] = 6412, + [6432] = 2174, + [6433] = 6433, [6434] = 6434, - [6435] = 6384, - [6436] = 6406, - [6437] = 2258, - [6438] = 3628, - [6439] = 2261, - [6440] = 6440, + [6435] = 6435, + [6436] = 6436, + [6437] = 6437, + [6438] = 6438, + [6439] = 6439, + [6440] = 6411, [6441] = 6441, - [6442] = 1851, - [6443] = 6443, - [6444] = 6407, - [6445] = 6445, - [6446] = 6446, - [6447] = 6447, - [6448] = 3703, - [6449] = 6449, - [6450] = 6401, - [6451] = 6451, - [6452] = 6452, - [6453] = 6384, + [6442] = 6442, + [6443] = 6397, + [6444] = 6444, + [6445] = 6386, + [6446] = 6386, + [6447] = 6411, + [6448] = 6448, + [6449] = 6397, + [6450] = 2419, + [6451] = 6411, + [6452] = 2175, + [6453] = 6420, [6454] = 6454, - [6455] = 6455, + [6455] = 6393, [6456] = 6456, - [6457] = 2270, + [6457] = 6411, [6458] = 6458, - [6459] = 6384, - [6460] = 6404, - [6461] = 6396, - [6462] = 6462, - [6463] = 6384, - [6464] = 6401, - [6465] = 6406, - [6466] = 6412, + [6459] = 6393, + [6460] = 6384, + [6461] = 6397, + [6462] = 6380, + [6463] = 5739, + [6464] = 6380, + [6465] = 6465, + [6466] = 6466, [6467] = 6467, [6468] = 6468, [6469] = 6469, [6470] = 6470, [6471] = 6471, [6472] = 6472, - [6473] = 2269, - [6474] = 6168, - [6475] = 6395, + [6473] = 6473, + [6474] = 6474, + [6475] = 6465, [6476] = 6476, [6477] = 6477, - [6478] = 6170, + [6478] = 6478, [6479] = 6479, - [6480] = 6480, + [6480] = 6465, [6481] = 6481, - [6482] = 6482, + [6482] = 6476, [6483] = 6483, [6484] = 6484, [6485] = 6485, - [6486] = 3628, - [6487] = 6402, + [6486] = 6486, + [6487] = 6487, [6488] = 6488, - [6489] = 6391, - [6490] = 6163, - [6491] = 6491, - [6492] = 6492, - [6493] = 6493, - [6494] = 6165, + [6489] = 6489, + [6490] = 6470, + [6491] = 6477, + [6492] = 6469, + [6493] = 3838, + [6494] = 6494, [6495] = 6495, [6496] = 6496, - [6497] = 6497, + [6497] = 3747, [6498] = 6498, [6499] = 6499, [6500] = 6500, [6501] = 6501, - [6502] = 6502, - [6503] = 6503, - [6504] = 3628, - [6505] = 6404, - [6506] = 6401, + [6502] = 6469, + [6503] = 6487, + [6504] = 6504, + [6505] = 6505, + [6506] = 6483, [6507] = 6507, [6508] = 6508, [6509] = 6509, - [6510] = 6510, - [6511] = 6511, - [6512] = 6512, + [6510] = 6470, + [6511] = 6469, + [6512] = 3024, [6513] = 6513, [6514] = 6514, - [6515] = 6511, - [6516] = 2363, + [6515] = 6466, + [6516] = 6466, [6517] = 6517, [6518] = 6518, [6519] = 6519, [6520] = 6520, - [6521] = 6507, + [6521] = 6486, [6522] = 6522, [6523] = 6523, [6524] = 6524, - [6525] = 6511, + [6525] = 6509, [6526] = 6526, [6527] = 6527, [6528] = 6528, [6529] = 6529, - [6530] = 6507, - [6531] = 6531, - [6532] = 6532, + [6530] = 6471, + [6531] = 6332, + [6532] = 6470, [6533] = 6533, [6534] = 6534, - [6535] = 6535, - [6536] = 6524, - [6537] = 6507, + [6535] = 6476, + [6536] = 6536, + [6537] = 6537, [6538] = 6538, [6539] = 6539, - [6540] = 6540, - [6541] = 6541, + [6540] = 6483, + [6541] = 6466, [6542] = 6542, - [6543] = 6543, - [6544] = 6508, - [6545] = 6545, + [6543] = 6542, + [6544] = 6470, + [6545] = 6469, [6546] = 6546, - [6547] = 6547, - [6548] = 6548, - [6549] = 6549, - [6550] = 6507, - [6551] = 6524, + [6547] = 6483, + [6548] = 6509, + [6549] = 6476, + [6550] = 2994, + [6551] = 6551, [6552] = 6552, [6553] = 6553, [6554] = 6554, - [6555] = 6519, + [6555] = 6465, [6556] = 6556, - [6557] = 6511, + [6557] = 6487, [6558] = 6558, - [6559] = 6559, - [6560] = 6541, - [6561] = 6561, - [6562] = 6524, - [6563] = 6563, - [6564] = 6508, - [6565] = 6563, + [6559] = 6469, + [6560] = 6560, + [6561] = 6487, + [6562] = 6507, + [6563] = 6487, + [6564] = 6472, + [6565] = 6565, [6566] = 6566, - [6567] = 6567, + [6567] = 6469, [6568] = 6568, - [6569] = 6569, - [6570] = 6567, - [6571] = 6569, - [6572] = 6572, - [6573] = 6532, - [6574] = 6507, + [6569] = 6556, + [6570] = 6570, + [6571] = 6571, + [6572] = 6349, + [6573] = 6469, + [6574] = 6574, [6575] = 6575, - [6576] = 6392, - [6577] = 6507, - [6578] = 6578, - [6579] = 6579, - [6580] = 6580, + [6576] = 6483, + [6577] = 6469, + [6578] = 6470, + [6579] = 2380, + [6580] = 6509, [6581] = 6581, - [6582] = 6524, - [6583] = 6511, - [6584] = 6511, - [6585] = 6524, - [6586] = 6507, + [6582] = 6582, + [6583] = 6466, + [6584] = 6466, + [6585] = 6465, + [6586] = 6586, [6587] = 6587, - [6588] = 6588, + [6588] = 6507, [6589] = 6507, [6590] = 6590, - [6591] = 6524, + [6591] = 6591, [6592] = 6592, - [6593] = 6593, + [6593] = 6536, [6594] = 6594, - [6595] = 6511, - [6596] = 6596, - [6597] = 6569, - [6598] = 6567, - [6599] = 6563, - [6600] = 6558, - [6601] = 6541, + [6595] = 6558, + [6596] = 6466, + [6597] = 6560, + [6598] = 6483, + [6599] = 6469, + [6600] = 6600, + [6601] = 6509, [6602] = 6602, [6603] = 6603, - [6604] = 6529, - [6605] = 6558, - [6606] = 6580, - [6607] = 6578, + [6604] = 6604, + [6605] = 6605, + [6606] = 6606, + [6607] = 6607, [6608] = 6608, [6609] = 6609, - [6610] = 6556, - [6611] = 6554, - [6612] = 6527, + [6610] = 6610, + [6611] = 6611, + [6612] = 3838, [6613] = 6613, [6614] = 6614, - [6615] = 6556, - [6616] = 6542, - [6617] = 6507, - [6618] = 6524, - [6619] = 6534, - [6620] = 6532, - [6621] = 6533, - [6622] = 6529, + [6615] = 2336, + [6616] = 6616, + [6617] = 6607, + [6618] = 6618, + [6619] = 6619, + [6620] = 6620, + [6621] = 1923, + [6622] = 6607, [6623] = 6623, [6624] = 6624, - [6625] = 6578, + [6625] = 6625, [6626] = 6626, [6627] = 6627, [6628] = 6628, - [6629] = 6527, - [6630] = 6554, - [6631] = 6580, + [6629] = 6627, + [6630] = 1925, + [6631] = 6631, [6632] = 6632, - [6633] = 6553, + [6633] = 6633, [6634] = 6634, - [6635] = 6548, + [6635] = 6635, [6636] = 6636, - [6637] = 6523, - [6638] = 6520, + [6637] = 6637, + [6638] = 6638, [6639] = 6639, - [6640] = 6511, + [6640] = 6640, [6641] = 6641, [6642] = 6642, [6643] = 6643, - [6644] = 6517, - [6645] = 6511, + [6644] = 6644, + [6645] = 6645, [6646] = 6646, - [6647] = 6523, + [6647] = 6647, [6648] = 6648, - [6649] = 6649, - [6650] = 6168, - [6651] = 6546, - [6652] = 6170, - [6653] = 6509, - [6654] = 6524, - [6655] = 6507, - [6656] = 6509, - [6657] = 6546, - [6658] = 6658, - [6659] = 6639, - [6660] = 6636, + [6649] = 6620, + [6650] = 6650, + [6651] = 3838, + [6652] = 6652, + [6653] = 6653, + [6654] = 6635, + [6655] = 6655, + [6656] = 6656, + [6657] = 2318, + [6658] = 6350, + [6659] = 3747, + [6660] = 6660, [6661] = 6661, - [6662] = 6548, - [6663] = 6553, - [6664] = 6542, - [6665] = 6665, - [6666] = 6163, - [6667] = 6165, - [6668] = 6572, - [6669] = 6541, + [6662] = 6620, + [6663] = 6663, + [6664] = 6353, + [6665] = 6626, + [6666] = 6666, + [6667] = 3838, + [6668] = 2341, + [6669] = 6669, [6670] = 6670, - [6671] = 6671, + [6671] = 6620, [6672] = 6672, [6673] = 6673, - [6674] = 6542, - [6675] = 6675, - [6676] = 6676, - [6677] = 6677, - [6678] = 6678, - [6679] = 6523, + [6674] = 6674, + [6675] = 6620, + [6676] = 6623, + [6677] = 6647, + [6678] = 2344, + [6679] = 6679, [6680] = 6680, - [6681] = 6520, - [6682] = 6580, - [6683] = 6519, - [6684] = 6642, - [6685] = 6517, - [6686] = 6511, - [6687] = 6687, - [6688] = 6578, - [6689] = 6580, - [6690] = 6511, - [6691] = 6542, - [6692] = 6523, - [6693] = 6524, - [6694] = 6694, - [6695] = 6572, - [6696] = 6507, + [6681] = 6620, + [6682] = 2315, + [6683] = 6683, + [6684] = 6635, + [6685] = 6685, + [6686] = 6620, + [6687] = 6627, + [6688] = 1924, + [6689] = 6620, + [6690] = 6690, + [6691] = 6691, + [6692] = 6692, + [6693] = 6619, + [6694] = 2378, + [6695] = 6647, + [6696] = 6696, [6697] = 6697, - [6698] = 6569, - [6699] = 6567, - [6700] = 6678, - [6701] = 6563, - [6702] = 6553, - [6703] = 6548, - [6704] = 6508, - [6705] = 6546, - [6706] = 6706, - [6707] = 6509, - [6708] = 6541, - [6709] = 6558, - [6710] = 6556, - [6711] = 6554, + [6698] = 6371, + [6699] = 3747, + [6700] = 6700, + [6701] = 6372, + [6702] = 6702, + [6703] = 6647, + [6704] = 6704, + [6705] = 6623, + [6706] = 6647, + [6707] = 6707, + [6708] = 6708, + [6709] = 6709, + [6710] = 6710, + [6711] = 3747, [6712] = 6712, - [6713] = 6541, - [6714] = 6542, + [6713] = 6713, + [6714] = 6714, [6715] = 6715, [6716] = 6716, - [6717] = 6602, - [6718] = 6665, - [6719] = 6507, - [6720] = 6524, - [6721] = 6671, - [6722] = 6532, - [6723] = 6559, - [6724] = 6511, - [6725] = 6529, - [6726] = 6527, + [6717] = 6663, + [6718] = 6718, + [6719] = 6619, + [6720] = 6720, + [6721] = 6721, + [6722] = 6722, + [6723] = 6723, + [6724] = 6724, + [6725] = 6725, + [6726] = 6726, [6727] = 6727, - [6728] = 6418, - [6729] = 6517, - [6730] = 6661, + [6728] = 6674, + [6729] = 6729, + [6730] = 6730, [6731] = 6731, - [6732] = 6523, + [6732] = 6732, [6733] = 6733, - [6734] = 6520, - [6735] = 6520, - [6736] = 6736, - [6737] = 6517, - [6738] = 6572, - [6739] = 6523, - [6740] = 6563, + [6734] = 6734, + [6735] = 6656, + [6736] = 6734, + [6737] = 6737, + [6738] = 6738, + [6739] = 6739, + [6740] = 6730, [6741] = 6741, [6742] = 6742, - [6743] = 6511, - [6744] = 6646, - [6745] = 6671, - [6746] = 6602, - [6747] = 6541, - [6748] = 6558, + [6743] = 6743, + [6744] = 6744, + [6745] = 6742, + [6746] = 6746, + [6747] = 6732, + [6748] = 6748, [6749] = 6749, - [6750] = 6750, + [6750] = 6739, [6751] = 6751, - [6752] = 6527, - [6753] = 6529, - [6754] = 6509, - [6755] = 6546, - [6756] = 6548, - [6757] = 6553, - [6758] = 6554, - [6759] = 6532, - [6760] = 6671, + [6752] = 6752, + [6753] = 6753, + [6754] = 6730, + [6755] = 6755, + [6756] = 6756, + [6757] = 6751, + [6758] = 6758, + [6759] = 6759, + [6760] = 6729, [6761] = 6761, - [6762] = 6762, - [6763] = 6524, - [6764] = 6507, - [6765] = 6542, + [6762] = 6756, + [6763] = 6763, + [6764] = 6758, + [6765] = 6765, [6766] = 6766, - [6767] = 6572, - [6768] = 6768, - [6769] = 6602, - [6770] = 6770, - [6771] = 6524, - [6772] = 6772, - [6773] = 6542, - [6774] = 6774, - [6775] = 6397, + [6767] = 6767, + [6768] = 6743, + [6769] = 6769, + [6770] = 6742, + [6771] = 6771, + [6772] = 6731, + [6773] = 6773, + [6774] = 6744, + [6775] = 6765, [6776] = 6776, [6777] = 6777, [6778] = 6778, - [6779] = 6524, - [6780] = 6780, + [6779] = 6746, + [6780] = 6755, [6781] = 6781, - [6782] = 6697, - [6783] = 6554, - [6784] = 6519, - [6785] = 6556, - [6786] = 6786, + [6782] = 6763, + [6783] = 6767, + [6784] = 6784, + [6785] = 6767, + [6786] = 6748, [6787] = 6787, - [6788] = 6558, + [6788] = 6788, [6789] = 6789, - [6790] = 6541, - [6791] = 6602, - [6792] = 6559, - [6793] = 6742, - [6794] = 6508, - [6795] = 6563, - [6796] = 6796, - [6797] = 6567, + [6790] = 6790, + [6791] = 6791, + [6792] = 6792, + [6793] = 6741, + [6794] = 6751, + [6795] = 6795, + [6796] = 6731, + [6797] = 6797, [6798] = 6798, - [6799] = 6569, - [6800] = 6671, + [6799] = 6744, + [6800] = 6763, [6801] = 6801, - [6802] = 6671, + [6802] = 6802, [6803] = 6803, - [6804] = 6602, - [6805] = 6527, - [6806] = 6578, - [6807] = 6634, - [6808] = 6523, - [6809] = 6580, - [6810] = 6553, - [6811] = 6509, - [6812] = 6520, - [6813] = 6511, - [6814] = 6517, - [6815] = 6815, + [6804] = 6804, + [6805] = 6769, + [6806] = 6806, + [6807] = 6807, + [6808] = 6791, + [6809] = 6809, + [6810] = 6810, + [6811] = 6811, + [6812] = 6792, + [6813] = 6813, + [6814] = 6814, + [6815] = 6787, [6816] = 6816, - [6817] = 6817, + [6817] = 6781, [6818] = 6818, - [6819] = 6819, - [6820] = 6820, - [6821] = 6821, - [6822] = 6822, - [6823] = 6823, - [6824] = 1878, - [6825] = 6825, - [6826] = 1888, - [6827] = 1886, - [6828] = 1894, + [6819] = 6741, + [6820] = 6788, + [6821] = 6748, + [6822] = 6789, + [6823] = 6669, + [6824] = 6739, + [6825] = 6371, + [6826] = 6372, + [6827] = 6751, + [6828] = 6828, [6829] = 6829, - [6830] = 2275, - [6831] = 6831, - [6832] = 2264, - [6833] = 2265, - [6834] = 6834, - [6835] = 6835, - [6836] = 1877, - [6837] = 1898, - [6838] = 1889, - [6839] = 2245, - [6840] = 6840, - [6841] = 6841, - [6842] = 6842, - [6843] = 1866, - [6844] = 1868, - [6845] = 1869, - [6846] = 1873, - [6847] = 1875, - [6848] = 1880, - [6849] = 1861, - [6850] = 6822, - [6851] = 6851, - [6852] = 6852, - [6853] = 6853, - [6854] = 6854, + [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] = 6856, - [6857] = 6852, - [6858] = 1863, - [6859] = 1908, - [6860] = 1893, - [6861] = 1906, - [6862] = 1899, - [6863] = 1874, - [6864] = 6864, - [6865] = 6865, + [6856] = 6729, + [6857] = 6857, + [6858] = 6756, + [6859] = 6755, + [6860] = 6743, + [6861] = 6742, + [6862] = 6739, + [6863] = 6863, + [6864] = 6797, + [6865] = 6769, [6866] = 6866, - [6867] = 6866, - [6868] = 1897, - [6869] = 6864, - [6870] = 1900, + [6867] = 6867, + [6868] = 6758, + [6869] = 6795, + [6870] = 6765, [6871] = 6871, - [6872] = 6853, - [6873] = 1892, + [6872] = 6777, + [6873] = 6804, [6874] = 6874, - [6875] = 6875, - [6876] = 1884, - [6877] = 1910, - [6878] = 6878, - [6879] = 1865, - [6880] = 1872, - [6881] = 1860, - [6882] = 6855, - [6883] = 1887, - [6884] = 6884, - [6885] = 6885, + [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] = 6887, + [6887] = 6746, [6888] = 6888, - [6889] = 6865, - [6890] = 6854, - [6891] = 1895, - [6892] = 1867, - [6893] = 1904, - [6894] = 1902, - [6895] = 1879, - [6896] = 6896, - [6897] = 6897, - [6898] = 1864, - [6899] = 1862, - [6900] = 6852, - [6901] = 1909, - [6902] = 6851, - [6903] = 1885, - [6904] = 6904, - [6905] = 6905, - [6906] = 6906, - [6907] = 6818, - [6908] = 6908, - [6909] = 1896, - [6910] = 1891, - [6911] = 1881, - [6912] = 6851, - [6913] = 1883, - [6914] = 6914, - [6915] = 6915, - [6916] = 6916, - [6917] = 6887, - [6918] = 6918, - [6919] = 1876, - [6920] = 6818, - [6921] = 6921, - [6922] = 6922, - [6923] = 6886, - [6924] = 6855, - [6925] = 6896, - [6926] = 6865, - [6927] = 6927, + [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, + [6925] = 6925, + [6926] = 6795, + [6927] = 6801, [6928] = 6928, [6929] = 6929, [6930] = 6930, - [6931] = 6841, - [6932] = 6932, - [6933] = 6933, + [6931] = 6909, + [6932] = 6730, + [6933] = 6767, [6934] = 6934, - [6935] = 6934, + [6935] = 6935, [6936] = 6936, - [6937] = 6937, - [6938] = 6938, - [6939] = 6939, - [6940] = 6940, - [6941] = 6822, - [6942] = 6934, + [6937] = 6756, + [6938] = 6758, + [6939] = 6767, + [6940] = 6777, + [6941] = 6802, + [6942] = 6797, [6943] = 6943, - [6944] = 6944, - [6945] = 6841, - [6946] = 6834, - [6947] = 6934, + [6944] = 6900, + [6945] = 6945, + [6946] = 6765, + [6947] = 6802, [6948] = 6948, - [6949] = 6831, - [6950] = 6950, - [6951] = 6854, - [6952] = 6952, - [6953] = 6816, - [6954] = 6851, - [6955] = 6841, - [6956] = 6956, + [6949] = 6949, + [6950] = 6748, + [6951] = 6951, + [6952] = 6871, + [6953] = 6953, + [6954] = 6801, + [6955] = 6955, + [6956] = 6729, [6957] = 6957, - [6958] = 6875, - [6959] = 6864, - [6960] = 6960, - [6961] = 6866, - [6962] = 6962, - [6963] = 6818, + [6958] = 6731, + [6959] = 6744, + [6960] = 6746, + [6961] = 6781, + [6962] = 6930, + [6963] = 6963, [6964] = 6964, - [6965] = 6854, - [6966] = 6966, - [6967] = 6853, - [6968] = 6968, - [6969] = 6969, - [6970] = 6970, + [6965] = 6777, + [6966] = 6748, + [6967] = 6797, + [6968] = 6802, + [6969] = 6804, + [6970] = 6804, [6971] = 6971, - [6972] = 6896, + [6972] = 6972, [6973] = 6973, [6974] = 6974, - [6975] = 6896, - [6976] = 6834, - [6977] = 6896, - [6978] = 6971, - [6979] = 6905, - [6980] = 6816, - [6981] = 6974, - [6982] = 2832, + [6975] = 6975, + [6976] = 6732, + [6977] = 6743, + [6978] = 6739, + [6979] = 6739, + [6980] = 6980, + [6981] = 6756, + [6982] = 6758, [6983] = 6983, - [6984] = 6984, - [6985] = 6851, - [6986] = 6829, - [6987] = 6866, - [6988] = 6988, - [6989] = 6989, - [6990] = 6853, + [6984] = 6767, + [6985] = 6855, + [6986] = 6986, + [6987] = 6987, + [6988] = 6829, + [6989] = 6909, + [6990] = 6990, [6991] = 6991, - [6992] = 6971, - [6993] = 6993, - [6994] = 6864, - [6995] = 6995, - [6996] = 6934, - [6997] = 6818, + [6992] = 6756, + [6993] = 6758, + [6994] = 6801, + [6995] = 6767, + [6996] = 6996, + [6997] = 6997, [6998] = 6998, - [6999] = 6864, - [7000] = 7000, - [7001] = 6866, - [7002] = 7002, - [7003] = 6841, + [6999] = 6756, + [7000] = 6758, + [7001] = 7001, + [7002] = 6769, + [7003] = 6729, [7004] = 7004, - [7005] = 6971, - [7006] = 7006, - [7007] = 7007, - [7008] = 6934, - [7009] = 6816, - [7010] = 6853, - [7011] = 6854, - [7012] = 7012, - [7013] = 6834, + [7005] = 6756, + [7006] = 6758, + [7007] = 6767, + [7008] = 6743, + [7009] = 6742, + [7010] = 7010, + [7011] = 6731, + [7012] = 6744, + [7013] = 6765, [7014] = 7014, - [7015] = 7015, - [7016] = 7016, + [7015] = 6746, + [7016] = 6781, [7017] = 7017, - [7018] = 6886, - [7019] = 6866, - [7020] = 7020, - [7021] = 6887, - [7022] = 6875, - [7023] = 6829, - [7024] = 6851, + [7018] = 6777, + [7019] = 6765, + [7020] = 6756, + [7021] = 7021, + [7022] = 6758, + [7023] = 6748, + [7024] = 6767, [7025] = 7025, - [7026] = 6854, - [7027] = 7027, - [7028] = 6853, - [7029] = 2875, - [7030] = 6852, - [7031] = 7031, + [7026] = 6797, + [7027] = 6802, + [7028] = 6755, + [7029] = 7029, + [7030] = 6767, + [7031] = 6804, [7032] = 7032, - [7033] = 6816, + [7033] = 6763, [7034] = 7034, - [7035] = 6934, - [7036] = 7036, + [7035] = 6791, + [7036] = 6909, [7037] = 7037, [7038] = 7038, [7039] = 7039, - [7040] = 6818, - [7041] = 6905, + [7040] = 7040, + [7041] = 1939, [7042] = 7042, - [7043] = 6905, - [7044] = 6855, - [7045] = 6865, - [7046] = 7046, - [7047] = 7047, - [7048] = 6896, - [7049] = 6934, - [7050] = 6834, + [7043] = 7043, + [7044] = 7044, + [7045] = 7045, + [7046] = 1974, + [7047] = 2317, + [7048] = 2340, + [7049] = 7049, + [7050] = 7050, [7051] = 7051, - [7052] = 6885, - [7053] = 6885, - [7054] = 6866, - [7055] = 7055, - [7056] = 6834, + [7052] = 7052, + [7053] = 7053, + [7054] = 1968, + [7055] = 1930, + [7056] = 7056, [7057] = 7057, - [7058] = 6831, + [7058] = 1947, [7059] = 7059, - [7060] = 7060, - [7061] = 6831, - [7062] = 6816, - [7063] = 6841, - [7064] = 6866, - [7065] = 6974, - [7066] = 7066, - [7067] = 7047, - [7068] = 7068, + [7060] = 1959, + [7061] = 7038, + [7062] = 7062, + [7063] = 7063, + [7064] = 7064, + [7065] = 7038, + [7066] = 1964, + [7067] = 7057, + [7068] = 7039, [7069] = 7069, - [7070] = 7070, + [7070] = 1978, [7071] = 7071, [7072] = 7072, [7073] = 7073, [7074] = 7074, - [7075] = 7071, - [7076] = 7071, + [7075] = 7075, + [7076] = 7076, [7077] = 7077, [7078] = 7078, - [7079] = 7079, - [7080] = 7080, + [7079] = 7057, + [7080] = 1936, [7081] = 7081, [7082] = 7082, [7083] = 7083, - [7084] = 7084, + [7084] = 1938, [7085] = 7085, - [7086] = 7086, - [7087] = 7087, - [7088] = 7088, - [7089] = 7089, - [7090] = 7087, + [7086] = 1961, + [7087] = 1931, + [7088] = 1949, + [7089] = 1951, + [7090] = 1932, [7091] = 7091, - [7092] = 7071, - [7093] = 7071, - [7094] = 7094, - [7095] = 7081, - [7096] = 7071, - [7097] = 7071, + [7092] = 7092, + [7093] = 7093, + [7094] = 7039, + [7095] = 1956, + [7096] = 7083, + [7097] = 7097, [7098] = 7098, - [7099] = 7071, - [7100] = 7100, - [7101] = 7071, + [7099] = 7099, + [7100] = 7056, + [7101] = 7101, [7102] = 7102, - [7103] = 7103, - [7104] = 7104, - [7105] = 7105, - [7106] = 7106, + [7103] = 7101, + [7104] = 1940, + [7105] = 1948, + [7106] = 7039, [7107] = 7107, [7108] = 7108, - [7109] = 7071, - [7110] = 7110, - [7111] = 7071, - [7112] = 7112, - [7113] = 7071, - [7114] = 7114, - [7115] = 7115, - [7116] = 7116, - [7117] = 7098, - [7118] = 7118, - [7119] = 7119, + [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] = 7071, - [7122] = 7122, + [7121] = 7121, + [7122] = 7101, [7123] = 7123, [7124] = 7124, [7125] = 7125, - [7126] = 7071, + [7126] = 1954, [7127] = 7127, [7128] = 7128, - [7129] = 7129, - [7130] = 7130, - [7131] = 7131, - [7132] = 7123, + [7129] = 1935, + [7130] = 7081, + [7131] = 7077, + [7132] = 7132, [7133] = 7133, [7134] = 7134, - [7135] = 7135, - [7136] = 7071, + [7135] = 1975, + [7136] = 7043, [7137] = 7137, - [7138] = 7138, + [7138] = 7083, [7139] = 7139, [7140] = 7140, - [7141] = 7077, - [7142] = 7071, + [7141] = 1943, + [7142] = 7042, [7143] = 7143, - [7144] = 7134, + [7144] = 1945, [7145] = 7145, - [7146] = 7146, + [7146] = 7039, [7147] = 7147, - [7148] = 7114, - [7149] = 7149, - [7150] = 7150, - [7151] = 7071, + [7148] = 7148, + [7149] = 1958, + [7150] = 7069, + [7151] = 7151, [7152] = 7152, - [7153] = 7153, + [7153] = 1962, [7154] = 7154, - [7155] = 7071, + [7155] = 7101, [7156] = 7156, [7157] = 7157, - [7158] = 7158, - [7159] = 7159, + [7158] = 1934, + [7159] = 1969, [7160] = 7160, [7161] = 7161, - [7162] = 7162, - [7163] = 7072, - [7164] = 7134, - [7165] = 7165, - [7166] = 7166, - [7167] = 7167, + [7162] = 7101, + [7163] = 7163, + [7164] = 7164, + [7165] = 7092, + [7166] = 1941, + [7167] = 7057, [7168] = 7168, - [7169] = 7166, - [7170] = 7071, - [7171] = 7084, - [7172] = 7172, + [7169] = 7169, + [7170] = 1972, + [7171] = 1933, + [7172] = 7050, [7173] = 7173, - [7174] = 7174, - [7175] = 7074, - [7176] = 7087, + [7174] = 7143, + [7175] = 7044, + [7176] = 7077, [7177] = 7177, - [7178] = 7069, - [7179] = 7179, - [7180] = 7180, - [7181] = 7181, - [7182] = 7138, - [7183] = 7183, + [7178] = 7178, + [7179] = 7044, + [7180] = 7073, + [7181] = 7137, + [7182] = 7069, + [7183] = 7092, [7184] = 7184, - [7185] = 7071, - [7186] = 7071, - [7187] = 7187, - [7188] = 7071, - [7189] = 7114, - [7190] = 7130, - [7191] = 7139, - [7192] = 7192, - [7193] = 7158, - [7194] = 7098, - [7195] = 7195, + [7185] = 7185, + [7186] = 7040, + [7187] = 7062, + [7188] = 7188, + [7189] = 7143, + [7190] = 7190, + [7191] = 7191, + [7192] = 7039, + [7193] = 2928, + [7194] = 7194, + [7195] = 7078, [7196] = 7196, - [7197] = 7159, - [7198] = 7084, + [7197] = 7050, + [7198] = 1971, [7199] = 7199, - [7200] = 7130, + [7200] = 1979, [7201] = 7201, [7202] = 7202, - [7203] = 7091, + [7203] = 7203, [7204] = 7204, - [7205] = 7105, - [7206] = 7071, - [7207] = 7207, - [7208] = 7208, - [7209] = 7174, - [7210] = 7071, - [7211] = 7211, - [7212] = 7072, - [7213] = 7134, - [7214] = 7214, - [7215] = 7119, - [7216] = 7216, - [7217] = 7069, - [7218] = 7218, - [7219] = 7219, - [7220] = 7220, - [7221] = 7071, - [7222] = 7222, - [7223] = 7223, + [7205] = 7205, + [7206] = 7038, + [7207] = 7083, + [7208] = 7092, + [7209] = 7045, + [7210] = 7210, + [7211] = 7040, + [7212] = 1957, + [7213] = 7044, + [7214] = 7190, + [7215] = 7042, + [7216] = 7073, + [7217] = 7217, + [7218] = 7073, + [7219] = 7057, + [7220] = 7044, + [7221] = 1929, + [7222] = 7190, + [7223] = 7044, [7224] = 7224, - [7225] = 7225, - [7226] = 7131, - [7227] = 7216, - [7228] = 7119, - [7229] = 7229, - [7230] = 7216, - [7231] = 7231, - [7232] = 7068, - [7233] = 7211, - [7234] = 7084, - [7235] = 7068, - [7236] = 7174, - [7237] = 7237, - [7238] = 7238, + [7225] = 7137, + [7226] = 7190, + [7227] = 7227, + [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] = 7131, - [7241] = 7131, - [7242] = 7114, - [7243] = 7071, + [7240] = 7092, + [7241] = 7241, + [7242] = 7239, + [7243] = 7101, [7244] = 7244, - [7245] = 7181, - [7246] = 7231, - [7247] = 7119, + [7245] = 7245, + [7246] = 7246, + [7247] = 7143, [7248] = 7248, - [7249] = 7249, - [7250] = 7229, - [7251] = 7130, - [7252] = 7184, - [7253] = 7071, + [7249] = 1937, + [7250] = 7239, + [7251] = 7077, + [7252] = 1946, + [7253] = 7253, [7254] = 7254, - [7255] = 7211, - [7256] = 7174, - [7257] = 7257, - [7258] = 7258, - [7259] = 7259, - [7260] = 7078, - [7261] = 7204, - [7262] = 7262, - [7263] = 7216, - [7264] = 7069, - [7265] = 2916, - [7266] = 7068, - [7267] = 7071, + [7255] = 7039, + [7256] = 7256, + [7257] = 7042, + [7258] = 1970, + [7259] = 7101, + [7260] = 7260, + [7261] = 7083, + [7262] = 7043, + [7263] = 7263, + [7264] = 7051, + [7265] = 7057, + [7266] = 2347, + [7267] = 7101, [7268] = 7268, - [7269] = 7105, - [7270] = 7106, - [7271] = 7152, - [7272] = 7143, - [7273] = 7273, - [7274] = 7087, - [7275] = 7077, - [7276] = 7276, - [7277] = 7204, - [7278] = 7211, - [7279] = 7279, - [7280] = 7138, - [7281] = 7071, - [7282] = 7257, - [7283] = 7073, + [7269] = 7083, + [7270] = 1960, + [7271] = 7271, + [7272] = 7272, + [7273] = 7143, + [7274] = 1953, + [7275] = 7050, + [7276] = 7073, + [7277] = 7277, + [7278] = 7073, + [7279] = 7038, + [7280] = 7077, + [7281] = 7281, + [7282] = 1965, + [7283] = 7039, [7284] = 7284, - [7285] = 7123, - [7286] = 7286, - [7287] = 7084, + [7285] = 7056, + [7286] = 7038, + [7287] = 7287, [7288] = 7288, - [7289] = 7120, - [7290] = 7098, + [7289] = 7289, + [7290] = 7290, [7291] = 7291, - [7292] = 7108, - [7293] = 7104, - [7294] = 7091, - [7295] = 7159, + [7292] = 7292, + [7293] = 7293, + [7294] = 7294, + [7295] = 7295, [7296] = 7296, - [7297] = 7074, - [7298] = 7083, - [7299] = 7296, - [7300] = 7073, - [7301] = 7115, + [7297] = 7297, + [7298] = 7298, + [7299] = 7299, + [7300] = 7293, + [7301] = 7301, [7302] = 7302, - [7303] = 7254, - [7304] = 7071, - [7305] = 7158, - [7306] = 7106, - [7307] = 7071, - [7308] = 7139, - [7309] = 7123, + [7303] = 7303, + [7304] = 7304, + [7305] = 7305, + [7306] = 7306, + [7307] = 7307, + [7308] = 7308, + [7309] = 7309, [7310] = 7310, - [7311] = 7296, + [7311] = 7311, [7312] = 7312, [7313] = 7313, - [7314] = 7069, + [7314] = 7314, [7315] = 7315, - [7316] = 7120, - [7317] = 7180, + [7316] = 7316, + [7317] = 7317, [7318] = 7318, [7319] = 7319, - [7320] = 7130, - [7321] = 7071, - [7322] = 7181, - [7323] = 7323, + [7320] = 7316, + [7321] = 7321, + [7322] = 7322, + [7323] = 7316, [7324] = 7324, - [7325] = 7087, + [7325] = 7303, [7326] = 7326, - [7327] = 7072, + [7327] = 7327, [7328] = 7328, - [7329] = 7134, + [7329] = 7293, [7330] = 7330, [7331] = 7331, - [7332] = 7071, - [7333] = 7180, - [7334] = 7179, - [7335] = 7130, - [7336] = 7083, - [7337] = 7085, - [7338] = 7086, - [7339] = 7071, - [7340] = 7088, - [7341] = 7089, - [7342] = 7259, - [7343] = 7071, - [7344] = 7071, - [7345] = 7091, - [7346] = 7346, - [7347] = 7071, - [7348] = 7087, - [7349] = 7081, - [7350] = 7114, - [7351] = 7124, - [7352] = 7122, - [7353] = 7353, - [7354] = 7098, - [7355] = 7184, - [7356] = 7102, + [7332] = 7332, + [7333] = 7333, + [7334] = 7316, + [7335] = 7335, + [7336] = 7336, + [7337] = 7316, + [7338] = 7338, + [7339] = 7339, + [7340] = 7340, + [7341] = 7316, + [7342] = 7335, + [7343] = 7343, + [7344] = 7344, + [7345] = 7345, + [7346] = 7335, + [7347] = 7338, + [7348] = 7348, + [7349] = 7305, + [7350] = 7350, + [7351] = 7351, + [7352] = 7352, + [7353] = 7318, + [7354] = 7318, + [7355] = 7340, + [7356] = 7294, [7357] = 7357, - [7358] = 7074, - [7359] = 7091, - [7360] = 7173, - [7361] = 7152, - [7362] = 7106, + [7358] = 7358, + [7359] = 7359, + [7360] = 7330, + [7361] = 7291, + [7362] = 7316, [7363] = 7363, [7364] = 7364, [7365] = 7365, - [7366] = 7071, - [7367] = 7071, + [7366] = 7312, + [7367] = 7363, [7368] = 7368, [7369] = 7369, - [7370] = 7114, - [7371] = 7218, - [7372] = 7219, - [7373] = 7220, - [7374] = 7222, - [7375] = 7223, - [7376] = 7224, - [7377] = 7225, - [7378] = 7071, - [7379] = 7231, - [7380] = 7071, - [7381] = 7381, - [7382] = 7116, + [7370] = 7370, + [7371] = 7371, + [7372] = 7318, + [7373] = 7373, + [7374] = 7374, + [7375] = 7339, + [7376] = 7294, + [7377] = 7377, + [7378] = 7328, + [7379] = 7379, + [7380] = 7380, + [7381] = 7316, + [7382] = 7382, [7383] = 7383, - [7384] = 7116, + [7384] = 7316, [7385] = 7385, - [7386] = 7118, - [7387] = 7179, - [7388] = 7257, - [7389] = 7259, - [7390] = 7390, - [7391] = 7087, - [7392] = 7392, - [7393] = 7268, - [7394] = 7071, - [7395] = 7395, - [7396] = 7078, - [7397] = 7125, - [7398] = 7127, - [7399] = 7123, - [7400] = 2893, + [7386] = 7365, + [7387] = 7387, + [7388] = 7388, + [7389] = 7389, + [7390] = 7380, + [7391] = 7391, + [7392] = 7315, + [7393] = 7316, + [7394] = 7394, + [7395] = 7330, + [7396] = 7370, + [7397] = 7374, + [7398] = 7398, + [7399] = 7399, + [7400] = 7365, [7401] = 7401, - [7402] = 7138, + [7402] = 7402, [7403] = 7403, - [7404] = 7077, - [7405] = 7143, - [7406] = 7406, - [7407] = 7218, - [7408] = 7219, - [7409] = 7220, - [7410] = 7222, - [7411] = 7223, - [7412] = 7224, - [7413] = 7225, - [7414] = 7102, - [7415] = 7231, - [7416] = 7237, - [7417] = 7143, - [7418] = 7118, - [7419] = 7419, + [7404] = 7365, + [7405] = 7399, + [7406] = 7403, + [7407] = 7316, + [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] = 7115, - [7422] = 7259, - [7423] = 7114, - [7424] = 7077, - [7425] = 7124, - [7426] = 7426, + [7421] = 7421, + [7422] = 7422, + [7423] = 7350, + [7424] = 7365, + [7425] = 7425, + [7426] = 7377, [7427] = 7427, [7428] = 7428, - [7429] = 7084, - [7430] = 7430, - [7431] = 7138, - [7432] = 7432, + [7429] = 7429, + [7430] = 7331, + [7431] = 7431, + [7432] = 7336, [7433] = 7433, - [7434] = 7071, - [7435] = 7435, - [7436] = 7222, - [7437] = 7223, - [7438] = 7224, - [7439] = 7225, - [7440] = 7231, - [7441] = 7123, - [7442] = 7276, - [7443] = 7127, - [7444] = 7134, - [7445] = 7125, - [7446] = 7259, - [7447] = 7447, - [7448] = 7225, - [7449] = 7084, - [7450] = 7120, - [7451] = 7216, - [7452] = 7116, - [7453] = 7114, - [7454] = 7224, - [7455] = 7224, - [7456] = 7225, - [7457] = 7231, - [7458] = 7069, - [7459] = 7130, - [7460] = 7223, - [7461] = 7222, - [7462] = 7071, - [7463] = 7259, - [7464] = 7071, - [7465] = 7465, + [7434] = 7434, + [7435] = 7427, + [7436] = 7436, + [7437] = 7437, + [7438] = 7380, + [7439] = 7431, + [7440] = 7440, + [7441] = 7441, + [7442] = 7442, + [7443] = 7443, + [7444] = 7316, + [7445] = 7445, + [7446] = 7333, + [7447] = 7436, + [7448] = 7316, + [7449] = 7344, + [7450] = 7314, + [7451] = 7445, + [7452] = 7316, + [7453] = 7453, + [7454] = 7373, + [7455] = 7309, + [7456] = 7456, + [7457] = 7442, + [7458] = 7458, + [7459] = 7459, + [7460] = 7460, + [7461] = 7380, + [7462] = 7462, + [7463] = 7463, + [7464] = 7464, + [7465] = 7370, [7466] = 7466, - [7467] = 7089, - [7468] = 7088, - [7469] = 7216, - [7470] = 7296, - [7471] = 7220, + [7467] = 7352, + [7468] = 7316, + [7469] = 7331, + [7470] = 7458, + [7471] = 7471, [7472] = 7472, - [7473] = 7473, - [7474] = 7159, - [7475] = 7106, - [7476] = 7259, - [7477] = 7152, - [7478] = 7158, - [7479] = 7086, - [7480] = 7104, - [7481] = 7085, - [7482] = 7073, - [7483] = 7071, - [7484] = 7131, - [7485] = 7219, - [7486] = 7139, - [7487] = 7071, - [7488] = 7259, - [7489] = 7218, - [7490] = 7490, - [7491] = 7130, - [7492] = 7492, - [7493] = 7276, + [7473] = 7316, + [7474] = 7373, + [7475] = 7475, + [7476] = 7327, + [7477] = 7477, + [7478] = 7316, + [7479] = 7479, + [7480] = 7368, + [7481] = 7481, + [7482] = 7482, + [7483] = 7317, + [7484] = 7458, + [7485] = 7380, + [7486] = 7486, + [7487] = 7466, + [7488] = 7488, + [7489] = 7489, + [7490] = 7293, + [7491] = 7399, + [7492] = 7291, + [7493] = 7316, [7494] = 7494, - [7495] = 7125, - [7496] = 7127, - [7497] = 7087, - [7498] = 7122, - [7499] = 7499, - [7500] = 7500, - [7501] = 7124, - [7502] = 7122, - [7503] = 7115, - [7504] = 7102, - [7505] = 7131, - [7506] = 7083, - [7507] = 7173, - [7508] = 7158, - [7509] = 7509, - [7510] = 7098, - [7511] = 7071, - [7512] = 7276, - [7513] = 7159, - [7514] = 7276, - [7515] = 7268, - [7516] = 7516, - [7517] = 7517, - [7518] = 7081, - [7519] = 7124, + [7495] = 7495, + [7496] = 7496, + [7497] = 7488, + [7498] = 7442, + [7499] = 7459, + [7500] = 7365, + [7501] = 7377, + [7502] = 7453, + [7503] = 7338, + [7504] = 7335, + [7505] = 7505, + [7506] = 7348, + [7507] = 7316, + [7508] = 7331, + [7509] = 7317, + [7510] = 7472, + [7511] = 7316, + [7512] = 7512, + [7513] = 7513, + [7514] = 7318, + [7515] = 7515, + [7516] = 7316, + [7517] = 7458, + [7518] = 7518, + [7519] = 7293, [7520] = 7520, - [7521] = 7208, - [7522] = 7159, - [7523] = 7122, - [7524] = 7143, - [7525] = 7091, - [7526] = 7158, - [7527] = 7084, - [7528] = 7083, - [7529] = 7115, - [7530] = 7276, - [7531] = 7102, - [7532] = 7108, - [7533] = 7208, - [7534] = 7276, - [7535] = 7535, - [7536] = 7208, - [7537] = 7276, - [7538] = 7538, - [7539] = 7539, + [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] = 7541, + [7541] = 7350, [7542] = 7542, - [7543] = 7543, - [7544] = 7544, - [7545] = 7545, - [7546] = 7546, - [7547] = 7547, - [7548] = 7548, - [7549] = 7549, + [7543] = 7472, + [7544] = 7365, + [7545] = 7333, + [7546] = 7333, + [7547] = 7316, + [7548] = 7479, + [7549] = 7316, [7550] = 7550, - [7551] = 7551, - [7552] = 7552, - [7553] = 7553, - [7554] = 7554, - [7555] = 7555, + [7551] = 7472, + [7552] = 7316, + [7553] = 7317, + [7554] = 7303, + [7555] = 7304, + [7556] = 7306, + [7557] = 7307, + [7558] = 7308, + [7559] = 7309, + [7560] = 7560, + [7561] = 7314, + [7562] = 7319, + [7563] = 7316, + [7564] = 7564, + [7565] = 7565, + [7566] = 3044, + [7567] = 7306, + [7568] = 7568, + [7569] = 7368, + [7570] = 7475, + [7571] = 7340, + [7572] = 7336, + [7573] = 7343, + [7574] = 7574, + [7575] = 7316, + [7576] = 7576, + [7577] = 7352, + [7578] = 7578, + [7579] = 7579, + [7580] = 7459, + [7581] = 7581, + [7582] = 7343, + [7583] = 7583, + [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, + [7604] = 7604, + [7605] = 7319, + [7606] = 7606, + [7607] = 7488, + [7608] = 7343, + [7609] = 7331, + [7610] = 7496, + [7611] = 7368, + [7612] = 7612, + [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, + [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, + [7680] = 7680, + [7681] = 7681, + [7682] = 7317, + [7683] = 7291, + [7684] = 7316, + [7685] = 7685, + [7686] = 7686, + [7687] = 7301, + [7688] = 7331, + [7689] = 7363, + [7690] = 7351, + [7691] = 7301, + [7692] = 7692, + [7693] = 7333, + [7694] = 7350, + [7695] = 7316, + [7696] = 7293, + [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, + [7718] = 7718, + [7719] = 7410, + [7720] = 7410, + [7721] = 7316, + [7722] = 7316, + [7723] = 7331, + [7724] = 7370, + [7725] = 7374, + [7726] = 7316, + [7727] = 7436, + [7728] = 7399, + [7729] = 7368, + [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, }; static TSCharacterRange sym__identifier_token_character_set_2[] = { @@ -12475,281 +12740,281 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(132); + if (eof) ADVANCE(133); ADVANCE_MAP( - '!', 157, - '"', 274, + '!', 158, + '"', 275, '#', 9, - '%', 172, - '&', 180, - '\'', 258, - '(', 141, - ')', 142, - '*', 168, - '+', 162, - ',', 139, - '-', 164, - '.', 193, - '/', 170, - '0', 263, - ':', 138, - ';', 133, - '<', 146, - '=', 134, - '>', 151, - '?', 154, + '%', 173, + '&', 181, + '\'', 259, + '(', 142, + ')', 143, + '*', 169, + '+', 163, + ',', 140, + '-', 165, + '.', 194, + '/', 171, + '0', 264, + ':', 139, + ';', 134, + '<', 147, + '=', 135, + '>', 152, + '?', 155, '@', 12, - '[', 136, + '[', 137, '\\', 30, - ']', 140, - '^', 174, - '{', 143, - '|', 176, - '}', 144, - '~', 158, - 'U', 332, - 'u', 332, + ']', 141, + '^', 175, + '{', 144, + '|', 177, + '}', 145, + '~', 159, + 'U', 333, + 'u', 333, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) SKIP(129); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(264); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + lookahead == 0xfeff) SKIP(130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 1: ADVANCE_MAP( - '\n', 335, + '\n', 336, '!', 25, - '"', 274, - '#', 48, + '"', 275, + '#', 49, '&', 19, - ',', 139, + ',', 140, '/', 20, - '0', 267, + '0', 268, '=', 26, '@', 35, '\\', 31, - '|', 98, + '|', 99, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(1); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(268); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 2: if (lookahead == '\n') SKIP(11); - if (lookahead == '"') ADVANCE(274); - if (lookahead == '#') ADVANCE(285); - if (lookahead == '/') ADVANCE(277); + if (lookahead == '"') ADVANCE(275); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '/') ADVANCE(278); if (lookahead == '\\') ADVANCE(32); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(276); - if (lookahead != 0) ADVANCE(318); + lookahead == 0xfeff) ADVANCE(277); + if (lookahead != 0) ADVANCE(319); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(336); - if (lookahead == '#') ADVANCE(354); - if (lookahead == '/') ADVANCE(346); + if (lookahead == '\n') ADVANCE(337); + if (lookahead == '#') ADVANCE(355); + if (lookahead == '/') ADVANCE(347); if (lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(342); + lookahead == 0xfeff) ADVANCE(343); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); - if (lookahead != 0) ADVANCE(396); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 4: ADVANCE_MAP( - '!', 157, - '"', 274, + '!', 158, + '"', 275, '#', 47, - '%', 172, - '&', 180, - '(', 141, - ')', 142, - '*', 168, - '+', 162, - ',', 139, - '-', 164, - '.', 192, - '/', 170, - '0', 267, - ':', 138, - ';', 133, - '<', 146, - '=', 134, - '>', 151, - '?', 154, + '%', 173, + '&', 181, + '(', 142, + ')', 143, + '*', 169, + '+', 163, + ',', 140, + '-', 165, + '.', 193, + '/', 171, + '0', 268, + ':', 139, + ';', 134, + '<', 147, + '=', 135, + '>', 152, + '?', 155, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 174, - '{', 143, - '|', 176, - '}', 144, + ']', 141, + '^', 175, + '{', 144, + '|', 177, + '}', 145, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(4); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(268); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 5: ADVANCE_MAP( - '!', 157, + '!', 158, '#', 47, - '%', 172, - '&', 180, - '(', 141, - ')', 142, - '*', 168, - '+', 162, - ',', 139, - '-', 164, - '.', 192, - '/', 170, - ':', 137, - ';', 133, - '<', 146, - '=', 134, - '>', 151, - '?', 154, + '%', 173, + '&', 181, + '(', 142, + ')', 143, + '*', 169, + '+', 163, + ',', 140, + '-', 165, + '.', 193, + '/', 171, + ':', 138, + ';', 134, + '<', 147, + '=', 135, + '>', 152, + '?', 155, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 174, - '{', 143, - '|', 176, - '}', 144, + ']', 141, + '^', 175, + '{', 144, + '|', 177, + '}', 145, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(5); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 6: ADVANCE_MAP( - '!', 157, + '!', 158, '#', 47, - '%', 171, - '&', 179, - '(', 141, - ')', 142, - '*', 167, - '+', 161, - ',', 139, - '-', 165, - '.', 192, - '/', 169, - ':', 138, - ';', 133, - '<', 147, + '%', 172, + '&', 180, + '(', 142, + ')', 143, + '*', 168, + '+', 162, + ',', 140, + '-', 166, + '.', 193, + '/', 170, + ':', 139, + ';', 134, + '<', 148, '=', 27, - '>', 152, - '?', 155, + '>', 153, + '?', 156, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 173, - '{', 143, - '|', 177, - '}', 144, + ']', 141, + '^', 174, + '{', 144, + '|', 178, + '}', 145, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(6); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 7: ADVANCE_MAP( - '!', 157, + '!', 158, '#', 47, - '%', 171, - '&', 179, - '(', 141, - ')', 142, - '*', 167, - '+', 161, - ',', 139, - '-', 165, - '.', 192, - '/', 169, - ':', 137, - ';', 133, - '<', 147, + '%', 172, + '&', 180, + '(', 142, + ')', 143, + '*', 168, + '+', 162, + ',', 140, + '-', 166, + '.', 193, + '/', 170, + ':', 138, + ';', 134, + '<', 148, '=', 27, - '>', 152, - '?', 155, + '>', 153, + '?', 156, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 173, - '|', 177, - '}', 144, - 'U', 332, - 'u', 332, + ']', 141, + '^', 174, + '|', 178, + '}', 145, + 'U', 333, + 'u', 333, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(7); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 8: ADVANCE_MAP( - '!', 157, - '#', 48, - '%', 171, - '&', 178, - '*', 167, - '+', 161, - '-', 163, - '/', 169, - '<', 147, + '!', 158, + '#', 49, + '%', 172, + '&', 179, + '*', 168, + '+', 162, + '-', 164, + '/', 170, + '<', 148, '=', 26, - '>', 152, + '>', 153, '@', 35, '\\', 31, - '^', 173, - '|', 175, - '~', 158, + '^', 174, + '|', 176, + '~', 159, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(8); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 9: ADVANCE_MAP( - '!', 407, - 'd', 57, - 'e', 76, - 'i', 60, - 'l', 69, - 'n', 97, - 'p', 94, - 'r', 52, - 'u', 83, + '!', 408, + 'd', 58, + 'e', 77, + 'i', 61, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, 'w', 44, '\t', 46, ' ', 46, @@ -12757,41 +13022,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 10: ADVANCE_MAP( - '!', 156, + '!', 157, '#', 48, - '\'', 258, - '(', 141, - ')', 142, - '*', 167, - ',', 139, - '-', 166, - '.', 191, + '\'', 259, + '(', 142, + ')', 143, + '*', 168, + ',', 140, + '-', 167, + '.', 192, '/', 20, - '0', 267, - ':', 138, - ';', 133, - '<', 145, - '=', 135, - '>', 149, - '?', 153, + '0', 268, + ':', 139, + ';', 134, + '<', 146, + '=', 136, + '>', 150, + '?', 154, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '{', 143, - '}', 144, + ']', 141, + '{', 144, + '}', 145, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(10); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(268); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(269); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(274); - if (lookahead == '#') ADVANCE(48); + if (lookahead == '"') ADVANCE(275); + if (lookahead == '#') ADVANCE(49); if (lookahead == '/') ADVANCE(20); if (lookahead == '\\') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12803,79 +13068,79 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: if (lookahead == '"') ADVANCE(13); if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(330); + if (lookahead == '"') ADVANCE(331); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '#') ADVANCE(354); - if (lookahead == '/') ADVANCE(346); - if (lookahead == 0xa0 || - lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(343); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14); - if (lookahead != 0) ADVANCE(396); - END_STATE(); - case 15: - if (lookahead == '#') ADVANCE(261); - if (lookahead == '/') ADVANCE(260); + if (lookahead == '#') ADVANCE(262); + if (lookahead == '/') ADVANCE(261); if (lookahead == '\\') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(259); + lookahead == 0xfeff) ADVANCE(260); if (lookahead != 0 && - lookahead != '\'') ADVANCE(259); + lookahead != '\'') ADVANCE(260); + END_STATE(); + case 15: + if (lookahead == '#') ADVANCE(355); + if (lookahead == '/') ADVANCE(347); + if (lookahead == 0xa0 || + lookahead == 0x3000 || + lookahead == 0xfeff) ADVANCE(344); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(15); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 16: - if (lookahead == '#') ADVANCE(222); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '/') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(213); + lookahead == 0xfeff) ADVANCE(214); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 17: ADVANCE_MAP( - '#', 48, - '(', 141, - ')', 142, - '*', 167, - ',', 139, + '#', 49, + '(', 142, + ')', 143, + '*', 168, + ',', 140, '-', 28, - '.', 191, + '.', 192, '/', 20, - ':', 137, - ';', 133, - '<', 145, + ':', 138, + ';', 134, + '<', 146, '=', 29, - '>', 149, - '?', 153, + '>', 150, + '?', 154, '@', 35, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '{', 143, - '}', 144, + ']', 141, + '{', 144, + '}', 145, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) SKIP(17); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(48); + if (lookahead == '#') ADVANCE(49); if (lookahead == '/') ADVANCE(20); if (lookahead == '\\') ADVANCE(34); if (('\t' <= lookahead && lookahead <= '\r') || @@ -12885,15 +13150,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(18); END_STATE(); case 19: - if (lookahead == '&') ADVANCE(209); + if (lookahead == '&') ADVANCE(210); END_STATE(); case 20: if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(412); + if (lookahead == '/') ADVANCE(413); END_STATE(); case 21: if (lookahead == '*') ADVANCE(21); - if (lookahead == '/') ADVANCE(408); + if (lookahead == '/') ADVANCE(409); if (lookahead != 0) ADVANCE(22); END_STATE(); case 22: @@ -12902,165 +13167,165 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 23: if (lookahead == '*') ADVANCE(21); - if (lookahead != 0) ADVANCE(341); + if (lookahead != 0) ADVANCE(342); END_STATE(); case 24: - if (lookahead == '8') ADVANCE(329); + if (lookahead == '8') ADVANCE(330); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(188); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 26: - if (lookahead == '=') ADVANCE(187); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 27: - if (lookahead == '=') ADVANCE(187); - if (lookahead == '>') ADVANCE(194); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 28: - if (lookahead == '>') ADVANCE(257); + if (lookahead == '>') ADVANCE(258); END_STATE(); case 29: - if (lookahead == '>') ADVANCE(194); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 30: ADVANCE_MAP( - 'U', 323, - 'u', 321, - 'x', 320, - '"', 325, - '\'', 325, - '0', 325, - '?', 325, - '\\', 325, - 'a', 325, - 'b', 325, - 'e', 325, - 'f', 325, - 'n', 325, - 'r', 325, - 't', 325, - 'v', 325, + 'U', 324, + 'u', 322, + 'x', 321, + '"', 326, + '\'', 326, + '0', 326, + '?', 326, + '\\', 326, + 'a', 326, + 'b', 326, + 'e', 326, + 'f', 326, + 'n', 326, + 'r', 326, + 't', 326, + 'v', 326, ); - if (lookahead != 0) ADVANCE(319); + if (lookahead != 0) ADVANCE(320); END_STATE(); case 31: - if (lookahead == 'U') ADVANCE(126); - if (lookahead == 'u') ADVANCE(114); + if (lookahead == 'U') ADVANCE(127); + if (lookahead == 'u') ADVANCE(115); END_STATE(); case 32: ADVANCE_MAP( - 'U', 324, - 'u', 322, - 'x', 320, - '"', 325, - '\'', 325, - '0', 325, - '?', 325, - '\\', 325, - 'a', 325, - 'b', 325, - 'e', 325, - 'f', 325, - 'n', 325, - 'r', 325, - 't', 325, - 'v', 325, + 'U', 325, + 'u', 323, + 'x', 321, + '"', 326, + '\'', 326, + '0', 326, + '?', 326, + '\\', 326, + 'a', 326, + 'b', 326, + 'e', 326, + 'f', 326, + 'n', 326, + 'r', 326, + 't', 326, + 'v', 326, ); - if (lookahead != 0) ADVANCE(319); + if (lookahead != 0) ADVANCE(320); END_STATE(); case 33: ADVANCE_MAP( - 'U', 125, - 'u', 113, - 'x', 106, - '"', 325, - '\'', 325, - '0', 325, - '?', 325, - '\\', 325, - 'a', 325, - 'b', 325, - 'e', 325, - 'f', 325, - 'n', 325, - 'r', 325, - 't', 325, - 'v', 325, + 'U', 126, + 'u', 114, + 'x', 107, + '"', 326, + '\'', 326, + '0', 326, + '?', 326, + '\\', 326, + 'a', 326, + 'b', 326, + 'e', 326, + 'f', 326, + 'n', 326, + 'r', 326, + 't', 326, + 'v', 326, ); END_STATE(); case 34: ADVANCE_MAP( - 'U', 127, - 'u', 115, - 'x', 106, - '"', 325, - '\'', 325, - '0', 325, - '?', 325, - '\\', 325, - 'a', 325, - 'b', 325, - 'e', 325, - 'f', 325, - 'n', 325, - 'r', 325, - 't', 325, - 'v', 325, + 'U', 128, + 'u', 116, + 'x', 107, + '"', 326, + '\'', 326, + '0', 326, + '?', 326, + '\\', 326, + 'a', 326, + 'b', 326, + 'e', 326, + 'f', 326, + 'n', 326, + 'r', 326, + 't', 326, + 'v', 326, ); END_STATE(); case 35: if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 36: if (lookahead == '_') ADVANCE(36); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); case 37: if (lookahead == '_') ADVANCE(37); if (lookahead == '0' || - lookahead == '1') ADVANCE(265); + lookahead == '1') ADVANCE(266); END_STATE(); case 38: if (lookahead == '_') ADVANCE(38); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); case 39: if (lookahead == '_') ADVANCE(39); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 40: if (lookahead == '_') ADVANCE(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); case 41: if (lookahead == 'a') ADVANCE(45); END_STATE(); case 42: - if (lookahead == 'a') ADVANCE(401); + if (lookahead == 'a') ADVANCE(402); END_STATE(); case 43: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(95); + if (lookahead == 'a') ADVANCE(96); END_STATE(); case 45: - if (lookahead == 'b') ADVANCE(79); + if (lookahead == 'b') ADVANCE(80); END_STATE(); case 46: ADVANCE_MAP( - 'd', 57, - 'e', 76, - 'i', 60, - 'l', 69, - 'n', 97, - 'p', 94, - 'r', 52, - 'u', 83, + 'd', 58, + 'e', 77, + 'i', 61, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, 'w', 44, '\t', 46, ' ', 46, @@ -13068,13 +13333,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 47: ADVANCE_MAP( - 'd', 57, - 'e', 76, - 'l', 69, - 'n', 97, - 'p', 94, - 'r', 52, - 'u', 83, + 'd', 58, + 'e', 77, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, 'w', 44, '\t', 47, ' ', 47, @@ -13082,208 +13347,218 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 48: ADVANCE_MAP( - 'd', 57, - 'e', 84, - 'l', 69, - 'n', 97, - 'p', 94, - 'r', 52, - 'u', 83, + 'd', 58, + 'e', 85, + 'i', 61, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, 'w', 44, '\t', 48, ' ', 48, ); END_STATE(); case 49: - if (lookahead == 'd') ADVANCE(72); + ADVANCE_MAP( + 'd', 58, + 'e', 85, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, + 'w', 44, + '\t', 49, + ' ', 49, + ); END_STATE(); case 50: - if (lookahead == 'd') ADVANCE(96); + if (lookahead == 'd') ADVANCE(73); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(58); + if (lookahead == 'd') ADVANCE(97); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(67); + if (lookahead == 'd') ADVANCE(59); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'e') ADVANCE(68); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(400); + if (lookahead == 'e') ADVANCE(339); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(405); + if (lookahead == 'e') ADVANCE(401); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(406); END_STATE(); case 57: - if (lookahead == 'e') ADVANCE(64); + if (lookahead == 'e') ADVANCE(403); END_STATE(); case 58: - if (lookahead == 'e') ADVANCE(63); + if (lookahead == 'e') ADVANCE(65); END_STATE(); case 59: - if (lookahead == 'e') ADVANCE(68); + if (lookahead == 'e') ADVANCE(64); END_STATE(); case 60: - if (lookahead == 'f') ADVANCE(334); + if (lookahead == 'e') ADVANCE(69); END_STATE(); case 61: - if (lookahead == 'f') ADVANCE(339); + if (lookahead == 'f') ADVANCE(335); END_STATE(); case 62: - if (lookahead == 'f') ADVANCE(337); + if (lookahead == 'f') ADVANCE(340); END_STATE(); case 63: - if (lookahead == 'f') ADVANCE(406); + if (lookahead == 'f') ADVANCE(338); END_STATE(); case 64: - if (lookahead == 'f') ADVANCE(74); + if (lookahead == 'f') ADVANCE(407); END_STATE(); case 65: - if (lookahead == 'g') ADVANCE(80); + if (lookahead == 'f') ADVANCE(75); END_STATE(); case 66: - if (lookahead == 'g') ADVANCE(404); + if (lookahead == 'g') ADVANCE(81); END_STATE(); case 67: - if (lookahead == 'g') ADVANCE(70); + if (lookahead == 'g') ADVANCE(405); END_STATE(); case 68: - if (lookahead == 'g') ADVANCE(75); + if (lookahead == 'g') ADVANCE(71); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'g') ADVANCE(76); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'i') ADVANCE(87); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(61); - if (lookahead == 's') ADVANCE(53); + if (lookahead == 'i') ADVANCE(91); END_STATE(); case 72: if (lookahead == 'i') ADVANCE(62); - if (lookahead == 'r') ADVANCE(59); + if (lookahead == 's') ADVANCE(54); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'i') ADVANCE(63); + if (lookahead == 'r') ADVANCE(60); END_STATE(); case 74: - if (lookahead == 'i') ADVANCE(87); + if (lookahead == 'i') ADVANCE(86); END_STATE(); case 75: - if (lookahead == 'i') ADVANCE(91); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 76: - if (lookahead == 'l') ADVANCE(71); - if (lookahead == 'n') ADVANCE(49); - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'i') ADVANCE(92); END_STATE(); case 77: - if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'l') ADVANCE(72); + if (lookahead == 'n') ADVANCE(50); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 78: - if (lookahead == 'l') ADVANCE(41); + if (lookahead == 'l') ADVANCE(79); END_STATE(); case 79: - if (lookahead == 'l') ADVANCE(56); + if (lookahead == 'l') ADVANCE(41); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(42); + if (lookahead == 'l') ADVANCE(57); END_STATE(); case 81: - if (lookahead == 'n') ADVANCE(398); + if (lookahead == 'm') ADVANCE(42); END_STATE(); case 82: if (lookahead == 'n') ADVANCE(399); END_STATE(); case 83: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'n') ADVANCE(400); END_STATE(); case 84: - if (lookahead == 'n') ADVANCE(50); - if (lookahead == 'r') ADVANCE(92); + if (lookahead == 'n') ADVANCE(52); END_STATE(); case 85: - if (lookahead == 'n') ADVANCE(66); + if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'r') ADVANCE(93); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(54); + if (lookahead == 'n') ADVANCE(67); END_STATE(); case 87: if (lookahead == 'n') ADVANCE(55); END_STATE(); case 88: - if (lookahead == 'n') ADVANCE(73); + if (lookahead == 'n') ADVANCE(56); END_STATE(); case 89: - if (lookahead == 'o') ADVANCE(93); + if (lookahead == 'n') ADVANCE(74); END_STATE(); case 90: - if (lookahead == 'o') ADVANCE(81); + if (lookahead == 'o') ADVANCE(94); END_STATE(); case 91: if (lookahead == 'o') ADVANCE(82); END_STATE(); case 92: - if (lookahead == 'r') ADVANCE(89); + if (lookahead == 'o') ADVANCE(83); END_STATE(); case 93: - if (lookahead == 'r') ADVANCE(403); + if (lookahead == 'r') ADVANCE(90); END_STATE(); case 94: - if (lookahead == 'r') ADVANCE(43); + if (lookahead == 'r') ADVANCE(404); END_STATE(); case 95: - if (lookahead == 'r') ADVANCE(88); + if (lookahead == 'r') ADVANCE(43); END_STATE(); case 96: - if (lookahead == 'r') ADVANCE(59); + if (lookahead == 'r') ADVANCE(89); END_STATE(); case 97: - if (lookahead == 'u') ADVANCE(77); + if (lookahead == 'r') ADVANCE(60); END_STATE(); case 98: - if (lookahead == '|') ADVANCE(210); + if (lookahead == 'u') ADVANCE(78); END_STATE(); case 99: - if (lookahead == '+' || - lookahead == '-') ADVANCE(101); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (lookahead == '|') ADVANCE(211); END_STATE(); case 100: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (lookahead == '+' || + lookahead == '-') ADVANCE(102); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 101: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 102: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(333); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 103: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); END_STATE(); case 104: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(328); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); END_STATE(); case 105: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(329); END_STATE(); case 106: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(327); END_STATE(); case 107: if (('0' <= lookahead && lookahead <= '9') || @@ -13293,7 +13568,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 108: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(102); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(106); END_STATE(); case 109: if (('0' <= lookahead && lookahead <= '9') || @@ -13303,7 +13578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 110: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(107); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 111: if (('0' <= lookahead && lookahead <= '9') || @@ -13333,32 +13608,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 116: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 117: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); END_STATE(); case 118: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 119: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); END_STATE(); case 120: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(116); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); END_STATE(); case 121: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(117); END_STATE(); case 122: if (('0' <= lookahead && lookahead <= '9') || @@ -13391,1198 +13666,1195 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 128: - if (lookahead != 0 && - lookahead != '*') ADVANCE(396); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 129: - if (eof) ADVANCE(132); + if (lookahead != 0 && + lookahead != '*') ADVANCE(397); + END_STATE(); + case 130: + if (eof) ADVANCE(133); ADVANCE_MAP( - '!', 157, - '"', 274, + '!', 158, + '"', 275, '#', 9, - '%', 172, - '&', 180, - '\'', 258, - '(', 141, - ')', 142, - '*', 168, - '+', 162, - ',', 139, - '-', 164, - '.', 193, - '/', 170, - '0', 263, - ':', 138, - ';', 133, - '<', 146, - '=', 134, - '>', 151, - '?', 154, + '%', 173, + '&', 181, + '\'', 259, + '(', 142, + ')', 143, + '*', 169, + '+', 163, + ',', 140, + '-', 165, + '.', 194, + '/', 171, + '0', 264, + ':', 139, + ';', 134, + '<', 147, + '=', 135, + '>', 152, + '?', 155, '@', 12, - '[', 136, + '[', 137, '\\', 33, - ']', 140, - '^', 174, - '{', 143, - '|', 176, - '}', 144, - '~', 158, - 'U', 332, - 'u', 332, + ']', 141, + '^', 175, + '{', 144, + '|', 177, + '}', 145, + '~', 159, + 'U', 333, + 'u', 333, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) SKIP(129); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(264); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + lookahead == 0xfeff) SKIP(130); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); - case 130: - if (eof) ADVANCE(132); + case 131: + if (eof) ADVANCE(133); ADVANCE_MAP( - '!', 157, - '"', 274, + '!', 158, + '"', 275, '#', 46, - '%', 171, - '&', 179, - '\'', 258, - '(', 141, - ')', 142, - '*', 167, - '+', 161, - ',', 139, - '-', 165, - '.', 193, - '/', 169, - '0', 263, - ':', 137, - ';', 133, - '<', 147, + '%', 172, + '&', 180, + '\'', 259, + '(', 142, + ')', 143, + '*', 168, + '+', 162, + ',', 140, + '-', 166, + '.', 194, + '/', 170, + '0', 264, + ':', 138, + ';', 134, + '<', 148, '=', 27, - '>', 152, - '?', 155, + '>', 153, + '?', 156, '@', 12, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 173, - '{', 143, - '|', 177, - '}', 144, - '~', 158, + ']', 141, + '^', 174, + '{', 144, + '|', 178, + '}', 145, + '~', 159, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) SKIP(130); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(264); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); + lookahead == 0xfeff) SKIP(131); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); - case 131: - if (eof) ADVANCE(132); + case 132: + if (eof) ADVANCE(133); ADVANCE_MAP( - '!', 156, - '"', 274, + '!', 157, + '"', 275, '#', 9, - '&', 178, - '\'', 258, - '(', 141, - ')', 142, - '*', 167, - '+', 161, - ',', 139, - '-', 165, - '.', 193, + '&', 179, + '\'', 259, + '(', 142, + ')', 143, + '*', 168, + '+', 162, + ',', 140, + '-', 166, + '.', 194, '/', 20, - '0', 263, - ':', 138, - ';', 133, - '<', 148, - '=', 135, - '>', 150, - '?', 153, + '0', 264, + ':', 139, + ';', 134, + '<', 149, + '=', 136, + '>', 151, + '?', 154, '@', 12, - '[', 136, + '[', 137, '\\', 31, - ']', 140, - '^', 173, - '{', 143, - '}', 144, - '~', 158, + ']', 141, + '^', 174, + '{', 144, + '}', 145, + '~', 159, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) SKIP(131); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(264); - if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(333); - END_STATE(); - case 132: - ACCEPT_TOKEN(ts_builtin_sym_end); + lookahead == 0xfeff) SKIP(132); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(265); + if (set_contains(sym__identifier_token_character_set_2, 669, lookahead)) ADVANCE(334); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(187); - if (lookahead == '>') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 135: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(194); + if (lookahead == '=') ADVANCE(188); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(195); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 138: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(195); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(196); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 146: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(182); - if (lookahead == '=') ADVANCE(190); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(181); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(183); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 148: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(190); + if (lookahead == '<') ADVANCE(182); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(191); END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(189); END_STATE(); case 151: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(189); - if (lookahead == '>') ADVANCE(183); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 152: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(189); + if (lookahead == '=') ADVANCE(190); if (lookahead == '>') ADVANCE(184); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(190); + if (lookahead == '>') ADVANCE(185); END_STATE(); case 154: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(212); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(211); + if (lookahead == '?') ADVANCE(213); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(212); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(188); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 162: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(159); - if (lookahead == '=') ADVANCE(197); + if (lookahead == '+') ADVANCE(160); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(160); + if (lookahead == '=') ADVANCE(198); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '=') ADVANCE(198); - if (lookahead == '>') ADVANCE(257); + if (lookahead == '-') ADVANCE(161); END_STATE(); case 165: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '>') ADVANCE(257); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '>') ADVANCE(258); END_STATE(); case 166: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(257); + if (lookahead == '-') ADVANCE(161); + if (lookahead == '>') ADVANCE(258); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(258); END_STATE(); case 168: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(199); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(412); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(200); END_STATE(); case 170: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(412); - if (lookahead == '=') ADVANCE(200); + if (lookahead == '/') ADVANCE(413); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(22); + if (lookahead == '/') ADVANCE(413); + if (lookahead == '=') ADVANCE(201); END_STATE(); case 172: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(201); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(202); END_STATE(); case 174: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(203); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(204); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(204); - if (lookahead == '|') ADVANCE(210); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(210); + if (lookahead == '=') ADVANCE(205); + if (lookahead == '|') ADVANCE(211); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(211); END_STATE(); case 179: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(209); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(209); - if (lookahead == '=') ADVANCE(202); + if (lookahead == '&') ADVANCE(210); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(210); + if (lookahead == '=') ADVANCE(203); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(205); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_LT); if (lookahead == '=') ADVANCE(206); - if (lookahead == '>') ADVANCE(186); END_STATE(); case 184: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(185); + if (lookahead == '=') ADVANCE(207); + if (lookahead == '>') ADVANCE(187); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(186); END_STATE(); case 186: ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(207); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(208); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 192: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(196); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(196); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (lookahead == '.') ADVANCE(197); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(197); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(208); END_STATE(); case 213: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(209); + END_STATE(); + case 214: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '#') ADVANCE(222); - if (lookahead == '/') ADVANCE(214); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '/') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(213); + lookahead == 0xfeff) ADVANCE(214); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '}') ADVANCE(256); - END_STATE(); - case 214: - ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(216); - if (lookahead == '/') ADVANCE(255); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 215: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(215); + if (lookahead == '*') ADVANCE(217); if (lookahead == '/') ADVANCE(256); - if (lookahead == '"' || - lookahead == '}') ADVANCE(22); - if (lookahead != 0) ADVANCE(216); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '}') ADVANCE(257); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(215); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '/') ADVANCE(257); if (lookahead == '"' || lookahead == '}') ADVANCE(22); - if (lookahead != 0) ADVANCE(216); + if (lookahead != 0) ADVANCE(217); END_STATE(); case 217: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(256); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '}') ADVANCE(256); + if (lookahead == '*') ADVANCE(216); + if (lookahead == '"' || + lookahead == '}') ADVANCE(22); + if (lookahead != 0) ADVANCE(217); END_STATE(); case 218: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(221); + if (lookahead == 'a') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 219: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(232); + if (lookahead == 'a') ADVANCE(222); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 220: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(253); + if (lookahead == 'a') ADVANCE(233); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 221: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'b') ADVANCE(238); + if (lookahead == 'a') ADVANCE(254); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 222: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - ADVANCE_MAP( - 'd', 226, - 'e', 242, - 'l', 234, - 'n', 254, - 'p', 252, - 'r', 227, - 'u', 243, - 'w', 220, - '\t', 222, - ' ', 222, - ); + if (lookahead == 'b') ADVANCE(239); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'd') ADVANCE(251); + ADVANCE_MAP( + 'd', 227, + 'e', 243, + 'l', 235, + 'n', 255, + 'p', 253, + 'r', 228, + 'u', 244, + 'w', 221, + '\t', 223, + ' ', 223, + ); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'd') ADVANCE(228); + if (lookahead == 'd') ADVANCE(252); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'd') ADVANCE(229); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(233); + if (lookahead == 'e') ADVANCE(231); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(229); + if (lookahead == 'e') ADVANCE(234); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'f') ADVANCE(256); + if (lookahead == 'e') ADVANCE(230); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'f') ADVANCE(234); + if (lookahead == 'f') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(256); + if (lookahead == 'f') ADVANCE(235); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(240); + if (lookahead == 'g') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(235); + if (lookahead == 'g') ADVANCE(241); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(244); + if (lookahead == 'g') ADVANCE(236); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(247); + if (lookahead == 'i') ADVANCE(245); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(245); + if (lookahead == 'i') ADVANCE(248); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(239); + if (lookahead == 'i') ADVANCE(246); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(225); + if (lookahead == 'l') ADVANCE(240); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(218); + if (lookahead == 'l') ADVANCE(226); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'm') ADVANCE(217); + if (lookahead == 'l') ADVANCE(219); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(256); + if (lookahead == 'm') ADVANCE(218); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(223); - if (lookahead == 'r') ADVANCE(250); + if (lookahead == 'n') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == 'n') ADVANCE(224); + if (lookahead == 'r') ADVANCE(251); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == 'n') ADVANCE(225); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(231); + if (lookahead == 'n') ADVANCE(226); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(236); + if (lookahead == 'n') ADVANCE(232); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'o') ADVANCE(241); + if (lookahead == 'n') ADVANCE(237); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'o') ADVANCE(249); + if (lookahead == 'o') ADVANCE(242); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(256); + if (lookahead == 'o') ADVANCE(250); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(248); + if (lookahead == 'r') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(227); + if (lookahead == 'r') ADVANCE(249); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(219); + if (lookahead == 'r') ADVANCE(228); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(246); + if (lookahead == 'r') ADVANCE(220); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'u') ADVANCE(237); + if (lookahead == 'r') ADVANCE(247); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); case 255: + ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); + if (lookahead == 'u') ADVANCE(238); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '}') ADVANCE(257); + END_STATE(); + case 256: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(256); + lookahead == '\r') ADVANCE(257); if (lookahead == '"' || - lookahead == '}') ADVANCE(412); - if (lookahead != 0) ADVANCE(255); + lookahead == '}') ADVANCE(413); + if (lookahead != 0) ADVANCE(256); END_STATE(); - case 256: + case 257: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(256); + lookahead != '}') ADVANCE(257); END_STATE(); - case 257: + case 258: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 258: + case 259: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 259: + case 260: ACCEPT_TOKEN(sym_character_literal_content); END_STATE(); - case 260: + case 261: ACCEPT_TOKEN(sym_character_literal_content); if (lookahead == '*') ADVANCE(22); - if (lookahead == '/') ADVANCE(412); + if (lookahead == '/') ADVANCE(413); END_STATE(); - case 261: + case 262: ACCEPT_TOKEN(sym_character_literal_content); ADVANCE_MAP( - 'd', 57, - 'e', 84, - 'l', 69, - 'n', 97, - 'p', 94, - 'r', 52, - 'u', 83, + 'd', 58, + 'e', 85, + 'l', 70, + 'n', 98, + 'p', 95, + 'r', 53, + 'u', 84, 'w', 44, - '\t', 48, - ' ', 48, + '\t', 49, + ' ', 49, ); END_STATE(); - case 262: + case 263: ACCEPT_TOKEN(sym_integer_literal); END_STATE(); - case 263: + case 264: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( - '.', 100, + '.', 101, '_', 36, 'B', 37, 'b', 37, - 'E', 99, - 'e', 99, - 'L', 270, - 'l', 270, - 'U', 269, - 'u', 269, + 'E', 100, + 'e', 100, + 'L', 271, + 'l', 271, + 'U', 270, + 'u', 270, 'X', 38, 'x', 38, - 'D', 271, - 'F', 271, - 'M', 271, - 'd', 271, - 'f', 271, - 'm', 271, + 'D', 272, + 'F', 272, + 'M', 272, + 'd', 272, + 'f', 272, + 'm', 272, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); - case 264: + case 265: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( - '.', 100, + '.', 101, '_', 36, - 'E', 99, - 'e', 99, - 'L', 270, - 'l', 270, - 'U', 269, - 'u', 269, - 'D', 271, - 'F', 271, - 'M', 271, - 'd', 271, - 'f', 271, - 'm', 271, + 'E', 100, + 'e', 100, + 'L', 271, + 'l', 271, + 'U', 270, + 'u', 270, + 'D', 272, + 'F', 272, + 'M', 272, + 'd', 272, + 'f', 272, + 'm', 272, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(265); END_STATE(); - case 265: + case 266: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '_') ADVANCE(37); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(270); + lookahead == 'l') ADVANCE(271); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(269); + lookahead == 'u') ADVANCE(270); if (lookahead == '0' || - lookahead == '1') ADVANCE(265); + lookahead == '1') ADVANCE(266); END_STATE(); - case 266: + case 267: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '_') ADVANCE(38); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(270); + lookahead == 'l') ADVANCE(271); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(269); + lookahead == 'u') ADVANCE(270); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(266); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(267); END_STATE(); - case 267: + case 268: ACCEPT_TOKEN(sym_integer_literal); ADVANCE_MAP( '_', 40, 'B', 37, 'b', 37, - 'L', 270, - 'l', 270, - 'U', 269, - 'u', 269, + 'L', 271, + 'l', 271, + 'U', 270, + 'u', 270, 'X', 38, 'x', 38, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 268: + case 269: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == '_') ADVANCE(40); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(270); + lookahead == 'l') ADVANCE(271); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(268); + lookahead == 'u') ADVANCE(270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(269); END_STATE(); - case 269: + case 270: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(262); + lookahead == 'l') ADVANCE(263); END_STATE(); - case 270: + case 271: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(262); + lookahead == 'u') ADVANCE(263); END_STATE(); - case 271: + case 272: ACCEPT_TOKEN(sym_real_literal); END_STATE(); - case 272: + case 273: ACCEPT_TOKEN(sym_real_literal); ADVANCE_MAP( '_', 39, - 'E', 99, - 'e', 99, - 'D', 271, - 'F', 271, - 'M', 271, - 'd', 271, - 'f', 271, - 'm', 271, + 'E', 100, + 'e', 100, + 'D', 272, + 'F', 272, + 'M', 272, + 'd', 272, + 'f', 272, + 'm', 272, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); END_STATE(); - case 273: + case 274: ACCEPT_TOKEN(sym_real_literal); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'M' || lookahead == 'd' || lookahead == 'f' || - lookahead == 'm') ADVANCE(271); + lookahead == 'm') ADVANCE(272); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(273); + lookahead == '_') ADVANCE(274); END_STATE(); - case 274: + case 275: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 275: + case 276: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '\r') ADVANCE(318); + if (lookahead == '\r') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(275); + lookahead != '\\') ADVANCE(276); END_STATE(); - case 276: + case 277: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '#') ADVANCE(285); - if (lookahead == '/') ADVANCE(277); + if (lookahead == '#') ADVANCE(286); + if (lookahead == '/') ADVANCE(278); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(276); + lookahead == 0xfeff) ADVANCE(277); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(318); - END_STATE(); - case 277: - ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(279); - if (lookahead == '/') ADVANCE(275); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(278); - if (lookahead == '/') ADVANCE(318); + if (lookahead == '*') ADVANCE(280); + if (lookahead == '/') ADVANCE(276); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(279); + lookahead != '\\') ADVANCE(319); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(278); + if (lookahead == '*') ADVANCE(279); + if (lookahead == '/') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(279); + lookahead != '\\') ADVANCE(280); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(318); + if (lookahead == '*') ADVANCE(279); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(280); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(284); + if (lookahead == 'a') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(295); + if (lookahead == 'a') ADVANCE(285); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(316); + if (lookahead == 'a') ADVANCE(296); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'b') ADVANCE(301); + if (lookahead == 'a') ADVANCE(317); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - ADVANCE_MAP( - 'd', 289, - 'e', 305, - 'l', 297, - 'n', 317, - 'p', 315, - 'r', 290, - 'u', 306, - 'w', 283, - '\t', 285, - ' ', 285, - ); + if (lookahead == 'b') ADVANCE(302); if (lookahead != 0 && - lookahead != '\t' && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'd') ADVANCE(314); + ADVANCE_MAP( + 'd', 290, + 'e', 306, + 'l', 298, + 'n', 318, + 'p', 316, + 'r', 291, + 'u', 307, + 'w', 284, + '\t', 286, + ' ', 286, + ); if (lookahead != 0 && + lookahead != '\t' && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'd') ADVANCE(291); + if (lookahead == 'd') ADVANCE(315); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(318); + if (lookahead == 'd') ADVANCE(292); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(293); + if (lookahead == 'e') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(294); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(292); + if (lookahead == 'e') ADVANCE(297); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'f') ADVANCE(318); + if (lookahead == 'e') ADVANCE(293); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'f') ADVANCE(297); + if (lookahead == 'f') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(318); + if (lookahead == 'f') ADVANCE(298); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(303); + if (lookahead == 'g') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(298); + if (lookahead == 'g') ADVANCE(304); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'g') ADVANCE(299); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(310); + if (lookahead == 'i') ADVANCE(308); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(308); + if (lookahead == 'i') ADVANCE(311); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(302); + if (lookahead == 'i') ADVANCE(309); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(288); + if (lookahead == 'l') ADVANCE(303); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(281); + if (lookahead == 'l') ADVANCE(289); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'l') ADVANCE(282); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(318); + if (lookahead == 'm') ADVANCE(281); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(286); - if (lookahead == 'r') ADVANCE(313); + if (lookahead == 'n') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'r') ADVANCE(314); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); @@ -14590,740 +14862,748 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(294); + if (lookahead == 'n') ADVANCE(289); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(299); + if (lookahead == 'n') ADVANCE(295); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'o') ADVANCE(304); + if (lookahead == 'n') ADVANCE(300); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'o') ADVANCE(312); + if (lookahead == 'o') ADVANCE(305); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(318); + if (lookahead == 'o') ADVANCE(313); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(311); + if (lookahead == 'r') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'r') ADVANCE(312); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(282); + if (lookahead == 'r') ADVANCE(291); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(309); + if (lookahead == 'r') ADVANCE(283); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'u') ADVANCE(300); + if (lookahead == 'r') ADVANCE(310); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); + if (lookahead == 'u') ADVANCE(301); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(318); + lookahead != '\\') ADVANCE(319); END_STATE(); case 319: - ACCEPT_TOKEN(aux_sym_string_literal_content_token2); + ACCEPT_TOKEN(aux_sym_string_literal_content_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(319); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(104); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(105); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(111); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); END_STATE(); case 325: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym_string_literal_content_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 326: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(333); END_STATE(); case 327: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(325); + if (lookahead == '\\') ADVANCE(31); + if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(334); END_STATE(); case 328: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(327); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(326); END_STATE(); case 329: - ACCEPT_TOKEN(sym_verbatim_string_literal); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(328); END_STATE(); case 330: + ACCEPT_TOKEN(sym_verbatim_string_literal); + END_STATE(); + case 331: ACCEPT_TOKEN(sym_verbatim_string_literal); if (lookahead == '"') ADVANCE(13); if (lookahead == 'U' || lookahead == 'u') ADVANCE(24); END_STATE(); - case 331: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(333); - END_STATE(); case 332: - ACCEPT_TOKEN(sym__identifier_token); - if (lookahead == '8') ADVANCE(331); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(334); END_STATE(); case 333: ACCEPT_TOKEN(sym__identifier_token); + if (lookahead == '8') ADVANCE(332); if (lookahead == '\\') ADVANCE(31); - if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(333); + if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(334); END_STATE(); case 334: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); + ACCEPT_TOKEN(sym__identifier_token); + if (lookahead == '\\') ADVANCE(31); + if (set_contains(sym__identifier_token_character_set_3, 777, lookahead)) ADVANCE(334); END_STATE(); case 335: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (lookahead == '\n') ADVANCE(335); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (lookahead == '\n') ADVANCE(336); - if (lookahead == 0xa0 || - lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(342); END_STATE(); case 337: - ACCEPT_TOKEN(aux_sym_preproc_if_token3); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (lookahead == '\n') ADVANCE(337); + if (lookahead == 0xa0 || + lookahead == 0x3000 || + lookahead == 0xfeff) ADVANCE(343); END_STATE(); case 338: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token3); END_STATE(); case 339: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 340: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(22); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(408); - if (lookahead == '\\') ADVANCE(345); - if (lookahead != 0) ADVANCE(341); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); END_STATE(); case 341: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') ADVANCE(22); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(23); - if (lookahead == '\\') ADVANCE(345); - if (lookahead != 0) ADVANCE(341); + if (lookahead == '*') ADVANCE(341); + if (lookahead == '/') ADVANCE(409); + if (lookahead == '\\') ADVANCE(346); + if (lookahead != 0) ADVANCE(342); END_STATE(); case 342: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(336); - if (lookahead == '#') ADVANCE(354); - if (lookahead == '/') ADVANCE(347); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 0xa0 || - lookahead == 0x3000 || - lookahead == 0xfeff) ADVANCE(342); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(342); - if (lookahead != 0) ADVANCE(396); + if (lookahead == '\n') ADVANCE(22); + if (lookahead == '*') ADVANCE(341); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '\\') ADVANCE(346); + if (lookahead != 0) ADVANCE(342); END_STATE(); case 343: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(14); - if (lookahead == '#') ADVANCE(354); - if (lookahead == '/') ADVANCE(347); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '\n') ADVANCE(337); + if (lookahead == '#') ADVANCE(355); + if (lookahead == '/') ADVANCE(348); + if (lookahead == '\\') ADVANCE(345); if (lookahead == 0xa0 || lookahead == 0x3000 || lookahead == 0xfeff) ADVANCE(343); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(343); - if (lookahead != 0) ADVANCE(396); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 344: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(397); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0) ADVANCE(396); + if (lookahead == '\n') SKIP(15); + if (lookahead == '#') ADVANCE(355); + if (lookahead == '/') ADVANCE(348); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 0xa0 || + lookahead == 0x3000 || + lookahead == 0xfeff) ADVANCE(344); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(344); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 345: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\r') ADVANCE(348); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(23); + if (lookahead == '\r') ADVANCE(398); + if (lookahead == '/') ADVANCE(129); if (lookahead == '\\') ADVANCE(345); - if (lookahead != 0) ADVANCE(341); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 346: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\r') ADVANCE(349); if (lookahead == '*') ADVANCE(341); - if (lookahead == '/') ADVANCE(409); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '\\') ADVANCE(346); + if (lookahead != 0) ADVANCE(342); END_STATE(); case 347: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(341); - if (lookahead == '/') ADVANCE(411); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0) ADVANCE(396); + if (lookahead == '*') ADVANCE(342); + if (lookahead == '/') ADVANCE(410); + if (lookahead == '\\') ADVANCE(345); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(397); END_STATE(); case 348: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(340); - if (lookahead == '/') ADVANCE(23); + if (lookahead == '*') ADVANCE(342); + if (lookahead == '/') ADVANCE(412); if (lookahead == '\\') ADVANCE(345); - if (lookahead != 0) ADVANCE(341); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 349: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'a') ADVANCE(401); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + if (lookahead == '*') ADVANCE(341); + if (lookahead == '/') ADVANCE(23); + if (lookahead == '\\') ADVANCE(346); + if (lookahead != 0) ADVANCE(342); END_STATE(); case 350: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'a') ADVANCE(353); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'a') ADVANCE(402); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 351: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'a') ADVANCE(367); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'a') ADVANCE(354); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 352: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'a') ADVANCE(393); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'a') ADVANCE(368); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 353: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'b') ADVANCE(377); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'a') ADVANCE(394); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 354: ACCEPT_TOKEN(sym_preproc_arg); - ADVANCE_MAP( - '/', 128, - '\\', 344, - 'd', 360, - 'e', 381, - 'l', 370, - 'n', 395, - 'p', 392, - 'r', 361, - 'u', 382, - 'w', 352, - '\t', 354, - ' ', 354, - ); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'b') ADVANCE(378); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 355: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'd') ADVANCE(394); + ADVANCE_MAP( + '/', 129, + '\\', 345, + 'd', 361, + 'e', 382, + 'l', 371, + 'n', 396, + 'p', 393, + 'r', 362, + 'u', 383, + 'w', 353, + '\t', 355, + ' ', 355, + ); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\t' && + lookahead != '\n') ADVANCE(397); END_STATE(); case 356: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'd') ADVANCE(362); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'd') ADVANCE(395); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 357: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(400); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'd') ADVANCE(363); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 358: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(405); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(401); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 359: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(402); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(406); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 360: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(365); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(403); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 361: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(368); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(366); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 362: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(364); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(369); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 363: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'e') ADVANCE(369); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(365); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 364: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'f') ADVANCE(406); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'e') ADVANCE(370); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 365: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'f') ADVANCE(373); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'f') ADVANCE(407); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 366: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'g') ADVANCE(404); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'f') ADVANCE(374); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 367: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'g') ADVANCE(378); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'g') ADVANCE(405); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 368: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'g') ADVANCE(371); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'g') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 369: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'g') ADVANCE(374); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'g') ADVANCE(372); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 370: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'i') ADVANCE(383); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'g') ADVANCE(375); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 371: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'i') ADVANCE(387); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'i') ADVANCE(384); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 372: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'i') ADVANCE(384); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'i') ADVANCE(388); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 373: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); if (lookahead == 'i') ADVANCE(385); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 374: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'i') ADVANCE(389); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'i') ADVANCE(386); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 375: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'l') ADVANCE(376); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'i') ADVANCE(390); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 376: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'l') ADVANCE(350); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'l') ADVANCE(377); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 377: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'l') ADVANCE(359); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'l') ADVANCE(351); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 378: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'm') ADVANCE(349); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'l') ADVANCE(360); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 379: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'n') ADVANCE(398); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'm') ADVANCE(350); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 380: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); if (lookahead == 'n') ADVANCE(399); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 381: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'n') ADVANCE(355); - if (lookahead == 'r') ADVANCE(391); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'n') ADVANCE(400); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 382: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); if (lookahead == 'n') ADVANCE(356); + if (lookahead == 'r') ADVANCE(392); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 383: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); if (lookahead == 'n') ADVANCE(357); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 384: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'n') ADVANCE(366); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'n') ADVANCE(358); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 385: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'n') ADVANCE(358); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'n') ADVANCE(367); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 386: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'n') ADVANCE(372); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'n') ADVANCE(359); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 387: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'o') ADVANCE(379); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'n') ADVANCE(373); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 388: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'o') ADVANCE(390); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'o') ADVANCE(380); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 389: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'o') ADVANCE(380); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'o') ADVANCE(391); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 390: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'r') ADVANCE(403); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'o') ADVANCE(381); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 391: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'r') ADVANCE(388); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'r') ADVANCE(404); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 392: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'r') ADVANCE(351); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'r') ADVANCE(389); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 393: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'r') ADVANCE(386); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'r') ADVANCE(352); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 394: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'r') ADVANCE(363); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'r') ADVANCE(387); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 395: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead == 'u') ADVANCE(375); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'r') ADVANCE(364); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 396: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead == 'u') ADVANCE(376); if (lookahead != 0 && - lookahead != '\n') ADVANCE(396); + lookahead != '\n') ADVANCE(397); END_STATE(); case 397: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(128); - if (lookahead == '\\') ADVANCE(344); - if (lookahead != 0) ADVANCE(396); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(397); END_STATE(); case 398: - ACCEPT_TOKEN(aux_sym_preproc_region_token1); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(129); + if (lookahead == '\\') ADVANCE(345); + if (lookahead != 0) ADVANCE(397); END_STATE(); case 399: - ACCEPT_TOKEN(aux_sym_preproc_endregion_token1); + ACCEPT_TOKEN(aux_sym_preproc_region_token1); END_STATE(); case 400: - ACCEPT_TOKEN(aux_sym_preproc_line_token1); + ACCEPT_TOKEN(aux_sym_preproc_endregion_token1); END_STATE(); case 401: - ACCEPT_TOKEN(aux_sym_preproc_pragma_token1); + ACCEPT_TOKEN(aux_sym_preproc_line_token1); END_STATE(); case 402: - ACCEPT_TOKEN(aux_sym_preproc_nullable_token1); + ACCEPT_TOKEN(aux_sym_preproc_pragma_token1); END_STATE(); case 403: - ACCEPT_TOKEN(aux_sym_preproc_error_token1); + ACCEPT_TOKEN(aux_sym_preproc_nullable_token1); END_STATE(); case 404: - ACCEPT_TOKEN(aux_sym_preproc_warning_token1); + ACCEPT_TOKEN(aux_sym_preproc_error_token1); END_STATE(); case 405: - ACCEPT_TOKEN(aux_sym_preproc_define_token1); + ACCEPT_TOKEN(aux_sym_preproc_warning_token1); END_STATE(); case 406: - ACCEPT_TOKEN(aux_sym_preproc_undef_token1); + ACCEPT_TOKEN(aux_sym_preproc_define_token1); END_STATE(); case 407: - ACCEPT_TOKEN(sym_shebang_directive); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(407); + ACCEPT_TOKEN(aux_sym_preproc_undef_token1); END_STATE(); case 408: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(sym_shebang_directive); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(408); END_STATE(); case 409: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(412); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(410); END_STATE(); case 410: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(409); - if (lookahead == '\\') ADVANCE(410); + if (lookahead == '*') ADVANCE(413); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(410); + lookahead != '\r') ADVANCE(411); END_STATE(); case 411: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(411); - if (lookahead == '\\') ADVANCE(410); + if (lookahead == '/') ADVANCE(410); + if (lookahead == '\\') ADVANCE(411); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(410); + lookahead != '\r') ADVANCE(411); END_STATE(); case 412: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '/') ADVANCE(412); + if (lookahead == '\\') ADVANCE(411); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(411); + END_STATE(); + case 413: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(412); + lookahead != '\r') ADVANCE(413); END_STATE(); default: return false; @@ -17231,3465 +17511,3465 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 131, .external_lex_state = 2}, - [2] = {.lex_state = 131, .external_lex_state = 2}, - [3] = {.lex_state = 131, .external_lex_state = 2}, - [4] = {.lex_state = 131, .external_lex_state = 2}, - [5] = {.lex_state = 131, .external_lex_state = 2}, - [6] = {.lex_state = 131, .external_lex_state = 2}, - [7] = {.lex_state = 131, .external_lex_state = 2}, - [8] = {.lex_state = 131, .external_lex_state = 2}, - [9] = {.lex_state = 131, .external_lex_state = 2}, - [10] = {.lex_state = 131, .external_lex_state = 2}, - [11] = {.lex_state = 131, .external_lex_state = 2}, - [12] = {.lex_state = 131, .external_lex_state = 2}, - [13] = {.lex_state = 131, .external_lex_state = 2}, - [14] = {.lex_state = 131, .external_lex_state = 2}, - [15] = {.lex_state = 131, .external_lex_state = 2}, - [16] = {.lex_state = 131, .external_lex_state = 2}, - [17] = {.lex_state = 131, .external_lex_state = 2}, - [18] = {.lex_state = 131, .external_lex_state = 2}, - [19] = {.lex_state = 131, .external_lex_state = 2}, - [20] = {.lex_state = 131, .external_lex_state = 2}, - [21] = {.lex_state = 131, .external_lex_state = 2}, - [22] = {.lex_state = 131, .external_lex_state = 2}, - [23] = {.lex_state = 131, .external_lex_state = 2}, - [24] = {.lex_state = 131, .external_lex_state = 2}, - [25] = {.lex_state = 131, .external_lex_state = 2}, - [26] = {.lex_state = 131, .external_lex_state = 2}, - [27] = {.lex_state = 131, .external_lex_state = 2}, - [28] = {.lex_state = 131, .external_lex_state = 2}, - [29] = {.lex_state = 131, .external_lex_state = 2}, - [30] = {.lex_state = 131, .external_lex_state = 2}, - [31] = {.lex_state = 131, .external_lex_state = 2}, - [32] = {.lex_state = 131, .external_lex_state = 2}, - [33] = {.lex_state = 131, .external_lex_state = 2}, - [34] = {.lex_state = 131, .external_lex_state = 2}, - [35] = {.lex_state = 131, .external_lex_state = 2}, - [36] = {.lex_state = 131, .external_lex_state = 2}, - [37] = {.lex_state = 131, .external_lex_state = 2}, - [38] = {.lex_state = 131, .external_lex_state = 2}, - [39] = {.lex_state = 131, .external_lex_state = 2}, - [40] = {.lex_state = 131, .external_lex_state = 2}, - [41] = {.lex_state = 131, .external_lex_state = 2}, - [42] = {.lex_state = 131, .external_lex_state = 2}, - [43] = {.lex_state = 131, .external_lex_state = 2}, - [44] = {.lex_state = 131, .external_lex_state = 2}, - [45] = {.lex_state = 131, .external_lex_state = 2}, - [46] = {.lex_state = 131, .external_lex_state = 2}, - [47] = {.lex_state = 131, .external_lex_state = 2}, - [48] = {.lex_state = 131, .external_lex_state = 2}, - [49] = {.lex_state = 131, .external_lex_state = 2}, - [50] = {.lex_state = 131, .external_lex_state = 2}, - [51] = {.lex_state = 131, .external_lex_state = 2}, - [52] = {.lex_state = 131, .external_lex_state = 2}, - [53] = {.lex_state = 131, .external_lex_state = 2}, - [54] = {.lex_state = 131, .external_lex_state = 2}, - [55] = {.lex_state = 131, .external_lex_state = 2}, - [56] = {.lex_state = 131, .external_lex_state = 2}, - [57] = {.lex_state = 131, .external_lex_state = 2}, - [58] = {.lex_state = 131, .external_lex_state = 2}, - [59] = {.lex_state = 131, .external_lex_state = 2}, - [60] = {.lex_state = 131, .external_lex_state = 2}, - [61] = {.lex_state = 131, .external_lex_state = 2}, - [62] = {.lex_state = 131, .external_lex_state = 2}, - [63] = {.lex_state = 131, .external_lex_state = 2}, - [64] = {.lex_state = 131, .external_lex_state = 2}, - [65] = {.lex_state = 131, .external_lex_state = 2}, - [66] = {.lex_state = 131, .external_lex_state = 2}, - [67] = {.lex_state = 131, .external_lex_state = 2}, - [68] = {.lex_state = 131, .external_lex_state = 2}, - [69] = {.lex_state = 131, .external_lex_state = 2}, - [70] = {.lex_state = 131, .external_lex_state = 2}, - [71] = {.lex_state = 131, .external_lex_state = 2}, - [72] = {.lex_state = 131, .external_lex_state = 2}, - [73] = {.lex_state = 131, .external_lex_state = 2}, - [74] = {.lex_state = 131, .external_lex_state = 2}, - [75] = {.lex_state = 131, .external_lex_state = 2}, - [76] = {.lex_state = 131, .external_lex_state = 2}, - [77] = {.lex_state = 131, .external_lex_state = 2}, - [78] = {.lex_state = 131, .external_lex_state = 2}, - [79] = {.lex_state = 131, .external_lex_state = 2}, - [80] = {.lex_state = 131, .external_lex_state = 2}, - [81] = {.lex_state = 131, .external_lex_state = 2}, - [82] = {.lex_state = 131, .external_lex_state = 2}, - [83] = {.lex_state = 131, .external_lex_state = 2}, - [84] = {.lex_state = 131, .external_lex_state = 2}, - [85] = {.lex_state = 131, .external_lex_state = 2}, - [86] = {.lex_state = 131, .external_lex_state = 2}, - [87] = {.lex_state = 131, .external_lex_state = 2}, - [88] = {.lex_state = 131, .external_lex_state = 2}, - [89] = {.lex_state = 131, .external_lex_state = 2}, - [90] = {.lex_state = 131, .external_lex_state = 2}, - [91] = {.lex_state = 131, .external_lex_state = 2}, - [92] = {.lex_state = 131, .external_lex_state = 2}, - [93] = {.lex_state = 131, .external_lex_state = 2}, - [94] = {.lex_state = 131, .external_lex_state = 2}, - [95] = {.lex_state = 131, .external_lex_state = 2}, - [96] = {.lex_state = 131, .external_lex_state = 2}, - [97] = {.lex_state = 131, .external_lex_state = 2}, - [98] = {.lex_state = 131, .external_lex_state = 2}, - [99] = {.lex_state = 131, .external_lex_state = 2}, - [100] = {.lex_state = 131, .external_lex_state = 2}, - [101] = {.lex_state = 131, .external_lex_state = 2}, - [102] = {.lex_state = 131, .external_lex_state = 2}, - [103] = {.lex_state = 131, .external_lex_state = 2}, - [104] = {.lex_state = 131, .external_lex_state = 2}, - [105] = {.lex_state = 131, .external_lex_state = 2}, - [106] = {.lex_state = 131, .external_lex_state = 2}, - [107] = {.lex_state = 131, .external_lex_state = 2}, - [108] = {.lex_state = 131, .external_lex_state = 2}, - [109] = {.lex_state = 131, .external_lex_state = 2}, - [110] = {.lex_state = 131, .external_lex_state = 2}, - [111] = {.lex_state = 130, .external_lex_state = 2}, - [112] = {.lex_state = 130, .external_lex_state = 2}, - [113] = {.lex_state = 131, .external_lex_state = 2}, - [114] = {.lex_state = 131, .external_lex_state = 2}, - [115] = {.lex_state = 131, .external_lex_state = 2}, - [116] = {.lex_state = 131, .external_lex_state = 2}, - [117] = {.lex_state = 131, .external_lex_state = 2}, - [118] = {.lex_state = 131, .external_lex_state = 2}, - [119] = {.lex_state = 131, .external_lex_state = 2}, - [120] = {.lex_state = 131, .external_lex_state = 2}, - [121] = {.lex_state = 131, .external_lex_state = 2}, - [122] = {.lex_state = 131, .external_lex_state = 2}, - [123] = {.lex_state = 131, .external_lex_state = 2}, + [1] = {.lex_state = 132, .external_lex_state = 2}, + [2] = {.lex_state = 132, .external_lex_state = 2}, + [3] = {.lex_state = 132, .external_lex_state = 2}, + [4] = {.lex_state = 132, .external_lex_state = 2}, + [5] = {.lex_state = 132, .external_lex_state = 2}, + [6] = {.lex_state = 132, .external_lex_state = 2}, + [7] = {.lex_state = 132, .external_lex_state = 2}, + [8] = {.lex_state = 132, .external_lex_state = 2}, + [9] = {.lex_state = 132, .external_lex_state = 2}, + [10] = {.lex_state = 132, .external_lex_state = 2}, + [11] = {.lex_state = 132, .external_lex_state = 2}, + [12] = {.lex_state = 132, .external_lex_state = 2}, + [13] = {.lex_state = 132, .external_lex_state = 2}, + [14] = {.lex_state = 132, .external_lex_state = 2}, + [15] = {.lex_state = 132, .external_lex_state = 2}, + [16] = {.lex_state = 132, .external_lex_state = 2}, + [17] = {.lex_state = 132, .external_lex_state = 2}, + [18] = {.lex_state = 132, .external_lex_state = 2}, + [19] = {.lex_state = 132, .external_lex_state = 2}, + [20] = {.lex_state = 132, .external_lex_state = 2}, + [21] = {.lex_state = 132, .external_lex_state = 2}, + [22] = {.lex_state = 132, .external_lex_state = 2}, + [23] = {.lex_state = 132, .external_lex_state = 2}, + [24] = {.lex_state = 132, .external_lex_state = 2}, + [25] = {.lex_state = 132, .external_lex_state = 2}, + [26] = {.lex_state = 132, .external_lex_state = 2}, + [27] = {.lex_state = 132, .external_lex_state = 2}, + [28] = {.lex_state = 132, .external_lex_state = 2}, + [29] = {.lex_state = 132, .external_lex_state = 2}, + [30] = {.lex_state = 132, .external_lex_state = 2}, + [31] = {.lex_state = 132, .external_lex_state = 2}, + [32] = {.lex_state = 132, .external_lex_state = 2}, + [33] = {.lex_state = 132, .external_lex_state = 2}, + [34] = {.lex_state = 132, .external_lex_state = 2}, + [35] = {.lex_state = 132, .external_lex_state = 2}, + [36] = {.lex_state = 132, .external_lex_state = 2}, + [37] = {.lex_state = 132, .external_lex_state = 2}, + [38] = {.lex_state = 132, .external_lex_state = 2}, + [39] = {.lex_state = 132, .external_lex_state = 2}, + [40] = {.lex_state = 132, .external_lex_state = 2}, + [41] = {.lex_state = 132, .external_lex_state = 2}, + [42] = {.lex_state = 132, .external_lex_state = 2}, + [43] = {.lex_state = 132, .external_lex_state = 2}, + [44] = {.lex_state = 132, .external_lex_state = 2}, + [45] = {.lex_state = 132, .external_lex_state = 2}, + [46] = {.lex_state = 132, .external_lex_state = 2}, + [47] = {.lex_state = 132, .external_lex_state = 2}, + [48] = {.lex_state = 132, .external_lex_state = 2}, + [49] = {.lex_state = 132, .external_lex_state = 2}, + [50] = {.lex_state = 132, .external_lex_state = 2}, + [51] = {.lex_state = 132, .external_lex_state = 2}, + [52] = {.lex_state = 132, .external_lex_state = 2}, + [53] = {.lex_state = 132, .external_lex_state = 2}, + [54] = {.lex_state = 132, .external_lex_state = 2}, + [55] = {.lex_state = 132, .external_lex_state = 2}, + [56] = {.lex_state = 132, .external_lex_state = 2}, + [57] = {.lex_state = 132, .external_lex_state = 2}, + [58] = {.lex_state = 132, .external_lex_state = 2}, + [59] = {.lex_state = 132, .external_lex_state = 2}, + [60] = {.lex_state = 132, .external_lex_state = 2}, + [61] = {.lex_state = 132, .external_lex_state = 2}, + [62] = {.lex_state = 132, .external_lex_state = 2}, + [63] = {.lex_state = 132, .external_lex_state = 2}, + [64] = {.lex_state = 132, .external_lex_state = 2}, + [65] = {.lex_state = 132, .external_lex_state = 2}, + [66] = {.lex_state = 132, .external_lex_state = 2}, + [67] = {.lex_state = 132, .external_lex_state = 2}, + [68] = {.lex_state = 132, .external_lex_state = 2}, + [69] = {.lex_state = 132, .external_lex_state = 2}, + [70] = {.lex_state = 132, .external_lex_state = 2}, + [71] = {.lex_state = 132, .external_lex_state = 2}, + [72] = {.lex_state = 132, .external_lex_state = 2}, + [73] = {.lex_state = 132, .external_lex_state = 2}, + [74] = {.lex_state = 132, .external_lex_state = 2}, + [75] = {.lex_state = 132, .external_lex_state = 2}, + [76] = {.lex_state = 132, .external_lex_state = 2}, + [77] = {.lex_state = 132, .external_lex_state = 2}, + [78] = {.lex_state = 132, .external_lex_state = 2}, + [79] = {.lex_state = 132, .external_lex_state = 2}, + [80] = {.lex_state = 132, .external_lex_state = 2}, + [81] = {.lex_state = 132, .external_lex_state = 2}, + [82] = {.lex_state = 132, .external_lex_state = 2}, + [83] = {.lex_state = 132, .external_lex_state = 2}, + [84] = {.lex_state = 132, .external_lex_state = 2}, + [85] = {.lex_state = 132, .external_lex_state = 2}, + [86] = {.lex_state = 132, .external_lex_state = 2}, + [87] = {.lex_state = 132, .external_lex_state = 2}, + [88] = {.lex_state = 132, .external_lex_state = 2}, + [89] = {.lex_state = 132, .external_lex_state = 2}, + [90] = {.lex_state = 132, .external_lex_state = 2}, + [91] = {.lex_state = 132, .external_lex_state = 2}, + [92] = {.lex_state = 132, .external_lex_state = 2}, + [93] = {.lex_state = 132, .external_lex_state = 2}, + [94] = {.lex_state = 132, .external_lex_state = 2}, + [95] = {.lex_state = 132, .external_lex_state = 2}, + [96] = {.lex_state = 132, .external_lex_state = 2}, + [97] = {.lex_state = 132, .external_lex_state = 2}, + [98] = {.lex_state = 132, .external_lex_state = 2}, + [99] = {.lex_state = 132, .external_lex_state = 2}, + [100] = {.lex_state = 132, .external_lex_state = 2}, + [101] = {.lex_state = 132, .external_lex_state = 2}, + [102] = {.lex_state = 132, .external_lex_state = 2}, + [103] = {.lex_state = 132, .external_lex_state = 2}, + [104] = {.lex_state = 132, .external_lex_state = 2}, + [105] = {.lex_state = 132, .external_lex_state = 2}, + [106] = {.lex_state = 132, .external_lex_state = 2}, + [107] = {.lex_state = 132, .external_lex_state = 2}, + [108] = {.lex_state = 132, .external_lex_state = 2}, + [109] = {.lex_state = 132, .external_lex_state = 2}, + [110] = {.lex_state = 132, .external_lex_state = 2}, + [111] = {.lex_state = 132, .external_lex_state = 2}, + [112] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [117] = {.lex_state = 132, .external_lex_state = 2}, + [118] = {.lex_state = 132, .external_lex_state = 2}, + [119] = {.lex_state = 132, .external_lex_state = 2}, + [120] = {.lex_state = 132, .external_lex_state = 2}, + [121] = {.lex_state = 132, .external_lex_state = 2}, + [122] = {.lex_state = 132, .external_lex_state = 2}, + [123] = {.lex_state = 132, .external_lex_state = 2}, [124] = {.lex_state = 131, .external_lex_state = 2}, - [125] = {.lex_state = 131, .external_lex_state = 2}, - [126] = {.lex_state = 131, .external_lex_state = 2}, - [127] = {.lex_state = 131, .external_lex_state = 2}, - [128] = {.lex_state = 131, .external_lex_state = 2}, - [129] = {.lex_state = 131, .external_lex_state = 2}, - [130] = {.lex_state = 131, .external_lex_state = 2}, - [131] = {.lex_state = 131, .external_lex_state = 2}, - [132] = {.lex_state = 131, .external_lex_state = 2}, - [133] = {.lex_state = 131, .external_lex_state = 2}, - [134] = {.lex_state = 131, .external_lex_state = 2}, - [135] = {.lex_state = 131, .external_lex_state = 2}, - [136] = {.lex_state = 131, .external_lex_state = 2}, - [137] = {.lex_state = 131, .external_lex_state = 2}, - [138] = {.lex_state = 131, .external_lex_state = 2}, - [139] = {.lex_state = 131, .external_lex_state = 2}, - [140] = {.lex_state = 131, .external_lex_state = 2}, - [141] = {.lex_state = 131, .external_lex_state = 2}, - [142] = {.lex_state = 131, .external_lex_state = 2}, - [143] = {.lex_state = 131, .external_lex_state = 2}, - [144] = {.lex_state = 130, .external_lex_state = 2}, - [145] = {.lex_state = 130, .external_lex_state = 2}, - [146] = {.lex_state = 130, .external_lex_state = 2}, - [147] = {.lex_state = 130, .external_lex_state = 2}, - [148] = {.lex_state = 130, .external_lex_state = 2}, - [149] = {.lex_state = 130, .external_lex_state = 2}, - [150] = {.lex_state = 130, .external_lex_state = 2}, - [151] = {.lex_state = 130, .external_lex_state = 2}, - [152] = {.lex_state = 130, .external_lex_state = 2}, - [153] = {.lex_state = 130, .external_lex_state = 2}, - [154] = {.lex_state = 130, .external_lex_state = 3}, - [155] = {.lex_state = 130, .external_lex_state = 3}, - [156] = {.lex_state = 130, .external_lex_state = 3}, - [157] = {.lex_state = 130, .external_lex_state = 3}, - [158] = {.lex_state = 130, .external_lex_state = 2}, - [159] = {.lex_state = 130, .external_lex_state = 2}, - [160] = {.lex_state = 130, .external_lex_state = 2}, - [161] = {.lex_state = 130, .external_lex_state = 2}, - [162] = {.lex_state = 130, .external_lex_state = 2}, - [163] = {.lex_state = 130, .external_lex_state = 2}, - [164] = {.lex_state = 130, .external_lex_state = 2}, - [165] = {.lex_state = 130, .external_lex_state = 2}, - [166] = {.lex_state = 130, .external_lex_state = 2}, - [167] = {.lex_state = 130, .external_lex_state = 2}, - [168] = {.lex_state = 130, .external_lex_state = 2}, - [169] = {.lex_state = 130, .external_lex_state = 2}, - [170] = {.lex_state = 130, .external_lex_state = 3}, - [171] = {.lex_state = 130, .external_lex_state = 2}, - [172] = {.lex_state = 130, .external_lex_state = 2}, - [173] = {.lex_state = 130, .external_lex_state = 2}, - [174] = {.lex_state = 130, .external_lex_state = 2}, - [175] = {.lex_state = 130, .external_lex_state = 2}, - [176] = {.lex_state = 130, .external_lex_state = 2}, - [177] = {.lex_state = 130, .external_lex_state = 3}, - [178] = {.lex_state = 130, .external_lex_state = 3}, - [179] = {.lex_state = 130, .external_lex_state = 2}, - [180] = {.lex_state = 130, .external_lex_state = 2}, - [181] = {.lex_state = 130, .external_lex_state = 2}, - [182] = {.lex_state = 130, .external_lex_state = 2}, - [183] = {.lex_state = 130, .external_lex_state = 3}, - [184] = {.lex_state = 130, .external_lex_state = 2}, - [185] = {.lex_state = 130, .external_lex_state = 2}, - [186] = {.lex_state = 130, .external_lex_state = 2}, - [187] = {.lex_state = 130, .external_lex_state = 2}, - [188] = {.lex_state = 130, .external_lex_state = 2}, - [189] = {.lex_state = 130, .external_lex_state = 2}, - [190] = {.lex_state = 130, .external_lex_state = 2}, - [191] = {.lex_state = 130, .external_lex_state = 2}, - [192] = {.lex_state = 130, .external_lex_state = 2}, - [193] = {.lex_state = 130, .external_lex_state = 2}, - [194] = {.lex_state = 130, .external_lex_state = 2}, - [195] = {.lex_state = 130, .external_lex_state = 2}, - [196] = {.lex_state = 130, .external_lex_state = 2}, - [197] = {.lex_state = 130, .external_lex_state = 2}, - [198] = {.lex_state = 130, .external_lex_state = 2}, - [199] = {.lex_state = 130, .external_lex_state = 2}, - [200] = {.lex_state = 130, .external_lex_state = 2}, - [201] = {.lex_state = 130, .external_lex_state = 2}, - [202] = {.lex_state = 130, .external_lex_state = 2}, - [203] = {.lex_state = 130, .external_lex_state = 2}, - [204] = {.lex_state = 130, .external_lex_state = 2}, - [205] = {.lex_state = 130, .external_lex_state = 2}, - [206] = {.lex_state = 130, .external_lex_state = 2}, - [207] = {.lex_state = 130, .external_lex_state = 2}, - [208] = {.lex_state = 130, .external_lex_state = 2}, - [209] = {.lex_state = 130, .external_lex_state = 2}, - [210] = {.lex_state = 130, .external_lex_state = 2}, - [211] = {.lex_state = 130, .external_lex_state = 2}, - [212] = {.lex_state = 130, .external_lex_state = 2}, - [213] = {.lex_state = 130, .external_lex_state = 2}, - [214] = {.lex_state = 130, .external_lex_state = 2}, - [215] = {.lex_state = 130, .external_lex_state = 2}, + [125] = {.lex_state = 132, .external_lex_state = 2}, + [126] = {.lex_state = 132, .external_lex_state = 2}, + [127] = {.lex_state = 132, .external_lex_state = 2}, + [128] = {.lex_state = 132, .external_lex_state = 2}, + [129] = {.lex_state = 132, .external_lex_state = 2}, + [130] = {.lex_state = 132, .external_lex_state = 2}, + [131] = {.lex_state = 132, .external_lex_state = 2}, + [132] = {.lex_state = 132, .external_lex_state = 2}, + [133] = {.lex_state = 132, .external_lex_state = 2}, + [134] = {.lex_state = 132, .external_lex_state = 2}, + [135] = {.lex_state = 132, .external_lex_state = 2}, + [136] = {.lex_state = 132, .external_lex_state = 2}, + [137] = {.lex_state = 132, .external_lex_state = 2}, + [138] = {.lex_state = 132, .external_lex_state = 2}, + [139] = {.lex_state = 132, .external_lex_state = 2}, + [140] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [145] = {.lex_state = 132, .external_lex_state = 2}, + [146] = {.lex_state = 132, .external_lex_state = 2}, + [147] = {.lex_state = 131, .external_lex_state = 2}, + [148] = {.lex_state = 131, .external_lex_state = 2}, + [149] = {.lex_state = 131, .external_lex_state = 2}, + [150] = {.lex_state = 131, .external_lex_state = 2}, + [151] = {.lex_state = 131, .external_lex_state = 2}, + [152] = {.lex_state = 131, .external_lex_state = 2}, + [153] = {.lex_state = 131, .external_lex_state = 2}, + [154] = {.lex_state = 131, .external_lex_state = 2}, + [155] = {.lex_state = 131, .external_lex_state = 2}, + [156] = {.lex_state = 131, .external_lex_state = 2}, + [157] = {.lex_state = 131, .external_lex_state = 3}, + [158] = {.lex_state = 131, .external_lex_state = 3}, + [159] = {.lex_state = 131, .external_lex_state = 3}, + [160] = {.lex_state = 131, .external_lex_state = 3}, + [161] = {.lex_state = 131, .external_lex_state = 2}, + [162] = {.lex_state = 131, .external_lex_state = 2}, + [163] = {.lex_state = 131, .external_lex_state = 2}, + [164] = {.lex_state = 131, .external_lex_state = 2}, + [165] = {.lex_state = 131, .external_lex_state = 2}, + [166] = {.lex_state = 131, .external_lex_state = 2}, + [167] = {.lex_state = 131, .external_lex_state = 2}, + [168] = {.lex_state = 131, .external_lex_state = 2}, + [169] = {.lex_state = 131, .external_lex_state = 2}, + [170] = {.lex_state = 131, .external_lex_state = 2}, + [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}, + [176] = {.lex_state = 131, .external_lex_state = 2}, + [177] = {.lex_state = 131, .external_lex_state = 2}, + [178] = {.lex_state = 131, .external_lex_state = 2}, + [179] = {.lex_state = 131, .external_lex_state = 2}, + [180] = {.lex_state = 131, .external_lex_state = 2}, + [181] = {.lex_state = 131, .external_lex_state = 2}, + [182] = {.lex_state = 131, .external_lex_state = 2}, + [183] = {.lex_state = 131, .external_lex_state = 2}, + [184] = {.lex_state = 131, .external_lex_state = 2}, + [185] = {.lex_state = 131, .external_lex_state = 2}, + [186] = {.lex_state = 131, .external_lex_state = 2}, + [187] = {.lex_state = 131, .external_lex_state = 2}, + [188] = {.lex_state = 131, .external_lex_state = 3}, + [189] = {.lex_state = 131, .external_lex_state = 2}, + [190] = {.lex_state = 131, .external_lex_state = 2}, + [191] = {.lex_state = 131, .external_lex_state = 2}, + [192] = {.lex_state = 131, .external_lex_state = 2}, + [193] = {.lex_state = 131, .external_lex_state = 2}, + [194] = {.lex_state = 131, .external_lex_state = 2}, + [195] = {.lex_state = 131, .external_lex_state = 3}, + [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}, + [200] = {.lex_state = 131, .external_lex_state = 2}, + [201] = {.lex_state = 131, .external_lex_state = 2}, + [202] = {.lex_state = 131, .external_lex_state = 3}, + [203] = {.lex_state = 131, .external_lex_state = 2}, + [204] = {.lex_state = 131, .external_lex_state = 2}, + [205] = {.lex_state = 131, .external_lex_state = 2}, + [206] = {.lex_state = 131, .external_lex_state = 2}, + [207] = {.lex_state = 131, .external_lex_state = 2}, + [208] = {.lex_state = 131, .external_lex_state = 2}, + [209] = {.lex_state = 131, .external_lex_state = 2}, + [210] = {.lex_state = 131, .external_lex_state = 2}, + [211] = {.lex_state = 131, .external_lex_state = 2}, + [212] = {.lex_state = 131, .external_lex_state = 2}, + [213] = {.lex_state = 131, .external_lex_state = 2}, + [214] = {.lex_state = 131, .external_lex_state = 2}, + [215] = {.lex_state = 131, .external_lex_state = 2}, [216] = {.lex_state = 131, .external_lex_state = 2}, - [217] = {.lex_state = 130, .external_lex_state = 2}, + [217] = {.lex_state = 131, .external_lex_state = 2}, [218] = {.lex_state = 131, .external_lex_state = 2}, - [219] = {.lex_state = 130, .external_lex_state = 2}, - [220] = {.lex_state = 130, .external_lex_state = 2}, - [221] = {.lex_state = 130, .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}, [222] = {.lex_state = 131, .external_lex_state = 2}, [223] = {.lex_state = 131, .external_lex_state = 2}, - [224] = {.lex_state = 130, .external_lex_state = 2}, + [224] = {.lex_state = 131, .external_lex_state = 2}, [225] = {.lex_state = 131, .external_lex_state = 2}, - [226] = {.lex_state = 130, .external_lex_state = 2}, - [227] = {.lex_state = 130, .external_lex_state = 2}, - [228] = {.lex_state = 130, .external_lex_state = 2}, - [229] = {.lex_state = 130, .external_lex_state = 2}, - [230] = {.lex_state = 130, .external_lex_state = 2}, - [231] = {.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}, - [233] = {.lex_state = 131, .external_lex_state = 2}, - [234] = {.lex_state = 130, .external_lex_state = 2}, + [233] = {.lex_state = 132, .external_lex_state = 2}, + [234] = {.lex_state = 132, .external_lex_state = 2}, [235] = {.lex_state = 131, .external_lex_state = 2}, [236] = {.lex_state = 131, .external_lex_state = 2}, - [237] = {.lex_state = 130, .external_lex_state = 2}, - [238] = {.lex_state = 130, .external_lex_state = 2}, - [239] = {.lex_state = 130, .external_lex_state = 2}, - [240] = {.lex_state = 130, .external_lex_state = 2}, - [241] = {.lex_state = 130, .external_lex_state = 2}, - [242] = {.lex_state = 131, .external_lex_state = 2}, + [237] = {.lex_state = 131, .external_lex_state = 2}, + [238] = {.lex_state = 131, .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}, [243] = {.lex_state = 131, .external_lex_state = 2}, - [244] = {.lex_state = 130, .external_lex_state = 2}, - [245] = {.lex_state = 130, .external_lex_state = 2}, + [244] = {.lex_state = 131, .external_lex_state = 2}, + [245] = {.lex_state = 131, .external_lex_state = 2}, [246] = {.lex_state = 131, .external_lex_state = 2}, - [247] = {.lex_state = 130, .external_lex_state = 2}, - [248] = {.lex_state = 131, .external_lex_state = 2}, - [249] = {.lex_state = 130, .external_lex_state = 2}, + [247] = {.lex_state = 131, .external_lex_state = 2}, + [248] = {.lex_state = 132, .external_lex_state = 2}, + [249] = {.lex_state = 131, .external_lex_state = 2}, [250] = {.lex_state = 131, .external_lex_state = 2}, - [251] = {.lex_state = 130, .external_lex_state = 2}, - [252] = {.lex_state = 130, .external_lex_state = 2}, - [253] = {.lex_state = 131, .external_lex_state = 2}, - [254] = {.lex_state = 131, .external_lex_state = 2}, - [255] = {.lex_state = 130, .external_lex_state = 2}, + [251] = {.lex_state = 132, .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}, + [255] = {.lex_state = 132, .external_lex_state = 2}, [256] = {.lex_state = 131, .external_lex_state = 2}, [257] = {.lex_state = 131, .external_lex_state = 2}, [258] = {.lex_state = 131, .external_lex_state = 2}, - [259] = {.lex_state = 130, .external_lex_state = 2}, + [259] = {.lex_state = 131, .external_lex_state = 2}, [260] = {.lex_state = 131, .external_lex_state = 2}, - [261] = {.lex_state = 131, .external_lex_state = 2}, - [262] = {.lex_state = 130, .external_lex_state = 2}, - [263] = {.lex_state = 130, .external_lex_state = 2}, - [264] = {.lex_state = 130, .external_lex_state = 2}, - [265] = {.lex_state = 130, .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}, + [265] = {.lex_state = 131, .external_lex_state = 2}, [266] = {.lex_state = 131, .external_lex_state = 2}, - [267] = {.lex_state = 131, .external_lex_state = 2}, + [267] = {.lex_state = 132, .external_lex_state = 2}, [268] = {.lex_state = 131, .external_lex_state = 2}, - [269] = {.lex_state = 130, .external_lex_state = 2}, - [270] = {.lex_state = 130, .external_lex_state = 2}, + [269] = {.lex_state = 131, .external_lex_state = 2}, + [270] = {.lex_state = 131, .external_lex_state = 2}, [271] = {.lex_state = 131, .external_lex_state = 2}, - [272] = {.lex_state = 130, .external_lex_state = 2}, + [272] = {.lex_state = 132, .external_lex_state = 2}, [273] = {.lex_state = 131, .external_lex_state = 2}, - [274] = {.lex_state = 131, .external_lex_state = 2}, - [275] = {.lex_state = 130, .external_lex_state = 2}, - [276] = {.lex_state = 130, .external_lex_state = 2}, - [277] = {.lex_state = 131, .external_lex_state = 2}, - [278] = {.lex_state = 131, .external_lex_state = 2}, - [279] = {.lex_state = 131, .external_lex_state = 2}, - [280] = {.lex_state = 131, .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}, + [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}, [281] = {.lex_state = 131, .external_lex_state = 2}, [282] = {.lex_state = 131, .external_lex_state = 2}, - [283] = {.lex_state = 131, .external_lex_state = 2}, - [284] = {.lex_state = 131, .external_lex_state = 2}, - [285] = {.lex_state = 131, .external_lex_state = 2}, - [286] = {.lex_state = 131, .external_lex_state = 2}, - [287] = {.lex_state = 131, .external_lex_state = 2}, - [288] = {.lex_state = 131, .external_lex_state = 2}, - [289] = {.lex_state = 131, .external_lex_state = 2}, - [290] = {.lex_state = 131, .external_lex_state = 2}, - [291] = {.lex_state = 131, .external_lex_state = 2}, - [292] = {.lex_state = 131, .external_lex_state = 2}, - [293] = {.lex_state = 131, .external_lex_state = 2}, - [294] = {.lex_state = 131, .external_lex_state = 2}, - [295] = {.lex_state = 131, .external_lex_state = 2}, - [296] = {.lex_state = 131, .external_lex_state = 2}, - [297] = {.lex_state = 131, .external_lex_state = 2}, - [298] = {.lex_state = 131, .external_lex_state = 2}, - [299] = {.lex_state = 131, .external_lex_state = 2}, - [300] = {.lex_state = 131, .external_lex_state = 2}, - [301] = {.lex_state = 131, .external_lex_state = 2}, - [302] = {.lex_state = 131, .external_lex_state = 2}, - [303] = {.lex_state = 131, .external_lex_state = 2}, - [304] = {.lex_state = 131, .external_lex_state = 2}, - [305] = {.lex_state = 131, .external_lex_state = 2}, - [306] = {.lex_state = 131, .external_lex_state = 2}, - [307] = {.lex_state = 131, .external_lex_state = 2}, - [308] = {.lex_state = 131, .external_lex_state = 2}, - [309] = {.lex_state = 131, .external_lex_state = 2}, - [310] = {.lex_state = 131, .external_lex_state = 2}, - [311] = {.lex_state = 131, .external_lex_state = 2}, - [312] = {.lex_state = 131, .external_lex_state = 2}, - [313] = {.lex_state = 131, .external_lex_state = 2}, - [314] = {.lex_state = 131, .external_lex_state = 2}, - [315] = {.lex_state = 131, .external_lex_state = 2}, - [316] = {.lex_state = 131, .external_lex_state = 2}, - [317] = {.lex_state = 131, .external_lex_state = 2}, - [318] = {.lex_state = 131, .external_lex_state = 2}, - [319] = {.lex_state = 131, .external_lex_state = 2}, - [320] = {.lex_state = 131, .external_lex_state = 2}, - [321] = {.lex_state = 131, .external_lex_state = 2}, - [322] = {.lex_state = 131, .external_lex_state = 2}, - [323] = {.lex_state = 131, .external_lex_state = 2}, - [324] = {.lex_state = 131, .external_lex_state = 2}, - [325] = {.lex_state = 131, .external_lex_state = 2}, - [326] = {.lex_state = 131, .external_lex_state = 2}, - [327] = {.lex_state = 131, .external_lex_state = 2}, - [328] = {.lex_state = 131, .external_lex_state = 2}, - [329] = {.lex_state = 131, .external_lex_state = 2}, - [330] = {.lex_state = 131, .external_lex_state = 2}, - [331] = {.lex_state = 131, .external_lex_state = 2}, - [332] = {.lex_state = 131, .external_lex_state = 2}, - [333] = {.lex_state = 131, .external_lex_state = 2}, - [334] = {.lex_state = 131, .external_lex_state = 2}, - [335] = {.lex_state = 131, .external_lex_state = 2}, - [336] = {.lex_state = 131, .external_lex_state = 2}, - [337] = {.lex_state = 131, .external_lex_state = 2}, - [338] = {.lex_state = 131, .external_lex_state = 2}, - [339] = {.lex_state = 131, .external_lex_state = 2}, - [340] = {.lex_state = 131, .external_lex_state = 2}, - [341] = {.lex_state = 131, .external_lex_state = 2}, - [342] = {.lex_state = 131, .external_lex_state = 2}, - [343] = {.lex_state = 131, .external_lex_state = 2}, - [344] = {.lex_state = 131, .external_lex_state = 2}, - [345] = {.lex_state = 131, .external_lex_state = 2}, - [346] = {.lex_state = 131, .external_lex_state = 2}, - [347] = {.lex_state = 131, .external_lex_state = 2}, - [348] = {.lex_state = 131, .external_lex_state = 2}, - [349] = {.lex_state = 131, .external_lex_state = 2}, - [350] = {.lex_state = 131, .external_lex_state = 2}, - [351] = {.lex_state = 131, .external_lex_state = 2}, - [352] = {.lex_state = 131, .external_lex_state = 2}, - [353] = {.lex_state = 131, .external_lex_state = 2}, - [354] = {.lex_state = 131, .external_lex_state = 2}, - [355] = {.lex_state = 131, .external_lex_state = 2}, - [356] = {.lex_state = 131, .external_lex_state = 2}, - [357] = {.lex_state = 131, .external_lex_state = 2}, - [358] = {.lex_state = 131, .external_lex_state = 2}, - [359] = {.lex_state = 131, .external_lex_state = 2}, - [360] = {.lex_state = 131, .external_lex_state = 2}, - [361] = {.lex_state = 131, .external_lex_state = 2}, - [362] = {.lex_state = 131, .external_lex_state = 2}, - [363] = {.lex_state = 131, .external_lex_state = 2}, - [364] = {.lex_state = 131, .external_lex_state = 2}, - [365] = {.lex_state = 131, .external_lex_state = 2}, - [366] = {.lex_state = 131, .external_lex_state = 2}, - [367] = {.lex_state = 131, .external_lex_state = 2}, - [368] = {.lex_state = 131, .external_lex_state = 2}, - [369] = {.lex_state = 131, .external_lex_state = 2}, - [370] = {.lex_state = 131, .external_lex_state = 2}, - [371] = {.lex_state = 131, .external_lex_state = 2}, - [372] = {.lex_state = 131, .external_lex_state = 2}, - [373] = {.lex_state = 131, .external_lex_state = 2}, - [374] = {.lex_state = 131, .external_lex_state = 2}, - [375] = {.lex_state = 131, .external_lex_state = 2}, - [376] = {.lex_state = 131, .external_lex_state = 2}, - [377] = {.lex_state = 131, .external_lex_state = 2}, - [378] = {.lex_state = 131, .external_lex_state = 2}, - [379] = {.lex_state = 131, .external_lex_state = 2}, - [380] = {.lex_state = 131, .external_lex_state = 2}, - [381] = {.lex_state = 131, .external_lex_state = 2}, - [382] = {.lex_state = 131, .external_lex_state = 2}, - [383] = {.lex_state = 131, .external_lex_state = 2}, - [384] = {.lex_state = 131, .external_lex_state = 2}, - [385] = {.lex_state = 131, .external_lex_state = 2}, - [386] = {.lex_state = 131, .external_lex_state = 2}, - [387] = {.lex_state = 131, .external_lex_state = 2}, - [388] = {.lex_state = 131, .external_lex_state = 2}, - [389] = {.lex_state = 131, .external_lex_state = 2}, - [390] = {.lex_state = 131, .external_lex_state = 2}, - [391] = {.lex_state = 131, .external_lex_state = 2}, - [392] = {.lex_state = 131, .external_lex_state = 2}, - [393] = {.lex_state = 131, .external_lex_state = 2}, - [394] = {.lex_state = 131, .external_lex_state = 2}, - [395] = {.lex_state = 131, .external_lex_state = 2}, - [396] = {.lex_state = 131, .external_lex_state = 2}, - [397] = {.lex_state = 131, .external_lex_state = 2}, - [398] = {.lex_state = 131, .external_lex_state = 2}, - [399] = {.lex_state = 131, .external_lex_state = 2}, - [400] = {.lex_state = 131, .external_lex_state = 2}, - [401] = {.lex_state = 131, .external_lex_state = 2}, - [402] = {.lex_state = 131, .external_lex_state = 2}, - [403] = {.lex_state = 131, .external_lex_state = 2}, - [404] = {.lex_state = 131, .external_lex_state = 2}, - [405] = {.lex_state = 131, .external_lex_state = 2}, - [406] = {.lex_state = 131, .external_lex_state = 2}, - [407] = {.lex_state = 131, .external_lex_state = 2}, - [408] = {.lex_state = 131, .external_lex_state = 2}, - [409] = {.lex_state = 131, .external_lex_state = 2}, - [410] = {.lex_state = 131, .external_lex_state = 2}, - [411] = {.lex_state = 131, .external_lex_state = 2}, - [412] = {.lex_state = 131, .external_lex_state = 2}, - [413] = {.lex_state = 131, .external_lex_state = 2}, - [414] = {.lex_state = 131, .external_lex_state = 2}, - [415] = {.lex_state = 131, .external_lex_state = 2}, - [416] = {.lex_state = 131, .external_lex_state = 2}, - [417] = {.lex_state = 131, .external_lex_state = 2}, - [418] = {.lex_state = 131, .external_lex_state = 2}, - [419] = {.lex_state = 131, .external_lex_state = 2}, - [420] = {.lex_state = 131, .external_lex_state = 2}, - [421] = {.lex_state = 131, .external_lex_state = 2}, - [422] = {.lex_state = 131, .external_lex_state = 2}, - [423] = {.lex_state = 131, .external_lex_state = 2}, - [424] = {.lex_state = 131, .external_lex_state = 2}, - [425] = {.lex_state = 131, .external_lex_state = 2}, - [426] = {.lex_state = 131, .external_lex_state = 2}, - [427] = {.lex_state = 131, .external_lex_state = 2}, - [428] = {.lex_state = 131, .external_lex_state = 2}, - [429] = {.lex_state = 131, .external_lex_state = 2}, - [430] = {.lex_state = 131, .external_lex_state = 2}, - [431] = {.lex_state = 131, .external_lex_state = 2}, - [432] = {.lex_state = 131, .external_lex_state = 2}, - [433] = {.lex_state = 131, .external_lex_state = 2}, - [434] = {.lex_state = 131, .external_lex_state = 2}, - [435] = {.lex_state = 131, .external_lex_state = 2}, - [436] = {.lex_state = 131, .external_lex_state = 2}, - [437] = {.lex_state = 131, .external_lex_state = 2}, - [438] = {.lex_state = 131, .external_lex_state = 2}, - [439] = {.lex_state = 131, .external_lex_state = 2}, - [440] = {.lex_state = 131, .external_lex_state = 2}, - [441] = {.lex_state = 131, .external_lex_state = 2}, - [442] = {.lex_state = 131, .external_lex_state = 2}, - [443] = {.lex_state = 131, .external_lex_state = 2}, - [444] = {.lex_state = 131, .external_lex_state = 2}, - [445] = {.lex_state = 131, .external_lex_state = 2}, - [446] = {.lex_state = 131, .external_lex_state = 2}, - [447] = {.lex_state = 131, .external_lex_state = 2}, - [448] = {.lex_state = 131, .external_lex_state = 2}, - [449] = {.lex_state = 131, .external_lex_state = 2}, - [450] = {.lex_state = 131, .external_lex_state = 2}, - [451] = {.lex_state = 131, .external_lex_state = 2}, - [452] = {.lex_state = 131, .external_lex_state = 2}, - [453] = {.lex_state = 131, .external_lex_state = 2}, - [454] = {.lex_state = 131, .external_lex_state = 2}, - [455] = {.lex_state = 131, .external_lex_state = 2}, - [456] = {.lex_state = 131, .external_lex_state = 2}, - [457] = {.lex_state = 131, .external_lex_state = 2}, - [458] = {.lex_state = 131, .external_lex_state = 2}, - [459] = {.lex_state = 131, .external_lex_state = 2}, - [460] = {.lex_state = 131, .external_lex_state = 2}, - [461] = {.lex_state = 131, .external_lex_state = 2}, - [462] = {.lex_state = 131, .external_lex_state = 2}, - [463] = {.lex_state = 131, .external_lex_state = 2}, - [464] = {.lex_state = 131, .external_lex_state = 2}, - [465] = {.lex_state = 131, .external_lex_state = 2}, - [466] = {.lex_state = 131, .external_lex_state = 2}, - [467] = {.lex_state = 131, .external_lex_state = 2}, - [468] = {.lex_state = 131, .external_lex_state = 2}, - [469] = {.lex_state = 131, .external_lex_state = 2}, - [470] = {.lex_state = 131, .external_lex_state = 2}, - [471] = {.lex_state = 131, .external_lex_state = 2}, - [472] = {.lex_state = 131, .external_lex_state = 2}, - [473] = {.lex_state = 131, .external_lex_state = 2}, - [474] = {.lex_state = 131, .external_lex_state = 2}, - [475] = {.lex_state = 131, .external_lex_state = 2}, - [476] = {.lex_state = 131, .external_lex_state = 2}, - [477] = {.lex_state = 131, .external_lex_state = 2}, - [478] = {.lex_state = 131, .external_lex_state = 2}, - [479] = {.lex_state = 131, .external_lex_state = 2}, - [480] = {.lex_state = 131, .external_lex_state = 2}, - [481] = {.lex_state = 131, .external_lex_state = 2}, - [482] = {.lex_state = 131, .external_lex_state = 2}, - [483] = {.lex_state = 131, .external_lex_state = 2}, - [484] = {.lex_state = 131, .external_lex_state = 2}, - [485] = {.lex_state = 131, .external_lex_state = 2}, - [486] = {.lex_state = 131, .external_lex_state = 2}, - [487] = {.lex_state = 131, .external_lex_state = 2}, - [488] = {.lex_state = 131, .external_lex_state = 2}, - [489] = {.lex_state = 131, .external_lex_state = 2}, - [490] = {.lex_state = 131, .external_lex_state = 2}, - [491] = {.lex_state = 131, .external_lex_state = 2}, - [492] = {.lex_state = 131, .external_lex_state = 2}, - [493] = {.lex_state = 131, .external_lex_state = 2}, - [494] = {.lex_state = 131, .external_lex_state = 2}, - [495] = {.lex_state = 131, .external_lex_state = 2}, - [496] = {.lex_state = 131, .external_lex_state = 2}, - [497] = {.lex_state = 131, .external_lex_state = 2}, - [498] = {.lex_state = 131, .external_lex_state = 2}, - [499] = {.lex_state = 131, .external_lex_state = 2}, - [500] = {.lex_state = 131, .external_lex_state = 2}, - [501] = {.lex_state = 131, .external_lex_state = 2}, - [502] = {.lex_state = 131, .external_lex_state = 2}, - [503] = {.lex_state = 131, .external_lex_state = 2}, - [504] = {.lex_state = 131, .external_lex_state = 2}, - [505] = {.lex_state = 131, .external_lex_state = 2}, - [506] = {.lex_state = 131, .external_lex_state = 2}, - [507] = {.lex_state = 131, .external_lex_state = 2}, - [508] = {.lex_state = 131, .external_lex_state = 2}, - [509] = {.lex_state = 131, .external_lex_state = 2}, - [510] = {.lex_state = 131, .external_lex_state = 2}, - [511] = {.lex_state = 131, .external_lex_state = 2}, - [512] = {.lex_state = 131, .external_lex_state = 2}, - [513] = {.lex_state = 131, .external_lex_state = 2}, - [514] = {.lex_state = 131, .external_lex_state = 2}, - [515] = {.lex_state = 131, .external_lex_state = 2}, - [516] = {.lex_state = 131, .external_lex_state = 2}, - [517] = {.lex_state = 131, .external_lex_state = 2}, - [518] = {.lex_state = 131, .external_lex_state = 2}, - [519] = {.lex_state = 131, .external_lex_state = 2}, - [520] = {.lex_state = 131, .external_lex_state = 2}, - [521] = {.lex_state = 131, .external_lex_state = 2}, - [522] = {.lex_state = 131, .external_lex_state = 2}, - [523] = {.lex_state = 131, .external_lex_state = 2}, - [524] = {.lex_state = 131, .external_lex_state = 2}, - [525] = {.lex_state = 131, .external_lex_state = 2}, - [526] = {.lex_state = 131, .external_lex_state = 2}, - [527] = {.lex_state = 131, .external_lex_state = 2}, - [528] = {.lex_state = 131, .external_lex_state = 2}, - [529] = {.lex_state = 131, .external_lex_state = 2}, - [530] = {.lex_state = 131, .external_lex_state = 2}, - [531] = {.lex_state = 131, .external_lex_state = 2}, - [532] = {.lex_state = 131, .external_lex_state = 2}, - [533] = {.lex_state = 131, .external_lex_state = 2}, - [534] = {.lex_state = 131, .external_lex_state = 2}, - [535] = {.lex_state = 131, .external_lex_state = 2}, - [536] = {.lex_state = 131, .external_lex_state = 2}, - [537] = {.lex_state = 131, .external_lex_state = 2}, - [538] = {.lex_state = 131, .external_lex_state = 2}, - [539] = {.lex_state = 131, .external_lex_state = 2}, - [540] = {.lex_state = 131, .external_lex_state = 2}, - [541] = {.lex_state = 131, .external_lex_state = 2}, - [542] = {.lex_state = 131, .external_lex_state = 2}, - [543] = {.lex_state = 131, .external_lex_state = 2}, - [544] = {.lex_state = 131, .external_lex_state = 2}, - [545] = {.lex_state = 131, .external_lex_state = 2}, - [546] = {.lex_state = 131, .external_lex_state = 2}, - [547] = {.lex_state = 131, .external_lex_state = 2}, - [548] = {.lex_state = 131, .external_lex_state = 2}, - [549] = {.lex_state = 131, .external_lex_state = 2}, - [550] = {.lex_state = 131, .external_lex_state = 2}, - [551] = {.lex_state = 131, .external_lex_state = 2}, - [552] = {.lex_state = 131, .external_lex_state = 2}, - [553] = {.lex_state = 131, .external_lex_state = 2}, - [554] = {.lex_state = 131, .external_lex_state = 2}, - [555] = {.lex_state = 131, .external_lex_state = 2}, - [556] = {.lex_state = 131, .external_lex_state = 2}, - [557] = {.lex_state = 131, .external_lex_state = 2}, - [558] = {.lex_state = 131, .external_lex_state = 2}, - [559] = {.lex_state = 131, .external_lex_state = 2}, - [560] = {.lex_state = 131, .external_lex_state = 2}, - [561] = {.lex_state = 131, .external_lex_state = 2}, - [562] = {.lex_state = 131, .external_lex_state = 2}, - [563] = {.lex_state = 131, .external_lex_state = 2}, - [564] = {.lex_state = 131, .external_lex_state = 2}, - [565] = {.lex_state = 131, .external_lex_state = 2}, - [566] = {.lex_state = 131, .external_lex_state = 2}, - [567] = {.lex_state = 131, .external_lex_state = 2}, - [568] = {.lex_state = 131, .external_lex_state = 2}, - [569] = {.lex_state = 131, .external_lex_state = 2}, - [570] = {.lex_state = 131, .external_lex_state = 2}, - [571] = {.lex_state = 131, .external_lex_state = 2}, - [572] = {.lex_state = 131, .external_lex_state = 2}, - [573] = {.lex_state = 131, .external_lex_state = 2}, - [574] = {.lex_state = 131, .external_lex_state = 2}, - [575] = {.lex_state = 131, .external_lex_state = 2}, - [576] = {.lex_state = 131, .external_lex_state = 2}, - [577] = {.lex_state = 131, .external_lex_state = 2}, - [578] = {.lex_state = 131, .external_lex_state = 2}, - [579] = {.lex_state = 131, .external_lex_state = 2}, - [580] = {.lex_state = 131, .external_lex_state = 2}, - [581] = {.lex_state = 131, .external_lex_state = 2}, - [582] = {.lex_state = 131, .external_lex_state = 2}, - [583] = {.lex_state = 131, .external_lex_state = 2}, - [584] = {.lex_state = 131, .external_lex_state = 2}, - [585] = {.lex_state = 131, .external_lex_state = 2}, - [586] = {.lex_state = 131, .external_lex_state = 2}, - [587] = {.lex_state = 131, .external_lex_state = 2}, - [588] = {.lex_state = 131, .external_lex_state = 2}, - [589] = {.lex_state = 131, .external_lex_state = 2}, - [590] = {.lex_state = 131, .external_lex_state = 2}, - [591] = {.lex_state = 131, .external_lex_state = 2}, - [592] = {.lex_state = 131, .external_lex_state = 2}, - [593] = {.lex_state = 131, .external_lex_state = 2}, - [594] = {.lex_state = 131, .external_lex_state = 2}, - [595] = {.lex_state = 131, .external_lex_state = 2}, - [596] = {.lex_state = 131, .external_lex_state = 2}, - [597] = {.lex_state = 131, .external_lex_state = 2}, - [598] = {.lex_state = 131, .external_lex_state = 2}, - [599] = {.lex_state = 131, .external_lex_state = 2}, - [600] = {.lex_state = 131, .external_lex_state = 2}, - [601] = {.lex_state = 131, .external_lex_state = 2}, - [602] = {.lex_state = 131, .external_lex_state = 2}, - [603] = {.lex_state = 131, .external_lex_state = 2}, - [604] = {.lex_state = 131, .external_lex_state = 2}, - [605] = {.lex_state = 131, .external_lex_state = 2}, - [606] = {.lex_state = 131, .external_lex_state = 2}, - [607] = {.lex_state = 131, .external_lex_state = 2}, - [608] = {.lex_state = 131, .external_lex_state = 2}, - [609] = {.lex_state = 131, .external_lex_state = 2}, - [610] = {.lex_state = 131, .external_lex_state = 2}, - [611] = {.lex_state = 131, .external_lex_state = 2}, - [612] = {.lex_state = 131, .external_lex_state = 2}, - [613] = {.lex_state = 131, .external_lex_state = 2}, - [614] = {.lex_state = 131, .external_lex_state = 2}, - [615] = {.lex_state = 131, .external_lex_state = 2}, - [616] = {.lex_state = 131, .external_lex_state = 2}, - [617] = {.lex_state = 131, .external_lex_state = 2}, - [618] = {.lex_state = 131, .external_lex_state = 2}, - [619] = {.lex_state = 131, .external_lex_state = 2}, - [620] = {.lex_state = 131, .external_lex_state = 2}, - [621] = {.lex_state = 131, .external_lex_state = 2}, - [622] = {.lex_state = 131, .external_lex_state = 2}, - [623] = {.lex_state = 131, .external_lex_state = 2}, - [624] = {.lex_state = 131, .external_lex_state = 2}, - [625] = {.lex_state = 131, .external_lex_state = 2}, - [626] = {.lex_state = 131, .external_lex_state = 2}, - [627] = {.lex_state = 131, .external_lex_state = 2}, - [628] = {.lex_state = 131, .external_lex_state = 2}, - [629] = {.lex_state = 131, .external_lex_state = 2}, - [630] = {.lex_state = 131, .external_lex_state = 2}, - [631] = {.lex_state = 131, .external_lex_state = 2}, - [632] = {.lex_state = 131, .external_lex_state = 2}, - [633] = {.lex_state = 131, .external_lex_state = 2}, - [634] = {.lex_state = 131, .external_lex_state = 2}, - [635] = {.lex_state = 131, .external_lex_state = 2}, - [636] = {.lex_state = 131, .external_lex_state = 2}, - [637] = {.lex_state = 131, .external_lex_state = 2}, - [638] = {.lex_state = 131, .external_lex_state = 2}, - [639] = {.lex_state = 131, .external_lex_state = 2}, - [640] = {.lex_state = 131, .external_lex_state = 2}, - [641] = {.lex_state = 131, .external_lex_state = 2}, - [642] = {.lex_state = 131, .external_lex_state = 2}, - [643] = {.lex_state = 131, .external_lex_state = 2}, - [644] = {.lex_state = 131, .external_lex_state = 2}, - [645] = {.lex_state = 131, .external_lex_state = 2}, - [646] = {.lex_state = 131, .external_lex_state = 2}, - [647] = {.lex_state = 131, .external_lex_state = 2}, - [648] = {.lex_state = 131, .external_lex_state = 2}, - [649] = {.lex_state = 131, .external_lex_state = 2}, - [650] = {.lex_state = 131, .external_lex_state = 2}, - [651] = {.lex_state = 131, .external_lex_state = 2}, - [652] = {.lex_state = 131, .external_lex_state = 2}, - [653] = {.lex_state = 131, .external_lex_state = 2}, - [654] = {.lex_state = 131, .external_lex_state = 2}, - [655] = {.lex_state = 131, .external_lex_state = 2}, - [656] = {.lex_state = 131, .external_lex_state = 2}, - [657] = {.lex_state = 131, .external_lex_state = 2}, - [658] = {.lex_state = 131, .external_lex_state = 2}, - [659] = {.lex_state = 131, .external_lex_state = 2}, - [660] = {.lex_state = 131, .external_lex_state = 2}, - [661] = {.lex_state = 131, .external_lex_state = 2}, - [662] = {.lex_state = 131, .external_lex_state = 2}, - [663] = {.lex_state = 131, .external_lex_state = 2}, - [664] = {.lex_state = 131, .external_lex_state = 2}, - [665] = {.lex_state = 131, .external_lex_state = 2}, - [666] = {.lex_state = 131, .external_lex_state = 2}, - [667] = {.lex_state = 131, .external_lex_state = 2}, - [668] = {.lex_state = 131, .external_lex_state = 2}, - [669] = {.lex_state = 131, .external_lex_state = 2}, - [670] = {.lex_state = 131, .external_lex_state = 2}, - [671] = {.lex_state = 131, .external_lex_state = 2}, - [672] = {.lex_state = 131, .external_lex_state = 2}, - [673] = {.lex_state = 131, .external_lex_state = 2}, - [674] = {.lex_state = 131, .external_lex_state = 2}, - [675] = {.lex_state = 131, .external_lex_state = 2}, - [676] = {.lex_state = 131, .external_lex_state = 2}, - [677] = {.lex_state = 131, .external_lex_state = 2}, - [678] = {.lex_state = 131, .external_lex_state = 2}, - [679] = {.lex_state = 131, .external_lex_state = 2}, - [680] = {.lex_state = 131, .external_lex_state = 2}, - [681] = {.lex_state = 131, .external_lex_state = 2}, - [682] = {.lex_state = 131, .external_lex_state = 2}, - [683] = {.lex_state = 131, .external_lex_state = 2}, - [684] = {.lex_state = 131, .external_lex_state = 2}, - [685] = {.lex_state = 131, .external_lex_state = 2}, - [686] = {.lex_state = 131, .external_lex_state = 2}, - [687] = {.lex_state = 131, .external_lex_state = 2}, - [688] = {.lex_state = 131, .external_lex_state = 2}, - [689] = {.lex_state = 131, .external_lex_state = 2}, - [690] = {.lex_state = 131, .external_lex_state = 2}, - [691] = {.lex_state = 131, .external_lex_state = 2}, - [692] = {.lex_state = 131, .external_lex_state = 2}, - [693] = {.lex_state = 131, .external_lex_state = 2}, - [694] = {.lex_state = 131, .external_lex_state = 2}, - [695] = {.lex_state = 131, .external_lex_state = 2}, - [696] = {.lex_state = 131, .external_lex_state = 2}, - [697] = {.lex_state = 131, .external_lex_state = 2}, - [698] = {.lex_state = 131, .external_lex_state = 2}, - [699] = {.lex_state = 131, .external_lex_state = 2}, - [700] = {.lex_state = 131, .external_lex_state = 2}, - [701] = {.lex_state = 131, .external_lex_state = 2}, - [702] = {.lex_state = 131, .external_lex_state = 2}, - [703] = {.lex_state = 131, .external_lex_state = 2}, - [704] = {.lex_state = 131, .external_lex_state = 2}, - [705] = {.lex_state = 131, .external_lex_state = 2}, - [706] = {.lex_state = 131, .external_lex_state = 2}, - [707] = {.lex_state = 131, .external_lex_state = 2}, - [708] = {.lex_state = 131, .external_lex_state = 2}, - [709] = {.lex_state = 131, .external_lex_state = 2}, - [710] = {.lex_state = 131, .external_lex_state = 2}, - [711] = {.lex_state = 131, .external_lex_state = 2}, - [712] = {.lex_state = 131, .external_lex_state = 2}, - [713] = {.lex_state = 131, .external_lex_state = 2}, - [714] = {.lex_state = 131, .external_lex_state = 2}, - [715] = {.lex_state = 131, .external_lex_state = 2}, - [716] = {.lex_state = 131, .external_lex_state = 2}, - [717] = {.lex_state = 131, .external_lex_state = 2}, - [718] = {.lex_state = 131, .external_lex_state = 2}, - [719] = {.lex_state = 131, .external_lex_state = 2}, - [720] = {.lex_state = 131, .external_lex_state = 2}, - [721] = {.lex_state = 131, .external_lex_state = 2}, - [722] = {.lex_state = 131, .external_lex_state = 2}, - [723] = {.lex_state = 131, .external_lex_state = 2}, - [724] = {.lex_state = 131, .external_lex_state = 2}, - [725] = {.lex_state = 131, .external_lex_state = 2}, - [726] = {.lex_state = 131, .external_lex_state = 2}, - [727] = {.lex_state = 131, .external_lex_state = 2}, - [728] = {.lex_state = 131, .external_lex_state = 2}, - [729] = {.lex_state = 131, .external_lex_state = 2}, - [730] = {.lex_state = 131, .external_lex_state = 2}, - [731] = {.lex_state = 131, .external_lex_state = 2}, - [732] = {.lex_state = 131, .external_lex_state = 2}, - [733] = {.lex_state = 131, .external_lex_state = 2}, - [734] = {.lex_state = 131, .external_lex_state = 2}, - [735] = {.lex_state = 131, .external_lex_state = 2}, - [736] = {.lex_state = 131, .external_lex_state = 2}, - [737] = {.lex_state = 131, .external_lex_state = 2}, - [738] = {.lex_state = 131, .external_lex_state = 2}, - [739] = {.lex_state = 131, .external_lex_state = 2}, - [740] = {.lex_state = 131, .external_lex_state = 2}, - [741] = {.lex_state = 131, .external_lex_state = 2}, - [742] = {.lex_state = 131, .external_lex_state = 2}, - [743] = {.lex_state = 131, .external_lex_state = 2}, - [744] = {.lex_state = 131, .external_lex_state = 2}, - [745] = {.lex_state = 131, .external_lex_state = 2}, - [746] = {.lex_state = 131, .external_lex_state = 2}, - [747] = {.lex_state = 131, .external_lex_state = 2}, - [748] = {.lex_state = 131, .external_lex_state = 2}, - [749] = {.lex_state = 131, .external_lex_state = 2}, - [750] = {.lex_state = 131, .external_lex_state = 2}, - [751] = {.lex_state = 131, .external_lex_state = 2}, - [752] = {.lex_state = 131, .external_lex_state = 2}, - [753] = {.lex_state = 131, .external_lex_state = 2}, - [754] = {.lex_state = 131, .external_lex_state = 2}, - [755] = {.lex_state = 131, .external_lex_state = 2}, - [756] = {.lex_state = 131, .external_lex_state = 2}, - [757] = {.lex_state = 131, .external_lex_state = 2}, - [758] = {.lex_state = 131, .external_lex_state = 2}, - [759] = {.lex_state = 131, .external_lex_state = 2}, - [760] = {.lex_state = 131, .external_lex_state = 2}, - [761] = {.lex_state = 131, .external_lex_state = 2}, - [762] = {.lex_state = 131, .external_lex_state = 2}, - [763] = {.lex_state = 131, .external_lex_state = 2}, - [764] = {.lex_state = 131, .external_lex_state = 2}, - [765] = {.lex_state = 131, .external_lex_state = 2}, - [766] = {.lex_state = 131, .external_lex_state = 2}, - [767] = {.lex_state = 131, .external_lex_state = 2}, - [768] = {.lex_state = 131, .external_lex_state = 2}, - [769] = {.lex_state = 131, .external_lex_state = 2}, - [770] = {.lex_state = 131, .external_lex_state = 2}, - [771] = {.lex_state = 131, .external_lex_state = 2}, - [772] = {.lex_state = 131, .external_lex_state = 2}, - [773] = {.lex_state = 131, .external_lex_state = 2}, - [774] = {.lex_state = 131, .external_lex_state = 2}, - [775] = {.lex_state = 131, .external_lex_state = 2}, - [776] = {.lex_state = 131, .external_lex_state = 2}, - [777] = {.lex_state = 131, .external_lex_state = 2}, - [778] = {.lex_state = 131, .external_lex_state = 2}, - [779] = {.lex_state = 131, .external_lex_state = 2}, - [780] = {.lex_state = 131, .external_lex_state = 2}, - [781] = {.lex_state = 131, .external_lex_state = 2}, - [782] = {.lex_state = 131, .external_lex_state = 2}, - [783] = {.lex_state = 131, .external_lex_state = 2}, - [784] = {.lex_state = 131, .external_lex_state = 2}, - [785] = {.lex_state = 131, .external_lex_state = 2}, - [786] = {.lex_state = 131, .external_lex_state = 2}, - [787] = {.lex_state = 131, .external_lex_state = 2}, - [788] = {.lex_state = 131, .external_lex_state = 2}, - [789] = {.lex_state = 131, .external_lex_state = 2}, - [790] = {.lex_state = 131, .external_lex_state = 2}, - [791] = {.lex_state = 131, .external_lex_state = 2}, - [792] = {.lex_state = 131, .external_lex_state = 2}, - [793] = {.lex_state = 131, .external_lex_state = 2}, - [794] = {.lex_state = 131, .external_lex_state = 2}, - [795] = {.lex_state = 131, .external_lex_state = 2}, - [796] = {.lex_state = 131, .external_lex_state = 2}, - [797] = {.lex_state = 131, .external_lex_state = 2}, - [798] = {.lex_state = 131, .external_lex_state = 2}, - [799] = {.lex_state = 131, .external_lex_state = 2}, - [800] = {.lex_state = 131, .external_lex_state = 2}, - [801] = {.lex_state = 131, .external_lex_state = 2}, - [802] = {.lex_state = 131, .external_lex_state = 2}, - [803] = {.lex_state = 131, .external_lex_state = 2}, - [804] = {.lex_state = 131, .external_lex_state = 2}, - [805] = {.lex_state = 131, .external_lex_state = 2}, - [806] = {.lex_state = 131, .external_lex_state = 2}, - [807] = {.lex_state = 131, .external_lex_state = 2}, - [808] = {.lex_state = 131, .external_lex_state = 2}, - [809] = {.lex_state = 131, .external_lex_state = 2}, - [810] = {.lex_state = 131, .external_lex_state = 2}, - [811] = {.lex_state = 131, .external_lex_state = 2}, - [812] = {.lex_state = 131, .external_lex_state = 2}, - [813] = {.lex_state = 131, .external_lex_state = 2}, - [814] = {.lex_state = 131, .external_lex_state = 2}, - [815] = {.lex_state = 131, .external_lex_state = 2}, - [816] = {.lex_state = 131, .external_lex_state = 2}, - [817] = {.lex_state = 131, .external_lex_state = 2}, - [818] = {.lex_state = 131, .external_lex_state = 2}, - [819] = {.lex_state = 131, .external_lex_state = 2}, - [820] = {.lex_state = 131, .external_lex_state = 2}, - [821] = {.lex_state = 131, .external_lex_state = 2}, - [822] = {.lex_state = 131, .external_lex_state = 2}, - [823] = {.lex_state = 131, .external_lex_state = 2}, - [824] = {.lex_state = 131, .external_lex_state = 2}, - [825] = {.lex_state = 131, .external_lex_state = 2}, - [826] = {.lex_state = 131, .external_lex_state = 2}, - [827] = {.lex_state = 131, .external_lex_state = 2}, - [828] = {.lex_state = 131, .external_lex_state = 2}, - [829] = {.lex_state = 131, .external_lex_state = 2}, - [830] = {.lex_state = 131, .external_lex_state = 2}, - [831] = {.lex_state = 131, .external_lex_state = 2}, - [832] = {.lex_state = 131, .external_lex_state = 2}, - [833] = {.lex_state = 131, .external_lex_state = 2}, - [834] = {.lex_state = 131, .external_lex_state = 2}, - [835] = {.lex_state = 131, .external_lex_state = 2}, - [836] = {.lex_state = 131, .external_lex_state = 2}, - [837] = {.lex_state = 131, .external_lex_state = 2}, - [838] = {.lex_state = 131, .external_lex_state = 2}, - [839] = {.lex_state = 131, .external_lex_state = 2}, - [840] = {.lex_state = 131, .external_lex_state = 2}, - [841] = {.lex_state = 131, .external_lex_state = 2}, - [842] = {.lex_state = 131, .external_lex_state = 2}, - [843] = {.lex_state = 131, .external_lex_state = 2}, - [844] = {.lex_state = 131, .external_lex_state = 2}, - [845] = {.lex_state = 131, .external_lex_state = 2}, - [846] = {.lex_state = 131, .external_lex_state = 2}, - [847] = {.lex_state = 131, .external_lex_state = 2}, - [848] = {.lex_state = 131, .external_lex_state = 2}, - [849] = {.lex_state = 131, .external_lex_state = 2}, - [850] = {.lex_state = 131, .external_lex_state = 2}, - [851] = {.lex_state = 131, .external_lex_state = 2}, - [852] = {.lex_state = 131, .external_lex_state = 2}, - [853] = {.lex_state = 131, .external_lex_state = 2}, - [854] = {.lex_state = 131, .external_lex_state = 2}, - [855] = {.lex_state = 131, .external_lex_state = 2}, - [856] = {.lex_state = 131, .external_lex_state = 2}, - [857] = {.lex_state = 131, .external_lex_state = 2}, - [858] = {.lex_state = 131, .external_lex_state = 2}, - [859] = {.lex_state = 131, .external_lex_state = 2}, - [860] = {.lex_state = 131, .external_lex_state = 2}, - [861] = {.lex_state = 131, .external_lex_state = 2}, - [862] = {.lex_state = 131, .external_lex_state = 2}, - [863] = {.lex_state = 131, .external_lex_state = 2}, - [864] = {.lex_state = 131, .external_lex_state = 2}, - [865] = {.lex_state = 131, .external_lex_state = 2}, - [866] = {.lex_state = 131, .external_lex_state = 2}, - [867] = {.lex_state = 131, .external_lex_state = 2}, - [868] = {.lex_state = 131, .external_lex_state = 2}, - [869] = {.lex_state = 131, .external_lex_state = 2}, - [870] = {.lex_state = 131, .external_lex_state = 2}, - [871] = {.lex_state = 131, .external_lex_state = 2}, - [872] = {.lex_state = 131, .external_lex_state = 2}, - [873] = {.lex_state = 131, .external_lex_state = 2}, - [874] = {.lex_state = 131, .external_lex_state = 2}, - [875] = {.lex_state = 131, .external_lex_state = 2}, - [876] = {.lex_state = 131, .external_lex_state = 2}, - [877] = {.lex_state = 131, .external_lex_state = 2}, - [878] = {.lex_state = 131, .external_lex_state = 2}, - [879] = {.lex_state = 131, .external_lex_state = 2}, - [880] = {.lex_state = 131, .external_lex_state = 2}, - [881] = {.lex_state = 131, .external_lex_state = 2}, - [882] = {.lex_state = 131, .external_lex_state = 2}, - [883] = {.lex_state = 131, .external_lex_state = 2}, - [884] = {.lex_state = 131, .external_lex_state = 2}, - [885] = {.lex_state = 131, .external_lex_state = 2}, - [886] = {.lex_state = 131, .external_lex_state = 2}, - [887] = {.lex_state = 131, .external_lex_state = 2}, - [888] = {.lex_state = 131, .external_lex_state = 2}, - [889] = {.lex_state = 131, .external_lex_state = 2}, - [890] = {.lex_state = 131, .external_lex_state = 2}, - [891] = {.lex_state = 131, .external_lex_state = 2}, - [892] = {.lex_state = 131, .external_lex_state = 2}, - [893] = {.lex_state = 131, .external_lex_state = 2}, - [894] = {.lex_state = 131, .external_lex_state = 2}, - [895] = {.lex_state = 131, .external_lex_state = 2}, - [896] = {.lex_state = 131, .external_lex_state = 2}, - [897] = {.lex_state = 131, .external_lex_state = 2}, - [898] = {.lex_state = 131, .external_lex_state = 2}, - [899] = {.lex_state = 131, .external_lex_state = 2}, - [900] = {.lex_state = 131, .external_lex_state = 2}, - [901] = {.lex_state = 131, .external_lex_state = 2}, - [902] = {.lex_state = 131, .external_lex_state = 2}, - [903] = {.lex_state = 131, .external_lex_state = 2}, - [904] = {.lex_state = 131, .external_lex_state = 2}, - [905] = {.lex_state = 131, .external_lex_state = 2}, - [906] = {.lex_state = 131, .external_lex_state = 2}, - [907] = {.lex_state = 131, .external_lex_state = 2}, - [908] = {.lex_state = 131, .external_lex_state = 2}, - [909] = {.lex_state = 131, .external_lex_state = 2}, - [910] = {.lex_state = 131, .external_lex_state = 2}, - [911] = {.lex_state = 131, .external_lex_state = 2}, - [912] = {.lex_state = 131, .external_lex_state = 2}, - [913] = {.lex_state = 131, .external_lex_state = 2}, - [914] = {.lex_state = 131, .external_lex_state = 2}, - [915] = {.lex_state = 131, .external_lex_state = 2}, - [916] = {.lex_state = 131, .external_lex_state = 2}, - [917] = {.lex_state = 131, .external_lex_state = 2}, - [918] = {.lex_state = 131, .external_lex_state = 2}, - [919] = {.lex_state = 131, .external_lex_state = 2}, - [920] = {.lex_state = 131, .external_lex_state = 2}, - [921] = {.lex_state = 131, .external_lex_state = 2}, - [922] = {.lex_state = 131, .external_lex_state = 2}, - [923] = {.lex_state = 131, .external_lex_state = 2}, - [924] = {.lex_state = 131, .external_lex_state = 2}, - [925] = {.lex_state = 131, .external_lex_state = 2}, - [926] = {.lex_state = 131, .external_lex_state = 2}, - [927] = {.lex_state = 131, .external_lex_state = 2}, - [928] = {.lex_state = 131, .external_lex_state = 2}, - [929] = {.lex_state = 131, .external_lex_state = 2}, - [930] = {.lex_state = 131, .external_lex_state = 2}, - [931] = {.lex_state = 131, .external_lex_state = 2}, - [932] = {.lex_state = 131, .external_lex_state = 2}, - [933] = {.lex_state = 131, .external_lex_state = 2}, - [934] = {.lex_state = 131, .external_lex_state = 2}, - [935] = {.lex_state = 131, .external_lex_state = 2}, - [936] = {.lex_state = 131, .external_lex_state = 2}, - [937] = {.lex_state = 131, .external_lex_state = 2}, - [938] = {.lex_state = 131, .external_lex_state = 2}, - [939] = {.lex_state = 131, .external_lex_state = 2}, - [940] = {.lex_state = 131, .external_lex_state = 2}, - [941] = {.lex_state = 131, .external_lex_state = 2}, - [942] = {.lex_state = 131, .external_lex_state = 2}, - [943] = {.lex_state = 131, .external_lex_state = 2}, - [944] = {.lex_state = 131, .external_lex_state = 2}, - [945] = {.lex_state = 131, .external_lex_state = 2}, - [946] = {.lex_state = 131, .external_lex_state = 2}, - [947] = {.lex_state = 131, .external_lex_state = 2}, - [948] = {.lex_state = 131, .external_lex_state = 2}, - [949] = {.lex_state = 131, .external_lex_state = 2}, - [950] = {.lex_state = 131, .external_lex_state = 2}, - [951] = {.lex_state = 131, .external_lex_state = 2}, - [952] = {.lex_state = 131, .external_lex_state = 2}, - [953] = {.lex_state = 131, .external_lex_state = 2}, - [954] = {.lex_state = 131, .external_lex_state = 2}, - [955] = {.lex_state = 131, .external_lex_state = 2}, - [956] = {.lex_state = 131, .external_lex_state = 2}, - [957] = {.lex_state = 131, .external_lex_state = 2}, - [958] = {.lex_state = 131, .external_lex_state = 2}, - [959] = {.lex_state = 131, .external_lex_state = 2}, - [960] = {.lex_state = 131, .external_lex_state = 2}, - [961] = {.lex_state = 131, .external_lex_state = 2}, - [962] = {.lex_state = 131, .external_lex_state = 2}, - [963] = {.lex_state = 131, .external_lex_state = 2}, - [964] = {.lex_state = 131, .external_lex_state = 2}, - [965] = {.lex_state = 131, .external_lex_state = 2}, - [966] = {.lex_state = 131, .external_lex_state = 2}, - [967] = {.lex_state = 131, .external_lex_state = 2}, - [968] = {.lex_state = 131, .external_lex_state = 2}, - [969] = {.lex_state = 131, .external_lex_state = 2}, - [970] = {.lex_state = 131, .external_lex_state = 2}, - [971] = {.lex_state = 131, .external_lex_state = 2}, - [972] = {.lex_state = 131, .external_lex_state = 2}, - [973] = {.lex_state = 131, .external_lex_state = 2}, - [974] = {.lex_state = 131, .external_lex_state = 2}, - [975] = {.lex_state = 131, .external_lex_state = 2}, - [976] = {.lex_state = 131, .external_lex_state = 2}, - [977] = {.lex_state = 131, .external_lex_state = 2}, - [978] = {.lex_state = 131, .external_lex_state = 2}, - [979] = {.lex_state = 131, .external_lex_state = 2}, - [980] = {.lex_state = 131, .external_lex_state = 2}, - [981] = {.lex_state = 131, .external_lex_state = 2}, - [982] = {.lex_state = 131, .external_lex_state = 2}, - [983] = {.lex_state = 131, .external_lex_state = 2}, - [984] = {.lex_state = 131, .external_lex_state = 2}, - [985] = {.lex_state = 131, .external_lex_state = 2}, - [986] = {.lex_state = 131, .external_lex_state = 2}, - [987] = {.lex_state = 131, .external_lex_state = 2}, - [988] = {.lex_state = 131, .external_lex_state = 2}, - [989] = {.lex_state = 131, .external_lex_state = 2}, - [990] = {.lex_state = 131, .external_lex_state = 2}, - [991] = {.lex_state = 131, .external_lex_state = 2}, - [992] = {.lex_state = 131, .external_lex_state = 2}, - [993] = {.lex_state = 131, .external_lex_state = 2}, - [994] = {.lex_state = 131, .external_lex_state = 2}, - [995] = {.lex_state = 131, .external_lex_state = 2}, - [996] = {.lex_state = 131, .external_lex_state = 2}, - [997] = {.lex_state = 131, .external_lex_state = 2}, - [998] = {.lex_state = 131, .external_lex_state = 2}, - [999] = {.lex_state = 131, .external_lex_state = 2}, - [1000] = {.lex_state = 131, .external_lex_state = 2}, - [1001] = {.lex_state = 131, .external_lex_state = 2}, - [1002] = {.lex_state = 131, .external_lex_state = 2}, - [1003] = {.lex_state = 131, .external_lex_state = 2}, - [1004] = {.lex_state = 131, .external_lex_state = 2}, - [1005] = {.lex_state = 131, .external_lex_state = 2}, - [1006] = {.lex_state = 131, .external_lex_state = 2}, - [1007] = {.lex_state = 131, .external_lex_state = 2}, - [1008] = {.lex_state = 131, .external_lex_state = 2}, - [1009] = {.lex_state = 131, .external_lex_state = 2}, - [1010] = {.lex_state = 131, .external_lex_state = 2}, - [1011] = {.lex_state = 131, .external_lex_state = 2}, - [1012] = {.lex_state = 131, .external_lex_state = 2}, - [1013] = {.lex_state = 131, .external_lex_state = 2}, - [1014] = {.lex_state = 131, .external_lex_state = 2}, - [1015] = {.lex_state = 131, .external_lex_state = 2}, - [1016] = {.lex_state = 131, .external_lex_state = 2}, - [1017] = {.lex_state = 131, .external_lex_state = 2}, - [1018] = {.lex_state = 131, .external_lex_state = 2}, - [1019] = {.lex_state = 131, .external_lex_state = 2}, - [1020] = {.lex_state = 131, .external_lex_state = 2}, - [1021] = {.lex_state = 131, .external_lex_state = 2}, - [1022] = {.lex_state = 131, .external_lex_state = 2}, - [1023] = {.lex_state = 131, .external_lex_state = 2}, - [1024] = {.lex_state = 131, .external_lex_state = 2}, - [1025] = {.lex_state = 131, .external_lex_state = 2}, - [1026] = {.lex_state = 131, .external_lex_state = 2}, - [1027] = {.lex_state = 131, .external_lex_state = 2}, - [1028] = {.lex_state = 131, .external_lex_state = 2}, - [1029] = {.lex_state = 131, .external_lex_state = 2}, - [1030] = {.lex_state = 131, .external_lex_state = 2}, - [1031] = {.lex_state = 131, .external_lex_state = 2}, - [1032] = {.lex_state = 131, .external_lex_state = 2}, - [1033] = {.lex_state = 131, .external_lex_state = 2}, - [1034] = {.lex_state = 131, .external_lex_state = 2}, - [1035] = {.lex_state = 131, .external_lex_state = 2}, - [1036] = {.lex_state = 131, .external_lex_state = 2}, - [1037] = {.lex_state = 131, .external_lex_state = 2}, - [1038] = {.lex_state = 131, .external_lex_state = 2}, - [1039] = {.lex_state = 131, .external_lex_state = 2}, - [1040] = {.lex_state = 131, .external_lex_state = 2}, - [1041] = {.lex_state = 131, .external_lex_state = 2}, - [1042] = {.lex_state = 131, .external_lex_state = 2}, - [1043] = {.lex_state = 131, .external_lex_state = 2}, - [1044] = {.lex_state = 131, .external_lex_state = 2}, - [1045] = {.lex_state = 131, .external_lex_state = 2}, - [1046] = {.lex_state = 131, .external_lex_state = 2}, - [1047] = {.lex_state = 131, .external_lex_state = 2}, - [1048] = {.lex_state = 131, .external_lex_state = 2}, - [1049] = {.lex_state = 131, .external_lex_state = 2}, - [1050] = {.lex_state = 131, .external_lex_state = 2}, - [1051] = {.lex_state = 131, .external_lex_state = 2}, - [1052] = {.lex_state = 131, .external_lex_state = 2}, - [1053] = {.lex_state = 131, .external_lex_state = 2}, - [1054] = {.lex_state = 131, .external_lex_state = 2}, - [1055] = {.lex_state = 131, .external_lex_state = 2}, - [1056] = {.lex_state = 131, .external_lex_state = 2}, - [1057] = {.lex_state = 131, .external_lex_state = 2}, - [1058] = {.lex_state = 131, .external_lex_state = 2}, - [1059] = {.lex_state = 131, .external_lex_state = 2}, - [1060] = {.lex_state = 131, .external_lex_state = 2}, - [1061] = {.lex_state = 131, .external_lex_state = 2}, - [1062] = {.lex_state = 131, .external_lex_state = 2}, - [1063] = {.lex_state = 131, .external_lex_state = 2}, - [1064] = {.lex_state = 131, .external_lex_state = 2}, - [1065] = {.lex_state = 131, .external_lex_state = 2}, - [1066] = {.lex_state = 131, .external_lex_state = 2}, - [1067] = {.lex_state = 131, .external_lex_state = 2}, - [1068] = {.lex_state = 131, .external_lex_state = 2}, - [1069] = {.lex_state = 131, .external_lex_state = 2}, - [1070] = {.lex_state = 131, .external_lex_state = 2}, - [1071] = {.lex_state = 131, .external_lex_state = 2}, - [1072] = {.lex_state = 131, .external_lex_state = 2}, - [1073] = {.lex_state = 131, .external_lex_state = 2}, - [1074] = {.lex_state = 131, .external_lex_state = 2}, - [1075] = {.lex_state = 131, .external_lex_state = 2}, - [1076] = {.lex_state = 131, .external_lex_state = 2}, - [1077] = {.lex_state = 131, .external_lex_state = 2}, - [1078] = {.lex_state = 131, .external_lex_state = 2}, - [1079] = {.lex_state = 131, .external_lex_state = 2}, - [1080] = {.lex_state = 131, .external_lex_state = 2}, - [1081] = {.lex_state = 131, .external_lex_state = 2}, - [1082] = {.lex_state = 131, .external_lex_state = 2}, - [1083] = {.lex_state = 131, .external_lex_state = 2}, - [1084] = {.lex_state = 131, .external_lex_state = 2}, - [1085] = {.lex_state = 131, .external_lex_state = 2}, - [1086] = {.lex_state = 131, .external_lex_state = 2}, - [1087] = {.lex_state = 131, .external_lex_state = 2}, - [1088] = {.lex_state = 131, .external_lex_state = 2}, - [1089] = {.lex_state = 131, .external_lex_state = 2}, - [1090] = {.lex_state = 131, .external_lex_state = 2}, - [1091] = {.lex_state = 131, .external_lex_state = 2}, - [1092] = {.lex_state = 131, .external_lex_state = 2}, - [1093] = {.lex_state = 131, .external_lex_state = 2}, - [1094] = {.lex_state = 131, .external_lex_state = 2}, - [1095] = {.lex_state = 131, .external_lex_state = 2}, - [1096] = {.lex_state = 131, .external_lex_state = 2}, - [1097] = {.lex_state = 131, .external_lex_state = 2}, - [1098] = {.lex_state = 131, .external_lex_state = 2}, - [1099] = {.lex_state = 131, .external_lex_state = 2}, - [1100] = {.lex_state = 131, .external_lex_state = 2}, - [1101] = {.lex_state = 131, .external_lex_state = 2}, - [1102] = {.lex_state = 131, .external_lex_state = 2}, - [1103] = {.lex_state = 131, .external_lex_state = 2}, - [1104] = {.lex_state = 131, .external_lex_state = 2}, - [1105] = {.lex_state = 131, .external_lex_state = 2}, - [1106] = {.lex_state = 131, .external_lex_state = 2}, - [1107] = {.lex_state = 131, .external_lex_state = 2}, - [1108] = {.lex_state = 131, .external_lex_state = 2}, - [1109] = {.lex_state = 131, .external_lex_state = 2}, - [1110] = {.lex_state = 131, .external_lex_state = 2}, - [1111] = {.lex_state = 131, .external_lex_state = 2}, - [1112] = {.lex_state = 131, .external_lex_state = 2}, - [1113] = {.lex_state = 131, .external_lex_state = 2}, - [1114] = {.lex_state = 131, .external_lex_state = 2}, - [1115] = {.lex_state = 131, .external_lex_state = 2}, - [1116] = {.lex_state = 131, .external_lex_state = 2}, - [1117] = {.lex_state = 131, .external_lex_state = 2}, - [1118] = {.lex_state = 131, .external_lex_state = 2}, - [1119] = {.lex_state = 131, .external_lex_state = 2}, - [1120] = {.lex_state = 131, .external_lex_state = 2}, - [1121] = {.lex_state = 131, .external_lex_state = 2}, - [1122] = {.lex_state = 131, .external_lex_state = 2}, - [1123] = {.lex_state = 131, .external_lex_state = 2}, - [1124] = {.lex_state = 131, .external_lex_state = 2}, - [1125] = {.lex_state = 131, .external_lex_state = 2}, - [1126] = {.lex_state = 131, .external_lex_state = 2}, - [1127] = {.lex_state = 131, .external_lex_state = 2}, - [1128] = {.lex_state = 131, .external_lex_state = 2}, - [1129] = {.lex_state = 131, .external_lex_state = 2}, - [1130] = {.lex_state = 131, .external_lex_state = 2}, - [1131] = {.lex_state = 131, .external_lex_state = 2}, - [1132] = {.lex_state = 131, .external_lex_state = 2}, - [1133] = {.lex_state = 131, .external_lex_state = 2}, - [1134] = {.lex_state = 131, .external_lex_state = 2}, - [1135] = {.lex_state = 131, .external_lex_state = 2}, - [1136] = {.lex_state = 131, .external_lex_state = 2}, - [1137] = {.lex_state = 131, .external_lex_state = 2}, - [1138] = {.lex_state = 131, .external_lex_state = 2}, - [1139] = {.lex_state = 131, .external_lex_state = 2}, - [1140] = {.lex_state = 131, .external_lex_state = 2}, - [1141] = {.lex_state = 131, .external_lex_state = 2}, - [1142] = {.lex_state = 131, .external_lex_state = 2}, - [1143] = {.lex_state = 131, .external_lex_state = 2}, - [1144] = {.lex_state = 131, .external_lex_state = 2}, - [1145] = {.lex_state = 131, .external_lex_state = 2}, - [1146] = {.lex_state = 131, .external_lex_state = 2}, - [1147] = {.lex_state = 131, .external_lex_state = 2}, - [1148] = {.lex_state = 131, .external_lex_state = 2}, - [1149] = {.lex_state = 131, .external_lex_state = 2}, - [1150] = {.lex_state = 131, .external_lex_state = 2}, - [1151] = {.lex_state = 131, .external_lex_state = 2}, - [1152] = {.lex_state = 131, .external_lex_state = 2}, - [1153] = {.lex_state = 131, .external_lex_state = 2}, - [1154] = {.lex_state = 131, .external_lex_state = 2}, - [1155] = {.lex_state = 131, .external_lex_state = 2}, - [1156] = {.lex_state = 131, .external_lex_state = 2}, - [1157] = {.lex_state = 131, .external_lex_state = 2}, - [1158] = {.lex_state = 131, .external_lex_state = 2}, - [1159] = {.lex_state = 131, .external_lex_state = 2}, - [1160] = {.lex_state = 131, .external_lex_state = 2}, - [1161] = {.lex_state = 131, .external_lex_state = 2}, - [1162] = {.lex_state = 131, .external_lex_state = 2}, - [1163] = {.lex_state = 131, .external_lex_state = 2}, - [1164] = {.lex_state = 131, .external_lex_state = 2}, - [1165] = {.lex_state = 131, .external_lex_state = 2}, - [1166] = {.lex_state = 131, .external_lex_state = 2}, - [1167] = {.lex_state = 131, .external_lex_state = 2}, - [1168] = {.lex_state = 131, .external_lex_state = 2}, - [1169] = {.lex_state = 131, .external_lex_state = 2}, - [1170] = {.lex_state = 131, .external_lex_state = 2}, - [1171] = {.lex_state = 131, .external_lex_state = 2}, - [1172] = {.lex_state = 131, .external_lex_state = 2}, - [1173] = {.lex_state = 131, .external_lex_state = 2}, - [1174] = {.lex_state = 131, .external_lex_state = 2}, - [1175] = {.lex_state = 131, .external_lex_state = 2}, - [1176] = {.lex_state = 131, .external_lex_state = 2}, - [1177] = {.lex_state = 131, .external_lex_state = 2}, - [1178] = {.lex_state = 131, .external_lex_state = 2}, - [1179] = {.lex_state = 131, .external_lex_state = 2}, - [1180] = {.lex_state = 131, .external_lex_state = 2}, - [1181] = {.lex_state = 131, .external_lex_state = 2}, - [1182] = {.lex_state = 131, .external_lex_state = 2}, - [1183] = {.lex_state = 131, .external_lex_state = 2}, - [1184] = {.lex_state = 131, .external_lex_state = 2}, - [1185] = {.lex_state = 131, .external_lex_state = 2}, - [1186] = {.lex_state = 131, .external_lex_state = 2}, - [1187] = {.lex_state = 131, .external_lex_state = 2}, - [1188] = {.lex_state = 131, .external_lex_state = 2}, - [1189] = {.lex_state = 131, .external_lex_state = 2}, - [1190] = {.lex_state = 131, .external_lex_state = 2}, - [1191] = {.lex_state = 131, .external_lex_state = 2}, - [1192] = {.lex_state = 131, .external_lex_state = 2}, - [1193] = {.lex_state = 131, .external_lex_state = 2}, - [1194] = {.lex_state = 131, .external_lex_state = 2}, - [1195] = {.lex_state = 131, .external_lex_state = 2}, - [1196] = {.lex_state = 131, .external_lex_state = 2}, - [1197] = {.lex_state = 131, .external_lex_state = 2}, - [1198] = {.lex_state = 131, .external_lex_state = 2}, - [1199] = {.lex_state = 131, .external_lex_state = 2}, - [1200] = {.lex_state = 131, .external_lex_state = 2}, - [1201] = {.lex_state = 131, .external_lex_state = 2}, - [1202] = {.lex_state = 131, .external_lex_state = 2}, - [1203] = {.lex_state = 131, .external_lex_state = 2}, - [1204] = {.lex_state = 131, .external_lex_state = 2}, - [1205] = {.lex_state = 131, .external_lex_state = 2}, - [1206] = {.lex_state = 131, .external_lex_state = 2}, - [1207] = {.lex_state = 131, .external_lex_state = 2}, - [1208] = {.lex_state = 131, .external_lex_state = 2}, - [1209] = {.lex_state = 131, .external_lex_state = 2}, - [1210] = {.lex_state = 131, .external_lex_state = 2}, - [1211] = {.lex_state = 131, .external_lex_state = 2}, - [1212] = {.lex_state = 131, .external_lex_state = 2}, - [1213] = {.lex_state = 131, .external_lex_state = 2}, - [1214] = {.lex_state = 131, .external_lex_state = 2}, - [1215] = {.lex_state = 131, .external_lex_state = 2}, - [1216] = {.lex_state = 131, .external_lex_state = 2}, - [1217] = {.lex_state = 131, .external_lex_state = 2}, - [1218] = {.lex_state = 131, .external_lex_state = 2}, - [1219] = {.lex_state = 131, .external_lex_state = 2}, - [1220] = {.lex_state = 131, .external_lex_state = 2}, - [1221] = {.lex_state = 131, .external_lex_state = 2}, - [1222] = {.lex_state = 131, .external_lex_state = 2}, - [1223] = {.lex_state = 131, .external_lex_state = 2}, - [1224] = {.lex_state = 131, .external_lex_state = 2}, - [1225] = {.lex_state = 131, .external_lex_state = 2}, - [1226] = {.lex_state = 131, .external_lex_state = 2}, - [1227] = {.lex_state = 131, .external_lex_state = 2}, - [1228] = {.lex_state = 131, .external_lex_state = 2}, - [1229] = {.lex_state = 131, .external_lex_state = 2}, - [1230] = {.lex_state = 131, .external_lex_state = 2}, - [1231] = {.lex_state = 131, .external_lex_state = 2}, - [1232] = {.lex_state = 131, .external_lex_state = 2}, - [1233] = {.lex_state = 131, .external_lex_state = 2}, - [1234] = {.lex_state = 131, .external_lex_state = 2}, - [1235] = {.lex_state = 131, .external_lex_state = 2}, - [1236] = {.lex_state = 131, .external_lex_state = 2}, - [1237] = {.lex_state = 131, .external_lex_state = 2}, - [1238] = {.lex_state = 131, .external_lex_state = 2}, - [1239] = {.lex_state = 131, .external_lex_state = 2}, - [1240] = {.lex_state = 131, .external_lex_state = 2}, - [1241] = {.lex_state = 131, .external_lex_state = 2}, - [1242] = {.lex_state = 131, .external_lex_state = 2}, - [1243] = {.lex_state = 131, .external_lex_state = 2}, - [1244] = {.lex_state = 131, .external_lex_state = 2}, - [1245] = {.lex_state = 131, .external_lex_state = 2}, - [1246] = {.lex_state = 131, .external_lex_state = 2}, - [1247] = {.lex_state = 131, .external_lex_state = 2}, - [1248] = {.lex_state = 131, .external_lex_state = 2}, - [1249] = {.lex_state = 131, .external_lex_state = 2}, - [1250] = {.lex_state = 131, .external_lex_state = 2}, - [1251] = {.lex_state = 131, .external_lex_state = 2}, - [1252] = {.lex_state = 131, .external_lex_state = 2}, - [1253] = {.lex_state = 131, .external_lex_state = 2}, - [1254] = {.lex_state = 131, .external_lex_state = 2}, - [1255] = {.lex_state = 131, .external_lex_state = 2}, - [1256] = {.lex_state = 131, .external_lex_state = 2}, - [1257] = {.lex_state = 131, .external_lex_state = 2}, - [1258] = {.lex_state = 131, .external_lex_state = 2}, - [1259] = {.lex_state = 131, .external_lex_state = 2}, - [1260] = {.lex_state = 131, .external_lex_state = 2}, - [1261] = {.lex_state = 131, .external_lex_state = 2}, - [1262] = {.lex_state = 131, .external_lex_state = 2}, - [1263] = {.lex_state = 131, .external_lex_state = 2}, - [1264] = {.lex_state = 131, .external_lex_state = 2}, - [1265] = {.lex_state = 131, .external_lex_state = 2}, - [1266] = {.lex_state = 131, .external_lex_state = 2}, - [1267] = {.lex_state = 131, .external_lex_state = 2}, - [1268] = {.lex_state = 131, .external_lex_state = 2}, - [1269] = {.lex_state = 131, .external_lex_state = 2}, - [1270] = {.lex_state = 131, .external_lex_state = 2}, - [1271] = {.lex_state = 131, .external_lex_state = 2}, - [1272] = {.lex_state = 131, .external_lex_state = 2}, - [1273] = {.lex_state = 131, .external_lex_state = 2}, - [1274] = {.lex_state = 131, .external_lex_state = 2}, - [1275] = {.lex_state = 131, .external_lex_state = 2}, - [1276] = {.lex_state = 131, .external_lex_state = 2}, - [1277] = {.lex_state = 131, .external_lex_state = 2}, - [1278] = {.lex_state = 131, .external_lex_state = 2}, - [1279] = {.lex_state = 131, .external_lex_state = 2}, - [1280] = {.lex_state = 131, .external_lex_state = 2}, - [1281] = {.lex_state = 131, .external_lex_state = 2}, - [1282] = {.lex_state = 131, .external_lex_state = 2}, - [1283] = {.lex_state = 131, .external_lex_state = 2}, - [1284] = {.lex_state = 131, .external_lex_state = 2}, - [1285] = {.lex_state = 131, .external_lex_state = 2}, - [1286] = {.lex_state = 131, .external_lex_state = 2}, - [1287] = {.lex_state = 131, .external_lex_state = 2}, - [1288] = {.lex_state = 131, .external_lex_state = 2}, - [1289] = {.lex_state = 131, .external_lex_state = 2}, - [1290] = {.lex_state = 131, .external_lex_state = 2}, - [1291] = {.lex_state = 131, .external_lex_state = 2}, - [1292] = {.lex_state = 131, .external_lex_state = 2}, - [1293] = {.lex_state = 131, .external_lex_state = 2}, - [1294] = {.lex_state = 131, .external_lex_state = 2}, - [1295] = {.lex_state = 131, .external_lex_state = 2}, - [1296] = {.lex_state = 131, .external_lex_state = 2}, - [1297] = {.lex_state = 131, .external_lex_state = 2}, - [1298] = {.lex_state = 131, .external_lex_state = 2}, - [1299] = {.lex_state = 131, .external_lex_state = 2}, - [1300] = {.lex_state = 131, .external_lex_state = 2}, - [1301] = {.lex_state = 131, .external_lex_state = 2}, - [1302] = {.lex_state = 131, .external_lex_state = 2}, - [1303] = {.lex_state = 131, .external_lex_state = 2}, - [1304] = {.lex_state = 131, .external_lex_state = 2}, - [1305] = {.lex_state = 131, .external_lex_state = 2}, - [1306] = {.lex_state = 131, .external_lex_state = 2}, - [1307] = {.lex_state = 131, .external_lex_state = 2}, - [1308] = {.lex_state = 131, .external_lex_state = 2}, - [1309] = {.lex_state = 131, .external_lex_state = 2}, - [1310] = {.lex_state = 131, .external_lex_state = 2}, - [1311] = {.lex_state = 131, .external_lex_state = 2}, - [1312] = {.lex_state = 131, .external_lex_state = 2}, - [1313] = {.lex_state = 131, .external_lex_state = 2}, - [1314] = {.lex_state = 131, .external_lex_state = 2}, - [1315] = {.lex_state = 131, .external_lex_state = 2}, - [1316] = {.lex_state = 131, .external_lex_state = 2}, - [1317] = {.lex_state = 131, .external_lex_state = 2}, - [1318] = {.lex_state = 131, .external_lex_state = 2}, - [1319] = {.lex_state = 131, .external_lex_state = 2}, - [1320] = {.lex_state = 131, .external_lex_state = 2}, - [1321] = {.lex_state = 131, .external_lex_state = 2}, - [1322] = {.lex_state = 131, .external_lex_state = 2}, - [1323] = {.lex_state = 131, .external_lex_state = 2}, - [1324] = {.lex_state = 131, .external_lex_state = 2}, - [1325] = {.lex_state = 131, .external_lex_state = 2}, - [1326] = {.lex_state = 131, .external_lex_state = 2}, - [1327] = {.lex_state = 131, .external_lex_state = 2}, - [1328] = {.lex_state = 131, .external_lex_state = 2}, - [1329] = {.lex_state = 131, .external_lex_state = 2}, - [1330] = {.lex_state = 131, .external_lex_state = 2}, - [1331] = {.lex_state = 131, .external_lex_state = 2}, - [1332] = {.lex_state = 131, .external_lex_state = 2}, - [1333] = {.lex_state = 131, .external_lex_state = 2}, - [1334] = {.lex_state = 131, .external_lex_state = 2}, - [1335] = {.lex_state = 131, .external_lex_state = 2}, - [1336] = {.lex_state = 131, .external_lex_state = 2}, - [1337] = {.lex_state = 131, .external_lex_state = 2}, - [1338] = {.lex_state = 131, .external_lex_state = 2}, - [1339] = {.lex_state = 131, .external_lex_state = 2}, - [1340] = {.lex_state = 131, .external_lex_state = 2}, - [1341] = {.lex_state = 131, .external_lex_state = 2}, - [1342] = {.lex_state = 131, .external_lex_state = 2}, - [1343] = {.lex_state = 131, .external_lex_state = 2}, - [1344] = {.lex_state = 131, .external_lex_state = 2}, - [1345] = {.lex_state = 131, .external_lex_state = 2}, - [1346] = {.lex_state = 131, .external_lex_state = 2}, - [1347] = {.lex_state = 131, .external_lex_state = 2}, - [1348] = {.lex_state = 131, .external_lex_state = 2}, - [1349] = {.lex_state = 131, .external_lex_state = 2}, - [1350] = {.lex_state = 131, .external_lex_state = 2}, - [1351] = {.lex_state = 131, .external_lex_state = 2}, - [1352] = {.lex_state = 131, .external_lex_state = 2}, - [1353] = {.lex_state = 131, .external_lex_state = 2}, - [1354] = {.lex_state = 131, .external_lex_state = 2}, - [1355] = {.lex_state = 131, .external_lex_state = 2}, - [1356] = {.lex_state = 131, .external_lex_state = 2}, - [1357] = {.lex_state = 131, .external_lex_state = 2}, - [1358] = {.lex_state = 131, .external_lex_state = 2}, - [1359] = {.lex_state = 131, .external_lex_state = 2}, - [1360] = {.lex_state = 131, .external_lex_state = 2}, - [1361] = {.lex_state = 131, .external_lex_state = 2}, - [1362] = {.lex_state = 131, .external_lex_state = 2}, - [1363] = {.lex_state = 131, .external_lex_state = 2}, - [1364] = {.lex_state = 131, .external_lex_state = 2}, - [1365] = {.lex_state = 131, .external_lex_state = 2}, - [1366] = {.lex_state = 131, .external_lex_state = 2}, - [1367] = {.lex_state = 131, .external_lex_state = 2}, - [1368] = {.lex_state = 131, .external_lex_state = 2}, - [1369] = {.lex_state = 131, .external_lex_state = 2}, - [1370] = {.lex_state = 131, .external_lex_state = 2}, - [1371] = {.lex_state = 131, .external_lex_state = 2}, - [1372] = {.lex_state = 131, .external_lex_state = 2}, - [1373] = {.lex_state = 131, .external_lex_state = 2}, - [1374] = {.lex_state = 131, .external_lex_state = 2}, - [1375] = {.lex_state = 131, .external_lex_state = 2}, - [1376] = {.lex_state = 131, .external_lex_state = 2}, - [1377] = {.lex_state = 131, .external_lex_state = 2}, - [1378] = {.lex_state = 131, .external_lex_state = 2}, - [1379] = {.lex_state = 131, .external_lex_state = 2}, - [1380] = {.lex_state = 131, .external_lex_state = 2}, - [1381] = {.lex_state = 131, .external_lex_state = 2}, - [1382] = {.lex_state = 131, .external_lex_state = 2}, - [1383] = {.lex_state = 131, .external_lex_state = 2}, - [1384] = {.lex_state = 131, .external_lex_state = 2}, - [1385] = {.lex_state = 131, .external_lex_state = 2}, - [1386] = {.lex_state = 131, .external_lex_state = 2}, - [1387] = {.lex_state = 131, .external_lex_state = 2}, - [1388] = {.lex_state = 131, .external_lex_state = 2}, - [1389] = {.lex_state = 131, .external_lex_state = 2}, - [1390] = {.lex_state = 131, .external_lex_state = 2}, - [1391] = {.lex_state = 131, .external_lex_state = 2}, - [1392] = {.lex_state = 131, .external_lex_state = 2}, - [1393] = {.lex_state = 131, .external_lex_state = 2}, - [1394] = {.lex_state = 131, .external_lex_state = 2}, - [1395] = {.lex_state = 131, .external_lex_state = 2}, - [1396] = {.lex_state = 131, .external_lex_state = 2}, - [1397] = {.lex_state = 131, .external_lex_state = 2}, - [1398] = {.lex_state = 131, .external_lex_state = 2}, - [1399] = {.lex_state = 131, .external_lex_state = 2}, - [1400] = {.lex_state = 131, .external_lex_state = 2}, - [1401] = {.lex_state = 131, .external_lex_state = 2}, - [1402] = {.lex_state = 131, .external_lex_state = 2}, - [1403] = {.lex_state = 131, .external_lex_state = 2}, - [1404] = {.lex_state = 131, .external_lex_state = 2}, - [1405] = {.lex_state = 131, .external_lex_state = 2}, - [1406] = {.lex_state = 131, .external_lex_state = 2}, - [1407] = {.lex_state = 131, .external_lex_state = 2}, - [1408] = {.lex_state = 131, .external_lex_state = 2}, - [1409] = {.lex_state = 131, .external_lex_state = 2}, - [1410] = {.lex_state = 131, .external_lex_state = 2}, - [1411] = {.lex_state = 131, .external_lex_state = 2}, - [1412] = {.lex_state = 131, .external_lex_state = 2}, - [1413] = {.lex_state = 131, .external_lex_state = 2}, - [1414] = {.lex_state = 131, .external_lex_state = 2}, - [1415] = {.lex_state = 131, .external_lex_state = 2}, - [1416] = {.lex_state = 131, .external_lex_state = 2}, - [1417] = {.lex_state = 131, .external_lex_state = 2}, - [1418] = {.lex_state = 131, .external_lex_state = 2}, - [1419] = {.lex_state = 131, .external_lex_state = 2}, - [1420] = {.lex_state = 131, .external_lex_state = 2}, - [1421] = {.lex_state = 131, .external_lex_state = 2}, - [1422] = {.lex_state = 131, .external_lex_state = 2}, - [1423] = {.lex_state = 131, .external_lex_state = 2}, - [1424] = {.lex_state = 131, .external_lex_state = 2}, - [1425] = {.lex_state = 131, .external_lex_state = 2}, - [1426] = {.lex_state = 131, .external_lex_state = 2}, - [1427] = {.lex_state = 131, .external_lex_state = 2}, - [1428] = {.lex_state = 131, .external_lex_state = 2}, - [1429] = {.lex_state = 131, .external_lex_state = 2}, - [1430] = {.lex_state = 131, .external_lex_state = 2}, - [1431] = {.lex_state = 131, .external_lex_state = 2}, - [1432] = {.lex_state = 131, .external_lex_state = 2}, - [1433] = {.lex_state = 131, .external_lex_state = 2}, - [1434] = {.lex_state = 131, .external_lex_state = 2}, - [1435] = {.lex_state = 131, .external_lex_state = 2}, - [1436] = {.lex_state = 131, .external_lex_state = 2}, - [1437] = {.lex_state = 131, .external_lex_state = 2}, - [1438] = {.lex_state = 131, .external_lex_state = 2}, - [1439] = {.lex_state = 131, .external_lex_state = 2}, - [1440] = {.lex_state = 131, .external_lex_state = 2}, - [1441] = {.lex_state = 131, .external_lex_state = 2}, - [1442] = {.lex_state = 131, .external_lex_state = 2}, - [1443] = {.lex_state = 131, .external_lex_state = 2}, - [1444] = {.lex_state = 131, .external_lex_state = 2}, - [1445] = {.lex_state = 131, .external_lex_state = 2}, - [1446] = {.lex_state = 131, .external_lex_state = 2}, - [1447] = {.lex_state = 131, .external_lex_state = 2}, - [1448] = {.lex_state = 131, .external_lex_state = 2}, - [1449] = {.lex_state = 131, .external_lex_state = 2}, - [1450] = {.lex_state = 131, .external_lex_state = 2}, - [1451] = {.lex_state = 131, .external_lex_state = 2}, - [1452] = {.lex_state = 131, .external_lex_state = 2}, - [1453] = {.lex_state = 131, .external_lex_state = 2}, - [1454] = {.lex_state = 131, .external_lex_state = 2}, - [1455] = {.lex_state = 131, .external_lex_state = 2}, - [1456] = {.lex_state = 131, .external_lex_state = 2}, - [1457] = {.lex_state = 131, .external_lex_state = 2}, - [1458] = {.lex_state = 131, .external_lex_state = 2}, - [1459] = {.lex_state = 131, .external_lex_state = 2}, - [1460] = {.lex_state = 131, .external_lex_state = 2}, - [1461] = {.lex_state = 131, .external_lex_state = 2}, - [1462] = {.lex_state = 131, .external_lex_state = 2}, - [1463] = {.lex_state = 131, .external_lex_state = 2}, - [1464] = {.lex_state = 131, .external_lex_state = 2}, - [1465] = {.lex_state = 131, .external_lex_state = 2}, - [1466] = {.lex_state = 131, .external_lex_state = 2}, - [1467] = {.lex_state = 131, .external_lex_state = 2}, - [1468] = {.lex_state = 131, .external_lex_state = 2}, - [1469] = {.lex_state = 131, .external_lex_state = 2}, - [1470] = {.lex_state = 131, .external_lex_state = 2}, - [1471] = {.lex_state = 131, .external_lex_state = 2}, - [1472] = {.lex_state = 131, .external_lex_state = 2}, - [1473] = {.lex_state = 131, .external_lex_state = 2}, - [1474] = {.lex_state = 131, .external_lex_state = 2}, - [1475] = {.lex_state = 131, .external_lex_state = 2}, - [1476] = {.lex_state = 131, .external_lex_state = 2}, - [1477] = {.lex_state = 131, .external_lex_state = 2}, - [1478] = {.lex_state = 131, .external_lex_state = 2}, - [1479] = {.lex_state = 131, .external_lex_state = 2}, - [1480] = {.lex_state = 131, .external_lex_state = 2}, - [1481] = {.lex_state = 131, .external_lex_state = 2}, - [1482] = {.lex_state = 131, .external_lex_state = 2}, - [1483] = {.lex_state = 131, .external_lex_state = 2}, - [1484] = {.lex_state = 131, .external_lex_state = 2}, - [1485] = {.lex_state = 131, .external_lex_state = 2}, - [1486] = {.lex_state = 131, .external_lex_state = 2}, - [1487] = {.lex_state = 131, .external_lex_state = 2}, - [1488] = {.lex_state = 131, .external_lex_state = 2}, - [1489] = {.lex_state = 131, .external_lex_state = 2}, - [1490] = {.lex_state = 131, .external_lex_state = 2}, - [1491] = {.lex_state = 131, .external_lex_state = 2}, - [1492] = {.lex_state = 131, .external_lex_state = 2}, - [1493] = {.lex_state = 131, .external_lex_state = 2}, - [1494] = {.lex_state = 131, .external_lex_state = 2}, - [1495] = {.lex_state = 131, .external_lex_state = 2}, - [1496] = {.lex_state = 131, .external_lex_state = 2}, - [1497] = {.lex_state = 131, .external_lex_state = 2}, - [1498] = {.lex_state = 131, .external_lex_state = 2}, - [1499] = {.lex_state = 131, .external_lex_state = 2}, - [1500] = {.lex_state = 131, .external_lex_state = 2}, - [1501] = {.lex_state = 131, .external_lex_state = 2}, - [1502] = {.lex_state = 131, .external_lex_state = 2}, - [1503] = {.lex_state = 131, .external_lex_state = 2}, - [1504] = {.lex_state = 131, .external_lex_state = 2}, - [1505] = {.lex_state = 131, .external_lex_state = 2}, - [1506] = {.lex_state = 131, .external_lex_state = 2}, - [1507] = {.lex_state = 131, .external_lex_state = 2}, - [1508] = {.lex_state = 131, .external_lex_state = 2}, - [1509] = {.lex_state = 131, .external_lex_state = 2}, - [1510] = {.lex_state = 131, .external_lex_state = 2}, - [1511] = {.lex_state = 131, .external_lex_state = 2}, - [1512] = {.lex_state = 131, .external_lex_state = 2}, - [1513] = {.lex_state = 131, .external_lex_state = 2}, - [1514] = {.lex_state = 131, .external_lex_state = 2}, - [1515] = {.lex_state = 131, .external_lex_state = 2}, - [1516] = {.lex_state = 131, .external_lex_state = 2}, - [1517] = {.lex_state = 131, .external_lex_state = 2}, - [1518] = {.lex_state = 131, .external_lex_state = 2}, - [1519] = {.lex_state = 131, .external_lex_state = 2}, - [1520] = {.lex_state = 131, .external_lex_state = 2}, - [1521] = {.lex_state = 131, .external_lex_state = 2}, - [1522] = {.lex_state = 131, .external_lex_state = 2}, - [1523] = {.lex_state = 131, .external_lex_state = 2}, - [1524] = {.lex_state = 131, .external_lex_state = 2}, - [1525] = {.lex_state = 131, .external_lex_state = 2}, - [1526] = {.lex_state = 131, .external_lex_state = 2}, - [1527] = {.lex_state = 131, .external_lex_state = 2}, - [1528] = {.lex_state = 131, .external_lex_state = 2}, - [1529] = {.lex_state = 131, .external_lex_state = 2}, - [1530] = {.lex_state = 131, .external_lex_state = 2}, - [1531] = {.lex_state = 131, .external_lex_state = 2}, - [1532] = {.lex_state = 131, .external_lex_state = 2}, - [1533] = {.lex_state = 131, .external_lex_state = 2}, - [1534] = {.lex_state = 131, .external_lex_state = 2}, - [1535] = {.lex_state = 131, .external_lex_state = 2}, - [1536] = {.lex_state = 131, .external_lex_state = 2}, - [1537] = {.lex_state = 131, .external_lex_state = 2}, - [1538] = {.lex_state = 131, .external_lex_state = 2}, - [1539] = {.lex_state = 131, .external_lex_state = 2}, - [1540] = {.lex_state = 131, .external_lex_state = 2}, - [1541] = {.lex_state = 131, .external_lex_state = 2}, - [1542] = {.lex_state = 131, .external_lex_state = 2}, - [1543] = {.lex_state = 131, .external_lex_state = 2}, - [1544] = {.lex_state = 131, .external_lex_state = 2}, - [1545] = {.lex_state = 131, .external_lex_state = 2}, - [1546] = {.lex_state = 131, .external_lex_state = 2}, - [1547] = {.lex_state = 131, .external_lex_state = 2}, - [1548] = {.lex_state = 131, .external_lex_state = 2}, - [1549] = {.lex_state = 131, .external_lex_state = 2}, - [1550] = {.lex_state = 131, .external_lex_state = 2}, - [1551] = {.lex_state = 131, .external_lex_state = 2}, - [1552] = {.lex_state = 131, .external_lex_state = 2}, - [1553] = {.lex_state = 131, .external_lex_state = 2}, - [1554] = {.lex_state = 131, .external_lex_state = 2}, - [1555] = {.lex_state = 131, .external_lex_state = 2}, - [1556] = {.lex_state = 131, .external_lex_state = 2}, - [1557] = {.lex_state = 131, .external_lex_state = 2}, - [1558] = {.lex_state = 131, .external_lex_state = 2}, - [1559] = {.lex_state = 131, .external_lex_state = 2}, - [1560] = {.lex_state = 131, .external_lex_state = 2}, - [1561] = {.lex_state = 131, .external_lex_state = 2}, - [1562] = {.lex_state = 131, .external_lex_state = 2}, - [1563] = {.lex_state = 131, .external_lex_state = 2}, - [1564] = {.lex_state = 131, .external_lex_state = 2}, - [1565] = {.lex_state = 131, .external_lex_state = 2}, - [1566] = {.lex_state = 131, .external_lex_state = 2}, - [1567] = {.lex_state = 131, .external_lex_state = 2}, - [1568] = {.lex_state = 131, .external_lex_state = 2}, - [1569] = {.lex_state = 131, .external_lex_state = 2}, - [1570] = {.lex_state = 131, .external_lex_state = 2}, - [1571] = {.lex_state = 131, .external_lex_state = 2}, - [1572] = {.lex_state = 131, .external_lex_state = 2}, - [1573] = {.lex_state = 131, .external_lex_state = 2}, - [1574] = {.lex_state = 131, .external_lex_state = 2}, - [1575] = {.lex_state = 131, .external_lex_state = 2}, - [1576] = {.lex_state = 131, .external_lex_state = 2}, - [1577] = {.lex_state = 131, .external_lex_state = 2}, - [1578] = {.lex_state = 131, .external_lex_state = 2}, - [1579] = {.lex_state = 131, .external_lex_state = 2}, - [1580] = {.lex_state = 131, .external_lex_state = 2}, - [1581] = {.lex_state = 131, .external_lex_state = 2}, - [1582] = {.lex_state = 131, .external_lex_state = 2}, - [1583] = {.lex_state = 131, .external_lex_state = 2}, - [1584] = {.lex_state = 131, .external_lex_state = 2}, - [1585] = {.lex_state = 131, .external_lex_state = 2}, - [1586] = {.lex_state = 131, .external_lex_state = 2}, - [1587] = {.lex_state = 131, .external_lex_state = 2}, - [1588] = {.lex_state = 131, .external_lex_state = 2}, - [1589] = {.lex_state = 131, .external_lex_state = 2}, - [1590] = {.lex_state = 131, .external_lex_state = 2}, - [1591] = {.lex_state = 131, .external_lex_state = 2}, - [1592] = {.lex_state = 131, .external_lex_state = 2}, - [1593] = {.lex_state = 131, .external_lex_state = 2}, - [1594] = {.lex_state = 131, .external_lex_state = 2}, - [1595] = {.lex_state = 131, .external_lex_state = 2}, - [1596] = {.lex_state = 131, .external_lex_state = 2}, - [1597] = {.lex_state = 131, .external_lex_state = 2}, - [1598] = {.lex_state = 131, .external_lex_state = 2}, - [1599] = {.lex_state = 131, .external_lex_state = 2}, - [1600] = {.lex_state = 131, .external_lex_state = 2}, - [1601] = {.lex_state = 131, .external_lex_state = 2}, - [1602] = {.lex_state = 131, .external_lex_state = 2}, - [1603] = {.lex_state = 131, .external_lex_state = 2}, - [1604] = {.lex_state = 131, .external_lex_state = 2}, - [1605] = {.lex_state = 131, .external_lex_state = 2}, - [1606] = {.lex_state = 131, .external_lex_state = 2}, - [1607] = {.lex_state = 131, .external_lex_state = 2}, - [1608] = {.lex_state = 131, .external_lex_state = 2}, - [1609] = {.lex_state = 131, .external_lex_state = 2}, - [1610] = {.lex_state = 131, .external_lex_state = 2}, - [1611] = {.lex_state = 131, .external_lex_state = 2}, - [1612] = {.lex_state = 131, .external_lex_state = 2}, - [1613] = {.lex_state = 131, .external_lex_state = 2}, - [1614] = {.lex_state = 131, .external_lex_state = 2}, - [1615] = {.lex_state = 131, .external_lex_state = 2}, - [1616] = {.lex_state = 131, .external_lex_state = 2}, - [1617] = {.lex_state = 131, .external_lex_state = 2}, - [1618] = {.lex_state = 131, .external_lex_state = 2}, - [1619] = {.lex_state = 131, .external_lex_state = 2}, - [1620] = {.lex_state = 131, .external_lex_state = 2}, - [1621] = {.lex_state = 131, .external_lex_state = 2}, - [1622] = {.lex_state = 131, .external_lex_state = 2}, - [1623] = {.lex_state = 131, .external_lex_state = 2}, - [1624] = {.lex_state = 131, .external_lex_state = 2}, - [1625] = {.lex_state = 131, .external_lex_state = 2}, - [1626] = {.lex_state = 131, .external_lex_state = 2}, - [1627] = {.lex_state = 131, .external_lex_state = 2}, - [1628] = {.lex_state = 131, .external_lex_state = 2}, - [1629] = {.lex_state = 131, .external_lex_state = 2}, - [1630] = {.lex_state = 131, .external_lex_state = 2}, - [1631] = {.lex_state = 131, .external_lex_state = 2}, - [1632] = {.lex_state = 131, .external_lex_state = 2}, - [1633] = {.lex_state = 131, .external_lex_state = 2}, - [1634] = {.lex_state = 131, .external_lex_state = 2}, - [1635] = {.lex_state = 131, .external_lex_state = 2}, - [1636] = {.lex_state = 131, .external_lex_state = 2}, - [1637] = {.lex_state = 131, .external_lex_state = 2}, - [1638] = {.lex_state = 131, .external_lex_state = 2}, - [1639] = {.lex_state = 131, .external_lex_state = 2}, - [1640] = {.lex_state = 131, .external_lex_state = 2}, - [1641] = {.lex_state = 131, .external_lex_state = 2}, - [1642] = {.lex_state = 131, .external_lex_state = 2}, - [1643] = {.lex_state = 131, .external_lex_state = 2}, - [1644] = {.lex_state = 131, .external_lex_state = 2}, - [1645] = {.lex_state = 131, .external_lex_state = 2}, - [1646] = {.lex_state = 131, .external_lex_state = 2}, - [1647] = {.lex_state = 131, .external_lex_state = 2}, - [1648] = {.lex_state = 131, .external_lex_state = 2}, - [1649] = {.lex_state = 131, .external_lex_state = 2}, - [1650] = {.lex_state = 131, .external_lex_state = 2}, - [1651] = {.lex_state = 131, .external_lex_state = 2}, - [1652] = {.lex_state = 131, .external_lex_state = 2}, - [1653] = {.lex_state = 131, .external_lex_state = 2}, - [1654] = {.lex_state = 131, .external_lex_state = 2}, - [1655] = {.lex_state = 131, .external_lex_state = 2}, - [1656] = {.lex_state = 131, .external_lex_state = 2}, - [1657] = {.lex_state = 131, .external_lex_state = 2}, - [1658] = {.lex_state = 131, .external_lex_state = 2}, - [1659] = {.lex_state = 131, .external_lex_state = 2}, - [1660] = {.lex_state = 131, .external_lex_state = 2}, - [1661] = {.lex_state = 131, .external_lex_state = 2}, - [1662] = {.lex_state = 131, .external_lex_state = 2}, - [1663] = {.lex_state = 131, .external_lex_state = 2}, - [1664] = {.lex_state = 131, .external_lex_state = 2}, - [1665] = {.lex_state = 131, .external_lex_state = 2}, - [1666] = {.lex_state = 131, .external_lex_state = 2}, - [1667] = {.lex_state = 131, .external_lex_state = 2}, - [1668] = {.lex_state = 131, .external_lex_state = 2}, - [1669] = {.lex_state = 131, .external_lex_state = 2}, - [1670] = {.lex_state = 131, .external_lex_state = 2}, - [1671] = {.lex_state = 131, .external_lex_state = 2}, - [1672] = {.lex_state = 131, .external_lex_state = 2}, - [1673] = {.lex_state = 131, .external_lex_state = 2}, - [1674] = {.lex_state = 131, .external_lex_state = 2}, - [1675] = {.lex_state = 131, .external_lex_state = 2}, - [1676] = {.lex_state = 131, .external_lex_state = 2}, - [1677] = {.lex_state = 131, .external_lex_state = 2}, - [1678] = {.lex_state = 131, .external_lex_state = 2}, - [1679] = {.lex_state = 131, .external_lex_state = 2}, - [1680] = {.lex_state = 131, .external_lex_state = 2}, - [1681] = {.lex_state = 131, .external_lex_state = 2}, - [1682] = {.lex_state = 131, .external_lex_state = 2}, - [1683] = {.lex_state = 131, .external_lex_state = 2}, - [1684] = {.lex_state = 131, .external_lex_state = 2}, - [1685] = {.lex_state = 131, .external_lex_state = 2}, - [1686] = {.lex_state = 131, .external_lex_state = 2}, - [1687] = {.lex_state = 131, .external_lex_state = 2}, - [1688] = {.lex_state = 131, .external_lex_state = 2}, - [1689] = {.lex_state = 131, .external_lex_state = 2}, - [1690] = {.lex_state = 131, .external_lex_state = 2}, - [1691] = {.lex_state = 131, .external_lex_state = 2}, - [1692] = {.lex_state = 131, .external_lex_state = 2}, - [1693] = {.lex_state = 131, .external_lex_state = 2}, - [1694] = {.lex_state = 131, .external_lex_state = 2}, - [1695] = {.lex_state = 131, .external_lex_state = 2}, - [1696] = {.lex_state = 131, .external_lex_state = 2}, - [1697] = {.lex_state = 131, .external_lex_state = 2}, - [1698] = {.lex_state = 131, .external_lex_state = 2}, - [1699] = {.lex_state = 131, .external_lex_state = 2}, - [1700] = {.lex_state = 131, .external_lex_state = 2}, - [1701] = {.lex_state = 131, .external_lex_state = 2}, - [1702] = {.lex_state = 131, .external_lex_state = 2}, - [1703] = {.lex_state = 131, .external_lex_state = 2}, - [1704] = {.lex_state = 131, .external_lex_state = 2}, - [1705] = {.lex_state = 131, .external_lex_state = 2}, - [1706] = {.lex_state = 131, .external_lex_state = 2}, - [1707] = {.lex_state = 131, .external_lex_state = 2}, - [1708] = {.lex_state = 131, .external_lex_state = 2}, - [1709] = {.lex_state = 131, .external_lex_state = 2}, - [1710] = {.lex_state = 131, .external_lex_state = 2}, - [1711] = {.lex_state = 131, .external_lex_state = 2}, - [1712] = {.lex_state = 131, .external_lex_state = 2}, - [1713] = {.lex_state = 131, .external_lex_state = 2}, - [1714] = {.lex_state = 131, .external_lex_state = 2}, - [1715] = {.lex_state = 131, .external_lex_state = 2}, - [1716] = {.lex_state = 131, .external_lex_state = 2}, - [1717] = {.lex_state = 131, .external_lex_state = 2}, - [1718] = {.lex_state = 131, .external_lex_state = 2}, - [1719] = {.lex_state = 131, .external_lex_state = 2}, - [1720] = {.lex_state = 131, .external_lex_state = 2}, - [1721] = {.lex_state = 131, .external_lex_state = 2}, - [1722] = {.lex_state = 131, .external_lex_state = 2}, - [1723] = {.lex_state = 131, .external_lex_state = 2}, - [1724] = {.lex_state = 131, .external_lex_state = 2}, - [1725] = {.lex_state = 131, .external_lex_state = 2}, - [1726] = {.lex_state = 131, .external_lex_state = 2}, - [1727] = {.lex_state = 131, .external_lex_state = 2}, - [1728] = {.lex_state = 131, .external_lex_state = 2}, - [1729] = {.lex_state = 131, .external_lex_state = 2}, - [1730] = {.lex_state = 131, .external_lex_state = 2}, - [1731] = {.lex_state = 131, .external_lex_state = 2}, - [1732] = {.lex_state = 131, .external_lex_state = 2}, - [1733] = {.lex_state = 131, .external_lex_state = 2}, - [1734] = {.lex_state = 131, .external_lex_state = 2}, - [1735] = {.lex_state = 131, .external_lex_state = 2}, - [1736] = {.lex_state = 131, .external_lex_state = 2}, - [1737] = {.lex_state = 131, .external_lex_state = 2}, - [1738] = {.lex_state = 131, .external_lex_state = 2}, - [1739] = {.lex_state = 131, .external_lex_state = 2}, - [1740] = {.lex_state = 131, .external_lex_state = 2}, - [1741] = {.lex_state = 131, .external_lex_state = 2}, - [1742] = {.lex_state = 131, .external_lex_state = 2}, - [1743] = {.lex_state = 131, .external_lex_state = 2}, - [1744] = {.lex_state = 131, .external_lex_state = 2}, - [1745] = {.lex_state = 131, .external_lex_state = 2}, - [1746] = {.lex_state = 131, .external_lex_state = 2}, - [1747] = {.lex_state = 131, .external_lex_state = 2}, - [1748] = {.lex_state = 131, .external_lex_state = 2}, - [1749] = {.lex_state = 131, .external_lex_state = 2}, - [1750] = {.lex_state = 131, .external_lex_state = 2}, - [1751] = {.lex_state = 131, .external_lex_state = 2}, - [1752] = {.lex_state = 131, .external_lex_state = 2}, - [1753] = {.lex_state = 131, .external_lex_state = 2}, - [1754] = {.lex_state = 131, .external_lex_state = 2}, - [1755] = {.lex_state = 131, .external_lex_state = 2}, - [1756] = {.lex_state = 131, .external_lex_state = 2}, - [1757] = {.lex_state = 131, .external_lex_state = 2}, - [1758] = {.lex_state = 131, .external_lex_state = 2}, - [1759] = {.lex_state = 131, .external_lex_state = 2}, - [1760] = {.lex_state = 131, .external_lex_state = 2}, - [1761] = {.lex_state = 131, .external_lex_state = 2}, - [1762] = {.lex_state = 131, .external_lex_state = 2}, - [1763] = {.lex_state = 131, .external_lex_state = 2}, - [1764] = {.lex_state = 131, .external_lex_state = 2}, - [1765] = {.lex_state = 131, .external_lex_state = 2}, - [1766] = {.lex_state = 131, .external_lex_state = 2}, - [1767] = {.lex_state = 131, .external_lex_state = 2}, - [1768] = {.lex_state = 131, .external_lex_state = 2}, - [1769] = {.lex_state = 131, .external_lex_state = 2}, - [1770] = {.lex_state = 131, .external_lex_state = 2}, - [1771] = {.lex_state = 131, .external_lex_state = 2}, - [1772] = {.lex_state = 131, .external_lex_state = 2}, - [1773] = {.lex_state = 131, .external_lex_state = 2}, - [1774] = {.lex_state = 131, .external_lex_state = 2}, - [1775] = {.lex_state = 131, .external_lex_state = 2}, - [1776] = {.lex_state = 131, .external_lex_state = 2}, - [1777] = {.lex_state = 131, .external_lex_state = 2}, - [1778] = {.lex_state = 131, .external_lex_state = 2}, - [1779] = {.lex_state = 131, .external_lex_state = 2}, - [1780] = {.lex_state = 131, .external_lex_state = 2}, - [1781] = {.lex_state = 131, .external_lex_state = 2}, - [1782] = {.lex_state = 131, .external_lex_state = 2}, - [1783] = {.lex_state = 131, .external_lex_state = 2}, - [1784] = {.lex_state = 131, .external_lex_state = 2}, - [1785] = {.lex_state = 131, .external_lex_state = 2}, - [1786] = {.lex_state = 131, .external_lex_state = 2}, - [1787] = {.lex_state = 131, .external_lex_state = 2}, - [1788] = {.lex_state = 131, .external_lex_state = 2}, - [1789] = {.lex_state = 131, .external_lex_state = 2}, - [1790] = {.lex_state = 131, .external_lex_state = 2}, - [1791] = {.lex_state = 131, .external_lex_state = 2}, - [1792] = {.lex_state = 131, .external_lex_state = 2}, - [1793] = {.lex_state = 131, .external_lex_state = 2}, - [1794] = {.lex_state = 131, .external_lex_state = 2}, - [1795] = {.lex_state = 131, .external_lex_state = 2}, - [1796] = {.lex_state = 131, .external_lex_state = 2}, - [1797] = {.lex_state = 131, .external_lex_state = 2}, - [1798] = {.lex_state = 131, .external_lex_state = 2}, - [1799] = {.lex_state = 131, .external_lex_state = 2}, - [1800] = {.lex_state = 131, .external_lex_state = 2}, - [1801] = {.lex_state = 131, .external_lex_state = 2}, - [1802] = {.lex_state = 131, .external_lex_state = 2}, - [1803] = {.lex_state = 131, .external_lex_state = 2}, - [1804] = {.lex_state = 131, .external_lex_state = 2}, - [1805] = {.lex_state = 131, .external_lex_state = 2}, - [1806] = {.lex_state = 131, .external_lex_state = 2}, - [1807] = {.lex_state = 131, .external_lex_state = 2}, - [1808] = {.lex_state = 131, .external_lex_state = 2}, - [1809] = {.lex_state = 131, .external_lex_state = 2}, - [1810] = {.lex_state = 131, .external_lex_state = 2}, - [1811] = {.lex_state = 131, .external_lex_state = 2}, - [1812] = {.lex_state = 131, .external_lex_state = 2}, - [1813] = {.lex_state = 131, .external_lex_state = 2}, - [1814] = {.lex_state = 131, .external_lex_state = 2}, - [1815] = {.lex_state = 131, .external_lex_state = 2}, - [1816] = {.lex_state = 131, .external_lex_state = 2}, - [1817] = {.lex_state = 131, .external_lex_state = 2}, - [1818] = {.lex_state = 131, .external_lex_state = 2}, - [1819] = {.lex_state = 131, .external_lex_state = 2}, - [1820] = {.lex_state = 131, .external_lex_state = 2}, - [1821] = {.lex_state = 131, .external_lex_state = 2}, - [1822] = {.lex_state = 131, .external_lex_state = 2}, - [1823] = {.lex_state = 131, .external_lex_state = 2}, - [1824] = {.lex_state = 131, .external_lex_state = 2}, - [1825] = {.lex_state = 131, .external_lex_state = 2}, - [1826] = {.lex_state = 131, .external_lex_state = 2}, - [1827] = {.lex_state = 131, .external_lex_state = 2}, - [1828] = {.lex_state = 131, .external_lex_state = 2}, - [1829] = {.lex_state = 131, .external_lex_state = 2}, - [1830] = {.lex_state = 131, .external_lex_state = 2}, - [1831] = {.lex_state = 131, .external_lex_state = 2}, - [1832] = {.lex_state = 131, .external_lex_state = 2}, - [1833] = {.lex_state = 131, .external_lex_state = 2}, - [1834] = {.lex_state = 130, .external_lex_state = 2}, - [1835] = {.lex_state = 130, .external_lex_state = 2}, - [1836] = {.lex_state = 130, .external_lex_state = 2}, - [1837] = {.lex_state = 130, .external_lex_state = 2}, - [1838] = {.lex_state = 130, .external_lex_state = 2}, - [1839] = {.lex_state = 130, .external_lex_state = 2}, - [1840] = {.lex_state = 131}, - [1841] = {.lex_state = 131}, - [1842] = {.lex_state = 131}, - [1843] = {.lex_state = 131}, - [1844] = {.lex_state = 131}, - [1845] = {.lex_state = 131, .external_lex_state = 2}, - [1846] = {.lex_state = 131, .external_lex_state = 2}, - [1847] = {.lex_state = 131, .external_lex_state = 2}, - [1848] = {.lex_state = 131, .external_lex_state = 2}, - [1849] = {.lex_state = 131, .external_lex_state = 2}, - [1850] = {.lex_state = 131}, - [1851] = {.lex_state = 131, .external_lex_state = 2}, - [1852] = {.lex_state = 131, .external_lex_state = 2}, - [1853] = {.lex_state = 131}, - [1854] = {.lex_state = 131}, - [1855] = {.lex_state = 131, .external_lex_state = 2}, - [1856] = {.lex_state = 131, .external_lex_state = 2}, - [1857] = {.lex_state = 131, .external_lex_state = 2}, - [1858] = {.lex_state = 131}, - [1859] = {.lex_state = 131, .external_lex_state = 2}, - [1860] = {.lex_state = 131, .external_lex_state = 2}, - [1861] = {.lex_state = 131, .external_lex_state = 2}, - [1862] = {.lex_state = 131, .external_lex_state = 2}, - [1863] = {.lex_state = 131, .external_lex_state = 2}, - [1864] = {.lex_state = 131, .external_lex_state = 2}, - [1865] = {.lex_state = 131, .external_lex_state = 2}, - [1866] = {.lex_state = 131, .external_lex_state = 2}, - [1867] = {.lex_state = 131, .external_lex_state = 2}, - [1868] = {.lex_state = 131, .external_lex_state = 2}, - [1869] = {.lex_state = 131, .external_lex_state = 2}, - [1870] = {.lex_state = 131, .external_lex_state = 2}, - [1871] = {.lex_state = 131, .external_lex_state = 2}, - [1872] = {.lex_state = 131, .external_lex_state = 2}, - [1873] = {.lex_state = 131, .external_lex_state = 2}, - [1874] = {.lex_state = 131, .external_lex_state = 2}, - [1875] = {.lex_state = 131, .external_lex_state = 2}, - [1876] = {.lex_state = 131, .external_lex_state = 2}, - [1877] = {.lex_state = 131, .external_lex_state = 2}, - [1878] = {.lex_state = 131, .external_lex_state = 2}, - [1879] = {.lex_state = 131, .external_lex_state = 2}, - [1880] = {.lex_state = 131, .external_lex_state = 2}, - [1881] = {.lex_state = 131, .external_lex_state = 2}, - [1882] = {.lex_state = 131, .external_lex_state = 2}, - [1883] = {.lex_state = 131, .external_lex_state = 2}, - [1884] = {.lex_state = 131, .external_lex_state = 2}, - [1885] = {.lex_state = 131, .external_lex_state = 2}, - [1886] = {.lex_state = 131, .external_lex_state = 2}, - [1887] = {.lex_state = 131, .external_lex_state = 2}, - [1888] = {.lex_state = 131, .external_lex_state = 2}, - [1889] = {.lex_state = 131, .external_lex_state = 2}, - [1890] = {.lex_state = 131, .external_lex_state = 2}, - [1891] = {.lex_state = 131, .external_lex_state = 2}, - [1892] = {.lex_state = 131, .external_lex_state = 2}, - [1893] = {.lex_state = 131, .external_lex_state = 2}, - [1894] = {.lex_state = 131, .external_lex_state = 2}, - [1895] = {.lex_state = 131, .external_lex_state = 2}, - [1896] = {.lex_state = 131, .external_lex_state = 2}, - [1897] = {.lex_state = 131, .external_lex_state = 2}, - [1898] = {.lex_state = 131, .external_lex_state = 2}, - [1899] = {.lex_state = 131, .external_lex_state = 2}, - [1900] = {.lex_state = 131, .external_lex_state = 2}, + [283] = {.lex_state = 132, .external_lex_state = 2}, + [284] = {.lex_state = 132, .external_lex_state = 2}, + [285] = {.lex_state = 132, .external_lex_state = 2}, + [286] = {.lex_state = 132, .external_lex_state = 2}, + [287] = {.lex_state = 132, .external_lex_state = 2}, + [288] = {.lex_state = 132, .external_lex_state = 2}, + [289] = {.lex_state = 132, .external_lex_state = 2}, + [290] = {.lex_state = 132, .external_lex_state = 2}, + [291] = {.lex_state = 132, .external_lex_state = 2}, + [292] = {.lex_state = 132, .external_lex_state = 2}, + [293] = {.lex_state = 132, .external_lex_state = 2}, + [294] = {.lex_state = 132, .external_lex_state = 2}, + [295] = {.lex_state = 132, .external_lex_state = 2}, + [296] = {.lex_state = 132, .external_lex_state = 2}, + [297] = {.lex_state = 132, .external_lex_state = 2}, + [298] = {.lex_state = 132, .external_lex_state = 2}, + [299] = {.lex_state = 132, .external_lex_state = 2}, + [300] = {.lex_state = 132, .external_lex_state = 2}, + [301] = {.lex_state = 132, .external_lex_state = 2}, + [302] = {.lex_state = 132, .external_lex_state = 2}, + [303] = {.lex_state = 132, .external_lex_state = 2}, + [304] = {.lex_state = 132, .external_lex_state = 2}, + [305] = {.lex_state = 132, .external_lex_state = 2}, + [306] = {.lex_state = 132, .external_lex_state = 2}, + [307] = {.lex_state = 132, .external_lex_state = 2}, + [308] = {.lex_state = 132, .external_lex_state = 2}, + [309] = {.lex_state = 132, .external_lex_state = 2}, + [310] = {.lex_state = 132, .external_lex_state = 2}, + [311] = {.lex_state = 132, .external_lex_state = 2}, + [312] = {.lex_state = 132, .external_lex_state = 2}, + [313] = {.lex_state = 132, .external_lex_state = 2}, + [314] = {.lex_state = 132, .external_lex_state = 2}, + [315] = {.lex_state = 132, .external_lex_state = 2}, + [316] = {.lex_state = 132, .external_lex_state = 2}, + [317] = {.lex_state = 132, .external_lex_state = 2}, + [318] = {.lex_state = 132, .external_lex_state = 2}, + [319] = {.lex_state = 132, .external_lex_state = 2}, + [320] = {.lex_state = 132, .external_lex_state = 2}, + [321] = {.lex_state = 132, .external_lex_state = 2}, + [322] = {.lex_state = 132, .external_lex_state = 2}, + [323] = {.lex_state = 132, .external_lex_state = 2}, + [324] = {.lex_state = 132, .external_lex_state = 2}, + [325] = {.lex_state = 132, .external_lex_state = 2}, + [326] = {.lex_state = 132, .external_lex_state = 2}, + [327] = {.lex_state = 132, .external_lex_state = 2}, + [328] = {.lex_state = 132, .external_lex_state = 2}, + [329] = {.lex_state = 132, .external_lex_state = 2}, + [330] = {.lex_state = 132, .external_lex_state = 2}, + [331] = {.lex_state = 132, .external_lex_state = 2}, + [332] = {.lex_state = 132, .external_lex_state = 2}, + [333] = {.lex_state = 132, .external_lex_state = 2}, + [334] = {.lex_state = 132, .external_lex_state = 2}, + [335] = {.lex_state = 132, .external_lex_state = 2}, + [336] = {.lex_state = 132, .external_lex_state = 2}, + [337] = {.lex_state = 132, .external_lex_state = 2}, + [338] = {.lex_state = 132, .external_lex_state = 2}, + [339] = {.lex_state = 132, .external_lex_state = 2}, + [340] = {.lex_state = 132, .external_lex_state = 2}, + [341] = {.lex_state = 132, .external_lex_state = 2}, + [342] = {.lex_state = 132, .external_lex_state = 2}, + [343] = {.lex_state = 132, .external_lex_state = 2}, + [344] = {.lex_state = 132, .external_lex_state = 2}, + [345] = {.lex_state = 132, .external_lex_state = 2}, + [346] = {.lex_state = 132, .external_lex_state = 2}, + [347] = {.lex_state = 132, .external_lex_state = 2}, + [348] = {.lex_state = 132, .external_lex_state = 2}, + [349] = {.lex_state = 132, .external_lex_state = 2}, + [350] = {.lex_state = 132, .external_lex_state = 2}, + [351] = {.lex_state = 132, .external_lex_state = 2}, + [352] = {.lex_state = 132, .external_lex_state = 2}, + [353] = {.lex_state = 132, .external_lex_state = 2}, + [354] = {.lex_state = 132, .external_lex_state = 2}, + [355] = {.lex_state = 132, .external_lex_state = 2}, + [356] = {.lex_state = 132, .external_lex_state = 2}, + [357] = {.lex_state = 132, .external_lex_state = 2}, + [358] = {.lex_state = 132, .external_lex_state = 2}, + [359] = {.lex_state = 132, .external_lex_state = 2}, + [360] = {.lex_state = 132, .external_lex_state = 2}, + [361] = {.lex_state = 132, .external_lex_state = 2}, + [362] = {.lex_state = 132, .external_lex_state = 2}, + [363] = {.lex_state = 132, .external_lex_state = 2}, + [364] = {.lex_state = 132, .external_lex_state = 2}, + [365] = {.lex_state = 132, .external_lex_state = 2}, + [366] = {.lex_state = 132, .external_lex_state = 2}, + [367] = {.lex_state = 132, .external_lex_state = 2}, + [368] = {.lex_state = 132, .external_lex_state = 2}, + [369] = {.lex_state = 132, .external_lex_state = 2}, + [370] = {.lex_state = 132, .external_lex_state = 2}, + [371] = {.lex_state = 132, .external_lex_state = 2}, + [372] = {.lex_state = 132, .external_lex_state = 2}, + [373] = {.lex_state = 132, .external_lex_state = 2}, + [374] = {.lex_state = 132, .external_lex_state = 2}, + [375] = {.lex_state = 132, .external_lex_state = 2}, + [376] = {.lex_state = 132, .external_lex_state = 2}, + [377] = {.lex_state = 132, .external_lex_state = 2}, + [378] = {.lex_state = 132, .external_lex_state = 2}, + [379] = {.lex_state = 132, .external_lex_state = 2}, + [380] = {.lex_state = 132, .external_lex_state = 2}, + [381] = {.lex_state = 132, .external_lex_state = 2}, + [382] = {.lex_state = 132, .external_lex_state = 2}, + [383] = {.lex_state = 132, .external_lex_state = 2}, + [384] = {.lex_state = 132, .external_lex_state = 2}, + [385] = {.lex_state = 132, .external_lex_state = 2}, + [386] = {.lex_state = 132, .external_lex_state = 2}, + [387] = {.lex_state = 132, .external_lex_state = 2}, + [388] = {.lex_state = 132, .external_lex_state = 2}, + [389] = {.lex_state = 132, .external_lex_state = 2}, + [390] = {.lex_state = 132, .external_lex_state = 2}, + [391] = {.lex_state = 132, .external_lex_state = 2}, + [392] = {.lex_state = 132, .external_lex_state = 2}, + [393] = {.lex_state = 132, .external_lex_state = 2}, + [394] = {.lex_state = 132, .external_lex_state = 2}, + [395] = {.lex_state = 132, .external_lex_state = 2}, + [396] = {.lex_state = 132, .external_lex_state = 2}, + [397] = {.lex_state = 132, .external_lex_state = 2}, + [398] = {.lex_state = 132, .external_lex_state = 2}, + [399] = {.lex_state = 132, .external_lex_state = 2}, + [400] = {.lex_state = 132, .external_lex_state = 2}, + [401] = {.lex_state = 132, .external_lex_state = 2}, + [402] = {.lex_state = 132, .external_lex_state = 2}, + [403] = {.lex_state = 132, .external_lex_state = 2}, + [404] = {.lex_state = 132, .external_lex_state = 2}, + [405] = {.lex_state = 132, .external_lex_state = 2}, + [406] = {.lex_state = 132, .external_lex_state = 2}, + [407] = {.lex_state = 132, .external_lex_state = 2}, + [408] = {.lex_state = 132, .external_lex_state = 2}, + [409] = {.lex_state = 132, .external_lex_state = 2}, + [410] = {.lex_state = 132, .external_lex_state = 2}, + [411] = {.lex_state = 132, .external_lex_state = 2}, + [412] = {.lex_state = 132, .external_lex_state = 2}, + [413] = {.lex_state = 132, .external_lex_state = 2}, + [414] = {.lex_state = 132, .external_lex_state = 2}, + [415] = {.lex_state = 132, .external_lex_state = 2}, + [416] = {.lex_state = 132, .external_lex_state = 2}, + [417] = {.lex_state = 132, .external_lex_state = 2}, + [418] = {.lex_state = 132, .external_lex_state = 2}, + [419] = {.lex_state = 132, .external_lex_state = 2}, + [420] = {.lex_state = 132, .external_lex_state = 2}, + [421] = {.lex_state = 132, .external_lex_state = 2}, + [422] = {.lex_state = 132, .external_lex_state = 2}, + [423] = {.lex_state = 132, .external_lex_state = 2}, + [424] = {.lex_state = 132, .external_lex_state = 2}, + [425] = {.lex_state = 132, .external_lex_state = 2}, + [426] = {.lex_state = 132, .external_lex_state = 2}, + [427] = {.lex_state = 132, .external_lex_state = 2}, + [428] = {.lex_state = 132, .external_lex_state = 2}, + [429] = {.lex_state = 132, .external_lex_state = 2}, + [430] = {.lex_state = 132, .external_lex_state = 2}, + [431] = {.lex_state = 132, .external_lex_state = 2}, + [432] = {.lex_state = 132, .external_lex_state = 2}, + [433] = {.lex_state = 132, .external_lex_state = 2}, + [434] = {.lex_state = 132, .external_lex_state = 2}, + [435] = {.lex_state = 132, .external_lex_state = 2}, + [436] = {.lex_state = 132, .external_lex_state = 2}, + [437] = {.lex_state = 132, .external_lex_state = 2}, + [438] = {.lex_state = 132, .external_lex_state = 2}, + [439] = {.lex_state = 132, .external_lex_state = 2}, + [440] = {.lex_state = 132, .external_lex_state = 2}, + [441] = {.lex_state = 132, .external_lex_state = 2}, + [442] = {.lex_state = 132, .external_lex_state = 2}, + [443] = {.lex_state = 132, .external_lex_state = 2}, + [444] = {.lex_state = 132, .external_lex_state = 2}, + [445] = {.lex_state = 132, .external_lex_state = 2}, + [446] = {.lex_state = 132, .external_lex_state = 2}, + [447] = {.lex_state = 132, .external_lex_state = 2}, + [448] = {.lex_state = 132, .external_lex_state = 2}, + [449] = {.lex_state = 132, .external_lex_state = 2}, + [450] = {.lex_state = 132, .external_lex_state = 2}, + [451] = {.lex_state = 132, .external_lex_state = 2}, + [452] = {.lex_state = 132, .external_lex_state = 2}, + [453] = {.lex_state = 132, .external_lex_state = 2}, + [454] = {.lex_state = 132, .external_lex_state = 2}, + [455] = {.lex_state = 132, .external_lex_state = 2}, + [456] = {.lex_state = 132, .external_lex_state = 2}, + [457] = {.lex_state = 132, .external_lex_state = 2}, + [458] = {.lex_state = 132, .external_lex_state = 2}, + [459] = {.lex_state = 132, .external_lex_state = 2}, + [460] = {.lex_state = 132, .external_lex_state = 2}, + [461] = {.lex_state = 132, .external_lex_state = 2}, + [462] = {.lex_state = 132, .external_lex_state = 2}, + [463] = {.lex_state = 132, .external_lex_state = 2}, + [464] = {.lex_state = 132, .external_lex_state = 2}, + [465] = {.lex_state = 132, .external_lex_state = 2}, + [466] = {.lex_state = 132, .external_lex_state = 2}, + [467] = {.lex_state = 132, .external_lex_state = 2}, + [468] = {.lex_state = 132, .external_lex_state = 2}, + [469] = {.lex_state = 132, .external_lex_state = 2}, + [470] = {.lex_state = 132, .external_lex_state = 2}, + [471] = {.lex_state = 132, .external_lex_state = 2}, + [472] = {.lex_state = 132, .external_lex_state = 2}, + [473] = {.lex_state = 132, .external_lex_state = 2}, + [474] = {.lex_state = 132, .external_lex_state = 2}, + [475] = {.lex_state = 132, .external_lex_state = 2}, + [476] = {.lex_state = 132, .external_lex_state = 2}, + [477] = {.lex_state = 132, .external_lex_state = 2}, + [478] = {.lex_state = 132, .external_lex_state = 2}, + [479] = {.lex_state = 132, .external_lex_state = 2}, + [480] = {.lex_state = 132, .external_lex_state = 2}, + [481] = {.lex_state = 132, .external_lex_state = 2}, + [482] = {.lex_state = 132, .external_lex_state = 2}, + [483] = {.lex_state = 132, .external_lex_state = 2}, + [484] = {.lex_state = 132, .external_lex_state = 2}, + [485] = {.lex_state = 132, .external_lex_state = 2}, + [486] = {.lex_state = 132, .external_lex_state = 2}, + [487] = {.lex_state = 132, .external_lex_state = 2}, + [488] = {.lex_state = 132, .external_lex_state = 2}, + [489] = {.lex_state = 132, .external_lex_state = 2}, + [490] = {.lex_state = 132, .external_lex_state = 2}, + [491] = {.lex_state = 132, .external_lex_state = 2}, + [492] = {.lex_state = 132, .external_lex_state = 2}, + [493] = {.lex_state = 132, .external_lex_state = 2}, + [494] = {.lex_state = 132, .external_lex_state = 2}, + [495] = {.lex_state = 132, .external_lex_state = 2}, + [496] = {.lex_state = 132, .external_lex_state = 2}, + [497] = {.lex_state = 132, .external_lex_state = 2}, + [498] = {.lex_state = 132, .external_lex_state = 2}, + [499] = {.lex_state = 132, .external_lex_state = 2}, + [500] = {.lex_state = 132, .external_lex_state = 2}, + [501] = {.lex_state = 132, .external_lex_state = 2}, + [502] = {.lex_state = 132, .external_lex_state = 2}, + [503] = {.lex_state = 132, .external_lex_state = 2}, + [504] = {.lex_state = 132, .external_lex_state = 2}, + [505] = {.lex_state = 132, .external_lex_state = 2}, + [506] = {.lex_state = 132, .external_lex_state = 2}, + [507] = {.lex_state = 132, .external_lex_state = 2}, + [508] = {.lex_state = 132, .external_lex_state = 2}, + [509] = {.lex_state = 132, .external_lex_state = 2}, + [510] = {.lex_state = 132, .external_lex_state = 2}, + [511] = {.lex_state = 132, .external_lex_state = 2}, + [512] = {.lex_state = 132, .external_lex_state = 2}, + [513] = {.lex_state = 132, .external_lex_state = 2}, + [514] = {.lex_state = 132, .external_lex_state = 2}, + [515] = {.lex_state = 132, .external_lex_state = 2}, + [516] = {.lex_state = 132, .external_lex_state = 2}, + [517] = {.lex_state = 132, .external_lex_state = 2}, + [518] = {.lex_state = 132, .external_lex_state = 2}, + [519] = {.lex_state = 132, .external_lex_state = 2}, + [520] = {.lex_state = 132, .external_lex_state = 2}, + [521] = {.lex_state = 132, .external_lex_state = 2}, + [522] = {.lex_state = 132, .external_lex_state = 2}, + [523] = {.lex_state = 132, .external_lex_state = 2}, + [524] = {.lex_state = 132, .external_lex_state = 2}, + [525] = {.lex_state = 132, .external_lex_state = 2}, + [526] = {.lex_state = 132, .external_lex_state = 2}, + [527] = {.lex_state = 132, .external_lex_state = 2}, + [528] = {.lex_state = 132, .external_lex_state = 2}, + [529] = {.lex_state = 132, .external_lex_state = 2}, + [530] = {.lex_state = 132, .external_lex_state = 2}, + [531] = {.lex_state = 132, .external_lex_state = 2}, + [532] = {.lex_state = 132, .external_lex_state = 2}, + [533] = {.lex_state = 132, .external_lex_state = 2}, + [534] = {.lex_state = 132, .external_lex_state = 2}, + [535] = {.lex_state = 132, .external_lex_state = 2}, + [536] = {.lex_state = 132, .external_lex_state = 2}, + [537] = {.lex_state = 132, .external_lex_state = 2}, + [538] = {.lex_state = 132, .external_lex_state = 2}, + [539] = {.lex_state = 132, .external_lex_state = 2}, + [540] = {.lex_state = 132, .external_lex_state = 2}, + [541] = {.lex_state = 132, .external_lex_state = 2}, + [542] = {.lex_state = 132, .external_lex_state = 2}, + [543] = {.lex_state = 132, .external_lex_state = 2}, + [544] = {.lex_state = 132, .external_lex_state = 2}, + [545] = {.lex_state = 132, .external_lex_state = 2}, + [546] = {.lex_state = 132, .external_lex_state = 2}, + [547] = {.lex_state = 132, .external_lex_state = 2}, + [548] = {.lex_state = 132, .external_lex_state = 2}, + [549] = {.lex_state = 132, .external_lex_state = 2}, + [550] = {.lex_state = 132, .external_lex_state = 2}, + [551] = {.lex_state = 132, .external_lex_state = 2}, + [552] = {.lex_state = 132, .external_lex_state = 2}, + [553] = {.lex_state = 132, .external_lex_state = 2}, + [554] = {.lex_state = 132, .external_lex_state = 2}, + [555] = {.lex_state = 132, .external_lex_state = 2}, + [556] = {.lex_state = 132, .external_lex_state = 2}, + [557] = {.lex_state = 132, .external_lex_state = 2}, + [558] = {.lex_state = 132, .external_lex_state = 2}, + [559] = {.lex_state = 132, .external_lex_state = 2}, + [560] = {.lex_state = 132, .external_lex_state = 2}, + [561] = {.lex_state = 132, .external_lex_state = 2}, + [562] = {.lex_state = 132, .external_lex_state = 2}, + [563] = {.lex_state = 132, .external_lex_state = 2}, + [564] = {.lex_state = 132, .external_lex_state = 2}, + [565] = {.lex_state = 132, .external_lex_state = 2}, + [566] = {.lex_state = 132, .external_lex_state = 2}, + [567] = {.lex_state = 132, .external_lex_state = 2}, + [568] = {.lex_state = 132, .external_lex_state = 2}, + [569] = {.lex_state = 132, .external_lex_state = 2}, + [570] = {.lex_state = 132, .external_lex_state = 2}, + [571] = {.lex_state = 132, .external_lex_state = 2}, + [572] = {.lex_state = 132, .external_lex_state = 2}, + [573] = {.lex_state = 132, .external_lex_state = 2}, + [574] = {.lex_state = 132, .external_lex_state = 2}, + [575] = {.lex_state = 132, .external_lex_state = 2}, + [576] = {.lex_state = 132, .external_lex_state = 2}, + [577] = {.lex_state = 132, .external_lex_state = 2}, + [578] = {.lex_state = 132, .external_lex_state = 2}, + [579] = {.lex_state = 132, .external_lex_state = 2}, + [580] = {.lex_state = 132, .external_lex_state = 2}, + [581] = {.lex_state = 132, .external_lex_state = 2}, + [582] = {.lex_state = 132, .external_lex_state = 2}, + [583] = {.lex_state = 132, .external_lex_state = 2}, + [584] = {.lex_state = 132, .external_lex_state = 2}, + [585] = {.lex_state = 132, .external_lex_state = 2}, + [586] = {.lex_state = 132, .external_lex_state = 2}, + [587] = {.lex_state = 132, .external_lex_state = 2}, + [588] = {.lex_state = 132, .external_lex_state = 2}, + [589] = {.lex_state = 132, .external_lex_state = 2}, + [590] = {.lex_state = 132, .external_lex_state = 2}, + [591] = {.lex_state = 132, .external_lex_state = 2}, + [592] = {.lex_state = 132, .external_lex_state = 2}, + [593] = {.lex_state = 132, .external_lex_state = 2}, + [594] = {.lex_state = 132, .external_lex_state = 2}, + [595] = {.lex_state = 132, .external_lex_state = 2}, + [596] = {.lex_state = 132, .external_lex_state = 2}, + [597] = {.lex_state = 132, .external_lex_state = 2}, + [598] = {.lex_state = 132, .external_lex_state = 2}, + [599] = {.lex_state = 132, .external_lex_state = 2}, + [600] = {.lex_state = 132, .external_lex_state = 2}, + [601] = {.lex_state = 132, .external_lex_state = 2}, + [602] = {.lex_state = 132, .external_lex_state = 2}, + [603] = {.lex_state = 132, .external_lex_state = 2}, + [604] = {.lex_state = 132, .external_lex_state = 2}, + [605] = {.lex_state = 132, .external_lex_state = 2}, + [606] = {.lex_state = 132, .external_lex_state = 2}, + [607] = {.lex_state = 132, .external_lex_state = 2}, + [608] = {.lex_state = 132, .external_lex_state = 2}, + [609] = {.lex_state = 132, .external_lex_state = 2}, + [610] = {.lex_state = 132, .external_lex_state = 2}, + [611] = {.lex_state = 132, .external_lex_state = 2}, + [612] = {.lex_state = 132, .external_lex_state = 2}, + [613] = {.lex_state = 132, .external_lex_state = 2}, + [614] = {.lex_state = 132, .external_lex_state = 2}, + [615] = {.lex_state = 132, .external_lex_state = 2}, + [616] = {.lex_state = 132, .external_lex_state = 2}, + [617] = {.lex_state = 132, .external_lex_state = 2}, + [618] = {.lex_state = 132, .external_lex_state = 2}, + [619] = {.lex_state = 132, .external_lex_state = 2}, + [620] = {.lex_state = 132, .external_lex_state = 2}, + [621] = {.lex_state = 132, .external_lex_state = 2}, + [622] = {.lex_state = 132, .external_lex_state = 2}, + [623] = {.lex_state = 132, .external_lex_state = 2}, + [624] = {.lex_state = 132, .external_lex_state = 2}, + [625] = {.lex_state = 132, .external_lex_state = 2}, + [626] = {.lex_state = 132, .external_lex_state = 2}, + [627] = {.lex_state = 132, .external_lex_state = 2}, + [628] = {.lex_state = 132, .external_lex_state = 2}, + [629] = {.lex_state = 132, .external_lex_state = 2}, + [630] = {.lex_state = 132, .external_lex_state = 2}, + [631] = {.lex_state = 132, .external_lex_state = 2}, + [632] = {.lex_state = 132, .external_lex_state = 2}, + [633] = {.lex_state = 132, .external_lex_state = 2}, + [634] = {.lex_state = 132, .external_lex_state = 2}, + [635] = {.lex_state = 132, .external_lex_state = 2}, + [636] = {.lex_state = 132, .external_lex_state = 2}, + [637] = {.lex_state = 132, .external_lex_state = 2}, + [638] = {.lex_state = 132, .external_lex_state = 2}, + [639] = {.lex_state = 132, .external_lex_state = 2}, + [640] = {.lex_state = 132, .external_lex_state = 2}, + [641] = {.lex_state = 132, .external_lex_state = 2}, + [642] = {.lex_state = 132, .external_lex_state = 2}, + [643] = {.lex_state = 132, .external_lex_state = 2}, + [644] = {.lex_state = 132, .external_lex_state = 2}, + [645] = {.lex_state = 132, .external_lex_state = 2}, + [646] = {.lex_state = 132, .external_lex_state = 2}, + [647] = {.lex_state = 132, .external_lex_state = 2}, + [648] = {.lex_state = 132, .external_lex_state = 2}, + [649] = {.lex_state = 132, .external_lex_state = 2}, + [650] = {.lex_state = 132, .external_lex_state = 2}, + [651] = {.lex_state = 132, .external_lex_state = 2}, + [652] = {.lex_state = 132, .external_lex_state = 2}, + [653] = {.lex_state = 132, .external_lex_state = 2}, + [654] = {.lex_state = 132, .external_lex_state = 2}, + [655] = {.lex_state = 132, .external_lex_state = 2}, + [656] = {.lex_state = 132, .external_lex_state = 2}, + [657] = {.lex_state = 132, .external_lex_state = 2}, + [658] = {.lex_state = 132, .external_lex_state = 2}, + [659] = {.lex_state = 132, .external_lex_state = 2}, + [660] = {.lex_state = 132, .external_lex_state = 2}, + [661] = {.lex_state = 132, .external_lex_state = 2}, + [662] = {.lex_state = 132, .external_lex_state = 2}, + [663] = {.lex_state = 132, .external_lex_state = 2}, + [664] = {.lex_state = 132, .external_lex_state = 2}, + [665] = {.lex_state = 132, .external_lex_state = 2}, + [666] = {.lex_state = 132, .external_lex_state = 2}, + [667] = {.lex_state = 132, .external_lex_state = 2}, + [668] = {.lex_state = 132, .external_lex_state = 2}, + [669] = {.lex_state = 132, .external_lex_state = 2}, + [670] = {.lex_state = 132, .external_lex_state = 2}, + [671] = {.lex_state = 132, .external_lex_state = 2}, + [672] = {.lex_state = 132, .external_lex_state = 2}, + [673] = {.lex_state = 132, .external_lex_state = 2}, + [674] = {.lex_state = 132, .external_lex_state = 2}, + [675] = {.lex_state = 132, .external_lex_state = 2}, + [676] = {.lex_state = 132, .external_lex_state = 2}, + [677] = {.lex_state = 132, .external_lex_state = 2}, + [678] = {.lex_state = 132, .external_lex_state = 2}, + [679] = {.lex_state = 132, .external_lex_state = 2}, + [680] = {.lex_state = 132, .external_lex_state = 2}, + [681] = {.lex_state = 132, .external_lex_state = 2}, + [682] = {.lex_state = 132, .external_lex_state = 2}, + [683] = {.lex_state = 132, .external_lex_state = 2}, + [684] = {.lex_state = 132, .external_lex_state = 2}, + [685] = {.lex_state = 132, .external_lex_state = 2}, + [686] = {.lex_state = 132, .external_lex_state = 2}, + [687] = {.lex_state = 132, .external_lex_state = 2}, + [688] = {.lex_state = 132, .external_lex_state = 2}, + [689] = {.lex_state = 132, .external_lex_state = 2}, + [690] = {.lex_state = 132, .external_lex_state = 2}, + [691] = {.lex_state = 132, .external_lex_state = 2}, + [692] = {.lex_state = 132, .external_lex_state = 2}, + [693] = {.lex_state = 132, .external_lex_state = 2}, + [694] = {.lex_state = 132, .external_lex_state = 2}, + [695] = {.lex_state = 132, .external_lex_state = 2}, + [696] = {.lex_state = 132, .external_lex_state = 2}, + [697] = {.lex_state = 132, .external_lex_state = 2}, + [698] = {.lex_state = 132, .external_lex_state = 2}, + [699] = {.lex_state = 132, .external_lex_state = 2}, + [700] = {.lex_state = 132, .external_lex_state = 2}, + [701] = {.lex_state = 132, .external_lex_state = 2}, + [702] = {.lex_state = 132, .external_lex_state = 2}, + [703] = {.lex_state = 132, .external_lex_state = 2}, + [704] = {.lex_state = 132, .external_lex_state = 2}, + [705] = {.lex_state = 132, .external_lex_state = 2}, + [706] = {.lex_state = 132, .external_lex_state = 2}, + [707] = {.lex_state = 132, .external_lex_state = 2}, + [708] = {.lex_state = 132, .external_lex_state = 2}, + [709] = {.lex_state = 132, .external_lex_state = 2}, + [710] = {.lex_state = 132, .external_lex_state = 2}, + [711] = {.lex_state = 132, .external_lex_state = 2}, + [712] = {.lex_state = 132, .external_lex_state = 2}, + [713] = {.lex_state = 132, .external_lex_state = 2}, + [714] = {.lex_state = 132, .external_lex_state = 2}, + [715] = {.lex_state = 132, .external_lex_state = 2}, + [716] = {.lex_state = 132, .external_lex_state = 2}, + [717] = {.lex_state = 132, .external_lex_state = 2}, + [718] = {.lex_state = 132, .external_lex_state = 2}, + [719] = {.lex_state = 132, .external_lex_state = 2}, + [720] = {.lex_state = 132, .external_lex_state = 2}, + [721] = {.lex_state = 132, .external_lex_state = 2}, + [722] = {.lex_state = 132, .external_lex_state = 2}, + [723] = {.lex_state = 132, .external_lex_state = 2}, + [724] = {.lex_state = 132, .external_lex_state = 2}, + [725] = {.lex_state = 132, .external_lex_state = 2}, + [726] = {.lex_state = 132, .external_lex_state = 2}, + [727] = {.lex_state = 132, .external_lex_state = 2}, + [728] = {.lex_state = 132, .external_lex_state = 2}, + [729] = {.lex_state = 132, .external_lex_state = 2}, + [730] = {.lex_state = 132, .external_lex_state = 2}, + [731] = {.lex_state = 132, .external_lex_state = 2}, + [732] = {.lex_state = 132, .external_lex_state = 2}, + [733] = {.lex_state = 132, .external_lex_state = 2}, + [734] = {.lex_state = 132, .external_lex_state = 2}, + [735] = {.lex_state = 132, .external_lex_state = 2}, + [736] = {.lex_state = 132, .external_lex_state = 2}, + [737] = {.lex_state = 132, .external_lex_state = 2}, + [738] = {.lex_state = 132, .external_lex_state = 2}, + [739] = {.lex_state = 132, .external_lex_state = 2}, + [740] = {.lex_state = 132, .external_lex_state = 2}, + [741] = {.lex_state = 132, .external_lex_state = 2}, + [742] = {.lex_state = 132, .external_lex_state = 2}, + [743] = {.lex_state = 132, .external_lex_state = 2}, + [744] = {.lex_state = 132, .external_lex_state = 2}, + [745] = {.lex_state = 132, .external_lex_state = 2}, + [746] = {.lex_state = 132, .external_lex_state = 2}, + [747] = {.lex_state = 132, .external_lex_state = 2}, + [748] = {.lex_state = 132, .external_lex_state = 2}, + [749] = {.lex_state = 132, .external_lex_state = 2}, + [750] = {.lex_state = 132, .external_lex_state = 2}, + [751] = {.lex_state = 132, .external_lex_state = 2}, + [752] = {.lex_state = 132, .external_lex_state = 2}, + [753] = {.lex_state = 132, .external_lex_state = 2}, + [754] = {.lex_state = 132, .external_lex_state = 2}, + [755] = {.lex_state = 132, .external_lex_state = 2}, + [756] = {.lex_state = 132, .external_lex_state = 2}, + [757] = {.lex_state = 132, .external_lex_state = 2}, + [758] = {.lex_state = 132, .external_lex_state = 2}, + [759] = {.lex_state = 132, .external_lex_state = 2}, + [760] = {.lex_state = 132, .external_lex_state = 2}, + [761] = {.lex_state = 132, .external_lex_state = 2}, + [762] = {.lex_state = 132, .external_lex_state = 2}, + [763] = {.lex_state = 132, .external_lex_state = 2}, + [764] = {.lex_state = 132, .external_lex_state = 2}, + [765] = {.lex_state = 132, .external_lex_state = 2}, + [766] = {.lex_state = 132, .external_lex_state = 2}, + [767] = {.lex_state = 132, .external_lex_state = 2}, + [768] = {.lex_state = 132, .external_lex_state = 2}, + [769] = {.lex_state = 132, .external_lex_state = 2}, + [770] = {.lex_state = 132, .external_lex_state = 2}, + [771] = {.lex_state = 132, .external_lex_state = 2}, + [772] = {.lex_state = 132, .external_lex_state = 2}, + [773] = {.lex_state = 132, .external_lex_state = 2}, + [774] = {.lex_state = 132, .external_lex_state = 2}, + [775] = {.lex_state = 132, .external_lex_state = 2}, + [776] = {.lex_state = 132, .external_lex_state = 2}, + [777] = {.lex_state = 132, .external_lex_state = 2}, + [778] = {.lex_state = 132, .external_lex_state = 2}, + [779] = {.lex_state = 132, .external_lex_state = 2}, + [780] = {.lex_state = 132, .external_lex_state = 2}, + [781] = {.lex_state = 132, .external_lex_state = 2}, + [782] = {.lex_state = 132, .external_lex_state = 2}, + [783] = {.lex_state = 132, .external_lex_state = 2}, + [784] = {.lex_state = 132, .external_lex_state = 2}, + [785] = {.lex_state = 132, .external_lex_state = 2}, + [786] = {.lex_state = 132, .external_lex_state = 2}, + [787] = {.lex_state = 132, .external_lex_state = 2}, + [788] = {.lex_state = 132, .external_lex_state = 2}, + [789] = {.lex_state = 132, .external_lex_state = 2}, + [790] = {.lex_state = 132, .external_lex_state = 2}, + [791] = {.lex_state = 132, .external_lex_state = 2}, + [792] = {.lex_state = 132, .external_lex_state = 2}, + [793] = {.lex_state = 132, .external_lex_state = 2}, + [794] = {.lex_state = 132, .external_lex_state = 2}, + [795] = {.lex_state = 132, .external_lex_state = 2}, + [796] = {.lex_state = 132, .external_lex_state = 2}, + [797] = {.lex_state = 132, .external_lex_state = 2}, + [798] = {.lex_state = 132, .external_lex_state = 2}, + [799] = {.lex_state = 132, .external_lex_state = 2}, + [800] = {.lex_state = 132, .external_lex_state = 2}, + [801] = {.lex_state = 132, .external_lex_state = 2}, + [802] = {.lex_state = 132, .external_lex_state = 2}, + [803] = {.lex_state = 132, .external_lex_state = 2}, + [804] = {.lex_state = 132, .external_lex_state = 2}, + [805] = {.lex_state = 132, .external_lex_state = 2}, + [806] = {.lex_state = 132, .external_lex_state = 2}, + [807] = {.lex_state = 132, .external_lex_state = 2}, + [808] = {.lex_state = 132, .external_lex_state = 2}, + [809] = {.lex_state = 132, .external_lex_state = 2}, + [810] = {.lex_state = 132, .external_lex_state = 2}, + [811] = {.lex_state = 132, .external_lex_state = 2}, + [812] = {.lex_state = 132, .external_lex_state = 2}, + [813] = {.lex_state = 132, .external_lex_state = 2}, + [814] = {.lex_state = 132, .external_lex_state = 2}, + [815] = {.lex_state = 132, .external_lex_state = 2}, + [816] = {.lex_state = 132, .external_lex_state = 2}, + [817] = {.lex_state = 132, .external_lex_state = 2}, + [818] = {.lex_state = 132, .external_lex_state = 2}, + [819] = {.lex_state = 132, .external_lex_state = 2}, + [820] = {.lex_state = 132, .external_lex_state = 2}, + [821] = {.lex_state = 132, .external_lex_state = 2}, + [822] = {.lex_state = 132, .external_lex_state = 2}, + [823] = {.lex_state = 132, .external_lex_state = 2}, + [824] = {.lex_state = 132, .external_lex_state = 2}, + [825] = {.lex_state = 132, .external_lex_state = 2}, + [826] = {.lex_state = 132, .external_lex_state = 2}, + [827] = {.lex_state = 132, .external_lex_state = 2}, + [828] = {.lex_state = 132, .external_lex_state = 2}, + [829] = {.lex_state = 132, .external_lex_state = 2}, + [830] = {.lex_state = 132, .external_lex_state = 2}, + [831] = {.lex_state = 132, .external_lex_state = 2}, + [832] = {.lex_state = 132, .external_lex_state = 2}, + [833] = {.lex_state = 132, .external_lex_state = 2}, + [834] = {.lex_state = 132, .external_lex_state = 2}, + [835] = {.lex_state = 132, .external_lex_state = 2}, + [836] = {.lex_state = 132, .external_lex_state = 2}, + [837] = {.lex_state = 132, .external_lex_state = 2}, + [838] = {.lex_state = 132, .external_lex_state = 2}, + [839] = {.lex_state = 132, .external_lex_state = 2}, + [840] = {.lex_state = 132, .external_lex_state = 2}, + [841] = {.lex_state = 132, .external_lex_state = 2}, + [842] = {.lex_state = 132, .external_lex_state = 2}, + [843] = {.lex_state = 132, .external_lex_state = 2}, + [844] = {.lex_state = 132, .external_lex_state = 2}, + [845] = {.lex_state = 132, .external_lex_state = 2}, + [846] = {.lex_state = 132, .external_lex_state = 2}, + [847] = {.lex_state = 132, .external_lex_state = 2}, + [848] = {.lex_state = 132, .external_lex_state = 2}, + [849] = {.lex_state = 132, .external_lex_state = 2}, + [850] = {.lex_state = 132, .external_lex_state = 2}, + [851] = {.lex_state = 132, .external_lex_state = 2}, + [852] = {.lex_state = 132, .external_lex_state = 2}, + [853] = {.lex_state = 132, .external_lex_state = 2}, + [854] = {.lex_state = 132, .external_lex_state = 2}, + [855] = {.lex_state = 132, .external_lex_state = 2}, + [856] = {.lex_state = 132, .external_lex_state = 2}, + [857] = {.lex_state = 132, .external_lex_state = 2}, + [858] = {.lex_state = 132, .external_lex_state = 2}, + [859] = {.lex_state = 132, .external_lex_state = 2}, + [860] = {.lex_state = 132, .external_lex_state = 2}, + [861] = {.lex_state = 132, .external_lex_state = 2}, + [862] = {.lex_state = 132, .external_lex_state = 2}, + [863] = {.lex_state = 132, .external_lex_state = 2}, + [864] = {.lex_state = 132, .external_lex_state = 2}, + [865] = {.lex_state = 132, .external_lex_state = 2}, + [866] = {.lex_state = 132, .external_lex_state = 2}, + [867] = {.lex_state = 132, .external_lex_state = 2}, + [868] = {.lex_state = 132, .external_lex_state = 2}, + [869] = {.lex_state = 132, .external_lex_state = 2}, + [870] = {.lex_state = 132, .external_lex_state = 2}, + [871] = {.lex_state = 132, .external_lex_state = 2}, + [872] = {.lex_state = 132, .external_lex_state = 2}, + [873] = {.lex_state = 132, .external_lex_state = 2}, + [874] = {.lex_state = 132, .external_lex_state = 2}, + [875] = {.lex_state = 132, .external_lex_state = 2}, + [876] = {.lex_state = 132, .external_lex_state = 2}, + [877] = {.lex_state = 132, .external_lex_state = 2}, + [878] = {.lex_state = 132, .external_lex_state = 2}, + [879] = {.lex_state = 132, .external_lex_state = 2}, + [880] = {.lex_state = 132, .external_lex_state = 2}, + [881] = {.lex_state = 132, .external_lex_state = 2}, + [882] = {.lex_state = 132, .external_lex_state = 2}, + [883] = {.lex_state = 132, .external_lex_state = 2}, + [884] = {.lex_state = 132, .external_lex_state = 2}, + [885] = {.lex_state = 132, .external_lex_state = 2}, + [886] = {.lex_state = 132, .external_lex_state = 2}, + [887] = {.lex_state = 132, .external_lex_state = 2}, + [888] = {.lex_state = 132, .external_lex_state = 2}, + [889] = {.lex_state = 132, .external_lex_state = 2}, + [890] = {.lex_state = 132, .external_lex_state = 2}, + [891] = {.lex_state = 132, .external_lex_state = 2}, + [892] = {.lex_state = 132, .external_lex_state = 2}, + [893] = {.lex_state = 132, .external_lex_state = 2}, + [894] = {.lex_state = 132, .external_lex_state = 2}, + [895] = {.lex_state = 132, .external_lex_state = 2}, + [896] = {.lex_state = 132, .external_lex_state = 2}, + [897] = {.lex_state = 132, .external_lex_state = 2}, + [898] = {.lex_state = 132, .external_lex_state = 2}, + [899] = {.lex_state = 132, .external_lex_state = 2}, + [900] = {.lex_state = 132, .external_lex_state = 2}, + [901] = {.lex_state = 132, .external_lex_state = 2}, + [902] = {.lex_state = 132, .external_lex_state = 2}, + [903] = {.lex_state = 132, .external_lex_state = 2}, + [904] = {.lex_state = 132, .external_lex_state = 2}, + [905] = {.lex_state = 132, .external_lex_state = 2}, + [906] = {.lex_state = 132, .external_lex_state = 2}, + [907] = {.lex_state = 132, .external_lex_state = 2}, + [908] = {.lex_state = 132, .external_lex_state = 2}, + [909] = {.lex_state = 132, .external_lex_state = 2}, + [910] = {.lex_state = 132, .external_lex_state = 2}, + [911] = {.lex_state = 132, .external_lex_state = 2}, + [912] = {.lex_state = 132, .external_lex_state = 2}, + [913] = {.lex_state = 132, .external_lex_state = 2}, + [914] = {.lex_state = 132, .external_lex_state = 2}, + [915] = {.lex_state = 132, .external_lex_state = 2}, + [916] = {.lex_state = 132, .external_lex_state = 2}, + [917] = {.lex_state = 132, .external_lex_state = 2}, + [918] = {.lex_state = 132, .external_lex_state = 2}, + [919] = {.lex_state = 132, .external_lex_state = 2}, + [920] = {.lex_state = 132, .external_lex_state = 2}, + [921] = {.lex_state = 132, .external_lex_state = 2}, + [922] = {.lex_state = 132, .external_lex_state = 2}, + [923] = {.lex_state = 132, .external_lex_state = 2}, + [924] = {.lex_state = 132, .external_lex_state = 2}, + [925] = {.lex_state = 132, .external_lex_state = 2}, + [926] = {.lex_state = 132, .external_lex_state = 2}, + [927] = {.lex_state = 132, .external_lex_state = 2}, + [928] = {.lex_state = 132, .external_lex_state = 2}, + [929] = {.lex_state = 132, .external_lex_state = 2}, + [930] = {.lex_state = 132, .external_lex_state = 2}, + [931] = {.lex_state = 132, .external_lex_state = 2}, + [932] = {.lex_state = 132, .external_lex_state = 2}, + [933] = {.lex_state = 132, .external_lex_state = 2}, + [934] = {.lex_state = 132, .external_lex_state = 2}, + [935] = {.lex_state = 132, .external_lex_state = 2}, + [936] = {.lex_state = 132, .external_lex_state = 2}, + [937] = {.lex_state = 132, .external_lex_state = 2}, + [938] = {.lex_state = 132, .external_lex_state = 2}, + [939] = {.lex_state = 132, .external_lex_state = 2}, + [940] = {.lex_state = 132, .external_lex_state = 2}, + [941] = {.lex_state = 132, .external_lex_state = 2}, + [942] = {.lex_state = 132, .external_lex_state = 2}, + [943] = {.lex_state = 132, .external_lex_state = 2}, + [944] = {.lex_state = 132, .external_lex_state = 2}, + [945] = {.lex_state = 132, .external_lex_state = 2}, + [946] = {.lex_state = 132, .external_lex_state = 2}, + [947] = {.lex_state = 132, .external_lex_state = 2}, + [948] = {.lex_state = 132, .external_lex_state = 2}, + [949] = {.lex_state = 132, .external_lex_state = 2}, + [950] = {.lex_state = 132, .external_lex_state = 2}, + [951] = {.lex_state = 132, .external_lex_state = 2}, + [952] = {.lex_state = 132, .external_lex_state = 2}, + [953] = {.lex_state = 132, .external_lex_state = 2}, + [954] = {.lex_state = 132, .external_lex_state = 2}, + [955] = {.lex_state = 132, .external_lex_state = 2}, + [956] = {.lex_state = 132, .external_lex_state = 2}, + [957] = {.lex_state = 132, .external_lex_state = 2}, + [958] = {.lex_state = 132, .external_lex_state = 2}, + [959] = {.lex_state = 132, .external_lex_state = 2}, + [960] = {.lex_state = 132, .external_lex_state = 2}, + [961] = {.lex_state = 132, .external_lex_state = 2}, + [962] = {.lex_state = 132, .external_lex_state = 2}, + [963] = {.lex_state = 132, .external_lex_state = 2}, + [964] = {.lex_state = 132, .external_lex_state = 2}, + [965] = {.lex_state = 132, .external_lex_state = 2}, + [966] = {.lex_state = 132, .external_lex_state = 2}, + [967] = {.lex_state = 132, .external_lex_state = 2}, + [968] = {.lex_state = 132, .external_lex_state = 2}, + [969] = {.lex_state = 132, .external_lex_state = 2}, + [970] = {.lex_state = 132, .external_lex_state = 2}, + [971] = {.lex_state = 132, .external_lex_state = 2}, + [972] = {.lex_state = 132, .external_lex_state = 2}, + [973] = {.lex_state = 132, .external_lex_state = 2}, + [974] = {.lex_state = 132, .external_lex_state = 2}, + [975] = {.lex_state = 132, .external_lex_state = 2}, + [976] = {.lex_state = 132, .external_lex_state = 2}, + [977] = {.lex_state = 132, .external_lex_state = 2}, + [978] = {.lex_state = 132, .external_lex_state = 2}, + [979] = {.lex_state = 132, .external_lex_state = 2}, + [980] = {.lex_state = 132, .external_lex_state = 2}, + [981] = {.lex_state = 132, .external_lex_state = 2}, + [982] = {.lex_state = 132, .external_lex_state = 2}, + [983] = {.lex_state = 132, .external_lex_state = 2}, + [984] = {.lex_state = 132, .external_lex_state = 2}, + [985] = {.lex_state = 132, .external_lex_state = 2}, + [986] = {.lex_state = 132, .external_lex_state = 2}, + [987] = {.lex_state = 132, .external_lex_state = 2}, + [988] = {.lex_state = 132, .external_lex_state = 2}, + [989] = {.lex_state = 132, .external_lex_state = 2}, + [990] = {.lex_state = 132, .external_lex_state = 2}, + [991] = {.lex_state = 132, .external_lex_state = 2}, + [992] = {.lex_state = 132, .external_lex_state = 2}, + [993] = {.lex_state = 132, .external_lex_state = 2}, + [994] = {.lex_state = 132, .external_lex_state = 2}, + [995] = {.lex_state = 132, .external_lex_state = 2}, + [996] = {.lex_state = 132, .external_lex_state = 2}, + [997] = {.lex_state = 132, .external_lex_state = 2}, + [998] = {.lex_state = 132, .external_lex_state = 2}, + [999] = {.lex_state = 132, .external_lex_state = 2}, + [1000] = {.lex_state = 132, .external_lex_state = 2}, + [1001] = {.lex_state = 132, .external_lex_state = 2}, + [1002] = {.lex_state = 132, .external_lex_state = 2}, + [1003] = {.lex_state = 132, .external_lex_state = 2}, + [1004] = {.lex_state = 132, .external_lex_state = 2}, + [1005] = {.lex_state = 132, .external_lex_state = 2}, + [1006] = {.lex_state = 132, .external_lex_state = 2}, + [1007] = {.lex_state = 132, .external_lex_state = 2}, + [1008] = {.lex_state = 132, .external_lex_state = 2}, + [1009] = {.lex_state = 132, .external_lex_state = 2}, + [1010] = {.lex_state = 132, .external_lex_state = 2}, + [1011] = {.lex_state = 132, .external_lex_state = 2}, + [1012] = {.lex_state = 132, .external_lex_state = 2}, + [1013] = {.lex_state = 132, .external_lex_state = 2}, + [1014] = {.lex_state = 132, .external_lex_state = 2}, + [1015] = {.lex_state = 132, .external_lex_state = 2}, + [1016] = {.lex_state = 132, .external_lex_state = 2}, + [1017] = {.lex_state = 132, .external_lex_state = 2}, + [1018] = {.lex_state = 132, .external_lex_state = 2}, + [1019] = {.lex_state = 132, .external_lex_state = 2}, + [1020] = {.lex_state = 132, .external_lex_state = 2}, + [1021] = {.lex_state = 132, .external_lex_state = 2}, + [1022] = {.lex_state = 132, .external_lex_state = 2}, + [1023] = {.lex_state = 132, .external_lex_state = 2}, + [1024] = {.lex_state = 132, .external_lex_state = 2}, + [1025] = {.lex_state = 132, .external_lex_state = 2}, + [1026] = {.lex_state = 132, .external_lex_state = 2}, + [1027] = {.lex_state = 132, .external_lex_state = 2}, + [1028] = {.lex_state = 132, .external_lex_state = 2}, + [1029] = {.lex_state = 132, .external_lex_state = 2}, + [1030] = {.lex_state = 132, .external_lex_state = 2}, + [1031] = {.lex_state = 132, .external_lex_state = 2}, + [1032] = {.lex_state = 132, .external_lex_state = 2}, + [1033] = {.lex_state = 132, .external_lex_state = 2}, + [1034] = {.lex_state = 132, .external_lex_state = 2}, + [1035] = {.lex_state = 132, .external_lex_state = 2}, + [1036] = {.lex_state = 132, .external_lex_state = 2}, + [1037] = {.lex_state = 132, .external_lex_state = 2}, + [1038] = {.lex_state = 132, .external_lex_state = 2}, + [1039] = {.lex_state = 132, .external_lex_state = 2}, + [1040] = {.lex_state = 132, .external_lex_state = 2}, + [1041] = {.lex_state = 132, .external_lex_state = 2}, + [1042] = {.lex_state = 132, .external_lex_state = 2}, + [1043] = {.lex_state = 132, .external_lex_state = 2}, + [1044] = {.lex_state = 132, .external_lex_state = 2}, + [1045] = {.lex_state = 132, .external_lex_state = 2}, + [1046] = {.lex_state = 132, .external_lex_state = 2}, + [1047] = {.lex_state = 132, .external_lex_state = 2}, + [1048] = {.lex_state = 132, .external_lex_state = 2}, + [1049] = {.lex_state = 132, .external_lex_state = 2}, + [1050] = {.lex_state = 132, .external_lex_state = 2}, + [1051] = {.lex_state = 132, .external_lex_state = 2}, + [1052] = {.lex_state = 132, .external_lex_state = 2}, + [1053] = {.lex_state = 132, .external_lex_state = 2}, + [1054] = {.lex_state = 132, .external_lex_state = 2}, + [1055] = {.lex_state = 132, .external_lex_state = 2}, + [1056] = {.lex_state = 132, .external_lex_state = 2}, + [1057] = {.lex_state = 132, .external_lex_state = 2}, + [1058] = {.lex_state = 132, .external_lex_state = 2}, + [1059] = {.lex_state = 132, .external_lex_state = 2}, + [1060] = {.lex_state = 132, .external_lex_state = 2}, + [1061] = {.lex_state = 132, .external_lex_state = 2}, + [1062] = {.lex_state = 132, .external_lex_state = 2}, + [1063] = {.lex_state = 132, .external_lex_state = 2}, + [1064] = {.lex_state = 132, .external_lex_state = 2}, + [1065] = {.lex_state = 132, .external_lex_state = 2}, + [1066] = {.lex_state = 132, .external_lex_state = 2}, + [1067] = {.lex_state = 132, .external_lex_state = 2}, + [1068] = {.lex_state = 132, .external_lex_state = 2}, + [1069] = {.lex_state = 132, .external_lex_state = 2}, + [1070] = {.lex_state = 132, .external_lex_state = 2}, + [1071] = {.lex_state = 132, .external_lex_state = 2}, + [1072] = {.lex_state = 132, .external_lex_state = 2}, + [1073] = {.lex_state = 132, .external_lex_state = 2}, + [1074] = {.lex_state = 132, .external_lex_state = 2}, + [1075] = {.lex_state = 132, .external_lex_state = 2}, + [1076] = {.lex_state = 132, .external_lex_state = 2}, + [1077] = {.lex_state = 132, .external_lex_state = 2}, + [1078] = {.lex_state = 132, .external_lex_state = 2}, + [1079] = {.lex_state = 132, .external_lex_state = 2}, + [1080] = {.lex_state = 132, .external_lex_state = 2}, + [1081] = {.lex_state = 132, .external_lex_state = 2}, + [1082] = {.lex_state = 132, .external_lex_state = 2}, + [1083] = {.lex_state = 132, .external_lex_state = 2}, + [1084] = {.lex_state = 132, .external_lex_state = 2}, + [1085] = {.lex_state = 132, .external_lex_state = 2}, + [1086] = {.lex_state = 132, .external_lex_state = 2}, + [1087] = {.lex_state = 132, .external_lex_state = 2}, + [1088] = {.lex_state = 132, .external_lex_state = 2}, + [1089] = {.lex_state = 132, .external_lex_state = 2}, + [1090] = {.lex_state = 132, .external_lex_state = 2}, + [1091] = {.lex_state = 132, .external_lex_state = 2}, + [1092] = {.lex_state = 132, .external_lex_state = 2}, + [1093] = {.lex_state = 132, .external_lex_state = 2}, + [1094] = {.lex_state = 132, .external_lex_state = 2}, + [1095] = {.lex_state = 132, .external_lex_state = 2}, + [1096] = {.lex_state = 132, .external_lex_state = 2}, + [1097] = {.lex_state = 132, .external_lex_state = 2}, + [1098] = {.lex_state = 132, .external_lex_state = 2}, + [1099] = {.lex_state = 132, .external_lex_state = 2}, + [1100] = {.lex_state = 132, .external_lex_state = 2}, + [1101] = {.lex_state = 132, .external_lex_state = 2}, + [1102] = {.lex_state = 132, .external_lex_state = 2}, + [1103] = {.lex_state = 132, .external_lex_state = 2}, + [1104] = {.lex_state = 132, .external_lex_state = 2}, + [1105] = {.lex_state = 132, .external_lex_state = 2}, + [1106] = {.lex_state = 132, .external_lex_state = 2}, + [1107] = {.lex_state = 132, .external_lex_state = 2}, + [1108] = {.lex_state = 132, .external_lex_state = 2}, + [1109] = {.lex_state = 132, .external_lex_state = 2}, + [1110] = {.lex_state = 132, .external_lex_state = 2}, + [1111] = {.lex_state = 132, .external_lex_state = 2}, + [1112] = {.lex_state = 132, .external_lex_state = 2}, + [1113] = {.lex_state = 132, .external_lex_state = 2}, + [1114] = {.lex_state = 132, .external_lex_state = 2}, + [1115] = {.lex_state = 132, .external_lex_state = 2}, + [1116] = {.lex_state = 132, .external_lex_state = 2}, + [1117] = {.lex_state = 132, .external_lex_state = 2}, + [1118] = {.lex_state = 132, .external_lex_state = 2}, + [1119] = {.lex_state = 132, .external_lex_state = 2}, + [1120] = {.lex_state = 132, .external_lex_state = 2}, + [1121] = {.lex_state = 132, .external_lex_state = 2}, + [1122] = {.lex_state = 132, .external_lex_state = 2}, + [1123] = {.lex_state = 132, .external_lex_state = 2}, + [1124] = {.lex_state = 132, .external_lex_state = 2}, + [1125] = {.lex_state = 132, .external_lex_state = 2}, + [1126] = {.lex_state = 132, .external_lex_state = 2}, + [1127] = {.lex_state = 132, .external_lex_state = 2}, + [1128] = {.lex_state = 132, .external_lex_state = 2}, + [1129] = {.lex_state = 132, .external_lex_state = 2}, + [1130] = {.lex_state = 132, .external_lex_state = 2}, + [1131] = {.lex_state = 132, .external_lex_state = 2}, + [1132] = {.lex_state = 132, .external_lex_state = 2}, + [1133] = {.lex_state = 132, .external_lex_state = 2}, + [1134] = {.lex_state = 132, .external_lex_state = 2}, + [1135] = {.lex_state = 132, .external_lex_state = 2}, + [1136] = {.lex_state = 132, .external_lex_state = 2}, + [1137] = {.lex_state = 132, .external_lex_state = 2}, + [1138] = {.lex_state = 132, .external_lex_state = 2}, + [1139] = {.lex_state = 132, .external_lex_state = 2}, + [1140] = {.lex_state = 132, .external_lex_state = 2}, + [1141] = {.lex_state = 132, .external_lex_state = 2}, + [1142] = {.lex_state = 132, .external_lex_state = 2}, + [1143] = {.lex_state = 132, .external_lex_state = 2}, + [1144] = {.lex_state = 132, .external_lex_state = 2}, + [1145] = {.lex_state = 132, .external_lex_state = 2}, + [1146] = {.lex_state = 132, .external_lex_state = 2}, + [1147] = {.lex_state = 132, .external_lex_state = 2}, + [1148] = {.lex_state = 132, .external_lex_state = 2}, + [1149] = {.lex_state = 132, .external_lex_state = 2}, + [1150] = {.lex_state = 132, .external_lex_state = 2}, + [1151] = {.lex_state = 132, .external_lex_state = 2}, + [1152] = {.lex_state = 132, .external_lex_state = 2}, + [1153] = {.lex_state = 132, .external_lex_state = 2}, + [1154] = {.lex_state = 132, .external_lex_state = 2}, + [1155] = {.lex_state = 132, .external_lex_state = 2}, + [1156] = {.lex_state = 132, .external_lex_state = 2}, + [1157] = {.lex_state = 132, .external_lex_state = 2}, + [1158] = {.lex_state = 132, .external_lex_state = 2}, + [1159] = {.lex_state = 132, .external_lex_state = 2}, + [1160] = {.lex_state = 132, .external_lex_state = 2}, + [1161] = {.lex_state = 132, .external_lex_state = 2}, + [1162] = {.lex_state = 132, .external_lex_state = 2}, + [1163] = {.lex_state = 132, .external_lex_state = 2}, + [1164] = {.lex_state = 132, .external_lex_state = 2}, + [1165] = {.lex_state = 132, .external_lex_state = 2}, + [1166] = {.lex_state = 132, .external_lex_state = 2}, + [1167] = {.lex_state = 132, .external_lex_state = 2}, + [1168] = {.lex_state = 132, .external_lex_state = 2}, + [1169] = {.lex_state = 132, .external_lex_state = 2}, + [1170] = {.lex_state = 132, .external_lex_state = 2}, + [1171] = {.lex_state = 132, .external_lex_state = 2}, + [1172] = {.lex_state = 132, .external_lex_state = 2}, + [1173] = {.lex_state = 132, .external_lex_state = 2}, + [1174] = {.lex_state = 132, .external_lex_state = 2}, + [1175] = {.lex_state = 132, .external_lex_state = 2}, + [1176] = {.lex_state = 132, .external_lex_state = 2}, + [1177] = {.lex_state = 132, .external_lex_state = 2}, + [1178] = {.lex_state = 132, .external_lex_state = 2}, + [1179] = {.lex_state = 132, .external_lex_state = 2}, + [1180] = {.lex_state = 132, .external_lex_state = 2}, + [1181] = {.lex_state = 132, .external_lex_state = 2}, + [1182] = {.lex_state = 132, .external_lex_state = 2}, + [1183] = {.lex_state = 132, .external_lex_state = 2}, + [1184] = {.lex_state = 132, .external_lex_state = 2}, + [1185] = {.lex_state = 132, .external_lex_state = 2}, + [1186] = {.lex_state = 132, .external_lex_state = 2}, + [1187] = {.lex_state = 132, .external_lex_state = 2}, + [1188] = {.lex_state = 132, .external_lex_state = 2}, + [1189] = {.lex_state = 132, .external_lex_state = 2}, + [1190] = {.lex_state = 132, .external_lex_state = 2}, + [1191] = {.lex_state = 132, .external_lex_state = 2}, + [1192] = {.lex_state = 132, .external_lex_state = 2}, + [1193] = {.lex_state = 132, .external_lex_state = 2}, + [1194] = {.lex_state = 132, .external_lex_state = 2}, + [1195] = {.lex_state = 132, .external_lex_state = 2}, + [1196] = {.lex_state = 132, .external_lex_state = 2}, + [1197] = {.lex_state = 132, .external_lex_state = 2}, + [1198] = {.lex_state = 132, .external_lex_state = 2}, + [1199] = {.lex_state = 132, .external_lex_state = 2}, + [1200] = {.lex_state = 132, .external_lex_state = 2}, + [1201] = {.lex_state = 132, .external_lex_state = 2}, + [1202] = {.lex_state = 132, .external_lex_state = 2}, + [1203] = {.lex_state = 132, .external_lex_state = 2}, + [1204] = {.lex_state = 132, .external_lex_state = 2}, + [1205] = {.lex_state = 132, .external_lex_state = 2}, + [1206] = {.lex_state = 132, .external_lex_state = 2}, + [1207] = {.lex_state = 132, .external_lex_state = 2}, + [1208] = {.lex_state = 132, .external_lex_state = 2}, + [1209] = {.lex_state = 132, .external_lex_state = 2}, + [1210] = {.lex_state = 132, .external_lex_state = 2}, + [1211] = {.lex_state = 132, .external_lex_state = 2}, + [1212] = {.lex_state = 132, .external_lex_state = 2}, + [1213] = {.lex_state = 132, .external_lex_state = 2}, + [1214] = {.lex_state = 132, .external_lex_state = 2}, + [1215] = {.lex_state = 132, .external_lex_state = 2}, + [1216] = {.lex_state = 132, .external_lex_state = 2}, + [1217] = {.lex_state = 132, .external_lex_state = 2}, + [1218] = {.lex_state = 132, .external_lex_state = 2}, + [1219] = {.lex_state = 132, .external_lex_state = 2}, + [1220] = {.lex_state = 132, .external_lex_state = 2}, + [1221] = {.lex_state = 132, .external_lex_state = 2}, + [1222] = {.lex_state = 132, .external_lex_state = 2}, + [1223] = {.lex_state = 132, .external_lex_state = 2}, + [1224] = {.lex_state = 132, .external_lex_state = 2}, + [1225] = {.lex_state = 132, .external_lex_state = 2}, + [1226] = {.lex_state = 132, .external_lex_state = 2}, + [1227] = {.lex_state = 132, .external_lex_state = 2}, + [1228] = {.lex_state = 132, .external_lex_state = 2}, + [1229] = {.lex_state = 132, .external_lex_state = 2}, + [1230] = {.lex_state = 132, .external_lex_state = 2}, + [1231] = {.lex_state = 132, .external_lex_state = 2}, + [1232] = {.lex_state = 132, .external_lex_state = 2}, + [1233] = {.lex_state = 132, .external_lex_state = 2}, + [1234] = {.lex_state = 132, .external_lex_state = 2}, + [1235] = {.lex_state = 132, .external_lex_state = 2}, + [1236] = {.lex_state = 132, .external_lex_state = 2}, + [1237] = {.lex_state = 132, .external_lex_state = 2}, + [1238] = {.lex_state = 132, .external_lex_state = 2}, + [1239] = {.lex_state = 132, .external_lex_state = 2}, + [1240] = {.lex_state = 132, .external_lex_state = 2}, + [1241] = {.lex_state = 132, .external_lex_state = 2}, + [1242] = {.lex_state = 132, .external_lex_state = 2}, + [1243] = {.lex_state = 132, .external_lex_state = 2}, + [1244] = {.lex_state = 132, .external_lex_state = 2}, + [1245] = {.lex_state = 132, .external_lex_state = 2}, + [1246] = {.lex_state = 132, .external_lex_state = 2}, + [1247] = {.lex_state = 132, .external_lex_state = 2}, + [1248] = {.lex_state = 132, .external_lex_state = 2}, + [1249] = {.lex_state = 132, .external_lex_state = 2}, + [1250] = {.lex_state = 132, .external_lex_state = 2}, + [1251] = {.lex_state = 132, .external_lex_state = 2}, + [1252] = {.lex_state = 132, .external_lex_state = 2}, + [1253] = {.lex_state = 132, .external_lex_state = 2}, + [1254] = {.lex_state = 132, .external_lex_state = 2}, + [1255] = {.lex_state = 132, .external_lex_state = 2}, + [1256] = {.lex_state = 132, .external_lex_state = 2}, + [1257] = {.lex_state = 132, .external_lex_state = 2}, + [1258] = {.lex_state = 132, .external_lex_state = 2}, + [1259] = {.lex_state = 132, .external_lex_state = 2}, + [1260] = {.lex_state = 132, .external_lex_state = 2}, + [1261] = {.lex_state = 132, .external_lex_state = 2}, + [1262] = {.lex_state = 132, .external_lex_state = 2}, + [1263] = {.lex_state = 132, .external_lex_state = 2}, + [1264] = {.lex_state = 132, .external_lex_state = 2}, + [1265] = {.lex_state = 132, .external_lex_state = 2}, + [1266] = {.lex_state = 132, .external_lex_state = 2}, + [1267] = {.lex_state = 132, .external_lex_state = 2}, + [1268] = {.lex_state = 132, .external_lex_state = 2}, + [1269] = {.lex_state = 132, .external_lex_state = 2}, + [1270] = {.lex_state = 132, .external_lex_state = 2}, + [1271] = {.lex_state = 132, .external_lex_state = 2}, + [1272] = {.lex_state = 132, .external_lex_state = 2}, + [1273] = {.lex_state = 132, .external_lex_state = 2}, + [1274] = {.lex_state = 132, .external_lex_state = 2}, + [1275] = {.lex_state = 132, .external_lex_state = 2}, + [1276] = {.lex_state = 132, .external_lex_state = 2}, + [1277] = {.lex_state = 132, .external_lex_state = 2}, + [1278] = {.lex_state = 132, .external_lex_state = 2}, + [1279] = {.lex_state = 132, .external_lex_state = 2}, + [1280] = {.lex_state = 132, .external_lex_state = 2}, + [1281] = {.lex_state = 132, .external_lex_state = 2}, + [1282] = {.lex_state = 132, .external_lex_state = 2}, + [1283] = {.lex_state = 132, .external_lex_state = 2}, + [1284] = {.lex_state = 132, .external_lex_state = 2}, + [1285] = {.lex_state = 132, .external_lex_state = 2}, + [1286] = {.lex_state = 132, .external_lex_state = 2}, + [1287] = {.lex_state = 132, .external_lex_state = 2}, + [1288] = {.lex_state = 132, .external_lex_state = 2}, + [1289] = {.lex_state = 132, .external_lex_state = 2}, + [1290] = {.lex_state = 132, .external_lex_state = 2}, + [1291] = {.lex_state = 132, .external_lex_state = 2}, + [1292] = {.lex_state = 132, .external_lex_state = 2}, + [1293] = {.lex_state = 132, .external_lex_state = 2}, + [1294] = {.lex_state = 132, .external_lex_state = 2}, + [1295] = {.lex_state = 132, .external_lex_state = 2}, + [1296] = {.lex_state = 132, .external_lex_state = 2}, + [1297] = {.lex_state = 132, .external_lex_state = 2}, + [1298] = {.lex_state = 132, .external_lex_state = 2}, + [1299] = {.lex_state = 132, .external_lex_state = 2}, + [1300] = {.lex_state = 132, .external_lex_state = 2}, + [1301] = {.lex_state = 132, .external_lex_state = 2}, + [1302] = {.lex_state = 132, .external_lex_state = 2}, + [1303] = {.lex_state = 132, .external_lex_state = 2}, + [1304] = {.lex_state = 132, .external_lex_state = 2}, + [1305] = {.lex_state = 132, .external_lex_state = 2}, + [1306] = {.lex_state = 132, .external_lex_state = 2}, + [1307] = {.lex_state = 132, .external_lex_state = 2}, + [1308] = {.lex_state = 132, .external_lex_state = 2}, + [1309] = {.lex_state = 132, .external_lex_state = 2}, + [1310] = {.lex_state = 132, .external_lex_state = 2}, + [1311] = {.lex_state = 132, .external_lex_state = 2}, + [1312] = {.lex_state = 132, .external_lex_state = 2}, + [1313] = {.lex_state = 132, .external_lex_state = 2}, + [1314] = {.lex_state = 132, .external_lex_state = 2}, + [1315] = {.lex_state = 132, .external_lex_state = 2}, + [1316] = {.lex_state = 132, .external_lex_state = 2}, + [1317] = {.lex_state = 132, .external_lex_state = 2}, + [1318] = {.lex_state = 132, .external_lex_state = 2}, + [1319] = {.lex_state = 132, .external_lex_state = 2}, + [1320] = {.lex_state = 132, .external_lex_state = 2}, + [1321] = {.lex_state = 132, .external_lex_state = 2}, + [1322] = {.lex_state = 132, .external_lex_state = 2}, + [1323] = {.lex_state = 132, .external_lex_state = 2}, + [1324] = {.lex_state = 132, .external_lex_state = 2}, + [1325] = {.lex_state = 132, .external_lex_state = 2}, + [1326] = {.lex_state = 132, .external_lex_state = 2}, + [1327] = {.lex_state = 132, .external_lex_state = 2}, + [1328] = {.lex_state = 132, .external_lex_state = 2}, + [1329] = {.lex_state = 132, .external_lex_state = 2}, + [1330] = {.lex_state = 132, .external_lex_state = 2}, + [1331] = {.lex_state = 132, .external_lex_state = 2}, + [1332] = {.lex_state = 132, .external_lex_state = 2}, + [1333] = {.lex_state = 132, .external_lex_state = 2}, + [1334] = {.lex_state = 132, .external_lex_state = 2}, + [1335] = {.lex_state = 132, .external_lex_state = 2}, + [1336] = {.lex_state = 132, .external_lex_state = 2}, + [1337] = {.lex_state = 132, .external_lex_state = 2}, + [1338] = {.lex_state = 132, .external_lex_state = 2}, + [1339] = {.lex_state = 132, .external_lex_state = 2}, + [1340] = {.lex_state = 132, .external_lex_state = 2}, + [1341] = {.lex_state = 132, .external_lex_state = 2}, + [1342] = {.lex_state = 132, .external_lex_state = 2}, + [1343] = {.lex_state = 132, .external_lex_state = 2}, + [1344] = {.lex_state = 132, .external_lex_state = 2}, + [1345] = {.lex_state = 132, .external_lex_state = 2}, + [1346] = {.lex_state = 132, .external_lex_state = 2}, + [1347] = {.lex_state = 132, .external_lex_state = 2}, + [1348] = {.lex_state = 132, .external_lex_state = 2}, + [1349] = {.lex_state = 132, .external_lex_state = 2}, + [1350] = {.lex_state = 132, .external_lex_state = 2}, + [1351] = {.lex_state = 132, .external_lex_state = 2}, + [1352] = {.lex_state = 132, .external_lex_state = 2}, + [1353] = {.lex_state = 132, .external_lex_state = 2}, + [1354] = {.lex_state = 132, .external_lex_state = 2}, + [1355] = {.lex_state = 132, .external_lex_state = 2}, + [1356] = {.lex_state = 132, .external_lex_state = 2}, + [1357] = {.lex_state = 132, .external_lex_state = 2}, + [1358] = {.lex_state = 132, .external_lex_state = 2}, + [1359] = {.lex_state = 132, .external_lex_state = 2}, + [1360] = {.lex_state = 132, .external_lex_state = 2}, + [1361] = {.lex_state = 132, .external_lex_state = 2}, + [1362] = {.lex_state = 132, .external_lex_state = 2}, + [1363] = {.lex_state = 132, .external_lex_state = 2}, + [1364] = {.lex_state = 132, .external_lex_state = 2}, + [1365] = {.lex_state = 132, .external_lex_state = 2}, + [1366] = {.lex_state = 132, .external_lex_state = 2}, + [1367] = {.lex_state = 132, .external_lex_state = 2}, + [1368] = {.lex_state = 132, .external_lex_state = 2}, + [1369] = {.lex_state = 132, .external_lex_state = 2}, + [1370] = {.lex_state = 132, .external_lex_state = 2}, + [1371] = {.lex_state = 132, .external_lex_state = 2}, + [1372] = {.lex_state = 132, .external_lex_state = 2}, + [1373] = {.lex_state = 132, .external_lex_state = 2}, + [1374] = {.lex_state = 132, .external_lex_state = 2}, + [1375] = {.lex_state = 132, .external_lex_state = 2}, + [1376] = {.lex_state = 132, .external_lex_state = 2}, + [1377] = {.lex_state = 132, .external_lex_state = 2}, + [1378] = {.lex_state = 132, .external_lex_state = 2}, + [1379] = {.lex_state = 132, .external_lex_state = 2}, + [1380] = {.lex_state = 132, .external_lex_state = 2}, + [1381] = {.lex_state = 132, .external_lex_state = 2}, + [1382] = {.lex_state = 132, .external_lex_state = 2}, + [1383] = {.lex_state = 132, .external_lex_state = 2}, + [1384] = {.lex_state = 132, .external_lex_state = 2}, + [1385] = {.lex_state = 132, .external_lex_state = 2}, + [1386] = {.lex_state = 132, .external_lex_state = 2}, + [1387] = {.lex_state = 132, .external_lex_state = 2}, + [1388] = {.lex_state = 132, .external_lex_state = 2}, + [1389] = {.lex_state = 132, .external_lex_state = 2}, + [1390] = {.lex_state = 132, .external_lex_state = 2}, + [1391] = {.lex_state = 132, .external_lex_state = 2}, + [1392] = {.lex_state = 132, .external_lex_state = 2}, + [1393] = {.lex_state = 132, .external_lex_state = 2}, + [1394] = {.lex_state = 132, .external_lex_state = 2}, + [1395] = {.lex_state = 132, .external_lex_state = 2}, + [1396] = {.lex_state = 132, .external_lex_state = 2}, + [1397] = {.lex_state = 132, .external_lex_state = 2}, + [1398] = {.lex_state = 132, .external_lex_state = 2}, + [1399] = {.lex_state = 132, .external_lex_state = 2}, + [1400] = {.lex_state = 132, .external_lex_state = 2}, + [1401] = {.lex_state = 132, .external_lex_state = 2}, + [1402] = {.lex_state = 132, .external_lex_state = 2}, + [1403] = {.lex_state = 132, .external_lex_state = 2}, + [1404] = {.lex_state = 132, .external_lex_state = 2}, + [1405] = {.lex_state = 132, .external_lex_state = 2}, + [1406] = {.lex_state = 132, .external_lex_state = 2}, + [1407] = {.lex_state = 132, .external_lex_state = 2}, + [1408] = {.lex_state = 132, .external_lex_state = 2}, + [1409] = {.lex_state = 132, .external_lex_state = 2}, + [1410] = {.lex_state = 132, .external_lex_state = 2}, + [1411] = {.lex_state = 132, .external_lex_state = 2}, + [1412] = {.lex_state = 132, .external_lex_state = 2}, + [1413] = {.lex_state = 132, .external_lex_state = 2}, + [1414] = {.lex_state = 132, .external_lex_state = 2}, + [1415] = {.lex_state = 132, .external_lex_state = 2}, + [1416] = {.lex_state = 132, .external_lex_state = 2}, + [1417] = {.lex_state = 132, .external_lex_state = 2}, + [1418] = {.lex_state = 132, .external_lex_state = 2}, + [1419] = {.lex_state = 132, .external_lex_state = 2}, + [1420] = {.lex_state = 132, .external_lex_state = 2}, + [1421] = {.lex_state = 132, .external_lex_state = 2}, + [1422] = {.lex_state = 132, .external_lex_state = 2}, + [1423] = {.lex_state = 132, .external_lex_state = 2}, + [1424] = {.lex_state = 132, .external_lex_state = 2}, + [1425] = {.lex_state = 132, .external_lex_state = 2}, + [1426] = {.lex_state = 132, .external_lex_state = 2}, + [1427] = {.lex_state = 132, .external_lex_state = 2}, + [1428] = {.lex_state = 132, .external_lex_state = 2}, + [1429] = {.lex_state = 132, .external_lex_state = 2}, + [1430] = {.lex_state = 132, .external_lex_state = 2}, + [1431] = {.lex_state = 132, .external_lex_state = 2}, + [1432] = {.lex_state = 132, .external_lex_state = 2}, + [1433] = {.lex_state = 132, .external_lex_state = 2}, + [1434] = {.lex_state = 132, .external_lex_state = 2}, + [1435] = {.lex_state = 132, .external_lex_state = 2}, + [1436] = {.lex_state = 132, .external_lex_state = 2}, + [1437] = {.lex_state = 132, .external_lex_state = 2}, + [1438] = {.lex_state = 132, .external_lex_state = 2}, + [1439] = {.lex_state = 132, .external_lex_state = 2}, + [1440] = {.lex_state = 132, .external_lex_state = 2}, + [1441] = {.lex_state = 132, .external_lex_state = 2}, + [1442] = {.lex_state = 132, .external_lex_state = 2}, + [1443] = {.lex_state = 132, .external_lex_state = 2}, + [1444] = {.lex_state = 132, .external_lex_state = 2}, + [1445] = {.lex_state = 132, .external_lex_state = 2}, + [1446] = {.lex_state = 132, .external_lex_state = 2}, + [1447] = {.lex_state = 132, .external_lex_state = 2}, + [1448] = {.lex_state = 132, .external_lex_state = 2}, + [1449] = {.lex_state = 132, .external_lex_state = 2}, + [1450] = {.lex_state = 132, .external_lex_state = 2}, + [1451] = {.lex_state = 132, .external_lex_state = 2}, + [1452] = {.lex_state = 132, .external_lex_state = 2}, + [1453] = {.lex_state = 132, .external_lex_state = 2}, + [1454] = {.lex_state = 132, .external_lex_state = 2}, + [1455] = {.lex_state = 132, .external_lex_state = 2}, + [1456] = {.lex_state = 132, .external_lex_state = 2}, + [1457] = {.lex_state = 132, .external_lex_state = 2}, + [1458] = {.lex_state = 132, .external_lex_state = 2}, + [1459] = {.lex_state = 132, .external_lex_state = 2}, + [1460] = {.lex_state = 132, .external_lex_state = 2}, + [1461] = {.lex_state = 132, .external_lex_state = 2}, + [1462] = {.lex_state = 132, .external_lex_state = 2}, + [1463] = {.lex_state = 132, .external_lex_state = 2}, + [1464] = {.lex_state = 132, .external_lex_state = 2}, + [1465] = {.lex_state = 132, .external_lex_state = 2}, + [1466] = {.lex_state = 132, .external_lex_state = 2}, + [1467] = {.lex_state = 132, .external_lex_state = 2}, + [1468] = {.lex_state = 132, .external_lex_state = 2}, + [1469] = {.lex_state = 132, .external_lex_state = 2}, + [1470] = {.lex_state = 132, .external_lex_state = 2}, + [1471] = {.lex_state = 132, .external_lex_state = 2}, + [1472] = {.lex_state = 132, .external_lex_state = 2}, + [1473] = {.lex_state = 132, .external_lex_state = 2}, + [1474] = {.lex_state = 132, .external_lex_state = 2}, + [1475] = {.lex_state = 132, .external_lex_state = 2}, + [1476] = {.lex_state = 132, .external_lex_state = 2}, + [1477] = {.lex_state = 132, .external_lex_state = 2}, + [1478] = {.lex_state = 132, .external_lex_state = 2}, + [1479] = {.lex_state = 132, .external_lex_state = 2}, + [1480] = {.lex_state = 132, .external_lex_state = 2}, + [1481] = {.lex_state = 132, .external_lex_state = 2}, + [1482] = {.lex_state = 132, .external_lex_state = 2}, + [1483] = {.lex_state = 132, .external_lex_state = 2}, + [1484] = {.lex_state = 132, .external_lex_state = 2}, + [1485] = {.lex_state = 132, .external_lex_state = 2}, + [1486] = {.lex_state = 132, .external_lex_state = 2}, + [1487] = {.lex_state = 132, .external_lex_state = 2}, + [1488] = {.lex_state = 132, .external_lex_state = 2}, + [1489] = {.lex_state = 132, .external_lex_state = 2}, + [1490] = {.lex_state = 132, .external_lex_state = 2}, + [1491] = {.lex_state = 132, .external_lex_state = 2}, + [1492] = {.lex_state = 132, .external_lex_state = 2}, + [1493] = {.lex_state = 132, .external_lex_state = 2}, + [1494] = {.lex_state = 132, .external_lex_state = 2}, + [1495] = {.lex_state = 132, .external_lex_state = 2}, + [1496] = {.lex_state = 132, .external_lex_state = 2}, + [1497] = {.lex_state = 132, .external_lex_state = 2}, + [1498] = {.lex_state = 132, .external_lex_state = 2}, + [1499] = {.lex_state = 132, .external_lex_state = 2}, + [1500] = {.lex_state = 132, .external_lex_state = 2}, + [1501] = {.lex_state = 132, .external_lex_state = 2}, + [1502] = {.lex_state = 132, .external_lex_state = 2}, + [1503] = {.lex_state = 132, .external_lex_state = 2}, + [1504] = {.lex_state = 132, .external_lex_state = 2}, + [1505] = {.lex_state = 132, .external_lex_state = 2}, + [1506] = {.lex_state = 132, .external_lex_state = 2}, + [1507] = {.lex_state = 132, .external_lex_state = 2}, + [1508] = {.lex_state = 132, .external_lex_state = 2}, + [1509] = {.lex_state = 132, .external_lex_state = 2}, + [1510] = {.lex_state = 132, .external_lex_state = 2}, + [1511] = {.lex_state = 132, .external_lex_state = 2}, + [1512] = {.lex_state = 132, .external_lex_state = 2}, + [1513] = {.lex_state = 132, .external_lex_state = 2}, + [1514] = {.lex_state = 132, .external_lex_state = 2}, + [1515] = {.lex_state = 132, .external_lex_state = 2}, + [1516] = {.lex_state = 132, .external_lex_state = 2}, + [1517] = {.lex_state = 132, .external_lex_state = 2}, + [1518] = {.lex_state = 132, .external_lex_state = 2}, + [1519] = {.lex_state = 132, .external_lex_state = 2}, + [1520] = {.lex_state = 132, .external_lex_state = 2}, + [1521] = {.lex_state = 132, .external_lex_state = 2}, + [1522] = {.lex_state = 132, .external_lex_state = 2}, + [1523] = {.lex_state = 132, .external_lex_state = 2}, + [1524] = {.lex_state = 132, .external_lex_state = 2}, + [1525] = {.lex_state = 132, .external_lex_state = 2}, + [1526] = {.lex_state = 132, .external_lex_state = 2}, + [1527] = {.lex_state = 132, .external_lex_state = 2}, + [1528] = {.lex_state = 132, .external_lex_state = 2}, + [1529] = {.lex_state = 132, .external_lex_state = 2}, + [1530] = {.lex_state = 132, .external_lex_state = 2}, + [1531] = {.lex_state = 132, .external_lex_state = 2}, + [1532] = {.lex_state = 132, .external_lex_state = 2}, + [1533] = {.lex_state = 132, .external_lex_state = 2}, + [1534] = {.lex_state = 132, .external_lex_state = 2}, + [1535] = {.lex_state = 132, .external_lex_state = 2}, + [1536] = {.lex_state = 132, .external_lex_state = 2}, + [1537] = {.lex_state = 132, .external_lex_state = 2}, + [1538] = {.lex_state = 132, .external_lex_state = 2}, + [1539] = {.lex_state = 132, .external_lex_state = 2}, + [1540] = {.lex_state = 132, .external_lex_state = 2}, + [1541] = {.lex_state = 132, .external_lex_state = 2}, + [1542] = {.lex_state = 132, .external_lex_state = 2}, + [1543] = {.lex_state = 132, .external_lex_state = 2}, + [1544] = {.lex_state = 132, .external_lex_state = 2}, + [1545] = {.lex_state = 132, .external_lex_state = 2}, + [1546] = {.lex_state = 132, .external_lex_state = 2}, + [1547] = {.lex_state = 132, .external_lex_state = 2}, + [1548] = {.lex_state = 132, .external_lex_state = 2}, + [1549] = {.lex_state = 132, .external_lex_state = 2}, + [1550] = {.lex_state = 132, .external_lex_state = 2}, + [1551] = {.lex_state = 132, .external_lex_state = 2}, + [1552] = {.lex_state = 132, .external_lex_state = 2}, + [1553] = {.lex_state = 132, .external_lex_state = 2}, + [1554] = {.lex_state = 132, .external_lex_state = 2}, + [1555] = {.lex_state = 132, .external_lex_state = 2}, + [1556] = {.lex_state = 132, .external_lex_state = 2}, + [1557] = {.lex_state = 132, .external_lex_state = 2}, + [1558] = {.lex_state = 132, .external_lex_state = 2}, + [1559] = {.lex_state = 132, .external_lex_state = 2}, + [1560] = {.lex_state = 132, .external_lex_state = 2}, + [1561] = {.lex_state = 132, .external_lex_state = 2}, + [1562] = {.lex_state = 132, .external_lex_state = 2}, + [1563] = {.lex_state = 132, .external_lex_state = 2}, + [1564] = {.lex_state = 132, .external_lex_state = 2}, + [1565] = {.lex_state = 132, .external_lex_state = 2}, + [1566] = {.lex_state = 132, .external_lex_state = 2}, + [1567] = {.lex_state = 132, .external_lex_state = 2}, + [1568] = {.lex_state = 132, .external_lex_state = 2}, + [1569] = {.lex_state = 132, .external_lex_state = 2}, + [1570] = {.lex_state = 132, .external_lex_state = 2}, + [1571] = {.lex_state = 132, .external_lex_state = 2}, + [1572] = {.lex_state = 132, .external_lex_state = 2}, + [1573] = {.lex_state = 132, .external_lex_state = 2}, + [1574] = {.lex_state = 132, .external_lex_state = 2}, + [1575] = {.lex_state = 132, .external_lex_state = 2}, + [1576] = {.lex_state = 132, .external_lex_state = 2}, + [1577] = {.lex_state = 132, .external_lex_state = 2}, + [1578] = {.lex_state = 132, .external_lex_state = 2}, + [1579] = {.lex_state = 132, .external_lex_state = 2}, + [1580] = {.lex_state = 132, .external_lex_state = 2}, + [1581] = {.lex_state = 132, .external_lex_state = 2}, + [1582] = {.lex_state = 132, .external_lex_state = 2}, + [1583] = {.lex_state = 132, .external_lex_state = 2}, + [1584] = {.lex_state = 132, .external_lex_state = 2}, + [1585] = {.lex_state = 132, .external_lex_state = 2}, + [1586] = {.lex_state = 132, .external_lex_state = 2}, + [1587] = {.lex_state = 132, .external_lex_state = 2}, + [1588] = {.lex_state = 132, .external_lex_state = 2}, + [1589] = {.lex_state = 132, .external_lex_state = 2}, + [1590] = {.lex_state = 132, .external_lex_state = 2}, + [1591] = {.lex_state = 132, .external_lex_state = 2}, + [1592] = {.lex_state = 132, .external_lex_state = 2}, + [1593] = {.lex_state = 132, .external_lex_state = 2}, + [1594] = {.lex_state = 132, .external_lex_state = 2}, + [1595] = {.lex_state = 132, .external_lex_state = 2}, + [1596] = {.lex_state = 132, .external_lex_state = 2}, + [1597] = {.lex_state = 132, .external_lex_state = 2}, + [1598] = {.lex_state = 132, .external_lex_state = 2}, + [1599] = {.lex_state = 132, .external_lex_state = 2}, + [1600] = {.lex_state = 132, .external_lex_state = 2}, + [1601] = {.lex_state = 132, .external_lex_state = 2}, + [1602] = {.lex_state = 132, .external_lex_state = 2}, + [1603] = {.lex_state = 132, .external_lex_state = 2}, + [1604] = {.lex_state = 132, .external_lex_state = 2}, + [1605] = {.lex_state = 132, .external_lex_state = 2}, + [1606] = {.lex_state = 132, .external_lex_state = 2}, + [1607] = {.lex_state = 132, .external_lex_state = 2}, + [1608] = {.lex_state = 132, .external_lex_state = 2}, + [1609] = {.lex_state = 132, .external_lex_state = 2}, + [1610] = {.lex_state = 132, .external_lex_state = 2}, + [1611] = {.lex_state = 132, .external_lex_state = 2}, + [1612] = {.lex_state = 132, .external_lex_state = 2}, + [1613] = {.lex_state = 132, .external_lex_state = 2}, + [1614] = {.lex_state = 132, .external_lex_state = 2}, + [1615] = {.lex_state = 132, .external_lex_state = 2}, + [1616] = {.lex_state = 132, .external_lex_state = 2}, + [1617] = {.lex_state = 132, .external_lex_state = 2}, + [1618] = {.lex_state = 132, .external_lex_state = 2}, + [1619] = {.lex_state = 132, .external_lex_state = 2}, + [1620] = {.lex_state = 132, .external_lex_state = 2}, + [1621] = {.lex_state = 132, .external_lex_state = 2}, + [1622] = {.lex_state = 132, .external_lex_state = 2}, + [1623] = {.lex_state = 132, .external_lex_state = 2}, + [1624] = {.lex_state = 132, .external_lex_state = 2}, + [1625] = {.lex_state = 132, .external_lex_state = 2}, + [1626] = {.lex_state = 132, .external_lex_state = 2}, + [1627] = {.lex_state = 132, .external_lex_state = 2}, + [1628] = {.lex_state = 132, .external_lex_state = 2}, + [1629] = {.lex_state = 132, .external_lex_state = 2}, + [1630] = {.lex_state = 132, .external_lex_state = 2}, + [1631] = {.lex_state = 132, .external_lex_state = 2}, + [1632] = {.lex_state = 132, .external_lex_state = 2}, + [1633] = {.lex_state = 132, .external_lex_state = 2}, + [1634] = {.lex_state = 132, .external_lex_state = 2}, + [1635] = {.lex_state = 132, .external_lex_state = 2}, + [1636] = {.lex_state = 132, .external_lex_state = 2}, + [1637] = {.lex_state = 132, .external_lex_state = 2}, + [1638] = {.lex_state = 132, .external_lex_state = 2}, + [1639] = {.lex_state = 132, .external_lex_state = 2}, + [1640] = {.lex_state = 132, .external_lex_state = 2}, + [1641] = {.lex_state = 132, .external_lex_state = 2}, + [1642] = {.lex_state = 132, .external_lex_state = 2}, + [1643] = {.lex_state = 132, .external_lex_state = 2}, + [1644] = {.lex_state = 132, .external_lex_state = 2}, + [1645] = {.lex_state = 132, .external_lex_state = 2}, + [1646] = {.lex_state = 132, .external_lex_state = 2}, + [1647] = {.lex_state = 132, .external_lex_state = 2}, + [1648] = {.lex_state = 132, .external_lex_state = 2}, + [1649] = {.lex_state = 132, .external_lex_state = 2}, + [1650] = {.lex_state = 132, .external_lex_state = 2}, + [1651] = {.lex_state = 132, .external_lex_state = 2}, + [1652] = {.lex_state = 132, .external_lex_state = 2}, + [1653] = {.lex_state = 132, .external_lex_state = 2}, + [1654] = {.lex_state = 132, .external_lex_state = 2}, + [1655] = {.lex_state = 132, .external_lex_state = 2}, + [1656] = {.lex_state = 132, .external_lex_state = 2}, + [1657] = {.lex_state = 132, .external_lex_state = 2}, + [1658] = {.lex_state = 132, .external_lex_state = 2}, + [1659] = {.lex_state = 132, .external_lex_state = 2}, + [1660] = {.lex_state = 132, .external_lex_state = 2}, + [1661] = {.lex_state = 132, .external_lex_state = 2}, + [1662] = {.lex_state = 132, .external_lex_state = 2}, + [1663] = {.lex_state = 132, .external_lex_state = 2}, + [1664] = {.lex_state = 132, .external_lex_state = 2}, + [1665] = {.lex_state = 132, .external_lex_state = 2}, + [1666] = {.lex_state = 132, .external_lex_state = 2}, + [1667] = {.lex_state = 132, .external_lex_state = 2}, + [1668] = {.lex_state = 132, .external_lex_state = 2}, + [1669] = {.lex_state = 132, .external_lex_state = 2}, + [1670] = {.lex_state = 132, .external_lex_state = 2}, + [1671] = {.lex_state = 132, .external_lex_state = 2}, + [1672] = {.lex_state = 132, .external_lex_state = 2}, + [1673] = {.lex_state = 132, .external_lex_state = 2}, + [1674] = {.lex_state = 132, .external_lex_state = 2}, + [1675] = {.lex_state = 132, .external_lex_state = 2}, + [1676] = {.lex_state = 132, .external_lex_state = 2}, + [1677] = {.lex_state = 132, .external_lex_state = 2}, + [1678] = {.lex_state = 132, .external_lex_state = 2}, + [1679] = {.lex_state = 132, .external_lex_state = 2}, + [1680] = {.lex_state = 132, .external_lex_state = 2}, + [1681] = {.lex_state = 132, .external_lex_state = 2}, + [1682] = {.lex_state = 132, .external_lex_state = 2}, + [1683] = {.lex_state = 132, .external_lex_state = 2}, + [1684] = {.lex_state = 132, .external_lex_state = 2}, + [1685] = {.lex_state = 132, .external_lex_state = 2}, + [1686] = {.lex_state = 132, .external_lex_state = 2}, + [1687] = {.lex_state = 132, .external_lex_state = 2}, + [1688] = {.lex_state = 132, .external_lex_state = 2}, + [1689] = {.lex_state = 132, .external_lex_state = 2}, + [1690] = {.lex_state = 132, .external_lex_state = 2}, + [1691] = {.lex_state = 132, .external_lex_state = 2}, + [1692] = {.lex_state = 132, .external_lex_state = 2}, + [1693] = {.lex_state = 132, .external_lex_state = 2}, + [1694] = {.lex_state = 132, .external_lex_state = 2}, + [1695] = {.lex_state = 132, .external_lex_state = 2}, + [1696] = {.lex_state = 132, .external_lex_state = 2}, + [1697] = {.lex_state = 132, .external_lex_state = 2}, + [1698] = {.lex_state = 132, .external_lex_state = 2}, + [1699] = {.lex_state = 132, .external_lex_state = 2}, + [1700] = {.lex_state = 132, .external_lex_state = 2}, + [1701] = {.lex_state = 132, .external_lex_state = 2}, + [1702] = {.lex_state = 132, .external_lex_state = 2}, + [1703] = {.lex_state = 132, .external_lex_state = 2}, + [1704] = {.lex_state = 132, .external_lex_state = 2}, + [1705] = {.lex_state = 132, .external_lex_state = 2}, + [1706] = {.lex_state = 132, .external_lex_state = 2}, + [1707] = {.lex_state = 132, .external_lex_state = 2}, + [1708] = {.lex_state = 132, .external_lex_state = 2}, + [1709] = {.lex_state = 132, .external_lex_state = 2}, + [1710] = {.lex_state = 132, .external_lex_state = 2}, + [1711] = {.lex_state = 132, .external_lex_state = 2}, + [1712] = {.lex_state = 132, .external_lex_state = 2}, + [1713] = {.lex_state = 132, .external_lex_state = 2}, + [1714] = {.lex_state = 132, .external_lex_state = 2}, + [1715] = {.lex_state = 132, .external_lex_state = 2}, + [1716] = {.lex_state = 132, .external_lex_state = 2}, + [1717] = {.lex_state = 132, .external_lex_state = 2}, + [1718] = {.lex_state = 132, .external_lex_state = 2}, + [1719] = {.lex_state = 132, .external_lex_state = 2}, + [1720] = {.lex_state = 132, .external_lex_state = 2}, + [1721] = {.lex_state = 132, .external_lex_state = 2}, + [1722] = {.lex_state = 132, .external_lex_state = 2}, + [1723] = {.lex_state = 132, .external_lex_state = 2}, + [1724] = {.lex_state = 132, .external_lex_state = 2}, + [1725] = {.lex_state = 132, .external_lex_state = 2}, + [1726] = {.lex_state = 132, .external_lex_state = 2}, + [1727] = {.lex_state = 132, .external_lex_state = 2}, + [1728] = {.lex_state = 132, .external_lex_state = 2}, + [1729] = {.lex_state = 132, .external_lex_state = 2}, + [1730] = {.lex_state = 132, .external_lex_state = 2}, + [1731] = {.lex_state = 132, .external_lex_state = 2}, + [1732] = {.lex_state = 132, .external_lex_state = 2}, + [1733] = {.lex_state = 132, .external_lex_state = 2}, + [1734] = {.lex_state = 132, .external_lex_state = 2}, + [1735] = {.lex_state = 132, .external_lex_state = 2}, + [1736] = {.lex_state = 132, .external_lex_state = 2}, + [1737] = {.lex_state = 132, .external_lex_state = 2}, + [1738] = {.lex_state = 132, .external_lex_state = 2}, + [1739] = {.lex_state = 132, .external_lex_state = 2}, + [1740] = {.lex_state = 132, .external_lex_state = 2}, + [1741] = {.lex_state = 132, .external_lex_state = 2}, + [1742] = {.lex_state = 132, .external_lex_state = 2}, + [1743] = {.lex_state = 132, .external_lex_state = 2}, + [1744] = {.lex_state = 132, .external_lex_state = 2}, + [1745] = {.lex_state = 132, .external_lex_state = 2}, + [1746] = {.lex_state = 132, .external_lex_state = 2}, + [1747] = {.lex_state = 132, .external_lex_state = 2}, + [1748] = {.lex_state = 132, .external_lex_state = 2}, + [1749] = {.lex_state = 132, .external_lex_state = 2}, + [1750] = {.lex_state = 132, .external_lex_state = 2}, + [1751] = {.lex_state = 132, .external_lex_state = 2}, + [1752] = {.lex_state = 132, .external_lex_state = 2}, + [1753] = {.lex_state = 132, .external_lex_state = 2}, + [1754] = {.lex_state = 132, .external_lex_state = 2}, + [1755] = {.lex_state = 132, .external_lex_state = 2}, + [1756] = {.lex_state = 132, .external_lex_state = 2}, + [1757] = {.lex_state = 132, .external_lex_state = 2}, + [1758] = {.lex_state = 132, .external_lex_state = 2}, + [1759] = {.lex_state = 132, .external_lex_state = 2}, + [1760] = {.lex_state = 132, .external_lex_state = 2}, + [1761] = {.lex_state = 132, .external_lex_state = 2}, + [1762] = {.lex_state = 132, .external_lex_state = 2}, + [1763] = {.lex_state = 132, .external_lex_state = 2}, + [1764] = {.lex_state = 132, .external_lex_state = 2}, + [1765] = {.lex_state = 132, .external_lex_state = 2}, + [1766] = {.lex_state = 132, .external_lex_state = 2}, + [1767] = {.lex_state = 132, .external_lex_state = 2}, + [1768] = {.lex_state = 132, .external_lex_state = 2}, + [1769] = {.lex_state = 132, .external_lex_state = 2}, + [1770] = {.lex_state = 132, .external_lex_state = 2}, + [1771] = {.lex_state = 132, .external_lex_state = 2}, + [1772] = {.lex_state = 132, .external_lex_state = 2}, + [1773] = {.lex_state = 132, .external_lex_state = 2}, + [1774] = {.lex_state = 132, .external_lex_state = 2}, + [1775] = {.lex_state = 132, .external_lex_state = 2}, + [1776] = {.lex_state = 132, .external_lex_state = 2}, + [1777] = {.lex_state = 132, .external_lex_state = 2}, + [1778] = {.lex_state = 132, .external_lex_state = 2}, + [1779] = {.lex_state = 132, .external_lex_state = 2}, + [1780] = {.lex_state = 132, .external_lex_state = 2}, + [1781] = {.lex_state = 132, .external_lex_state = 2}, + [1782] = {.lex_state = 132, .external_lex_state = 2}, + [1783] = {.lex_state = 132, .external_lex_state = 2}, + [1784] = {.lex_state = 132, .external_lex_state = 2}, + [1785] = {.lex_state = 132, .external_lex_state = 2}, + [1786] = {.lex_state = 132, .external_lex_state = 2}, + [1787] = {.lex_state = 132, .external_lex_state = 2}, + [1788] = {.lex_state = 132, .external_lex_state = 2}, + [1789] = {.lex_state = 132, .external_lex_state = 2}, + [1790] = {.lex_state = 132, .external_lex_state = 2}, + [1791] = {.lex_state = 132, .external_lex_state = 2}, + [1792] = {.lex_state = 132, .external_lex_state = 2}, + [1793] = {.lex_state = 132, .external_lex_state = 2}, + [1794] = {.lex_state = 132, .external_lex_state = 2}, + [1795] = {.lex_state = 132, .external_lex_state = 2}, + [1796] = {.lex_state = 132, .external_lex_state = 2}, + [1797] = {.lex_state = 132, .external_lex_state = 2}, + [1798] = {.lex_state = 132, .external_lex_state = 2}, + [1799] = {.lex_state = 132, .external_lex_state = 2}, + [1800] = {.lex_state = 132, .external_lex_state = 2}, + [1801] = {.lex_state = 132, .external_lex_state = 2}, + [1802] = {.lex_state = 132, .external_lex_state = 2}, + [1803] = {.lex_state = 132, .external_lex_state = 2}, + [1804] = {.lex_state = 132, .external_lex_state = 2}, + [1805] = {.lex_state = 132, .external_lex_state = 2}, + [1806] = {.lex_state = 132, .external_lex_state = 2}, + [1807] = {.lex_state = 132, .external_lex_state = 2}, + [1808] = {.lex_state = 132, .external_lex_state = 2}, + [1809] = {.lex_state = 132, .external_lex_state = 2}, + [1810] = {.lex_state = 132, .external_lex_state = 2}, + [1811] = {.lex_state = 132, .external_lex_state = 2}, + [1812] = {.lex_state = 132, .external_lex_state = 2}, + [1813] = {.lex_state = 132, .external_lex_state = 2}, + [1814] = {.lex_state = 132, .external_lex_state = 2}, + [1815] = {.lex_state = 132, .external_lex_state = 2}, + [1816] = {.lex_state = 132, .external_lex_state = 2}, + [1817] = {.lex_state = 132, .external_lex_state = 2}, + [1818] = {.lex_state = 132, .external_lex_state = 2}, + [1819] = {.lex_state = 132, .external_lex_state = 2}, + [1820] = {.lex_state = 132, .external_lex_state = 2}, + [1821] = {.lex_state = 132, .external_lex_state = 2}, + [1822] = {.lex_state = 132, .external_lex_state = 2}, + [1823] = {.lex_state = 132, .external_lex_state = 2}, + [1824] = {.lex_state = 132, .external_lex_state = 2}, + [1825] = {.lex_state = 132, .external_lex_state = 2}, + [1826] = {.lex_state = 132, .external_lex_state = 2}, + [1827] = {.lex_state = 132, .external_lex_state = 2}, + [1828] = {.lex_state = 132, .external_lex_state = 2}, + [1829] = {.lex_state = 132, .external_lex_state = 2}, + [1830] = {.lex_state = 132, .external_lex_state = 2}, + [1831] = {.lex_state = 132, .external_lex_state = 2}, + [1832] = {.lex_state = 132, .external_lex_state = 2}, + [1833] = {.lex_state = 132, .external_lex_state = 2}, + [1834] = {.lex_state = 132, .external_lex_state = 2}, + [1835] = {.lex_state = 132, .external_lex_state = 2}, + [1836] = {.lex_state = 132, .external_lex_state = 2}, + [1837] = {.lex_state = 132, .external_lex_state = 2}, + [1838] = {.lex_state = 132, .external_lex_state = 2}, + [1839] = {.lex_state = 132, .external_lex_state = 2}, + [1840] = {.lex_state = 132, .external_lex_state = 2}, + [1841] = {.lex_state = 132, .external_lex_state = 2}, + [1842] = {.lex_state = 132, .external_lex_state = 2}, + [1843] = {.lex_state = 132, .external_lex_state = 2}, + [1844] = {.lex_state = 132, .external_lex_state = 2}, + [1845] = {.lex_state = 132, .external_lex_state = 2}, + [1846] = {.lex_state = 132, .external_lex_state = 2}, + [1847] = {.lex_state = 132, .external_lex_state = 2}, + [1848] = {.lex_state = 132, .external_lex_state = 2}, + [1849] = {.lex_state = 132, .external_lex_state = 2}, + [1850] = {.lex_state = 132, .external_lex_state = 2}, + [1851] = {.lex_state = 132, .external_lex_state = 2}, + [1852] = {.lex_state = 132, .external_lex_state = 2}, + [1853] = {.lex_state = 132, .external_lex_state = 2}, + [1854] = {.lex_state = 132, .external_lex_state = 2}, + [1855] = {.lex_state = 132, .external_lex_state = 2}, + [1856] = {.lex_state = 132, .external_lex_state = 2}, + [1857] = {.lex_state = 132, .external_lex_state = 2}, + [1858] = {.lex_state = 132, .external_lex_state = 2}, + [1859] = {.lex_state = 132, .external_lex_state = 2}, + [1860] = {.lex_state = 132, .external_lex_state = 2}, + [1861] = {.lex_state = 132, .external_lex_state = 2}, + [1862] = {.lex_state = 132, .external_lex_state = 2}, + [1863] = {.lex_state = 132, .external_lex_state = 2}, + [1864] = {.lex_state = 132, .external_lex_state = 2}, + [1865] = {.lex_state = 132, .external_lex_state = 2}, + [1866] = {.lex_state = 132, .external_lex_state = 2}, + [1867] = {.lex_state = 132, .external_lex_state = 2}, + [1868] = {.lex_state = 132, .external_lex_state = 2}, + [1869] = {.lex_state = 132, .external_lex_state = 2}, + [1870] = {.lex_state = 132, .external_lex_state = 2}, + [1871] = {.lex_state = 132, .external_lex_state = 2}, + [1872] = {.lex_state = 132, .external_lex_state = 2}, + [1873] = {.lex_state = 132, .external_lex_state = 2}, + [1874] = {.lex_state = 132, .external_lex_state = 2}, + [1875] = {.lex_state = 132, .external_lex_state = 2}, + [1876] = {.lex_state = 132, .external_lex_state = 2}, + [1877] = {.lex_state = 132, .external_lex_state = 2}, + [1878] = {.lex_state = 132, .external_lex_state = 2}, + [1879] = {.lex_state = 132, .external_lex_state = 2}, + [1880] = {.lex_state = 132, .external_lex_state = 2}, + [1881] = {.lex_state = 132, .external_lex_state = 2}, + [1882] = {.lex_state = 132, .external_lex_state = 2}, + [1883] = {.lex_state = 132, .external_lex_state = 2}, + [1884] = {.lex_state = 132, .external_lex_state = 2}, + [1885] = {.lex_state = 132, .external_lex_state = 2}, + [1886] = {.lex_state = 132, .external_lex_state = 2}, + [1887] = {.lex_state = 132, .external_lex_state = 2}, + [1888] = {.lex_state = 132, .external_lex_state = 2}, + [1889] = {.lex_state = 132, .external_lex_state = 2}, + [1890] = {.lex_state = 132, .external_lex_state = 2}, + [1891] = {.lex_state = 132, .external_lex_state = 2}, + [1892] = {.lex_state = 132, .external_lex_state = 2}, + [1893] = {.lex_state = 132, .external_lex_state = 2}, + [1894] = {.lex_state = 132, .external_lex_state = 2}, + [1895] = {.lex_state = 132, .external_lex_state = 2}, + [1896] = {.lex_state = 132, .external_lex_state = 2}, + [1897] = {.lex_state = 132, .external_lex_state = 2}, + [1898] = {.lex_state = 132, .external_lex_state = 2}, + [1899] = {.lex_state = 132, .external_lex_state = 2}, + [1900] = {.lex_state = 132, .external_lex_state = 2}, [1901] = {.lex_state = 131, .external_lex_state = 2}, [1902] = {.lex_state = 131, .external_lex_state = 2}, [1903] = {.lex_state = 131, .external_lex_state = 2}, [1904] = {.lex_state = 131, .external_lex_state = 2}, [1905] = {.lex_state = 131, .external_lex_state = 2}, [1906] = {.lex_state = 131, .external_lex_state = 2}, - [1907] = {.lex_state = 131, .external_lex_state = 2}, - [1908] = {.lex_state = 131, .external_lex_state = 2}, - [1909] = {.lex_state = 131, .external_lex_state = 2}, - [1910] = {.lex_state = 131, .external_lex_state = 2}, - [1911] = {.lex_state = 131, .external_lex_state = 2}, - [1912] = {.lex_state = 131, .external_lex_state = 2}, - [1913] = {.lex_state = 131, .external_lex_state = 2}, - [1914] = {.lex_state = 131, .external_lex_state = 2}, - [1915] = {.lex_state = 131, .external_lex_state = 2}, - [1916] = {.lex_state = 131, .external_lex_state = 2}, - [1917] = {.lex_state = 131, .external_lex_state = 2}, - [1918] = {.lex_state = 131, .external_lex_state = 2}, - [1919] = {.lex_state = 131, .external_lex_state = 2}, - [1920] = {.lex_state = 131, .external_lex_state = 2}, - [1921] = {.lex_state = 131, .external_lex_state = 2}, - [1922] = {.lex_state = 131, .external_lex_state = 2}, - [1923] = {.lex_state = 131, .external_lex_state = 2}, - [1924] = {.lex_state = 131, .external_lex_state = 2}, - [1925] = {.lex_state = 131, .external_lex_state = 2}, - [1926] = {.lex_state = 131, .external_lex_state = 2}, - [1927] = {.lex_state = 131, .external_lex_state = 2}, - [1928] = {.lex_state = 131, .external_lex_state = 2}, - [1929] = {.lex_state = 131, .external_lex_state = 2}, - [1930] = {.lex_state = 131, .external_lex_state = 2}, - [1931] = {.lex_state = 131, .external_lex_state = 2}, - [1932] = {.lex_state = 131, .external_lex_state = 2}, - [1933] = {.lex_state = 131, .external_lex_state = 2}, - [1934] = {.lex_state = 131, .external_lex_state = 2}, - [1935] = {.lex_state = 131, .external_lex_state = 2}, - [1936] = {.lex_state = 131, .external_lex_state = 2}, - [1937] = {.lex_state = 131, .external_lex_state = 2}, - [1938] = {.lex_state = 131, .external_lex_state = 2}, - [1939] = {.lex_state = 131, .external_lex_state = 2}, - [1940] = {.lex_state = 131, .external_lex_state = 2}, - [1941] = {.lex_state = 131, .external_lex_state = 2}, - [1942] = {.lex_state = 131, .external_lex_state = 2}, - [1943] = {.lex_state = 131, .external_lex_state = 2}, - [1944] = {.lex_state = 131, .external_lex_state = 2}, - [1945] = {.lex_state = 131, .external_lex_state = 2}, - [1946] = {.lex_state = 131, .external_lex_state = 2}, - [1947] = {.lex_state = 131, .external_lex_state = 2}, - [1948] = {.lex_state = 131, .external_lex_state = 2}, - [1949] = {.lex_state = 131, .external_lex_state = 2}, - [1950] = {.lex_state = 131, .external_lex_state = 2}, - [1951] = {.lex_state = 131, .external_lex_state = 2}, - [1952] = {.lex_state = 131, .external_lex_state = 2}, - [1953] = {.lex_state = 131, .external_lex_state = 2}, - [1954] = {.lex_state = 131, .external_lex_state = 2}, - [1955] = {.lex_state = 131, .external_lex_state = 2}, - [1956] = {.lex_state = 131, .external_lex_state = 2}, - [1957] = {.lex_state = 131, .external_lex_state = 2}, - [1958] = {.lex_state = 131, .external_lex_state = 2}, - [1959] = {.lex_state = 131, .external_lex_state = 2}, - [1960] = {.lex_state = 131, .external_lex_state = 2}, - [1961] = {.lex_state = 131, .external_lex_state = 2}, - [1962] = {.lex_state = 131, .external_lex_state = 2}, - [1963] = {.lex_state = 131, .external_lex_state = 2}, - [1964] = {.lex_state = 131, .external_lex_state = 2}, - [1965] = {.lex_state = 131, .external_lex_state = 2}, - [1966] = {.lex_state = 131, .external_lex_state = 2}, - [1967] = {.lex_state = 131, .external_lex_state = 2}, - [1968] = {.lex_state = 131, .external_lex_state = 2}, - [1969] = {.lex_state = 131, .external_lex_state = 2}, - [1970] = {.lex_state = 131, .external_lex_state = 2}, - [1971] = {.lex_state = 131, .external_lex_state = 2}, - [1972] = {.lex_state = 131, .external_lex_state = 2}, - [1973] = {.lex_state = 131, .external_lex_state = 2}, - [1974] = {.lex_state = 131, .external_lex_state = 2}, - [1975] = {.lex_state = 131, .external_lex_state = 2}, - [1976] = {.lex_state = 131, .external_lex_state = 2}, - [1977] = {.lex_state = 131, .external_lex_state = 2}, - [1978] = {.lex_state = 131, .external_lex_state = 2}, - [1979] = {.lex_state = 131, .external_lex_state = 2}, - [1980] = {.lex_state = 131, .external_lex_state = 2}, - [1981] = {.lex_state = 4}, - [1982] = {.lex_state = 131, .external_lex_state = 2}, - [1983] = {.lex_state = 131, .external_lex_state = 2}, - [1984] = {.lex_state = 131, .external_lex_state = 2}, - [1985] = {.lex_state = 131, .external_lex_state = 2}, - [1986] = {.lex_state = 131, .external_lex_state = 2}, - [1987] = {.lex_state = 131, .external_lex_state = 2}, - [1988] = {.lex_state = 131, .external_lex_state = 2}, - [1989] = {.lex_state = 131, .external_lex_state = 2}, - [1990] = {.lex_state = 131, .external_lex_state = 2}, - [1991] = {.lex_state = 131, .external_lex_state = 2}, - [1992] = {.lex_state = 131, .external_lex_state = 2}, - [1993] = {.lex_state = 131, .external_lex_state = 2}, - [1994] = {.lex_state = 131, .external_lex_state = 2}, - [1995] = {.lex_state = 131, .external_lex_state = 2}, - [1996] = {.lex_state = 131, .external_lex_state = 2}, - [1997] = {.lex_state = 131, .external_lex_state = 2}, - [1998] = {.lex_state = 131, .external_lex_state = 2}, - [1999] = {.lex_state = 131, .external_lex_state = 2}, - [2000] = {.lex_state = 131, .external_lex_state = 2}, - [2001] = {.lex_state = 131, .external_lex_state = 2}, - [2002] = {.lex_state = 131, .external_lex_state = 2}, - [2003] = {.lex_state = 131, .external_lex_state = 2}, - [2004] = {.lex_state = 131, .external_lex_state = 2}, - [2005] = {.lex_state = 131, .external_lex_state = 2}, - [2006] = {.lex_state = 131, .external_lex_state = 2}, - [2007] = {.lex_state = 131, .external_lex_state = 2}, - [2008] = {.lex_state = 131, .external_lex_state = 2}, - [2009] = {.lex_state = 131, .external_lex_state = 2}, - [2010] = {.lex_state = 131, .external_lex_state = 2}, - [2011] = {.lex_state = 131, .external_lex_state = 2}, - [2012] = {.lex_state = 131, .external_lex_state = 2}, - [2013] = {.lex_state = 131, .external_lex_state = 2}, - [2014] = {.lex_state = 131, .external_lex_state = 2}, - [2015] = {.lex_state = 131, .external_lex_state = 2}, - [2016] = {.lex_state = 131, .external_lex_state = 2}, - [2017] = {.lex_state = 131, .external_lex_state = 2}, - [2018] = {.lex_state = 131, .external_lex_state = 2}, - [2019] = {.lex_state = 131, .external_lex_state = 2}, - [2020] = {.lex_state = 131, .external_lex_state = 2}, - [2021] = {.lex_state = 131, .external_lex_state = 2}, - [2022] = {.lex_state = 131, .external_lex_state = 2}, - [2023] = {.lex_state = 131, .external_lex_state = 2}, - [2024] = {.lex_state = 4}, - [2025] = {.lex_state = 131, .external_lex_state = 2}, - [2026] = {.lex_state = 131, .external_lex_state = 2}, - [2027] = {.lex_state = 131, .external_lex_state = 2}, - [2028] = {.lex_state = 131, .external_lex_state = 2}, - [2029] = {.lex_state = 131, .external_lex_state = 2}, - [2030] = {.lex_state = 131, .external_lex_state = 2}, - [2031] = {.lex_state = 131, .external_lex_state = 2}, - [2032] = {.lex_state = 131, .external_lex_state = 2}, - [2033] = {.lex_state = 131, .external_lex_state = 2}, - [2034] = {.lex_state = 131, .external_lex_state = 2}, - [2035] = {.lex_state = 131, .external_lex_state = 2}, - [2036] = {.lex_state = 131, .external_lex_state = 2}, - [2037] = {.lex_state = 131, .external_lex_state = 2}, - [2038] = {.lex_state = 131, .external_lex_state = 2}, - [2039] = {.lex_state = 131, .external_lex_state = 2}, - [2040] = {.lex_state = 131, .external_lex_state = 2}, - [2041] = {.lex_state = 131, .external_lex_state = 2}, - [2042] = {.lex_state = 131, .external_lex_state = 2}, - [2043] = {.lex_state = 131, .external_lex_state = 2}, - [2044] = {.lex_state = 131, .external_lex_state = 2}, - [2045] = {.lex_state = 131, .external_lex_state = 2}, - [2046] = {.lex_state = 131, .external_lex_state = 2}, - [2047] = {.lex_state = 131, .external_lex_state = 2}, - [2048] = {.lex_state = 131, .external_lex_state = 2}, - [2049] = {.lex_state = 131, .external_lex_state = 2}, - [2050] = {.lex_state = 131, .external_lex_state = 2}, - [2051] = {.lex_state = 131, .external_lex_state = 2}, - [2052] = {.lex_state = 131, .external_lex_state = 2}, - [2053] = {.lex_state = 131, .external_lex_state = 2}, - [2054] = {.lex_state = 131, .external_lex_state = 2}, - [2055] = {.lex_state = 131, .external_lex_state = 2}, - [2056] = {.lex_state = 131, .external_lex_state = 2}, - [2057] = {.lex_state = 131, .external_lex_state = 2}, - [2058] = {.lex_state = 131, .external_lex_state = 2}, - [2059] = {.lex_state = 131, .external_lex_state = 2}, - [2060] = {.lex_state = 131, .external_lex_state = 2}, - [2061] = {.lex_state = 131, .external_lex_state = 2}, - [2062] = {.lex_state = 131, .external_lex_state = 2}, - [2063] = {.lex_state = 131, .external_lex_state = 2}, - [2064] = {.lex_state = 131, .external_lex_state = 2}, - [2065] = {.lex_state = 131, .external_lex_state = 2}, - [2066] = {.lex_state = 131, .external_lex_state = 2}, - [2067] = {.lex_state = 131, .external_lex_state = 2}, - [2068] = {.lex_state = 131, .external_lex_state = 2}, - [2069] = {.lex_state = 131, .external_lex_state = 2}, - [2070] = {.lex_state = 131, .external_lex_state = 2}, - [2071] = {.lex_state = 4}, - [2072] = {.lex_state = 131, .external_lex_state = 2}, - [2073] = {.lex_state = 4, .external_lex_state = 4}, - [2074] = {.lex_state = 131, .external_lex_state = 2}, - [2075] = {.lex_state = 131, .external_lex_state = 2}, - [2076] = {.lex_state = 131, .external_lex_state = 2}, - [2077] = {.lex_state = 131, .external_lex_state = 2}, - [2078] = {.lex_state = 131, .external_lex_state = 2}, - [2079] = {.lex_state = 131, .external_lex_state = 2}, - [2080] = {.lex_state = 131, .external_lex_state = 2}, - [2081] = {.lex_state = 131, .external_lex_state = 2}, - [2082] = {.lex_state = 131, .external_lex_state = 2}, - [2083] = {.lex_state = 131, .external_lex_state = 2}, - [2084] = {.lex_state = 131, .external_lex_state = 2}, - [2085] = {.lex_state = 131, .external_lex_state = 2}, - [2086] = {.lex_state = 131, .external_lex_state = 2}, - [2087] = {.lex_state = 131, .external_lex_state = 2}, - [2088] = {.lex_state = 131, .external_lex_state = 2}, - [2089] = {.lex_state = 131, .external_lex_state = 2}, - [2090] = {.lex_state = 131, .external_lex_state = 2}, - [2091] = {.lex_state = 131, .external_lex_state = 2}, - [2092] = {.lex_state = 131, .external_lex_state = 2}, - [2093] = {.lex_state = 131, .external_lex_state = 2}, - [2094] = {.lex_state = 131, .external_lex_state = 2}, - [2095] = {.lex_state = 131, .external_lex_state = 2}, - [2096] = {.lex_state = 4}, - [2097] = {.lex_state = 4}, - [2098] = {.lex_state = 4}, - [2099] = {.lex_state = 4}, - [2100] = {.lex_state = 4}, - [2101] = {.lex_state = 4}, - [2102] = {.lex_state = 4}, - [2103] = {.lex_state = 4, .external_lex_state = 4}, - [2104] = {.lex_state = 4}, - [2105] = {.lex_state = 4}, - [2106] = {.lex_state = 4}, - [2107] = {.lex_state = 5}, - [2108] = {.lex_state = 4}, - [2109] = {.lex_state = 5}, - [2110] = {.lex_state = 5}, - [2111] = {.lex_state = 4}, - [2112] = {.lex_state = 5}, - [2113] = {.lex_state = 4, .external_lex_state = 4}, - [2114] = {.lex_state = 5}, - [2115] = {.lex_state = 5}, - [2116] = {.lex_state = 4}, - [2117] = {.lex_state = 4}, - [2118] = {.lex_state = 5}, - [2119] = {.lex_state = 5}, - [2120] = {.lex_state = 5}, - [2121] = {.lex_state = 5}, - [2122] = {.lex_state = 5}, - [2123] = {.lex_state = 4}, - [2124] = {.lex_state = 5}, - [2125] = {.lex_state = 5}, - [2126] = {.lex_state = 4}, - [2127] = {.lex_state = 5}, - [2128] = {.lex_state = 5}, - [2129] = {.lex_state = 4, .external_lex_state = 4}, - [2130] = {.lex_state = 4}, - [2131] = {.lex_state = 5}, - [2132] = {.lex_state = 6}, - [2133] = {.lex_state = 6}, - [2134] = {.lex_state = 5}, - [2135] = {.lex_state = 4}, - [2136] = {.lex_state = 6}, - [2137] = {.lex_state = 4}, - [2138] = {.lex_state = 4}, - [2139] = {.lex_state = 4}, + [1907] = {.lex_state = 132}, + [1908] = {.lex_state = 132}, + [1909] = {.lex_state = 132}, + [1910] = {.lex_state = 132}, + [1911] = {.lex_state = 132}, + [1912] = {.lex_state = 132}, + [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}, + [1917] = {.lex_state = 132}, + [1918] = {.lex_state = 132}, + [1919] = {.lex_state = 132}, + [1920] = {.lex_state = 132}, + [1921] = {.lex_state = 132, .external_lex_state = 2}, + [1922] = {.lex_state = 132, .external_lex_state = 2}, + [1923] = {.lex_state = 132, .external_lex_state = 2}, + [1924] = {.lex_state = 132, .external_lex_state = 2}, + [1925] = {.lex_state = 132, .external_lex_state = 2}, + [1926] = {.lex_state = 132, .external_lex_state = 2}, + [1927] = {.lex_state = 132, .external_lex_state = 2}, + [1928] = {.lex_state = 132, .external_lex_state = 2}, + [1929] = {.lex_state = 132, .external_lex_state = 2}, + [1930] = {.lex_state = 132, .external_lex_state = 2}, + [1931] = {.lex_state = 132, .external_lex_state = 2}, + [1932] = {.lex_state = 132, .external_lex_state = 2}, + [1933] = {.lex_state = 132, .external_lex_state = 2}, + [1934] = {.lex_state = 132, .external_lex_state = 2}, + [1935] = {.lex_state = 132, .external_lex_state = 2}, + [1936] = {.lex_state = 132, .external_lex_state = 2}, + [1937] = {.lex_state = 132, .external_lex_state = 2}, + [1938] = {.lex_state = 132, .external_lex_state = 2}, + [1939] = {.lex_state = 132, .external_lex_state = 2}, + [1940] = {.lex_state = 132, .external_lex_state = 2}, + [1941] = {.lex_state = 132, .external_lex_state = 2}, + [1942] = {.lex_state = 132, .external_lex_state = 2}, + [1943] = {.lex_state = 132, .external_lex_state = 2}, + [1944] = {.lex_state = 132, .external_lex_state = 2}, + [1945] = {.lex_state = 132, .external_lex_state = 2}, + [1946] = {.lex_state = 132, .external_lex_state = 2}, + [1947] = {.lex_state = 132, .external_lex_state = 2}, + [1948] = {.lex_state = 132, .external_lex_state = 2}, + [1949] = {.lex_state = 132, .external_lex_state = 2}, + [1950] = {.lex_state = 132, .external_lex_state = 2}, + [1951] = {.lex_state = 132, .external_lex_state = 2}, + [1952] = {.lex_state = 132, .external_lex_state = 2}, + [1953] = {.lex_state = 132, .external_lex_state = 2}, + [1954] = {.lex_state = 132, .external_lex_state = 2}, + [1955] = {.lex_state = 132, .external_lex_state = 2}, + [1956] = {.lex_state = 132, .external_lex_state = 2}, + [1957] = {.lex_state = 132, .external_lex_state = 2}, + [1958] = {.lex_state = 132, .external_lex_state = 2}, + [1959] = {.lex_state = 132, .external_lex_state = 2}, + [1960] = {.lex_state = 132, .external_lex_state = 2}, + [1961] = {.lex_state = 132, .external_lex_state = 2}, + [1962] = {.lex_state = 132, .external_lex_state = 2}, + [1963] = {.lex_state = 132, .external_lex_state = 2}, + [1964] = {.lex_state = 132, .external_lex_state = 2}, + [1965] = {.lex_state = 132, .external_lex_state = 2}, + [1966] = {.lex_state = 132, .external_lex_state = 2}, + [1967] = {.lex_state = 132, .external_lex_state = 2}, + [1968] = {.lex_state = 132, .external_lex_state = 2}, + [1969] = {.lex_state = 132, .external_lex_state = 2}, + [1970] = {.lex_state = 132, .external_lex_state = 2}, + [1971] = {.lex_state = 132, .external_lex_state = 2}, + [1972] = {.lex_state = 132, .external_lex_state = 2}, + [1973] = {.lex_state = 132, .external_lex_state = 2}, + [1974] = {.lex_state = 132, .external_lex_state = 2}, + [1975] = {.lex_state = 132, .external_lex_state = 2}, + [1976] = {.lex_state = 132, .external_lex_state = 2}, + [1977] = {.lex_state = 132, .external_lex_state = 2}, + [1978] = {.lex_state = 132, .external_lex_state = 2}, + [1979] = {.lex_state = 132, .external_lex_state = 2}, + [1980] = {.lex_state = 132, .external_lex_state = 2}, + [1981] = {.lex_state = 132, .external_lex_state = 2}, + [1982] = {.lex_state = 132, .external_lex_state = 2}, + [1983] = {.lex_state = 132, .external_lex_state = 2}, + [1984] = {.lex_state = 132, .external_lex_state = 2}, + [1985] = {.lex_state = 132, .external_lex_state = 2}, + [1986] = {.lex_state = 132, .external_lex_state = 2}, + [1987] = {.lex_state = 132, .external_lex_state = 2}, + [1988] = {.lex_state = 132, .external_lex_state = 2}, + [1989] = {.lex_state = 132, .external_lex_state = 2}, + [1990] = {.lex_state = 132, .external_lex_state = 2}, + [1991] = {.lex_state = 132, .external_lex_state = 2}, + [1992] = {.lex_state = 132, .external_lex_state = 2}, + [1993] = {.lex_state = 132, .external_lex_state = 2}, + [1994] = {.lex_state = 132, .external_lex_state = 2}, + [1995] = {.lex_state = 132, .external_lex_state = 2}, + [1996] = {.lex_state = 132, .external_lex_state = 2}, + [1997] = {.lex_state = 132, .external_lex_state = 2}, + [1998] = {.lex_state = 132, .external_lex_state = 2}, + [1999] = {.lex_state = 132, .external_lex_state = 2}, + [2000] = {.lex_state = 132, .external_lex_state = 2}, + [2001] = {.lex_state = 132, .external_lex_state = 2}, + [2002] = {.lex_state = 132, .external_lex_state = 2}, + [2003] = {.lex_state = 132, .external_lex_state = 2}, + [2004] = {.lex_state = 132, .external_lex_state = 2}, + [2005] = {.lex_state = 132, .external_lex_state = 2}, + [2006] = {.lex_state = 132, .external_lex_state = 2}, + [2007] = {.lex_state = 132, .external_lex_state = 2}, + [2008] = {.lex_state = 132, .external_lex_state = 2}, + [2009] = {.lex_state = 132, .external_lex_state = 2}, + [2010] = {.lex_state = 132, .external_lex_state = 2}, + [2011] = {.lex_state = 132, .external_lex_state = 2}, + [2012] = {.lex_state = 132, .external_lex_state = 2}, + [2013] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [2018] = {.lex_state = 132, .external_lex_state = 2}, + [2019] = {.lex_state = 132, .external_lex_state = 2}, + [2020] = {.lex_state = 132, .external_lex_state = 2}, + [2021] = {.lex_state = 132, .external_lex_state = 2}, + [2022] = {.lex_state = 132, .external_lex_state = 2}, + [2023] = {.lex_state = 132, .external_lex_state = 2}, + [2024] = {.lex_state = 132, .external_lex_state = 2}, + [2025] = {.lex_state = 132, .external_lex_state = 2}, + [2026] = {.lex_state = 132, .external_lex_state = 2}, + [2027] = {.lex_state = 132, .external_lex_state = 2}, + [2028] = {.lex_state = 132, .external_lex_state = 2}, + [2029] = {.lex_state = 132, .external_lex_state = 2}, + [2030] = {.lex_state = 132, .external_lex_state = 2}, + [2031] = {.lex_state = 132, .external_lex_state = 2}, + [2032] = {.lex_state = 132, .external_lex_state = 2}, + [2033] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [2038] = {.lex_state = 132, .external_lex_state = 2}, + [2039] = {.lex_state = 132, .external_lex_state = 2}, + [2040] = {.lex_state = 132, .external_lex_state = 2}, + [2041] = {.lex_state = 132, .external_lex_state = 2}, + [2042] = {.lex_state = 132, .external_lex_state = 2}, + [2043] = {.lex_state = 132, .external_lex_state = 2}, + [2044] = {.lex_state = 132, .external_lex_state = 2}, + [2045] = {.lex_state = 132, .external_lex_state = 2}, + [2046] = {.lex_state = 132, .external_lex_state = 2}, + [2047] = {.lex_state = 132, .external_lex_state = 2}, + [2048] = {.lex_state = 132, .external_lex_state = 2}, + [2049] = {.lex_state = 132, .external_lex_state = 2}, + [2050] = {.lex_state = 132, .external_lex_state = 2}, + [2051] = {.lex_state = 132, .external_lex_state = 2}, + [2052] = {.lex_state = 132, .external_lex_state = 2}, + [2053] = {.lex_state = 132, .external_lex_state = 2}, + [2054] = {.lex_state = 132, .external_lex_state = 2}, + [2055] = {.lex_state = 132, .external_lex_state = 2}, + [2056] = {.lex_state = 132, .external_lex_state = 2}, + [2057] = {.lex_state = 132, .external_lex_state = 2}, + [2058] = {.lex_state = 132, .external_lex_state = 2}, + [2059] = {.lex_state = 132, .external_lex_state = 2}, + [2060] = {.lex_state = 132, .external_lex_state = 2}, + [2061] = {.lex_state = 132, .external_lex_state = 2}, + [2062] = {.lex_state = 132, .external_lex_state = 2}, + [2063] = {.lex_state = 132, .external_lex_state = 2}, + [2064] = {.lex_state = 132, .external_lex_state = 2}, + [2065] = {.lex_state = 132, .external_lex_state = 2}, + [2066] = {.lex_state = 132, .external_lex_state = 2}, + [2067] = {.lex_state = 132, .external_lex_state = 2}, + [2068] = {.lex_state = 132, .external_lex_state = 2}, + [2069] = {.lex_state = 132, .external_lex_state = 2}, + [2070] = {.lex_state = 132, .external_lex_state = 2}, + [2071] = {.lex_state = 132, .external_lex_state = 2}, + [2072] = {.lex_state = 132, .external_lex_state = 2}, + [2073] = {.lex_state = 132, .external_lex_state = 2}, + [2074] = {.lex_state = 132, .external_lex_state = 2}, + [2075] = {.lex_state = 132, .external_lex_state = 2}, + [2076] = {.lex_state = 132, .external_lex_state = 2}, + [2077] = {.lex_state = 132, .external_lex_state = 2}, + [2078] = {.lex_state = 132, .external_lex_state = 2}, + [2079] = {.lex_state = 132, .external_lex_state = 2}, + [2080] = {.lex_state = 132, .external_lex_state = 2}, + [2081] = {.lex_state = 132, .external_lex_state = 2}, + [2082] = {.lex_state = 132, .external_lex_state = 2}, + [2083] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [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}, + [2094] = {.lex_state = 132, .external_lex_state = 2}, + [2095] = {.lex_state = 132, .external_lex_state = 2}, + [2096] = {.lex_state = 132, .external_lex_state = 2}, + [2097] = {.lex_state = 132, .external_lex_state = 2}, + [2098] = {.lex_state = 132, .external_lex_state = 2}, + [2099] = {.lex_state = 132, .external_lex_state = 2}, + [2100] = {.lex_state = 132, .external_lex_state = 2}, + [2101] = {.lex_state = 132, .external_lex_state = 2}, + [2102] = {.lex_state = 132, .external_lex_state = 2}, + [2103] = {.lex_state = 132, .external_lex_state = 2}, + [2104] = {.lex_state = 132, .external_lex_state = 2}, + [2105] = {.lex_state = 132, .external_lex_state = 2}, + [2106] = {.lex_state = 132, .external_lex_state = 2}, + [2107] = {.lex_state = 132, .external_lex_state = 2}, + [2108] = {.lex_state = 132, .external_lex_state = 2}, + [2109] = {.lex_state = 132, .external_lex_state = 2}, + [2110] = {.lex_state = 132, .external_lex_state = 2}, + [2111] = {.lex_state = 132, .external_lex_state = 2}, + [2112] = {.lex_state = 132, .external_lex_state = 2}, + [2113] = {.lex_state = 132, .external_lex_state = 2}, + [2114] = {.lex_state = 132, .external_lex_state = 2}, + [2115] = {.lex_state = 132, .external_lex_state = 2}, + [2116] = {.lex_state = 132, .external_lex_state = 2}, + [2117] = {.lex_state = 132, .external_lex_state = 2}, + [2118] = {.lex_state = 132, .external_lex_state = 2}, + [2119] = {.lex_state = 132, .external_lex_state = 2}, + [2120] = {.lex_state = 132, .external_lex_state = 2}, + [2121] = {.lex_state = 132, .external_lex_state = 2}, + [2122] = {.lex_state = 132, .external_lex_state = 2}, + [2123] = {.lex_state = 132, .external_lex_state = 2}, + [2124] = {.lex_state = 132, .external_lex_state = 2}, + [2125] = {.lex_state = 132, .external_lex_state = 2}, + [2126] = {.lex_state = 132, .external_lex_state = 2}, + [2127] = {.lex_state = 132, .external_lex_state = 2}, + [2128] = {.lex_state = 132, .external_lex_state = 2}, + [2129] = {.lex_state = 132, .external_lex_state = 2}, + [2130] = {.lex_state = 132, .external_lex_state = 2}, + [2131] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [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}, - [2141] = {.lex_state = 4}, - [2142] = {.lex_state = 4}, - [2143] = {.lex_state = 4, .external_lex_state = 4}, - [2144] = {.lex_state = 131}, - [2145] = {.lex_state = 4}, - [2146] = {.lex_state = 5}, - [2147] = {.lex_state = 4}, - [2148] = {.lex_state = 4}, - [2149] = {.lex_state = 5}, - [2150] = {.lex_state = 4}, - [2151] = {.lex_state = 4}, - [2152] = {.lex_state = 5}, - [2153] = {.lex_state = 4}, - [2154] = {.lex_state = 4}, - [2155] = {.lex_state = 6}, - [2156] = {.lex_state = 4}, - [2157] = {.lex_state = 130}, - [2158] = {.lex_state = 130}, - [2159] = {.lex_state = 5}, - [2160] = {.lex_state = 5}, - [2161] = {.lex_state = 4, .external_lex_state = 4}, - [2162] = {.lex_state = 5}, - [2163] = {.lex_state = 6}, - [2164] = {.lex_state = 5}, - [2165] = {.lex_state = 4, .external_lex_state = 4}, - [2166] = {.lex_state = 4, .external_lex_state = 4}, - [2167] = {.lex_state = 130}, - [2168] = {.lex_state = 130}, - [2169] = {.lex_state = 130}, - [2170] = {.lex_state = 131}, - [2171] = {.lex_state = 5}, + [2141] = {.lex_state = 132, .external_lex_state = 2}, + [2142] = {.lex_state = 4, .external_lex_state = 4}, + [2143] = {.lex_state = 132, .external_lex_state = 2}, + [2144] = {.lex_state = 132, .external_lex_state = 2}, + [2145] = {.lex_state = 132, .external_lex_state = 2}, + [2146] = {.lex_state = 132, .external_lex_state = 2}, + [2147] = {.lex_state = 132, .external_lex_state = 2}, + [2148] = {.lex_state = 132, .external_lex_state = 2}, + [2149] = {.lex_state = 132, .external_lex_state = 2}, + [2150] = {.lex_state = 132, .external_lex_state = 2}, + [2151] = {.lex_state = 132, .external_lex_state = 2}, + [2152] = {.lex_state = 132, .external_lex_state = 2}, + [2153] = {.lex_state = 132, .external_lex_state = 2}, + [2154] = {.lex_state = 132, .external_lex_state = 2}, + [2155] = {.lex_state = 132, .external_lex_state = 2}, + [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}, + [2165] = {.lex_state = 4}, + [2166] = {.lex_state = 4}, + [2167] = {.lex_state = 4}, + [2168] = {.lex_state = 4}, + [2169] = {.lex_state = 4}, + [2170] = {.lex_state = 4}, + [2171] = {.lex_state = 4}, [2172] = {.lex_state = 4}, - [2173] = {.lex_state = 5}, - [2174] = {.lex_state = 5}, - [2175] = {.lex_state = 130}, - [2176] = {.lex_state = 131}, - [2177] = {.lex_state = 4}, - [2178] = {.lex_state = 5, .external_lex_state = 4}, - [2179] = {.lex_state = 4, .external_lex_state = 4}, - [2180] = {.lex_state = 5, .external_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}, + [2178] = {.lex_state = 4}, + [2179] = {.lex_state = 4}, + [2180] = {.lex_state = 5}, [2181] = {.lex_state = 5}, - [2182] = {.lex_state = 5, .external_lex_state = 4}, - [2183] = {.lex_state = 5, .external_lex_state = 4}, + [2182] = {.lex_state = 5}, + [2183] = {.lex_state = 5}, [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 5, .external_lex_state = 4}, + [2185] = {.lex_state = 4}, [2186] = {.lex_state = 4}, - [2187] = {.lex_state = 5, .external_lex_state = 4}, - [2188] = {.lex_state = 5, .external_lex_state = 4}, - [2189] = {.lex_state = 5, .external_lex_state = 4}, - [2190] = {.lex_state = 4}, - [2191] = {.lex_state = 5, .external_lex_state = 4}, - [2192] = {.lex_state = 5, .external_lex_state = 4}, - [2193] = {.lex_state = 130}, - [2194] = {.lex_state = 5, .external_lex_state = 4}, - [2195] = {.lex_state = 130}, - [2196] = {.lex_state = 4}, + [2187] = {.lex_state = 5}, + [2188] = {.lex_state = 5}, + [2189] = {.lex_state = 5}, + [2190] = {.lex_state = 5}, + [2191] = {.lex_state = 5}, + [2192] = {.lex_state = 4}, + [2193] = {.lex_state = 5}, + [2194] = {.lex_state = 5}, + [2195] = {.lex_state = 4}, + [2196] = {.lex_state = 5}, [2197] = {.lex_state = 5}, - [2198] = {.lex_state = 5, .external_lex_state = 4}, + [2198] = {.lex_state = 132}, [2199] = {.lex_state = 5}, [2200] = {.lex_state = 4, .external_lex_state = 4}, - [2201] = {.lex_state = 5, .external_lex_state = 4}, - [2202] = {.lex_state = 5, .external_lex_state = 4}, - [2203] = {.lex_state = 4}, - [2204] = {.lex_state = 4}, - [2205] = {.lex_state = 130}, + [2201] = {.lex_state = 4}, + [2202] = {.lex_state = 6}, + [2203] = {.lex_state = 6}, + [2204] = {.lex_state = 5}, + [2205] = {.lex_state = 131}, [2206] = {.lex_state = 4}, - [2207] = {.lex_state = 5}, - [2208] = {.lex_state = 5}, - [2209] = {.lex_state = 5}, - [2210] = {.lex_state = 5}, - [2211] = {.lex_state = 131}, - [2212] = {.lex_state = 4}, - [2213] = {.lex_state = 6}, - [2214] = {.lex_state = 5}, + [2207] = {.lex_state = 4}, + [2208] = {.lex_state = 6}, + [2209] = {.lex_state = 132}, + [2210] = {.lex_state = 4}, + [2211] = {.lex_state = 4}, + [2212] = {.lex_state = 132}, + [2213] = {.lex_state = 4}, + [2214] = {.lex_state = 4}, [2215] = {.lex_state = 4}, - [2216] = {.lex_state = 4}, - [2217] = {.lex_state = 5}, - [2218] = {.lex_state = 130}, - [2219] = {.lex_state = 130}, - [2220] = {.lex_state = 131}, + [2216] = {.lex_state = 5}, + [2217] = {.lex_state = 4}, + [2218] = {.lex_state = 131}, + [2219] = {.lex_state = 4}, + [2220] = {.lex_state = 4}, [2221] = {.lex_state = 4}, [2222] = {.lex_state = 4}, - [2223] = {.lex_state = 5}, - [2224] = {.lex_state = 5, .external_lex_state = 4}, - [2225] = {.lex_state = 4}, - [2226] = {.lex_state = 5}, - [2227] = {.lex_state = 5, .external_lex_state = 4}, - [2228] = {.lex_state = 6, .external_lex_state = 4}, - [2229] = {.lex_state = 5}, - [2230] = {.lex_state = 4}, - [2231] = {.lex_state = 130}, - [2232] = {.lex_state = 4}, - [2233] = {.lex_state = 130}, + [2223] = {.lex_state = 4}, + [2224] = {.lex_state = 6}, + [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}, [2234] = {.lex_state = 5}, - [2235] = {.lex_state = 5, .external_lex_state = 4}, - [2236] = {.lex_state = 130}, - [2237] = {.lex_state = 4}, - [2238] = {.lex_state = 130}, - [2239] = {.lex_state = 4}, - [2240] = {.lex_state = 5}, - [2241] = {.lex_state = 4}, - [2242] = {.lex_state = 5, .external_lex_state = 4}, + [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}, + [2241] = {.lex_state = 5}, + [2242] = {.lex_state = 131}, [2243] = {.lex_state = 4}, [2244] = {.lex_state = 4}, - [2245] = {.lex_state = 130}, - [2246] = {.lex_state = 5}, - [2247] = {.lex_state = 4}, - [2248] = {.lex_state = 6, .external_lex_state = 4}, - [2249] = {.lex_state = 4}, - [2250] = {.lex_state = 4}, - [2251] = {.lex_state = 130}, - [2252] = {.lex_state = 4}, - [2253] = {.lex_state = 4}, - [2254] = {.lex_state = 4}, - [2255] = {.lex_state = 4}, - [2256] = {.lex_state = 4}, - [2257] = {.lex_state = 130}, - [2258] = {.lex_state = 130}, - [2259] = {.lex_state = 4}, + [2245] = {.lex_state = 5}, + [2246] = {.lex_state = 4, .external_lex_state = 4}, + [2247] = {.lex_state = 5}, + [2248] = {.lex_state = 5, .external_lex_state = 4}, + [2249] = {.lex_state = 131}, + [2250] = {.lex_state = 131}, + [2251] = {.lex_state = 131}, + [2252] = {.lex_state = 5, .external_lex_state = 4}, + [2253] = {.lex_state = 5, .external_lex_state = 4}, + [2254] = {.lex_state = 5, .external_lex_state = 4}, + [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 = 130}, - [2262] = {.lex_state = 130}, - [2263] = {.lex_state = 4}, - [2264] = {.lex_state = 130}, - [2265] = {.lex_state = 130}, - [2266] = {.lex_state = 4}, + [2261] = {.lex_state = 5, .external_lex_state = 4}, + [2262] = {.lex_state = 5}, + [2263] = {.lex_state = 5, .external_lex_state = 4}, + [2264] = {.lex_state = 4}, + [2265] = {.lex_state = 4, .external_lex_state = 4}, + [2266] = {.lex_state = 5}, [2267] = {.lex_state = 4}, [2268] = {.lex_state = 5}, - [2269] = {.lex_state = 130}, - [2270] = {.lex_state = 130}, - [2271] = {.lex_state = 4}, - [2272] = {.lex_state = 130}, - [2273] = {.lex_state = 4}, - [2274] = {.lex_state = 4}, - [2275] = {.lex_state = 130}, - [2276] = {.lex_state = 5}, - [2277] = {.lex_state = 4}, - [2278] = {.lex_state = 130}, - [2279] = {.lex_state = 4}, - [2280] = {.lex_state = 6, .external_lex_state = 4}, - [2281] = {.lex_state = 130}, - [2282] = {.lex_state = 131}, - [2283] = {.lex_state = 6}, - [2284] = {.lex_state = 4}, - [2285] = {.lex_state = 4}, - [2286] = {.lex_state = 6}, + [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}, + [2284] = {.lex_state = 5}, + [2285] = {.lex_state = 131}, + [2286] = {.lex_state = 132}, [2287] = {.lex_state = 4}, - [2288] = {.lex_state = 6}, - [2289] = {.lex_state = 131}, - [2290] = {.lex_state = 131}, - [2291] = {.lex_state = 6}, - [2292] = {.lex_state = 6}, - [2293] = {.lex_state = 131}, - [2294] = {.lex_state = 6}, + [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 = 6}, - [2297] = {.lex_state = 130}, - [2298] = {.lex_state = 130}, - [2299] = {.lex_state = 130}, - [2300] = {.lex_state = 6}, - [2301] = {.lex_state = 130, .external_lex_state = 4}, - [2302] = {.lex_state = 4}, - [2303] = {.lex_state = 4}, - [2304] = {.lex_state = 4}, - [2305] = {.lex_state = 130}, - [2306] = {.lex_state = 130, .external_lex_state = 4}, - [2307] = {.lex_state = 130}, - [2308] = {.lex_state = 4}, - [2309] = {.lex_state = 6}, - [2310] = {.lex_state = 130}, - [2311] = {.lex_state = 130}, - [2312] = {.lex_state = 4}, - [2313] = {.lex_state = 4}, - [2314] = {.lex_state = 131}, - [2315] = {.lex_state = 130}, - [2316] = {.lex_state = 130}, - [2317] = {.lex_state = 130}, - [2318] = {.lex_state = 130}, - [2319] = {.lex_state = 130, .external_lex_state = 4}, - [2320] = {.lex_state = 130}, - [2321] = {.lex_state = 130}, - [2322] = {.lex_state = 130}, - [2323] = {.lex_state = 130}, + [2296] = {.lex_state = 4}, + [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}, + [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}, + [2322] = {.lex_state = 4}, + [2323] = {.lex_state = 5}, [2324] = {.lex_state = 4}, - [2325] = {.lex_state = 130}, + [2325] = {.lex_state = 4}, [2326] = {.lex_state = 4}, - [2327] = {.lex_state = 130, .external_lex_state = 4}, - [2328] = {.lex_state = 130}, + [2327] = {.lex_state = 4}, + [2328] = {.lex_state = 4}, [2329] = {.lex_state = 4}, - [2330] = {.lex_state = 4}, - [2331] = {.lex_state = 130, .external_lex_state = 4}, + [2330] = {.lex_state = 131}, + [2331] = {.lex_state = 4}, [2332] = {.lex_state = 4}, [2333] = {.lex_state = 4}, - [2334] = {.lex_state = 4}, - [2335] = {.lex_state = 130}, - [2336] = {.lex_state = 130, .external_lex_state = 4}, - [2337] = {.lex_state = 4}, - [2338] = {.lex_state = 5}, - [2339] = {.lex_state = 130}, + [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 = 4}, - [2342] = {.lex_state = 6}, - [2343] = {.lex_state = 4}, - [2344] = {.lex_state = 130}, - [2345] = {.lex_state = 130}, - [2346] = {.lex_state = 130}, - [2347] = {.lex_state = 5}, - [2348] = {.lex_state = 5}, - [2349] = {.lex_state = 130}, - [2350] = {.lex_state = 5}, - [2351] = {.lex_state = 130}, - [2352] = {.lex_state = 130}, - [2353] = {.lex_state = 130}, - [2354] = {.lex_state = 130}, - [2355] = {.lex_state = 5}, - [2356] = {.lex_state = 5}, - [2357] = {.lex_state = 6}, - [2358] = {.lex_state = 5}, - [2359] = {.lex_state = 5}, - [2360] = {.lex_state = 6}, + [2341] = {.lex_state = 131}, + [2342] = {.lex_state = 131}, + [2343] = {.lex_state = 131}, + [2344] = {.lex_state = 131}, + [2345] = {.lex_state = 4}, + [2346] = {.lex_state = 131}, + [2347] = {.lex_state = 131}, + [2348] = {.lex_state = 4}, + [2349] = {.lex_state = 4}, + [2350] = {.lex_state = 4}, + [2351] = {.lex_state = 4}, + [2352] = {.lex_state = 4}, + [2353] = {.lex_state = 6}, + [2354] = {.lex_state = 6}, + [2355] = {.lex_state = 6}, + [2356] = {.lex_state = 132}, + [2357] = {.lex_state = 4}, + [2358] = {.lex_state = 132}, + [2359] = {.lex_state = 6}, + [2360] = {.lex_state = 4}, [2361] = {.lex_state = 6}, - [2362] = {.lex_state = 130}, - [2363] = {.lex_state = 130}, + [2362] = {.lex_state = 4}, + [2363] = {.lex_state = 4}, [2364] = {.lex_state = 6}, - [2365] = {.lex_state = 6}, - [2366] = {.lex_state = 5}, + [2365] = {.lex_state = 132}, + [2366] = {.lex_state = 131}, [2367] = {.lex_state = 6}, - [2368] = {.lex_state = 5}, - [2369] = {.lex_state = 5}, - [2370] = {.lex_state = 5}, - [2371] = {.lex_state = 5}, - [2372] = {.lex_state = 6}, - [2373] = {.lex_state = 130}, - [2374] = {.lex_state = 5}, - [2375] = {.lex_state = 5}, - [2376] = {.lex_state = 5}, - [2377] = {.lex_state = 130}, - [2378] = {.lex_state = 130}, - [2379] = {.lex_state = 5}, - [2380] = {.lex_state = 5}, - [2381] = {.lex_state = 5}, - [2382] = {.lex_state = 6}, - [2383] = {.lex_state = 130}, - [2384] = {.lex_state = 130}, - [2385] = {.lex_state = 130}, - [2386] = {.lex_state = 130}, - [2387] = {.lex_state = 130}, - [2388] = {.lex_state = 5}, - [2389] = {.lex_state = 130}, - [2390] = {.lex_state = 130}, - [2391] = {.lex_state = 130}, - [2392] = {.lex_state = 5}, - [2393] = {.lex_state = 130}, - [2394] = {.lex_state = 130}, - [2395] = {.lex_state = 130}, - [2396] = {.lex_state = 130}, - [2397] = {.lex_state = 130}, - [2398] = {.lex_state = 130}, - [2399] = {.lex_state = 5}, - [2400] = {.lex_state = 130}, - [2401] = {.lex_state = 130}, - [2402] = {.lex_state = 130}, - [2403] = {.lex_state = 130}, - [2404] = {.lex_state = 130}, - [2405] = {.lex_state = 5}, - [2406] = {.lex_state = 130}, - [2407] = {.lex_state = 5}, - [2408] = {.lex_state = 5}, - [2409] = {.lex_state = 5}, - [2410] = {.lex_state = 130}, - [2411] = {.lex_state = 5}, - [2412] = {.lex_state = 130}, - [2413] = {.lex_state = 130}, - [2414] = {.lex_state = 130}, - [2415] = {.lex_state = 5}, - [2416] = {.lex_state = 130}, - [2417] = {.lex_state = 130}, - [2418] = {.lex_state = 130, .external_lex_state = 4}, + [2368] = {.lex_state = 131, .external_lex_state = 4}, + [2369] = {.lex_state = 4}, + [2370] = {.lex_state = 6}, + [2371] = {.lex_state = 6}, + [2372] = {.lex_state = 4}, + [2373] = {.lex_state = 131}, + [2374] = {.lex_state = 131}, + [2375] = {.lex_state = 4}, + [2376] = {.lex_state = 4}, + [2377] = {.lex_state = 5}, + [2378] = {.lex_state = 131}, + [2379] = {.lex_state = 131}, + [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}, + [2387] = {.lex_state = 4}, + [2388] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [2399] = {.lex_state = 131}, + [2400] = {.lex_state = 131, .external_lex_state = 4}, + [2401] = {.lex_state = 131}, + [2402] = {.lex_state = 131}, + [2403] = {.lex_state = 6}, + [2404] = {.lex_state = 4}, + [2405] = {.lex_state = 131}, + [2406] = {.lex_state = 4}, + [2407] = {.lex_state = 131}, + [2408] = {.lex_state = 4}, + [2409] = {.lex_state = 131, .external_lex_state = 4}, + [2410] = {.lex_state = 4}, + [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}, - [2420] = {.lex_state = 130, .external_lex_state = 4}, - [2421] = {.lex_state = 130}, - [2422] = {.lex_state = 130}, - [2423] = {.lex_state = 130}, - [2424] = {.lex_state = 130}, - [2425] = {.lex_state = 130}, - [2426] = {.lex_state = 130}, - [2427] = {.lex_state = 6}, - [2428] = {.lex_state = 130}, - [2429] = {.lex_state = 130, .external_lex_state = 4}, - [2430] = {.lex_state = 130}, - [2431] = {.lex_state = 130, .external_lex_state = 4}, - [2432] = {.lex_state = 130}, - [2433] = {.lex_state = 130}, - [2434] = {.lex_state = 130}, - [2435] = {.lex_state = 130}, - [2436] = {.lex_state = 130}, - [2437] = {.lex_state = 6}, - [2438] = {.lex_state = 130}, - [2439] = {.lex_state = 131}, - [2440] = {.lex_state = 130}, + [2420] = {.lex_state = 5}, + [2421] = {.lex_state = 131}, + [2422] = {.lex_state = 131}, + [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}, + [2433] = {.lex_state = 5}, + [2434] = {.lex_state = 6}, + [2435] = {.lex_state = 5}, + [2436] = {.lex_state = 6}, + [2437] = {.lex_state = 5}, + [2438] = {.lex_state = 6}, + [2439] = {.lex_state = 6}, + [2440] = {.lex_state = 5}, [2441] = {.lex_state = 6}, - [2442] = {.lex_state = 130}, + [2442] = {.lex_state = 131}, [2443] = {.lex_state = 6}, - [2444] = {.lex_state = 130}, - [2445] = {.lex_state = 6}, - [2446] = {.lex_state = 130}, - [2447] = {.lex_state = 6}, - [2448] = {.lex_state = 130}, - [2449] = {.lex_state = 130}, - [2450] = {.lex_state = 130}, - [2451] = {.lex_state = 130}, + [2444] = {.lex_state = 5}, + [2445] = {.lex_state = 5}, + [2446] = {.lex_state = 131}, + [2447] = {.lex_state = 5}, + [2448] = {.lex_state = 131}, + [2449] = {.lex_state = 5}, + [2450] = {.lex_state = 5}, + [2451] = {.lex_state = 6}, [2452] = {.lex_state = 131}, - [2453] = {.lex_state = 131}, - [2454] = {.lex_state = 131}, - [2455] = {.lex_state = 131}, - [2456] = {.lex_state = 130, .external_lex_state = 4}, - [2457] = {.lex_state = 130}, + [2453] = {.lex_state = 5}, + [2454] = {.lex_state = 5}, + [2455] = {.lex_state = 5}, + [2456] = {.lex_state = 131}, + [2457] = {.lex_state = 5}, [2458] = {.lex_state = 131}, [2459] = {.lex_state = 131}, - [2460] = {.lex_state = 131}, + [2460] = {.lex_state = 5}, [2461] = {.lex_state = 131}, [2462] = {.lex_state = 131}, [2463] = {.lex_state = 131}, [2464] = {.lex_state = 131}, - [2465] = {.lex_state = 131}, - [2466] = {.lex_state = 130}, + [2465] = {.lex_state = 5}, + [2466] = {.lex_state = 131}, [2467] = {.lex_state = 131}, [2468] = {.lex_state = 131}, [2469] = {.lex_state = 131}, - [2470] = {.lex_state = 130}, + [2470] = {.lex_state = 131}, [2471] = {.lex_state = 131}, [2472] = {.lex_state = 131}, [2473] = {.lex_state = 131}, - [2474] = {.lex_state = 130}, + [2474] = {.lex_state = 5}, [2475] = {.lex_state = 131}, - [2476] = {.lex_state = 131}, + [2476] = {.lex_state = 5}, [2477] = {.lex_state = 131}, - [2478] = {.lex_state = 131}, - [2479] = {.lex_state = 130, .external_lex_state = 4}, + [2478] = {.lex_state = 5}, + [2479] = {.lex_state = 131}, [2480] = {.lex_state = 131}, - [2481] = {.lex_state = 6}, - [2482] = {.lex_state = 130, .external_lex_state = 4}, - [2483] = {.lex_state = 130, .external_lex_state = 4}, - [2484] = {.lex_state = 130, .external_lex_state = 4}, - [2485] = {.lex_state = 130}, - [2486] = {.lex_state = 130, .external_lex_state = 4}, - [2487] = {.lex_state = 130, .external_lex_state = 4}, - [2488] = {.lex_state = 130, .external_lex_state = 4}, - [2489] = {.lex_state = 130, .external_lex_state = 4}, - [2490] = {.lex_state = 130}, - [2491] = {.lex_state = 130}, - [2492] = {.lex_state = 130}, - [2493] = {.lex_state = 130}, - [2494] = {.lex_state = 130}, - [2495] = {.lex_state = 130}, - [2496] = {.lex_state = 130}, - [2497] = {.lex_state = 130}, - [2498] = {.lex_state = 130}, - [2499] = {.lex_state = 130}, - [2500] = {.lex_state = 130}, - [2501] = {.lex_state = 130}, - [2502] = {.lex_state = 130}, - [2503] = {.lex_state = 130}, - [2504] = {.lex_state = 130}, - [2505] = {.lex_state = 130}, - [2506] = {.lex_state = 6, .external_lex_state = 4}, + [2481] = {.lex_state = 131}, + [2482] = {.lex_state = 131}, + [2483] = {.lex_state = 131}, + [2484] = {.lex_state = 5}, + [2485] = {.lex_state = 5}, + [2486] = {.lex_state = 131}, + [2487] = {.lex_state = 131, .external_lex_state = 4}, + [2488] = {.lex_state = 131, .external_lex_state = 4}, + [2489] = {.lex_state = 131}, + [2490] = {.lex_state = 131}, + [2491] = {.lex_state = 132}, + [2492] = {.lex_state = 131}, + [2493] = {.lex_state = 6}, + [2494] = {.lex_state = 131}, + [2495] = {.lex_state = 131}, + [2496] = {.lex_state = 131}, + [2497] = {.lex_state = 131}, + [2498] = {.lex_state = 132}, + [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}, + [2505] = {.lex_state = 131}, + [2506] = {.lex_state = 131}, [2507] = {.lex_state = 131}, - [2508] = {.lex_state = 130}, - [2509] = {.lex_state = 130}, - [2510] = {.lex_state = 130}, - [2511] = {.lex_state = 130}, - [2512] = {.lex_state = 131}, - [2513] = {.lex_state = 130}, - [2514] = {.lex_state = 130}, - [2515] = {.lex_state = 130}, - [2516] = {.lex_state = 5}, - [2517] = {.lex_state = 130}, + [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}, - [2519] = {.lex_state = 130}, - [2520] = {.lex_state = 130}, - [2521] = {.lex_state = 130}, - [2522] = {.lex_state = 130}, - [2523] = {.lex_state = 130}, - [2524] = {.lex_state = 5}, - [2525] = {.lex_state = 5}, - [2526] = {.lex_state = 130}, - [2527] = {.lex_state = 130}, - [2528] = {.lex_state = 130}, - [2529] = {.lex_state = 131}, - [2530] = {.lex_state = 5}, - [2531] = {.lex_state = 131}, - [2532] = {.lex_state = 5}, - [2533] = {.lex_state = 5}, - [2534] = {.lex_state = 5}, - [2535] = {.lex_state = 5}, - [2536] = {.lex_state = 5}, - [2537] = {.lex_state = 5}, - [2538] = {.lex_state = 130, .external_lex_state = 4}, - [2539] = {.lex_state = 5}, - [2540] = {.lex_state = 130}, - [2541] = {.lex_state = 131}, - [2542] = {.lex_state = 5}, - [2543] = {.lex_state = 5}, - [2544] = {.lex_state = 130, .external_lex_state = 4}, - [2545] = {.lex_state = 130}, - [2546] = {.lex_state = 131}, - [2547] = {.lex_state = 6, .external_lex_state = 4}, - [2548] = {.lex_state = 130}, - [2549] = {.lex_state = 130}, - [2550] = {.lex_state = 131}, - [2551] = {.lex_state = 6, .external_lex_state = 4}, - [2552] = {.lex_state = 130}, + [2519] = {.lex_state = 131, .external_lex_state = 4}, + [2520] = {.lex_state = 131}, + [2521] = {.lex_state = 131}, + [2522] = {.lex_state = 131}, + [2523] = {.lex_state = 131}, + [2524] = {.lex_state = 132}, + [2525] = {.lex_state = 131, .external_lex_state = 4}, + [2526] = {.lex_state = 132}, + [2527] = {.lex_state = 131}, + [2528] = {.lex_state = 131}, + [2529] = {.lex_state = 132}, + [2530] = {.lex_state = 132}, + [2531] = {.lex_state = 132}, + [2532] = {.lex_state = 132}, + [2533] = {.lex_state = 132}, + [2534] = {.lex_state = 132}, + [2535] = {.lex_state = 132}, + [2536] = {.lex_state = 132}, + [2537] = {.lex_state = 132}, + [2538] = {.lex_state = 132}, + [2539] = {.lex_state = 132}, + [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}, + [2552] = {.lex_state = 131, .external_lex_state = 4}, [2553] = {.lex_state = 131}, - [2554] = {.lex_state = 131}, - [2555] = {.lex_state = 130}, - [2556] = {.lex_state = 6, .external_lex_state = 4}, - [2557] = {.lex_state = 130}, - [2558] = {.lex_state = 5}, - [2559] = {.lex_state = 130}, - [2560] = {.lex_state = 130}, - [2561] = {.lex_state = 130}, - [2562] = {.lex_state = 130}, - [2563] = {.lex_state = 130}, - [2564] = {.lex_state = 130}, - [2565] = {.lex_state = 5}, - [2566] = {.lex_state = 5}, - [2567] = {.lex_state = 5}, - [2568] = {.lex_state = 5}, - [2569] = {.lex_state = 130}, - [2570] = {.lex_state = 5}, + [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}, + [2559] = {.lex_state = 131}, + [2560] = {.lex_state = 132}, + [2561] = {.lex_state = 131, .external_lex_state = 4}, + [2562] = {.lex_state = 131}, + [2563] = {.lex_state = 131, .external_lex_state = 4}, + [2564] = {.lex_state = 6}, + [2565] = {.lex_state = 131}, + [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 = 130}, - [2573] = {.lex_state = 130}, - [2574] = {.lex_state = 130, .external_lex_state = 4}, - [2575] = {.lex_state = 130}, - [2576] = {.lex_state = 5}, - [2577] = {.lex_state = 5}, + [2572] = {.lex_state = 131}, + [2573] = {.lex_state = 131}, + [2574] = {.lex_state = 131}, + [2575] = {.lex_state = 131}, + [2576] = {.lex_state = 131}, + [2577] = {.lex_state = 132}, [2578] = {.lex_state = 5}, [2579] = {.lex_state = 131}, - [2580] = {.lex_state = 130}, - [2581] = {.lex_state = 5}, - [2582] = {.lex_state = 130}, + [2580] = {.lex_state = 131}, + [2581] = {.lex_state = 6, .external_lex_state = 4}, + [2582] = {.lex_state = 131}, [2583] = {.lex_state = 131}, [2584] = {.lex_state = 131}, [2585] = {.lex_state = 131}, - [2586] = {.lex_state = 130, .external_lex_state = 4}, + [2586] = {.lex_state = 131}, [2587] = {.lex_state = 131}, [2588] = {.lex_state = 131}, [2589] = {.lex_state = 131}, [2590] = {.lex_state = 131}, [2591] = {.lex_state = 131}, - [2592] = {.lex_state = 5}, - [2593] = {.lex_state = 5}, - [2594] = {.lex_state = 130, .external_lex_state = 4}, - [2595] = {.lex_state = 130, .external_lex_state = 4}, - [2596] = {.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}, - [2598] = {.lex_state = 130}, + [2598] = {.lex_state = 131}, [2599] = {.lex_state = 131}, - [2600] = {.lex_state = 131}, - [2601] = {.lex_state = 130, .external_lex_state = 4}, - [2602] = {.lex_state = 131}, - [2603] = {.lex_state = 131}, + [2600] = {.lex_state = 132}, + [2601] = {.lex_state = 131}, + [2602] = {.lex_state = 132}, + [2603] = {.lex_state = 5}, [2604] = {.lex_state = 131}, - [2605] = {.lex_state = 131}, + [2605] = {.lex_state = 5}, [2606] = {.lex_state = 131}, [2607] = {.lex_state = 131}, [2608] = {.lex_state = 131}, [2609] = {.lex_state = 5}, - [2610] = {.lex_state = 131}, - [2611] = {.lex_state = 130, .external_lex_state = 4}, - [2612] = {.lex_state = 131}, - [2613] = {.lex_state = 131}, - [2614] = {.lex_state = 131}, - [2615] = {.lex_state = 131}, + [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 = 131}, - [2618] = {.lex_state = 131}, - [2619] = {.lex_state = 131}, - [2620] = {.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}, [2623] = {.lex_state = 131}, - [2624] = {.lex_state = 130, .external_lex_state = 4}, + [2624] = {.lex_state = 131, .external_lex_state = 4}, [2625] = {.lex_state = 131}, - [2626] = {.lex_state = 130}, - [2627] = {.lex_state = 130}, - [2628] = {.lex_state = 130}, - [2629] = {.lex_state = 130}, - [2630] = {.lex_state = 130, .external_lex_state = 4}, - [2631] = {.lex_state = 130}, + [2626] = {.lex_state = 6, .external_lex_state = 4}, + [2627] = {.lex_state = 6, .external_lex_state = 4}, + [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}, - [2634] = {.lex_state = 130}, - [2635] = {.lex_state = 130, .external_lex_state = 4}, + [2634] = {.lex_state = 131}, + [2635] = {.lex_state = 5}, [2636] = {.lex_state = 5}, [2637] = {.lex_state = 131}, - [2638] = {.lex_state = 131}, - [2639] = {.lex_state = 131}, - [2640] = {.lex_state = 130}, - [2641] = {.lex_state = 131}, - [2642] = {.lex_state = 130}, + [2638] = {.lex_state = 131, .external_lex_state = 4}, + [2639] = {.lex_state = 5}, + [2640] = {.lex_state = 5}, + [2641] = {.lex_state = 5}, + [2642] = {.lex_state = 131, .external_lex_state = 4}, [2643] = {.lex_state = 131}, - [2644] = {.lex_state = 131}, - [2645] = {.lex_state = 130}, - [2646] = {.lex_state = 131}, - [2647] = {.lex_state = 130}, - [2648] = {.lex_state = 130, .external_lex_state = 4}, - [2649] = {.lex_state = 130, .external_lex_state = 4}, - [2650] = {.lex_state = 130, .external_lex_state = 4}, - [2651] = {.lex_state = 130, .external_lex_state = 4}, - [2652] = {.lex_state = 130, .external_lex_state = 4}, - [2653] = {.lex_state = 130, .external_lex_state = 4}, - [2654] = {.lex_state = 131}, - [2655] = {.lex_state = 131}, - [2656] = {.lex_state = 130}, - [2657] = {.lex_state = 131}, - [2658] = {.lex_state = 131}, - [2659] = {.lex_state = 131}, - [2660] = {.lex_state = 130}, - [2661] = {.lex_state = 130, .external_lex_state = 4}, + [2644] = {.lex_state = 5}, + [2645] = {.lex_state = 5}, + [2646] = {.lex_state = 5}, + [2647] = {.lex_state = 132}, + [2648] = {.lex_state = 132}, + [2649] = {.lex_state = 132}, + [2650] = {.lex_state = 131}, + [2651] = {.lex_state = 131}, + [2652] = {.lex_state = 131}, + [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}, + [2659] = {.lex_state = 132}, + [2660] = {.lex_state = 132}, + [2661] = {.lex_state = 132}, [2662] = {.lex_state = 131}, - [2663] = {.lex_state = 131}, - [2664] = {.lex_state = 131}, - [2665] = {.lex_state = 130}, - [2666] = {.lex_state = 131}, - [2667] = {.lex_state = 131}, - [2668] = {.lex_state = 130}, - [2669] = {.lex_state = 131}, - [2670] = {.lex_state = 131}, - [2671] = {.lex_state = 5}, - [2672] = {.lex_state = 131}, - [2673] = {.lex_state = 131}, - [2674] = {.lex_state = 131}, - [2675] = {.lex_state = 131}, - [2676] = {.lex_state = 130}, - [2677] = {.lex_state = 5}, - [2678] = {.lex_state = 130, .external_lex_state = 4}, - [2679] = {.lex_state = 131}, - [2680] = {.lex_state = 5}, - [2681] = {.lex_state = 130}, - [2682] = {.lex_state = 5}, - [2683] = {.lex_state = 131}, - [2684] = {.lex_state = 131}, - [2685] = {.lex_state = 131}, + [2663] = {.lex_state = 131, .external_lex_state = 4}, + [2664] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [2671] = {.lex_state = 132}, + [2672] = {.lex_state = 5}, + [2673] = {.lex_state = 131, .external_lex_state = 4}, + [2674] = {.lex_state = 132}, + [2675] = {.lex_state = 132}, + [2676] = {.lex_state = 132}, + [2677] = {.lex_state = 132}, + [2678] = {.lex_state = 132}, + [2679] = {.lex_state = 132}, + [2680] = {.lex_state = 132}, + [2681] = {.lex_state = 132}, + [2682] = {.lex_state = 132}, + [2683] = {.lex_state = 132}, + [2684] = {.lex_state = 132}, + [2685] = {.lex_state = 132}, [2686] = {.lex_state = 131}, - [2687] = {.lex_state = 130}, - [2688] = {.lex_state = 131}, - [2689] = {.lex_state = 130, .external_lex_state = 4}, - [2690] = {.lex_state = 131}, + [2687] = {.lex_state = 5}, + [2688] = {.lex_state = 132}, + [2689] = {.lex_state = 132}, + [2690] = {.lex_state = 132}, [2691] = {.lex_state = 131}, - [2692] = {.lex_state = 131}, - [2693] = {.lex_state = 130, .external_lex_state = 4}, - [2694] = {.lex_state = 130, .external_lex_state = 4}, + [2692] = {.lex_state = 132}, + [2693] = {.lex_state = 131}, + [2694] = {.lex_state = 132}, [2695] = {.lex_state = 131}, [2696] = {.lex_state = 131}, - [2697] = {.lex_state = 131}, + [2697] = {.lex_state = 5}, [2698] = {.lex_state = 131}, - [2699] = {.lex_state = 131}, - [2700] = {.lex_state = 130, .external_lex_state = 4}, - [2701] = {.lex_state = 131}, - [2702] = {.lex_state = 131}, - [2703] = {.lex_state = 130}, - [2704] = {.lex_state = 131}, - [2705] = {.lex_state = 131}, - [2706] = {.lex_state = 131}, - [2707] = {.lex_state = 131}, - [2708] = {.lex_state = 131}, - [2709] = {.lex_state = 131}, - [2710] = {.lex_state = 131}, - [2711] = {.lex_state = 5}, - [2712] = {.lex_state = 5}, - [2713] = {.lex_state = 131}, - [2714] = {.lex_state = 130, .external_lex_state = 4}, - [2715] = {.lex_state = 131}, + [2699] = {.lex_state = 132}, + [2700] = {.lex_state = 132}, + [2701] = {.lex_state = 132}, + [2702] = {.lex_state = 131, .external_lex_state = 4}, + [2703] = {.lex_state = 132}, + [2704] = {.lex_state = 132}, + [2705] = {.lex_state = 132}, + [2706] = {.lex_state = 131, .external_lex_state = 4}, + [2707] = {.lex_state = 132}, + [2708] = {.lex_state = 132}, + [2709] = {.lex_state = 132}, + [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 = 131}, - [2718] = {.lex_state = 5}, - [2719] = {.lex_state = 131}, - [2720] = {.lex_state = 131}, - [2721] = {.lex_state = 131}, - [2722] = {.lex_state = 131}, - [2723] = {.lex_state = 131}, - [2724] = {.lex_state = 131}, - [2725] = {.lex_state = 5}, - [2726] = {.lex_state = 130, .external_lex_state = 4}, - [2727] = {.lex_state = 130, .external_lex_state = 4}, - [2728] = {.lex_state = 131}, - [2729] = {.lex_state = 130, .external_lex_state = 4}, - [2730] = {.lex_state = 130, .external_lex_state = 4}, + [2717] = {.lex_state = 132}, + [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}, + [2727] = {.lex_state = 132}, + [2728] = {.lex_state = 132}, + [2729] = {.lex_state = 5}, + [2730] = {.lex_state = 132}, [2731] = {.lex_state = 131}, - [2732] = {.lex_state = 130}, - [2733] = {.lex_state = 131}, - [2734] = {.lex_state = 130, .external_lex_state = 4}, - [2735] = {.lex_state = 130}, - [2736] = {.lex_state = 5}, - [2737] = {.lex_state = 130}, - [2738] = {.lex_state = 5}, + [2732] = {.lex_state = 131}, + [2733] = {.lex_state = 132}, + [2734] = {.lex_state = 132}, + [2735] = {.lex_state = 131}, + [2736] = {.lex_state = 131}, + [2737] = {.lex_state = 131, .external_lex_state = 4}, + [2738] = {.lex_state = 132}, [2739] = {.lex_state = 131}, [2740] = {.lex_state = 131}, - [2741] = {.lex_state = 131}, + [2741] = {.lex_state = 132}, [2742] = {.lex_state = 131}, - [2743] = {.lex_state = 130, .external_lex_state = 4}, - [2744] = {.lex_state = 131}, - [2745] = {.lex_state = 5}, - [2746] = {.lex_state = 130, .external_lex_state = 4}, - [2747] = {.lex_state = 130, .external_lex_state = 4}, + [2743] = {.lex_state = 131}, + [2744] = {.lex_state = 132}, + [2745] = {.lex_state = 131, .external_lex_state = 4}, + [2746] = {.lex_state = 132}, + [2747] = {.lex_state = 5}, [2748] = {.lex_state = 131}, - [2749] = {.lex_state = 130}, - [2750] = {.lex_state = 130}, - [2751] = {.lex_state = 130, .external_lex_state = 4}, - [2752] = {.lex_state = 130, .external_lex_state = 4}, - [2753] = {.lex_state = 130, .external_lex_state = 4}, - [2754] = {.lex_state = 130}, - [2755] = {.lex_state = 130}, - [2756] = {.lex_state = 130}, - [2757] = {.lex_state = 131}, - [2758] = {.lex_state = 130, .external_lex_state = 4}, - [2759] = {.lex_state = 130}, - [2760] = {.lex_state = 131}, - [2761] = {.lex_state = 131}, - [2762] = {.lex_state = 131}, - [2763] = {.lex_state = 131}, - [2764] = {.lex_state = 131}, - [2765] = {.lex_state = 130}, - [2766] = {.lex_state = 130, .external_lex_state = 4}, - [2767] = {.lex_state = 131}, - [2768] = {.lex_state = 130, .external_lex_state = 4}, - [2769] = {.lex_state = 130}, - [2770] = {.lex_state = 131}, - [2771] = {.lex_state = 5}, - [2772] = {.lex_state = 131}, + [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}, + [2756] = {.lex_state = 132}, + [2757] = {.lex_state = 131, .external_lex_state = 4}, + [2758] = {.lex_state = 132}, + [2759] = {.lex_state = 132}, + [2760] = {.lex_state = 132}, + [2761] = {.lex_state = 132}, + [2762] = {.lex_state = 5}, + [2763] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [2770] = {.lex_state = 132}, + [2771] = {.lex_state = 131, .external_lex_state = 4}, + [2772] = {.lex_state = 132}, [2773] = {.lex_state = 131}, - [2774] = {.lex_state = 131}, - [2775] = {.lex_state = 130, .external_lex_state = 4}, - [2776] = {.lex_state = 130}, - [2777] = {.lex_state = 130, .external_lex_state = 4}, - [2778] = {.lex_state = 130, .external_lex_state = 4}, - [2779] = {.lex_state = 130, .external_lex_state = 4}, - [2780] = {.lex_state = 130, .external_lex_state = 4}, - [2781] = {.lex_state = 130, .external_lex_state = 4}, - [2782] = {.lex_state = 130, .external_lex_state = 4}, - [2783] = {.lex_state = 130}, - [2784] = {.lex_state = 130}, - [2785] = {.lex_state = 130}, - [2786] = {.lex_state = 130}, - [2787] = {.lex_state = 130}, - [2788] = {.lex_state = 130}, - [2789] = {.lex_state = 130}, - [2790] = {.lex_state = 130}, - [2791] = {.lex_state = 130}, - [2792] = {.lex_state = 5}, - [2793] = {.lex_state = 5}, - [2794] = {.lex_state = 130}, - [2795] = {.lex_state = 5}, - [2796] = {.lex_state = 130}, - [2797] = {.lex_state = 130}, - [2798] = {.lex_state = 130}, - [2799] = {.lex_state = 130}, - [2800] = {.lex_state = 130}, - [2801] = {.lex_state = 130}, - [2802] = {.lex_state = 130}, - [2803] = {.lex_state = 130}, - [2804] = {.lex_state = 130}, - [2805] = {.lex_state = 5}, - [2806] = {.lex_state = 130}, - [2807] = {.lex_state = 130}, - [2808] = {.lex_state = 130}, - [2809] = {.lex_state = 130}, - [2810] = {.lex_state = 4}, - [2811] = {.lex_state = 4}, - [2812] = {.lex_state = 130}, - [2813] = {.lex_state = 4}, - [2814] = {.lex_state = 4}, - [2815] = {.lex_state = 130}, - [2816] = {.lex_state = 4}, - [2817] = {.lex_state = 130}, - [2818] = {.lex_state = 131}, - [2819] = {.lex_state = 4}, - [2820] = {.lex_state = 130}, - [2821] = {.lex_state = 130}, - [2822] = {.lex_state = 4}, - [2823] = {.lex_state = 131}, - [2824] = {.lex_state = 6}, - [2825] = {.lex_state = 4}, - [2826] = {.lex_state = 6}, - [2827] = {.lex_state = 130}, - [2828] = {.lex_state = 6}, - [2829] = {.lex_state = 130}, - [2830] = {.lex_state = 4}, - [2831] = {.lex_state = 130}, - [2832] = {.lex_state = 130}, - [2833] = {.lex_state = 130}, - [2834] = {.lex_state = 6}, - [2835] = {.lex_state = 6}, - [2836] = {.lex_state = 4}, - [2837] = {.lex_state = 130}, - [2838] = {.lex_state = 6}, - [2839] = {.lex_state = 131}, - [2840] = {.lex_state = 130}, - [2841] = {.lex_state = 130}, - [2842] = {.lex_state = 130}, - [2843] = {.lex_state = 7}, - [2844] = {.lex_state = 130}, - [2845] = {.lex_state = 130}, - [2846] = {.lex_state = 6}, - [2847] = {.lex_state = 131}, - [2848] = {.lex_state = 130}, - [2849] = {.lex_state = 130}, - [2850] = {.lex_state = 130}, - [2851] = {.lex_state = 130}, - [2852] = {.lex_state = 130}, - [2853] = {.lex_state = 130}, - [2854] = {.lex_state = 130}, - [2855] = {.lex_state = 130}, - [2856] = {.lex_state = 130}, - [2857] = {.lex_state = 130}, - [2858] = {.lex_state = 130}, - [2859] = {.lex_state = 130}, - [2860] = {.lex_state = 130}, - [2861] = {.lex_state = 4}, - [2862] = {.lex_state = 130}, - [2863] = {.lex_state = 130}, - [2864] = {.lex_state = 130}, - [2865] = {.lex_state = 130}, - [2866] = {.lex_state = 130}, - [2867] = {.lex_state = 130}, - [2868] = {.lex_state = 130}, - [2869] = {.lex_state = 130}, - [2870] = {.lex_state = 130}, - [2871] = {.lex_state = 130}, - [2872] = {.lex_state = 130}, - [2873] = {.lex_state = 130}, - [2874] = {.lex_state = 130}, - [2875] = {.lex_state = 130}, - [2876] = {.lex_state = 130}, - [2877] = {.lex_state = 130}, - [2878] = {.lex_state = 130}, - [2879] = {.lex_state = 130}, - [2880] = {.lex_state = 130}, - [2881] = {.lex_state = 130}, - [2882] = {.lex_state = 130}, - [2883] = {.lex_state = 130}, - [2884] = {.lex_state = 130}, - [2885] = {.lex_state = 130}, - [2886] = {.lex_state = 130}, - [2887] = {.lex_state = 130}, - [2888] = {.lex_state = 130}, - [2889] = {.lex_state = 130}, - [2890] = {.lex_state = 130}, - [2891] = {.lex_state = 130}, - [2892] = {.lex_state = 130}, - [2893] = {.lex_state = 130}, - [2894] = {.lex_state = 130}, - [2895] = {.lex_state = 130}, - [2896] = {.lex_state = 130}, - [2897] = {.lex_state = 130}, - [2898] = {.lex_state = 130}, - [2899] = {.lex_state = 130}, - [2900] = {.lex_state = 130}, - [2901] = {.lex_state = 131}, - [2902] = {.lex_state = 130}, - [2903] = {.lex_state = 130}, - [2904] = {.lex_state = 130}, - [2905] = {.lex_state = 130}, - [2906] = {.lex_state = 130}, - [2907] = {.lex_state = 130}, - [2908] = {.lex_state = 130}, - [2909] = {.lex_state = 130}, - [2910] = {.lex_state = 130}, - [2911] = {.lex_state = 130}, - [2912] = {.lex_state = 130}, - [2913] = {.lex_state = 130}, - [2914] = {.lex_state = 130}, - [2915] = {.lex_state = 130}, - [2916] = {.lex_state = 130}, - [2917] = {.lex_state = 130}, - [2918] = {.lex_state = 130}, - [2919] = {.lex_state = 130}, - [2920] = {.lex_state = 130}, - [2921] = {.lex_state = 130}, - [2922] = {.lex_state = 130}, - [2923] = {.lex_state = 130}, + [2774] = {.lex_state = 5}, + [2775] = {.lex_state = 131}, + [2776] = {.lex_state = 131}, + [2777] = {.lex_state = 131, .external_lex_state = 4}, + [2778] = {.lex_state = 131}, + [2779] = {.lex_state = 132}, + [2780] = {.lex_state = 132}, + [2781] = {.lex_state = 132}, + [2782] = {.lex_state = 132}, + [2783] = {.lex_state = 132}, + [2784] = {.lex_state = 132}, + [2785] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [2792] = {.lex_state = 131}, + [2793] = {.lex_state = 131}, + [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}, + [2805] = {.lex_state = 132}, + [2806] = {.lex_state = 132}, + [2807] = {.lex_state = 131, .external_lex_state = 4}, + [2808] = {.lex_state = 5}, + [2809] = {.lex_state = 132}, + [2810] = {.lex_state = 5}, + [2811] = {.lex_state = 132}, + [2812] = {.lex_state = 132}, + [2813] = {.lex_state = 132}, + [2814] = {.lex_state = 132}, + [2815] = {.lex_state = 132}, + [2816] = {.lex_state = 132}, + [2817] = {.lex_state = 132}, + [2818] = {.lex_state = 132}, + [2819] = {.lex_state = 131, .external_lex_state = 4}, + [2820] = {.lex_state = 132}, + [2821] = {.lex_state = 132}, + [2822] = {.lex_state = 131, .external_lex_state = 4}, + [2823] = {.lex_state = 132}, + [2824] = {.lex_state = 132}, + [2825] = {.lex_state = 132}, + [2826] = {.lex_state = 132}, + [2827] = {.lex_state = 5}, + [2828] = {.lex_state = 132}, + [2829] = {.lex_state = 132}, + [2830] = {.lex_state = 132}, + [2831] = {.lex_state = 132}, + [2832] = {.lex_state = 132}, + [2833] = {.lex_state = 132}, + [2834] = {.lex_state = 132}, + [2835] = {.lex_state = 132}, + [2836] = {.lex_state = 132}, + [2837] = {.lex_state = 132}, + [2838] = {.lex_state = 132}, + [2839] = {.lex_state = 132}, + [2840] = {.lex_state = 5}, + [2841] = {.lex_state = 132}, + [2842] = {.lex_state = 132}, + [2843] = {.lex_state = 132}, + [2844] = {.lex_state = 132}, + [2845] = {.lex_state = 132}, + [2846] = {.lex_state = 132}, + [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}, + [2862] = {.lex_state = 131}, + [2863] = {.lex_state = 131}, + [2864] = {.lex_state = 131}, + [2865] = {.lex_state = 131}, + [2866] = {.lex_state = 131}, + [2867] = {.lex_state = 132}, + [2868] = {.lex_state = 131}, + [2869] = {.lex_state = 131}, + [2870] = {.lex_state = 131}, + [2871] = {.lex_state = 5}, + [2872] = {.lex_state = 5}, + [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}, + [2880] = {.lex_state = 132}, + [2881] = {.lex_state = 131}, + [2882] = {.lex_state = 131}, + [2883] = {.lex_state = 5}, + [2884] = {.lex_state = 131}, + [2885] = {.lex_state = 131}, + [2886] = {.lex_state = 131}, + [2887] = {.lex_state = 131}, + [2888] = {.lex_state = 131}, + [2889] = {.lex_state = 131}, + [2890] = {.lex_state = 131}, + [2891] = {.lex_state = 131}, + [2892] = {.lex_state = 131}, + [2893] = {.lex_state = 5}, + [2894] = {.lex_state = 131}, + [2895] = {.lex_state = 132}, + [2896] = {.lex_state = 132}, + [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}, + [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}, + [2915] = {.lex_state = 131}, + [2916] = {.lex_state = 4}, + [2917] = {.lex_state = 4}, + [2918] = {.lex_state = 131}, + [2919] = {.lex_state = 131}, + [2920] = {.lex_state = 6}, + [2921] = {.lex_state = 131}, + [2922] = {.lex_state = 131}, + [2923] = {.lex_state = 6}, [2924] = {.lex_state = 131}, - [2925] = {.lex_state = 130}, + [2925] = {.lex_state = 131}, [2926] = {.lex_state = 131}, - [2927] = {.lex_state = 130}, - [2928] = {.lex_state = 130}, - [2929] = {.lex_state = 130}, - [2930] = {.lex_state = 130}, - [2931] = {.lex_state = 130}, - [2932] = {.lex_state = 130}, - [2933] = {.lex_state = 130}, - [2934] = {.lex_state = 130}, - [2935] = {.lex_state = 130}, - [2936] = {.lex_state = 130}, - [2937] = {.lex_state = 130}, - [2938] = {.lex_state = 130}, - [2939] = {.lex_state = 130}, - [2940] = {.lex_state = 130}, - [2941] = {.lex_state = 130}, - [2942] = {.lex_state = 130}, - [2943] = {.lex_state = 130}, - [2944] = {.lex_state = 130}, - [2945] = {.lex_state = 130}, - [2946] = {.lex_state = 130}, - [2947] = {.lex_state = 130}, - [2948] = {.lex_state = 130}, - [2949] = {.lex_state = 130}, - [2950] = {.lex_state = 130}, - [2951] = {.lex_state = 130}, - [2952] = {.lex_state = 130}, - [2953] = {.lex_state = 130}, - [2954] = {.lex_state = 130}, - [2955] = {.lex_state = 130}, - [2956] = {.lex_state = 130}, - [2957] = {.lex_state = 130}, - [2958] = {.lex_state = 4}, - [2959] = {.lex_state = 130}, + [2927] = {.lex_state = 131}, + [2928] = {.lex_state = 131}, + [2929] = {.lex_state = 131}, + [2930] = {.lex_state = 131}, + [2931] = {.lex_state = 131}, + [2932] = {.lex_state = 131}, + [2933] = {.lex_state = 131}, + [2934] = {.lex_state = 132}, + [2935] = {.lex_state = 131}, + [2936] = {.lex_state = 131}, + [2937] = {.lex_state = 131}, + [2938] = {.lex_state = 132}, + [2939] = {.lex_state = 131}, + [2940] = {.lex_state = 131}, + [2941] = {.lex_state = 131}, + [2942] = {.lex_state = 131}, + [2943] = {.lex_state = 6}, + [2944] = {.lex_state = 131}, + [2945] = {.lex_state = 6}, + [2946] = {.lex_state = 131}, + [2947] = {.lex_state = 131}, + [2948] = {.lex_state = 131}, + [2949] = {.lex_state = 4}, + [2950] = {.lex_state = 131}, + [2951] = {.lex_state = 131}, + [2952] = {.lex_state = 131}, + [2953] = {.lex_state = 131}, + [2954] = {.lex_state = 7}, + [2955] = {.lex_state = 131}, + [2956] = {.lex_state = 131}, + [2957] = {.lex_state = 131}, + [2958] = {.lex_state = 131}, + [2959] = {.lex_state = 131}, [2960] = {.lex_state = 131}, - [2961] = {.lex_state = 130}, - [2962] = {.lex_state = 130}, - [2963] = {.lex_state = 130}, - [2964] = {.lex_state = 130}, - [2965] = {.lex_state = 130}, - [2966] = {.lex_state = 130}, - [2967] = {.lex_state = 130}, - [2968] = {.lex_state = 130}, - [2969] = {.lex_state = 130}, + [2961] = {.lex_state = 131}, + [2962] = {.lex_state = 131}, + [2963] = {.lex_state = 131}, + [2964] = {.lex_state = 131}, + [2965] = {.lex_state = 131}, + [2966] = {.lex_state = 131}, + [2967] = {.lex_state = 131}, + [2968] = {.lex_state = 131}, + [2969] = {.lex_state = 131}, [2970] = {.lex_state = 131}, - [2971] = {.lex_state = 130}, - [2972] = {.lex_state = 130}, - [2973] = {.lex_state = 130}, + [2971] = {.lex_state = 131}, + [2972] = {.lex_state = 132}, + [2973] = {.lex_state = 131}, [2974] = {.lex_state = 131}, - [2975] = {.lex_state = 130}, - [2976] = {.lex_state = 130}, + [2975] = {.lex_state = 131}, + [2976] = {.lex_state = 131}, [2977] = {.lex_state = 131}, - [2978] = {.lex_state = 130}, - [2979] = {.lex_state = 130}, - [2980] = {.lex_state = 130}, - [2981] = {.lex_state = 130}, - [2982] = {.lex_state = 130}, - [2983] = {.lex_state = 130}, - [2984] = {.lex_state = 130}, - [2985] = {.lex_state = 130}, - [2986] = {.lex_state = 130}, - [2987] = {.lex_state = 130}, - [2988] = {.lex_state = 130}, - [2989] = {.lex_state = 130}, - [2990] = {.lex_state = 130}, - [2991] = {.lex_state = 130}, - [2992] = {.lex_state = 130}, - [2993] = {.lex_state = 130}, - [2994] = {.lex_state = 130}, - [2995] = {.lex_state = 130}, - [2996] = {.lex_state = 130}, - [2997] = {.lex_state = 130}, - [2998] = {.lex_state = 130}, - [2999] = {.lex_state = 130}, - [3000] = {.lex_state = 130}, - [3001] = {.lex_state = 4}, - [3002] = {.lex_state = 130}, - [3003] = {.lex_state = 130}, - [3004] = {.lex_state = 130}, - [3005] = {.lex_state = 130}, - [3006] = {.lex_state = 130}, + [2978] = {.lex_state = 132}, + [2979] = {.lex_state = 132}, + [2980] = {.lex_state = 131}, + [2981] = {.lex_state = 131}, + [2982] = {.lex_state = 131}, + [2983] = {.lex_state = 131}, + [2984] = {.lex_state = 131}, + [2985] = {.lex_state = 131}, + [2986] = {.lex_state = 4}, + [2987] = {.lex_state = 131}, + [2988] = {.lex_state = 131}, + [2989] = {.lex_state = 131}, + [2990] = {.lex_state = 132}, + [2991] = {.lex_state = 131}, + [2992] = {.lex_state = 131}, + [2993] = {.lex_state = 131}, + [2994] = {.lex_state = 131}, + [2995] = {.lex_state = 131}, + [2996] = {.lex_state = 131}, + [2997] = {.lex_state = 131}, + [2998] = {.lex_state = 10}, + [2999] = {.lex_state = 131}, + [3000] = {.lex_state = 131}, + [3001] = {.lex_state = 131}, + [3002] = {.lex_state = 131}, + [3003] = {.lex_state = 132}, + [3004] = {.lex_state = 131}, + [3005] = {.lex_state = 131}, + [3006] = {.lex_state = 131}, [3007] = {.lex_state = 131}, - [3008] = {.lex_state = 130}, - [3009] = {.lex_state = 130}, - [3010] = {.lex_state = 130}, - [3011] = {.lex_state = 130}, - [3012] = {.lex_state = 130}, - [3013] = {.lex_state = 4}, - [3014] = {.lex_state = 130}, - [3015] = {.lex_state = 4}, - [3016] = {.lex_state = 130}, - [3017] = {.lex_state = 130}, - [3018] = {.lex_state = 130}, - [3019] = {.lex_state = 130}, - [3020] = {.lex_state = 130}, - [3021] = {.lex_state = 130}, - [3022] = {.lex_state = 130}, - [3023] = {.lex_state = 131}, - [3024] = {.lex_state = 130}, - [3025] = {.lex_state = 130}, + [3008] = {.lex_state = 131}, + [3009] = {.lex_state = 131}, + [3010] = {.lex_state = 131}, + [3011] = {.lex_state = 131}, + [3012] = {.lex_state = 131}, + [3013] = {.lex_state = 131}, + [3014] = {.lex_state = 131}, + [3015] = {.lex_state = 131}, + [3016] = {.lex_state = 131}, + [3017] = {.lex_state = 131}, + [3018] = {.lex_state = 132}, + [3019] = {.lex_state = 131}, + [3020] = {.lex_state = 131}, + [3021] = {.lex_state = 131}, + [3022] = {.lex_state = 131}, + [3023] = {.lex_state = 4}, + [3024] = {.lex_state = 131}, + [3025] = {.lex_state = 131}, [3026] = {.lex_state = 131}, [3027] = {.lex_state = 131}, - [3028] = {.lex_state = 130}, - [3029] = {.lex_state = 130}, - [3030] = {.lex_state = 4}, + [3028] = {.lex_state = 131}, + [3029] = {.lex_state = 131}, + [3030] = {.lex_state = 131}, [3031] = {.lex_state = 131}, - [3032] = {.lex_state = 130}, - [3033] = {.lex_state = 130}, - [3034] = {.lex_state = 131}, - [3035] = {.lex_state = 130}, + [3032] = {.lex_state = 131}, + [3033] = {.lex_state = 131}, + [3034] = {.lex_state = 132}, + [3035] = {.lex_state = 131}, [3036] = {.lex_state = 131}, - [3037] = {.lex_state = 4}, + [3037] = {.lex_state = 131}, [3038] = {.lex_state = 131}, - [3039] = {.lex_state = 5}, + [3039] = {.lex_state = 131}, [3040] = {.lex_state = 131}, - [3041] = {.lex_state = 131}, - [3042] = {.lex_state = 4}, - [3043] = {.lex_state = 10}, - [3044] = {.lex_state = 130}, + [3041] = {.lex_state = 132}, + [3042] = {.lex_state = 131}, + [3043] = {.lex_state = 131}, + [3044] = {.lex_state = 131}, [3045] = {.lex_state = 131}, - [3046] = {.lex_state = 6}, + [3046] = {.lex_state = 131}, [3047] = {.lex_state = 131}, - [3048] = {.lex_state = 5}, + [3048] = {.lex_state = 131}, [3049] = {.lex_state = 131}, [3050] = {.lex_state = 131}, [3051] = {.lex_state = 131}, - [3052] = {.lex_state = 6}, - [3053] = {.lex_state = 5, .external_lex_state = 4}, - [3054] = {.lex_state = 130}, - [3055] = {.lex_state = 4}, - [3056] = {.lex_state = 6}, - [3057] = {.lex_state = 5}, - [3058] = {.lex_state = 6}, - [3059] = {.lex_state = 4}, - [3060] = {.lex_state = 130}, - [3061] = {.lex_state = 5}, - [3062] = {.lex_state = 130}, - [3063] = {.lex_state = 130}, - [3064] = {.lex_state = 130}, - [3065] = {.lex_state = 130}, + [3052] = {.lex_state = 131}, + [3053] = {.lex_state = 131}, + [3054] = {.lex_state = 131}, + [3055] = {.lex_state = 131}, + [3056] = {.lex_state = 131}, + [3057] = {.lex_state = 131}, + [3058] = {.lex_state = 131}, + [3059] = {.lex_state = 131}, + [3060] = {.lex_state = 132}, + [3061] = {.lex_state = 131}, + [3062] = {.lex_state = 131}, + [3063] = {.lex_state = 131}, + [3064] = {.lex_state = 131}, + [3065] = {.lex_state = 131}, [3066] = {.lex_state = 131}, - [3067] = {.lex_state = 130}, - [3068] = {.lex_state = 130}, - [3069] = {.lex_state = 130}, - [3070] = {.lex_state = 130}, - [3071] = {.lex_state = 5, .external_lex_state = 4}, - [3072] = {.lex_state = 130}, - [3073] = {.lex_state = 130}, - [3074] = {.lex_state = 130}, - [3075] = {.lex_state = 5, .external_lex_state = 4}, - [3076] = {.lex_state = 5, .external_lex_state = 4}, - [3077] = {.lex_state = 130}, - [3078] = {.lex_state = 130}, - [3079] = {.lex_state = 5, .external_lex_state = 4}, - [3080] = {.lex_state = 130}, - [3081] = {.lex_state = 5, .external_lex_state = 4}, - [3082] = {.lex_state = 130}, - [3083] = {.lex_state = 130}, - [3084] = {.lex_state = 130}, - [3085] = {.lex_state = 130}, - [3086] = {.lex_state = 130}, - [3087] = {.lex_state = 130}, - [3088] = {.lex_state = 130}, - [3089] = {.lex_state = 5, .external_lex_state = 4}, - [3090] = {.lex_state = 5, .external_lex_state = 4}, - [3091] = {.lex_state = 130}, - [3092] = {.lex_state = 130}, - [3093] = {.lex_state = 130}, - [3094] = {.lex_state = 130}, - [3095] = {.lex_state = 130}, - [3096] = {.lex_state = 130}, - [3097] = {.lex_state = 5, .external_lex_state = 4}, - [3098] = {.lex_state = 130}, - [3099] = {.lex_state = 130}, - [3100] = {.lex_state = 130}, - [3101] = {.lex_state = 130}, - [3102] = {.lex_state = 6}, - [3103] = {.lex_state = 130}, - [3104] = {.lex_state = 130}, - [3105] = {.lex_state = 5, .external_lex_state = 4}, - [3106] = {.lex_state = 4}, - [3107] = {.lex_state = 130}, - [3108] = {.lex_state = 130}, - [3109] = {.lex_state = 6}, - [3110] = {.lex_state = 6}, - [3111] = {.lex_state = 5, .external_lex_state = 4}, - [3112] = {.lex_state = 5, .external_lex_state = 4}, - [3113] = {.lex_state = 130}, + [3067] = {.lex_state = 132}, + [3068] = {.lex_state = 131}, + [3069] = {.lex_state = 4}, + [3070] = {.lex_state = 131}, + [3071] = {.lex_state = 131}, + [3072] = {.lex_state = 131}, + [3073] = {.lex_state = 131}, + [3074] = {.lex_state = 131}, + [3075] = {.lex_state = 131}, + [3076] = {.lex_state = 131}, + [3077] = {.lex_state = 131}, + [3078] = {.lex_state = 131}, + [3079] = {.lex_state = 131}, + [3080] = {.lex_state = 131}, + [3081] = {.lex_state = 131}, + [3082] = {.lex_state = 131}, + [3083] = {.lex_state = 131}, + [3084] = {.lex_state = 131}, + [3085] = {.lex_state = 131}, + [3086] = {.lex_state = 131}, + [3087] = {.lex_state = 131}, + [3088] = {.lex_state = 131}, + [3089] = {.lex_state = 131}, + [3090] = {.lex_state = 131}, + [3091] = {.lex_state = 131}, + [3092] = {.lex_state = 4}, + [3093] = {.lex_state = 131}, + [3094] = {.lex_state = 131}, + [3095] = {.lex_state = 131}, + [3096] = {.lex_state = 131}, + [3097] = {.lex_state = 131}, + [3098] = {.lex_state = 131}, + [3099] = {.lex_state = 131}, + [3100] = {.lex_state = 132}, + [3101] = {.lex_state = 131}, + [3102] = {.lex_state = 131}, + [3103] = {.lex_state = 131}, + [3104] = {.lex_state = 131}, + [3105] = {.lex_state = 131}, + [3106] = {.lex_state = 131}, + [3107] = {.lex_state = 131}, + [3108] = {.lex_state = 131}, + [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 = 130}, - [3116] = {.lex_state = 6}, - [3117] = {.lex_state = 130}, - [3118] = {.lex_state = 130}, - [3119] = {.lex_state = 130}, - [3120] = {.lex_state = 130}, - [3121] = {.lex_state = 5, .external_lex_state = 4}, - [3122] = {.lex_state = 5, .external_lex_state = 4}, - [3123] = {.lex_state = 130}, - [3124] = {.lex_state = 7}, - [3125] = {.lex_state = 130}, - [3126] = {.lex_state = 5, .external_lex_state = 4}, - [3127] = {.lex_state = 5, .external_lex_state = 4}, - [3128] = {.lex_state = 130}, - [3129] = {.lex_state = 130}, - [3130] = {.lex_state = 5, .external_lex_state = 4}, - [3131] = {.lex_state = 5, .external_lex_state = 4}, - [3132] = {.lex_state = 5, .external_lex_state = 4}, - [3133] = {.lex_state = 130}, - [3134] = {.lex_state = 5, .external_lex_state = 4}, - [3135] = {.lex_state = 5, .external_lex_state = 4}, - [3136] = {.lex_state = 130}, - [3137] = {.lex_state = 130}, - [3138] = {.lex_state = 130}, - [3139] = {.lex_state = 5}, - [3140] = {.lex_state = 130}, - [3141] = {.lex_state = 130}, - [3142] = {.lex_state = 130}, - [3143] = {.lex_state = 130}, - [3144] = {.lex_state = 130}, - [3145] = {.lex_state = 130}, - [3146] = {.lex_state = 130}, - [3147] = {.lex_state = 130}, - [3148] = {.lex_state = 130}, - [3149] = {.lex_state = 130}, - [3150] = {.lex_state = 130}, - [3151] = {.lex_state = 130}, - [3152] = {.lex_state = 130}, - [3153] = {.lex_state = 6}, - [3154] = {.lex_state = 5}, - [3155] = {.lex_state = 5}, + [3115] = {.lex_state = 131}, + [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}, + [3126] = {.lex_state = 5}, + [3127] = {.lex_state = 131}, + [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}, + [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}, + [3146] = {.lex_state = 131}, + [3147] = {.lex_state = 5, .external_lex_state = 4}, + [3148] = {.lex_state = 6}, + [3149] = {.lex_state = 6}, + [3150] = {.lex_state = 131}, + [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 = 130}, - [3158] = {.lex_state = 130}, - [3159] = {.lex_state = 130}, - [3160] = {.lex_state = 130}, - [3161] = {.lex_state = 130}, - [3162] = {.lex_state = 5, .external_lex_state = 4}, - [3163] = {.lex_state = 4}, - [3164] = {.lex_state = 130}, - [3165] = {.lex_state = 130}, - [3166] = {.lex_state = 130}, - [3167] = {.lex_state = 130}, - [3168] = {.lex_state = 130}, - [3169] = {.lex_state = 130}, - [3170] = {.lex_state = 130}, - [3171] = {.lex_state = 130}, + [3157] = {.lex_state = 5, .external_lex_state = 4}, + [3158] = {.lex_state = 131}, + [3159] = {.lex_state = 5, .external_lex_state = 4}, + [3160] = {.lex_state = 131}, + [3161] = {.lex_state = 5, .external_lex_state = 4}, + [3162] = {.lex_state = 4}, + [3163] = {.lex_state = 131}, + [3164] = {.lex_state = 131}, + [3165] = {.lex_state = 5, .external_lex_state = 4}, + [3166] = {.lex_state = 131}, + [3167] = {.lex_state = 6}, + [3168] = {.lex_state = 131}, + [3169] = {.lex_state = 5, .external_lex_state = 4}, + [3170] = {.lex_state = 131}, + [3171] = {.lex_state = 131}, [3172] = {.lex_state = 131}, - [3173] = {.lex_state = 130}, + [3173] = {.lex_state = 5, .external_lex_state = 4}, [3174] = {.lex_state = 131}, - [3175] = {.lex_state = 130}, - [3176] = {.lex_state = 130}, - [3177] = {.lex_state = 7}, - [3178] = {.lex_state = 130}, - [3179] = {.lex_state = 130}, - [3180] = {.lex_state = 130}, + [3175] = {.lex_state = 5, .external_lex_state = 4}, + [3176] = {.lex_state = 131}, + [3177] = {.lex_state = 131}, + [3178] = {.lex_state = 131}, + [3179] = {.lex_state = 131}, + [3180] = {.lex_state = 5, .external_lex_state = 4}, [3181] = {.lex_state = 131}, [3182] = {.lex_state = 131}, [3183] = {.lex_state = 131}, - [3184] = {.lex_state = 130}, - [3185] = {.lex_state = 130}, - [3186] = {.lex_state = 130}, - [3187] = {.lex_state = 130}, - [3188] = {.lex_state = 130}, - [3189] = {.lex_state = 130}, - [3190] = {.lex_state = 130}, - [3191] = {.lex_state = 130}, - [3192] = {.lex_state = 130}, - [3193] = {.lex_state = 130}, - [3194] = {.lex_state = 130}, - [3195] = {.lex_state = 130}, - [3196] = {.lex_state = 130}, - [3197] = {.lex_state = 130}, - [3198] = {.lex_state = 130}, - [3199] = {.lex_state = 130}, - [3200] = {.lex_state = 130}, - [3201] = {.lex_state = 130}, - [3202] = {.lex_state = 130}, - [3203] = {.lex_state = 130}, - [3204] = {.lex_state = 130}, - [3205] = {.lex_state = 130}, - [3206] = {.lex_state = 130}, - [3207] = {.lex_state = 130}, - [3208] = {.lex_state = 130}, - [3209] = {.lex_state = 130}, - [3210] = {.lex_state = 131}, - [3211] = {.lex_state = 130}, - [3212] = {.lex_state = 130}, - [3213] = {.lex_state = 130}, - [3214] = {.lex_state = 130}, - [3215] = {.lex_state = 130}, - [3216] = {.lex_state = 130}, - [3217] = {.lex_state = 130}, - [3218] = {.lex_state = 130}, - [3219] = {.lex_state = 130}, - [3220] = {.lex_state = 130}, - [3221] = {.lex_state = 130}, - [3222] = {.lex_state = 130}, - [3223] = {.lex_state = 130}, - [3224] = {.lex_state = 130}, - [3225] = {.lex_state = 130}, - [3226] = {.lex_state = 130}, - [3227] = {.lex_state = 130}, - [3228] = {.lex_state = 130}, - [3229] = {.lex_state = 130}, - [3230] = {.lex_state = 130}, - [3231] = {.lex_state = 130}, - [3232] = {.lex_state = 130}, - [3233] = {.lex_state = 130}, - [3234] = {.lex_state = 130}, - [3235] = {.lex_state = 130}, - [3236] = {.lex_state = 130}, - [3237] = {.lex_state = 130}, - [3238] = {.lex_state = 130}, - [3239] = {.lex_state = 130}, - [3240] = {.lex_state = 130}, - [3241] = {.lex_state = 130}, - [3242] = {.lex_state = 130}, - [3243] = {.lex_state = 130}, - [3244] = {.lex_state = 130}, - [3245] = {.lex_state = 130}, - [3246] = {.lex_state = 130}, - [3247] = {.lex_state = 130}, - [3248] = {.lex_state = 130}, - [3249] = {.lex_state = 130}, - [3250] = {.lex_state = 130}, - [3251] = {.lex_state = 130}, - [3252] = {.lex_state = 130}, - [3253] = {.lex_state = 130}, - [3254] = {.lex_state = 130}, - [3255] = {.lex_state = 130}, - [3256] = {.lex_state = 130}, - [3257] = {.lex_state = 130}, - [3258] = {.lex_state = 130}, - [3259] = {.lex_state = 130}, - [3260] = {.lex_state = 130}, - [3261] = {.lex_state = 130}, - [3262] = {.lex_state = 130}, - [3263] = {.lex_state = 130}, - [3264] = {.lex_state = 130}, - [3265] = {.lex_state = 130}, - [3266] = {.lex_state = 130}, - [3267] = {.lex_state = 130}, - [3268] = {.lex_state = 130}, - [3269] = {.lex_state = 130}, - [3270] = {.lex_state = 130}, - [3271] = {.lex_state = 130}, - [3272] = {.lex_state = 130}, - [3273] = {.lex_state = 130}, - [3274] = {.lex_state = 130}, - [3275] = {.lex_state = 130}, - [3276] = {.lex_state = 130}, - [3277] = {.lex_state = 130}, - [3278] = {.lex_state = 130}, - [3279] = {.lex_state = 130}, - [3280] = {.lex_state = 130}, - [3281] = {.lex_state = 130}, - [3282] = {.lex_state = 130}, - [3283] = {.lex_state = 130}, - [3284] = {.lex_state = 130}, - [3285] = {.lex_state = 130}, - [3286] = {.lex_state = 130}, + [3184] = {.lex_state = 5, .external_lex_state = 4}, + [3185] = {.lex_state = 131}, + [3186] = {.lex_state = 5, .external_lex_state = 4}, + [3187] = {.lex_state = 131}, + [3188] = {.lex_state = 5, .external_lex_state = 4}, + [3189] = {.lex_state = 5, .external_lex_state = 4}, + [3190] = {.lex_state = 5, .external_lex_state = 4}, + [3191] = {.lex_state = 131}, + [3192] = {.lex_state = 131}, + [3193] = {.lex_state = 131}, + [3194] = {.lex_state = 131}, + [3195] = {.lex_state = 6}, + [3196] = {.lex_state = 131}, + [3197] = {.lex_state = 5, .external_lex_state = 4}, + [3198] = {.lex_state = 131}, + [3199] = {.lex_state = 132}, + [3200] = {.lex_state = 131}, + [3201] = {.lex_state = 131}, + [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}, + [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}, + [3215] = {.lex_state = 131}, + [3216] = {.lex_state = 131}, + [3217] = {.lex_state = 5, .external_lex_state = 4}, + [3218] = {.lex_state = 131}, + [3219] = {.lex_state = 131}, + [3220] = {.lex_state = 131}, + [3221] = {.lex_state = 6}, + [3222] = {.lex_state = 131}, + [3223] = {.lex_state = 131}, + [3224] = {.lex_state = 5}, + [3225] = {.lex_state = 6}, + [3226] = {.lex_state = 7}, + [3227] = {.lex_state = 131}, + [3228] = {.lex_state = 131}, + [3229] = {.lex_state = 131}, + [3230] = {.lex_state = 131}, + [3231] = {.lex_state = 131}, + [3232] = {.lex_state = 131}, + [3233] = {.lex_state = 131}, + [3234] = {.lex_state = 131}, + [3235] = {.lex_state = 131}, + [3236] = {.lex_state = 131}, + [3237] = {.lex_state = 131}, + [3238] = {.lex_state = 131}, + [3239] = {.lex_state = 131}, + [3240] = {.lex_state = 131}, + [3241] = {.lex_state = 131}, + [3242] = {.lex_state = 131}, + [3243] = {.lex_state = 131}, + [3244] = {.lex_state = 131}, + [3245] = {.lex_state = 131}, + [3246] = {.lex_state = 131}, + [3247] = {.lex_state = 131}, + [3248] = {.lex_state = 131}, + [3249] = {.lex_state = 131}, + [3250] = {.lex_state = 131}, + [3251] = {.lex_state = 131}, + [3252] = {.lex_state = 131}, + [3253] = {.lex_state = 131}, + [3254] = {.lex_state = 131}, + [3255] = {.lex_state = 131}, + [3256] = {.lex_state = 131}, + [3257] = {.lex_state = 131}, + [3258] = {.lex_state = 131}, + [3259] = {.lex_state = 131}, + [3260] = {.lex_state = 6}, + [3261] = {.lex_state = 131}, + [3262] = {.lex_state = 131}, + [3263] = {.lex_state = 131}, + [3264] = {.lex_state = 131}, + [3265] = {.lex_state = 131}, + [3266] = {.lex_state = 131}, + [3267] = {.lex_state = 131}, + [3268] = {.lex_state = 7}, + [3269] = {.lex_state = 132}, + [3270] = {.lex_state = 131}, + [3271] = {.lex_state = 131}, + [3272] = {.lex_state = 131}, + [3273] = {.lex_state = 131}, + [3274] = {.lex_state = 131}, + [3275] = {.lex_state = 131}, + [3276] = {.lex_state = 131}, + [3277] = {.lex_state = 131}, + [3278] = {.lex_state = 131}, + [3279] = {.lex_state = 131}, + [3280] = {.lex_state = 5}, + [3281] = {.lex_state = 131}, + [3282] = {.lex_state = 131}, + [3283] = {.lex_state = 131}, + [3284] = {.lex_state = 131}, + [3285] = {.lex_state = 131}, + [3286] = {.lex_state = 131}, [3287] = {.lex_state = 131}, [3288] = {.lex_state = 131}, [3289] = {.lex_state = 131}, [3290] = {.lex_state = 131}, - [3291] = {.lex_state = 130}, - [3292] = {.lex_state = 130}, - [3293] = {.lex_state = 130}, - [3294] = {.lex_state = 130}, + [3291] = {.lex_state = 131}, + [3292] = {.lex_state = 131}, + [3293] = {.lex_state = 131}, + [3294] = {.lex_state = 132}, [3295] = {.lex_state = 131}, [3296] = {.lex_state = 131}, - [3297] = {.lex_state = 130}, + [3297] = {.lex_state = 131}, [3298] = {.lex_state = 131}, - [3299] = {.lex_state = 5}, - [3300] = {.lex_state = 131}, + [3299] = {.lex_state = 131}, + [3300] = {.lex_state = 132}, [3301] = {.lex_state = 131}, - [3302] = {.lex_state = 5, .external_lex_state = 4}, - [3303] = {.lex_state = 130}, - [3304] = {.lex_state = 130}, + [3302] = {.lex_state = 131}, + [3303] = {.lex_state = 131}, + [3304] = {.lex_state = 131}, [3305] = {.lex_state = 131}, - [3306] = {.lex_state = 130}, + [3306] = {.lex_state = 131}, [3307] = {.lex_state = 131}, - [3308] = {.lex_state = 5}, - [3309] = {.lex_state = 4}, - [3310] = {.lex_state = 4}, - [3311] = {.lex_state = 130}, + [3308] = {.lex_state = 131}, + [3309] = {.lex_state = 131}, + [3310] = {.lex_state = 131}, + [3311] = {.lex_state = 131}, [3312] = {.lex_state = 131}, - [3313] = {.lex_state = 130}, - [3314] = {.lex_state = 130}, + [3313] = {.lex_state = 131}, + [3314] = {.lex_state = 5, .external_lex_state = 4}, [3315] = {.lex_state = 131}, - [3316] = {.lex_state = 130}, + [3316] = {.lex_state = 131}, [3317] = {.lex_state = 131}, - [3318] = {.lex_state = 130}, - [3319] = {.lex_state = 5}, - [3320] = {.lex_state = 4}, - [3321] = {.lex_state = 130}, - [3322] = {.lex_state = 5}, - [3323] = {.lex_state = 130}, - [3324] = {.lex_state = 130}, - [3325] = {.lex_state = 130}, + [3318] = {.lex_state = 131}, + [3319] = {.lex_state = 131}, + [3320] = {.lex_state = 131}, + [3321] = {.lex_state = 131}, + [3322] = {.lex_state = 131}, + [3323] = {.lex_state = 131}, + [3324] = {.lex_state = 131}, + [3325] = {.lex_state = 131}, [3326] = {.lex_state = 131}, - [3327] = {.lex_state = 130}, + [3327] = {.lex_state = 5}, [3328] = {.lex_state = 131}, [3329] = {.lex_state = 131}, [3330] = {.lex_state = 131}, - [3331] = {.lex_state = 130}, + [3331] = {.lex_state = 132}, [3332] = {.lex_state = 131}, - [3333] = {.lex_state = 130}, - [3334] = {.lex_state = 130}, - [3335] = {.lex_state = 130}, + [3333] = {.lex_state = 131}, + [3334] = {.lex_state = 131}, + [3335] = {.lex_state = 131}, [3336] = {.lex_state = 131}, - [3337] = {.lex_state = 130}, - [3338] = {.lex_state = 130}, - [3339] = {.lex_state = 130}, - [3340] = {.lex_state = 130}, - [3341] = {.lex_state = 130}, - [3342] = {.lex_state = 130}, - [3343] = {.lex_state = 130}, - [3344] = {.lex_state = 130}, + [3337] = {.lex_state = 131}, + [3338] = {.lex_state = 131}, + [3339] = {.lex_state = 131}, + [3340] = {.lex_state = 131}, + [3341] = {.lex_state = 131}, + [3342] = {.lex_state = 131}, + [3343] = {.lex_state = 131}, + [3344] = {.lex_state = 131}, [3345] = {.lex_state = 131}, - [3346] = {.lex_state = 130}, - [3347] = {.lex_state = 130}, - [3348] = {.lex_state = 130}, - [3349] = {.lex_state = 130}, - [3350] = {.lex_state = 130}, - [3351] = {.lex_state = 130}, - [3352] = {.lex_state = 130}, - [3353] = {.lex_state = 130}, - [3354] = {.lex_state = 130}, - [3355] = {.lex_state = 131}, - [3356] = {.lex_state = 130}, - [3357] = {.lex_state = 130}, + [3346] = {.lex_state = 131}, + [3347] = {.lex_state = 4}, + [3348] = {.lex_state = 131}, + [3349] = {.lex_state = 131}, + [3350] = {.lex_state = 131}, + [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}, - [3359] = {.lex_state = 131}, - [3360] = {.lex_state = 130}, - [3361] = {.lex_state = 130}, - [3362] = {.lex_state = 130}, - [3363] = {.lex_state = 131}, + [3359] = {.lex_state = 132}, + [3360] = {.lex_state = 131}, + [3361] = {.lex_state = 131}, + [3362] = {.lex_state = 131}, + [3363] = {.lex_state = 132}, [3364] = {.lex_state = 131}, [3365] = {.lex_state = 131}, - [3366] = {.lex_state = 4}, - [3367] = {.lex_state = 130}, - [3368] = {.lex_state = 130}, + [3366] = {.lex_state = 132}, + [3367] = {.lex_state = 132}, + [3368] = {.lex_state = 131}, [3369] = {.lex_state = 131}, - [3370] = {.lex_state = 4}, - [3371] = {.lex_state = 130}, - [3372] = {.lex_state = 4}, - [3373] = {.lex_state = 130}, - [3374] = {.lex_state = 130}, - [3375] = {.lex_state = 130}, - [3376] = {.lex_state = 130}, - [3377] = {.lex_state = 130}, + [3370] = {.lex_state = 132}, + [3371] = {.lex_state = 131}, + [3372] = {.lex_state = 132}, + [3373] = {.lex_state = 131}, + [3374] = {.lex_state = 132}, + [3375] = {.lex_state = 132}, + [3376] = {.lex_state = 131}, + [3377] = {.lex_state = 132}, [3378] = {.lex_state = 131}, - [3379] = {.lex_state = 131}, - [3380] = {.lex_state = 130}, - [3381] = {.lex_state = 131}, - [3382] = {.lex_state = 130}, - [3383] = {.lex_state = 130}, - [3384] = {.lex_state = 130}, - [3385] = {.lex_state = 131}, - [3386] = {.lex_state = 130}, - [3387] = {.lex_state = 131}, - [3388] = {.lex_state = 130}, - [3389] = {.lex_state = 130}, - [3390] = {.lex_state = 130}, - [3391] = {.lex_state = 130}, + [3379] = {.lex_state = 4}, + [3380] = {.lex_state = 131}, + [3381] = {.lex_state = 132}, + [3382] = {.lex_state = 132}, + [3383] = {.lex_state = 131}, + [3384] = {.lex_state = 131}, + [3385] = {.lex_state = 132}, + [3386] = {.lex_state = 131}, + [3387] = {.lex_state = 132}, + [3388] = {.lex_state = 132}, + [3389] = {.lex_state = 132}, + [3390] = {.lex_state = 132}, + [3391] = {.lex_state = 5}, [3392] = {.lex_state = 4}, - [3393] = {.lex_state = 130}, - [3394] = {.lex_state = 130}, - [3395] = {.lex_state = 130}, - [3396] = {.lex_state = 130}, + [3393] = {.lex_state = 132}, + [3394] = {.lex_state = 131}, + [3395] = {.lex_state = 131}, + [3396] = {.lex_state = 132}, [3397] = {.lex_state = 131}, - [3398] = {.lex_state = 130}, - [3399] = {.lex_state = 131}, - [3400] = {.lex_state = 131}, - [3401] = {.lex_state = 130}, - [3402] = {.lex_state = 130}, - [3403] = {.lex_state = 130}, - [3404] = {.lex_state = 131}, - [3405] = {.lex_state = 130}, - [3406] = {.lex_state = 131}, - [3407] = {.lex_state = 131}, - [3408] = {.lex_state = 131}, - [3409] = {.lex_state = 131}, - [3410] = {.lex_state = 130}, - [3411] = {.lex_state = 130}, - [3412] = {.lex_state = 130}, - [3413] = {.lex_state = 131}, - [3414] = {.lex_state = 130}, + [3398] = {.lex_state = 132}, + [3399] = {.lex_state = 132}, + [3400] = {.lex_state = 132}, + [3401] = {.lex_state = 132}, + [3402] = {.lex_state = 4}, + [3403] = {.lex_state = 132}, + [3404] = {.lex_state = 132}, + [3405] = {.lex_state = 132}, + [3406] = {.lex_state = 132}, + [3407] = {.lex_state = 4}, + [3408] = {.lex_state = 5}, + [3409] = {.lex_state = 132}, + [3410] = {.lex_state = 132}, + [3411] = {.lex_state = 132}, + [3412] = {.lex_state = 132}, + [3413] = {.lex_state = 4}, + [3414] = {.lex_state = 131}, [3415] = {.lex_state = 131}, - [3416] = {.lex_state = 130}, + [3416] = {.lex_state = 132}, [3417] = {.lex_state = 131}, - [3418] = {.lex_state = 130}, - [3419] = {.lex_state = 130}, - [3420] = {.lex_state = 130}, - [3421] = {.lex_state = 130}, - [3422] = {.lex_state = 130}, - [3423] = {.lex_state = 131}, + [3418] = {.lex_state = 131}, + [3419] = {.lex_state = 132}, + [3420] = {.lex_state = 131}, + [3421] = {.lex_state = 131}, + [3422] = {.lex_state = 132}, + [3423] = {.lex_state = 132}, [3424] = {.lex_state = 131}, - [3425] = {.lex_state = 130}, - [3426] = {.lex_state = 130}, - [3427] = {.lex_state = 130}, + [3425] = {.lex_state = 132}, + [3426] = {.lex_state = 132}, + [3427] = {.lex_state = 131}, [3428] = {.lex_state = 131}, - [3429] = {.lex_state = 130}, + [3429] = {.lex_state = 131}, [3430] = {.lex_state = 131}, [3431] = {.lex_state = 131}, - [3432] = {.lex_state = 4}, + [3432] = {.lex_state = 131}, [3433] = {.lex_state = 131}, - [3434] = {.lex_state = 5, .external_lex_state = 4}, - [3435] = {.lex_state = 4}, - [3436] = {.lex_state = 131}, + [3434] = {.lex_state = 131}, + [3435] = {.lex_state = 131}, + [3436] = {.lex_state = 132}, [3437] = {.lex_state = 131}, - [3438] = {.lex_state = 4}, - [3439] = {.lex_state = 4}, - [3440] = {.lex_state = 131}, - [3441] = {.lex_state = 130}, - [3442] = {.lex_state = 5}, + [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}, [3444] = {.lex_state = 131}, - [3445] = {.lex_state = 131}, + [3445] = {.lex_state = 132}, [3446] = {.lex_state = 131}, [3447] = {.lex_state = 131}, [3448] = {.lex_state = 131}, [3449] = {.lex_state = 131}, - [3450] = {.lex_state = 5}, - [3451] = {.lex_state = 130}, + [3450] = {.lex_state = 131}, + [3451] = {.lex_state = 131}, [3452] = {.lex_state = 131}, - [3453] = {.lex_state = 130}, - [3454] = {.lex_state = 130}, - [3455] = {.lex_state = 130}, - [3456] = {.lex_state = 4}, - [3457] = {.lex_state = 4}, - [3458] = {.lex_state = 131}, - [3459] = {.lex_state = 131}, + [3453] = {.lex_state = 131}, + [3454] = {.lex_state = 132}, + [3455] = {.lex_state = 131}, + [3456] = {.lex_state = 131}, + [3457] = {.lex_state = 131}, + [3458] = {.lex_state = 5}, + [3459] = {.lex_state = 132}, [3460] = {.lex_state = 131}, [3461] = {.lex_state = 4}, [3462] = {.lex_state = 131}, @@ -20697,2077 +20977,2077 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3464] = {.lex_state = 131}, [3465] = {.lex_state = 131}, [3466] = {.lex_state = 131}, - [3467] = {.lex_state = 130}, + [3467] = {.lex_state = 132}, [3468] = {.lex_state = 131}, - [3469] = {.lex_state = 10}, - [3470] = {.lex_state = 10}, + [3469] = {.lex_state = 131}, + [3470] = {.lex_state = 131}, [3471] = {.lex_state = 131}, - [3472] = {.lex_state = 130}, - [3473] = {.lex_state = 130}, - [3474] = {.lex_state = 130}, - [3475] = {.lex_state = 10}, - [3476] = {.lex_state = 130}, - [3477] = {.lex_state = 4}, - [3478] = {.lex_state = 131}, - [3479] = {.lex_state = 4}, - [3480] = {.lex_state = 4}, + [3472] = {.lex_state = 131}, + [3473] = {.lex_state = 131}, + [3474] = {.lex_state = 131}, + [3475] = {.lex_state = 132}, + [3476] = {.lex_state = 132}, + [3477] = {.lex_state = 131}, + [3478] = {.lex_state = 132}, + [3479] = {.lex_state = 131}, + [3480] = {.lex_state = 131}, [3481] = {.lex_state = 131}, - [3482] = {.lex_state = 131}, - [3483] = {.lex_state = 131}, + [3482] = {.lex_state = 132}, + [3483] = {.lex_state = 132}, [3484] = {.lex_state = 131}, [3485] = {.lex_state = 131}, - [3486] = {.lex_state = 130}, + [3486] = {.lex_state = 131}, [3487] = {.lex_state = 131}, - [3488] = {.lex_state = 131}, - [3489] = {.lex_state = 130}, - [3490] = {.lex_state = 130}, - [3491] = {.lex_state = 131}, + [3488] = {.lex_state = 132}, + [3489] = {.lex_state = 132}, + [3490] = {.lex_state = 131}, + [3491] = {.lex_state = 132}, [3492] = {.lex_state = 131}, [3493] = {.lex_state = 131}, - [3494] = {.lex_state = 4}, - [3495] = {.lex_state = 10}, - [3496] = {.lex_state = 130}, - [3497] = {.lex_state = 130}, - [3498] = {.lex_state = 10}, - [3499] = {.lex_state = 4}, - [3500] = {.lex_state = 130}, - [3501] = {.lex_state = 130}, + [3494] = {.lex_state = 131}, + [3495] = {.lex_state = 131}, + [3496] = {.lex_state = 131}, + [3497] = {.lex_state = 131}, + [3498] = {.lex_state = 132}, + [3499] = {.lex_state = 132}, + [3500] = {.lex_state = 4}, + [3501] = {.lex_state = 132}, [3502] = {.lex_state = 131}, - [3503] = {.lex_state = 10}, - [3504] = {.lex_state = 130}, - [3505] = {.lex_state = 130}, - [3506] = {.lex_state = 4}, + [3503] = {.lex_state = 131}, + [3504] = {.lex_state = 131}, + [3505] = {.lex_state = 131}, + [3506] = {.lex_state = 132}, [3507] = {.lex_state = 131}, - [3508] = {.lex_state = 130}, + [3508] = {.lex_state = 5}, [3509] = {.lex_state = 131}, - [3510] = {.lex_state = 130}, - [3511] = {.lex_state = 130}, - [3512] = {.lex_state = 4}, - [3513] = {.lex_state = 10}, - [3514] = {.lex_state = 130}, - [3515] = {.lex_state = 130}, - [3516] = {.lex_state = 10}, + [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}, [3517] = {.lex_state = 131}, - [3518] = {.lex_state = 10}, + [3518] = {.lex_state = 132}, [3519] = {.lex_state = 131}, - [3520] = {.lex_state = 130}, - [3521] = {.lex_state = 4}, - [3522] = {.lex_state = 130}, - [3523] = {.lex_state = 130}, - [3524] = {.lex_state = 130}, - [3525] = {.lex_state = 10}, - [3526] = {.lex_state = 131}, - [3527] = {.lex_state = 4}, - [3528] = {.lex_state = 130}, - [3529] = {.lex_state = 10}, - [3530] = {.lex_state = 131}, - [3531] = {.lex_state = 131}, - [3532] = {.lex_state = 10}, - [3533] = {.lex_state = 131}, - [3534] = {.lex_state = 10}, - [3535] = {.lex_state = 130}, - [3536] = {.lex_state = 130}, - [3537] = {.lex_state = 131}, - [3538] = {.lex_state = 131}, - [3539] = {.lex_state = 131}, - [3540] = {.lex_state = 131}, - [3541] = {.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}, + [3526] = {.lex_state = 4}, + [3527] = {.lex_state = 5, .external_lex_state = 4}, + [3528] = {.lex_state = 132}, + [3529] = {.lex_state = 4}, + [3530] = {.lex_state = 4}, + [3531] = {.lex_state = 132}, + [3532] = {.lex_state = 132}, + [3533] = {.lex_state = 4}, + [3534] = {.lex_state = 131}, + [3535] = {.lex_state = 4}, + [3536] = {.lex_state = 132}, + [3537] = {.lex_state = 132}, + [3538] = {.lex_state = 132}, + [3539] = {.lex_state = 132}, + [3540] = {.lex_state = 132}, + [3541] = {.lex_state = 132}, [3542] = {.lex_state = 131}, - [3543] = {.lex_state = 130}, - [3544] = {.lex_state = 131}, - [3545] = {.lex_state = 131}, - [3546] = {.lex_state = 130}, - [3547] = {.lex_state = 4}, - [3548] = {.lex_state = 131}, - [3549] = {.lex_state = 131}, - [3550] = {.lex_state = 10}, - [3551] = {.lex_state = 131}, - [3552] = {.lex_state = 131}, - [3553] = {.lex_state = 131}, - [3554] = {.lex_state = 7}, - [3555] = {.lex_state = 130}, - [3556] = {.lex_state = 130}, - [3557] = {.lex_state = 130}, - [3558] = {.lex_state = 10}, - [3559] = {.lex_state = 130}, - [3560] = {.lex_state = 130}, - [3561] = {.lex_state = 130}, - [3562] = {.lex_state = 130}, - [3563] = {.lex_state = 130}, - [3564] = {.lex_state = 130}, - [3565] = {.lex_state = 130}, - [3566] = {.lex_state = 4}, + [3543] = {.lex_state = 131}, + [3544] = {.lex_state = 132}, + [3545] = {.lex_state = 132}, + [3546] = {.lex_state = 132}, + [3547] = {.lex_state = 132}, + [3548] = {.lex_state = 5}, + [3549] = {.lex_state = 132}, + [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}, + [3562] = {.lex_state = 132}, + [3563] = {.lex_state = 132}, + [3564] = {.lex_state = 132}, + [3565] = {.lex_state = 10}, + [3566] = {.lex_state = 131}, [3567] = {.lex_state = 131}, - [3568] = {.lex_state = 130}, - [3569] = {.lex_state = 130}, - [3570] = {.lex_state = 130}, - [3571] = {.lex_state = 130}, - [3572] = {.lex_state = 130}, - [3573] = {.lex_state = 130}, - [3574] = {.lex_state = 130}, - [3575] = {.lex_state = 130}, - [3576] = {.lex_state = 130}, - [3577] = {.lex_state = 130}, - [3578] = {.lex_state = 130}, - [3579] = {.lex_state = 130}, - [3580] = {.lex_state = 130}, - [3581] = {.lex_state = 4}, - [3582] = {.lex_state = 131}, - [3583] = {.lex_state = 130}, - [3584] = {.lex_state = 131}, - [3585] = {.lex_state = 130}, - [3586] = {.lex_state = 130}, - [3587] = {.lex_state = 130}, - [3588] = {.lex_state = 130}, - [3589] = {.lex_state = 10}, - [3590] = {.lex_state = 130}, - [3591] = {.lex_state = 130}, - [3592] = {.lex_state = 130}, - [3593] = {.lex_state = 130}, - [3594] = {.lex_state = 130}, - [3595] = {.lex_state = 5}, - [3596] = {.lex_state = 130}, + [3568] = {.lex_state = 131}, + [3569] = {.lex_state = 10}, + [3570] = {.lex_state = 10}, + [3571] = {.lex_state = 131}, + [3572] = {.lex_state = 132}, + [3573] = {.lex_state = 10}, + [3574] = {.lex_state = 131}, + [3575] = {.lex_state = 131}, + [3576] = {.lex_state = 132}, + [3577] = {.lex_state = 131}, + [3578] = {.lex_state = 132}, + [3579] = {.lex_state = 131}, + [3580] = {.lex_state = 132}, + [3581] = {.lex_state = 132}, + [3582] = {.lex_state = 132}, + [3583] = {.lex_state = 10}, + [3584] = {.lex_state = 132}, + [3585] = {.lex_state = 131}, + [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}, + [3594] = {.lex_state = 132}, + [3595] = {.lex_state = 4}, + [3596] = {.lex_state = 132}, [3597] = {.lex_state = 131}, [3598] = {.lex_state = 131}, - [3599] = {.lex_state = 131}, - [3600] = {.lex_state = 130}, - [3601] = {.lex_state = 131}, + [3599] = {.lex_state = 132}, + [3600] = {.lex_state = 10}, + [3601] = {.lex_state = 10}, [3602] = {.lex_state = 131}, - [3603] = {.lex_state = 131}, - [3604] = {.lex_state = 130}, - [3605] = {.lex_state = 130}, - [3606] = {.lex_state = 130}, - [3607] = {.lex_state = 130}, - [3608] = {.lex_state = 130}, - [3609] = {.lex_state = 130}, - [3610] = {.lex_state = 130}, - [3611] = {.lex_state = 4}, - [3612] = {.lex_state = 130}, - [3613] = {.lex_state = 130}, - [3614] = {.lex_state = 130}, - [3615] = {.lex_state = 130}, - [3616] = {.lex_state = 131}, - [3617] = {.lex_state = 130}, - [3618] = {.lex_state = 130}, - [3619] = {.lex_state = 130}, - [3620] = {.lex_state = 4}, - [3621] = {.lex_state = 131}, - [3622] = {.lex_state = 131}, - [3623] = {.lex_state = 130}, - [3624] = {.lex_state = 4}, - [3625] = {.lex_state = 130}, - [3626] = {.lex_state = 130}, - [3627] = {.lex_state = 130}, - [3628] = {.lex_state = 130}, + [3603] = {.lex_state = 132}, + [3604] = {.lex_state = 131}, + [3605] = {.lex_state = 131}, + [3606] = {.lex_state = 10}, + [3607] = {.lex_state = 131}, + [3608] = {.lex_state = 10}, + [3609] = {.lex_state = 132}, + [3610] = {.lex_state = 4}, + [3611] = {.lex_state = 132}, + [3612] = {.lex_state = 132}, + [3613] = {.lex_state = 132}, + [3614] = {.lex_state = 10}, + [3615] = {.lex_state = 132}, + [3616] = {.lex_state = 4}, + [3617] = {.lex_state = 10}, + [3618] = {.lex_state = 131}, + [3619] = {.lex_state = 132}, + [3620] = {.lex_state = 132}, + [3621] = {.lex_state = 132}, + [3622] = {.lex_state = 132}, + [3623] = {.lex_state = 10}, + [3624] = {.lex_state = 131}, + [3625] = {.lex_state = 132}, + [3626] = {.lex_state = 131}, + [3627] = {.lex_state = 132}, + [3628] = {.lex_state = 132}, [3629] = {.lex_state = 131}, - [3630] = {.lex_state = 131}, - [3631] = {.lex_state = 130}, - [3632] = {.lex_state = 131}, - [3633] = {.lex_state = 131}, - [3634] = {.lex_state = 130}, - [3635] = {.lex_state = 130}, + [3630] = {.lex_state = 4}, + [3631] = {.lex_state = 131}, + [3632] = {.lex_state = 4}, + [3633] = {.lex_state = 132}, + [3634] = {.lex_state = 132}, + [3635] = {.lex_state = 10}, [3636] = {.lex_state = 131}, - [3637] = {.lex_state = 130}, + [3637] = {.lex_state = 4}, [3638] = {.lex_state = 131}, - [3639] = {.lex_state = 131}, - [3640] = {.lex_state = 130}, - [3641] = {.lex_state = 131}, - [3642] = {.lex_state = 131}, - [3643] = {.lex_state = 130}, - [3644] = {.lex_state = 130}, - [3645] = {.lex_state = 130}, - [3646] = {.lex_state = 130}, - [3647] = {.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}, + [3646] = {.lex_state = 132}, + [3647] = {.lex_state = 132}, [3648] = {.lex_state = 131}, - [3649] = {.lex_state = 130}, - [3650] = {.lex_state = 131}, + [3649] = {.lex_state = 131}, + [3650] = {.lex_state = 7}, [3651] = {.lex_state = 131}, - [3652] = {.lex_state = 131}, - [3653] = {.lex_state = 131}, - [3654] = {.lex_state = 130}, + [3652] = {.lex_state = 132}, + [3653] = {.lex_state = 4}, + [3654] = {.lex_state = 131}, [3655] = {.lex_state = 131}, - [3656] = {.lex_state = 130}, + [3656] = {.lex_state = 4}, [3657] = {.lex_state = 131}, [3658] = {.lex_state = 131}, [3659] = {.lex_state = 131}, - [3660] = {.lex_state = 130}, - [3661] = {.lex_state = 130}, - [3662] = {.lex_state = 130}, - [3663] = {.lex_state = 130}, - [3664] = {.lex_state = 130}, - [3665] = {.lex_state = 130}, - [3666] = {.lex_state = 130}, + [3660] = {.lex_state = 131}, + [3661] = {.lex_state = 131}, + [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 = 130}, + [3668] = {.lex_state = 132}, [3669] = {.lex_state = 131}, - [3670] = {.lex_state = 130}, + [3670] = {.lex_state = 132}, [3671] = {.lex_state = 131}, - [3672] = {.lex_state = 130}, - [3673] = {.lex_state = 130}, + [3672] = {.lex_state = 131}, + [3673] = {.lex_state = 131}, [3674] = {.lex_state = 131}, [3675] = {.lex_state = 131}, - [3676] = {.lex_state = 130}, - [3677] = {.lex_state = 130}, - [3678] = {.lex_state = 130}, - [3679] = {.lex_state = 130}, - [3680] = {.lex_state = 130}, - [3681] = {.lex_state = 131}, - [3682] = {.lex_state = 130}, - [3683] = {.lex_state = 130}, - [3684] = {.lex_state = 130}, - [3685] = {.lex_state = 130}, + [3676] = {.lex_state = 131}, + [3677] = {.lex_state = 4}, + [3678] = {.lex_state = 131}, + [3679] = {.lex_state = 131}, + [3680] = {.lex_state = 131}, + [3681] = {.lex_state = 4}, + [3682] = {.lex_state = 131}, + [3683] = {.lex_state = 131}, + [3684] = {.lex_state = 131}, + [3685] = {.lex_state = 132}, [3686] = {.lex_state = 131}, - [3687] = {.lex_state = 130}, - [3688] = {.lex_state = 130}, + [3687] = {.lex_state = 4}, + [3688] = {.lex_state = 131}, [3689] = {.lex_state = 131}, - [3690] = {.lex_state = 130}, - [3691] = {.lex_state = 131}, - [3692] = {.lex_state = 130}, + [3690] = {.lex_state = 132}, + [3691] = {.lex_state = 10}, + [3692] = {.lex_state = 131}, [3693] = {.lex_state = 131}, - [3694] = {.lex_state = 130}, - [3695] = {.lex_state = 130}, - [3696] = {.lex_state = 130}, - [3697] = {.lex_state = 130}, + [3694] = {.lex_state = 132}, + [3695] = {.lex_state = 132}, + [3696] = {.lex_state = 131}, + [3697] = {.lex_state = 131}, [3698] = {.lex_state = 131}, - [3699] = {.lex_state = 130}, + [3699] = {.lex_state = 131}, [3700] = {.lex_state = 131}, - [3701] = {.lex_state = 130}, + [3701] = {.lex_state = 131}, [3702] = {.lex_state = 131}, - [3703] = {.lex_state = 130}, - [3704] = {.lex_state = 130}, - [3705] = {.lex_state = 130}, + [3703] = {.lex_state = 131}, + [3704] = {.lex_state = 131}, + [3705] = {.lex_state = 131}, [3706] = {.lex_state = 131}, [3707] = {.lex_state = 131}, - [3708] = {.lex_state = 130}, - [3709] = {.lex_state = 130}, - [3710] = {.lex_state = 130}, - [3711] = {.lex_state = 130}, - [3712] = {.lex_state = 130}, - [3713] = {.lex_state = 130}, - [3714] = {.lex_state = 130}, - [3715] = {.lex_state = 130}, - [3716] = {.lex_state = 130}, - [3717] = {.lex_state = 130}, + [3708] = {.lex_state = 131}, + [3709] = {.lex_state = 131}, + [3710] = {.lex_state = 131}, + [3711] = {.lex_state = 131}, + [3712] = {.lex_state = 132}, + [3713] = {.lex_state = 131}, + [3714] = {.lex_state = 131}, + [3715] = {.lex_state = 131}, + [3716] = {.lex_state = 131}, + [3717] = {.lex_state = 131}, [3718] = {.lex_state = 131}, - [3719] = {.lex_state = 130}, + [3719] = {.lex_state = 132}, [3720] = {.lex_state = 131}, - [3721] = {.lex_state = 130}, - [3722] = {.lex_state = 130}, - [3723] = {.lex_state = 130}, - [3724] = {.lex_state = 130}, - [3725] = {.lex_state = 130}, - [3726] = {.lex_state = 130}, - [3727] = {.lex_state = 131}, - [3728] = {.lex_state = 130}, - [3729] = {.lex_state = 130}, + [3721] = {.lex_state = 131}, + [3722] = {.lex_state = 131}, + [3723] = {.lex_state = 131}, + [3724] = {.lex_state = 131}, + [3725] = {.lex_state = 131}, + [3726] = {.lex_state = 131}, + [3727] = {.lex_state = 132}, + [3728] = {.lex_state = 131}, + [3729] = {.lex_state = 131}, [3730] = {.lex_state = 131}, - [3731] = {.lex_state = 130}, - [3732] = {.lex_state = 130}, - [3733] = {.lex_state = 130}, + [3731] = {.lex_state = 131}, + [3732] = {.lex_state = 131}, + [3733] = {.lex_state = 131}, [3734] = {.lex_state = 131}, [3735] = {.lex_state = 131}, - [3736] = {.lex_state = 130}, - [3737] = {.lex_state = 130}, - [3738] = {.lex_state = 131}, - [3739] = {.lex_state = 131}, + [3736] = {.lex_state = 132}, + [3737] = {.lex_state = 131}, + [3738] = {.lex_state = 132}, + [3739] = {.lex_state = 132}, [3740] = {.lex_state = 131}, [3741] = {.lex_state = 131}, - [3742] = {.lex_state = 130}, - [3743] = {.lex_state = 130}, + [3742] = {.lex_state = 131}, + [3743] = {.lex_state = 131}, [3744] = {.lex_state = 131}, - [3745] = {.lex_state = 130}, + [3745] = {.lex_state = 131}, [3746] = {.lex_state = 131}, [3747] = {.lex_state = 131}, [3748] = {.lex_state = 131}, - [3749] = {.lex_state = 130}, - [3750] = {.lex_state = 130}, - [3751] = {.lex_state = 130}, - [3752] = {.lex_state = 130}, + [3749] = {.lex_state = 131}, + [3750] = {.lex_state = 131}, + [3751] = {.lex_state = 131}, + [3752] = {.lex_state = 131}, [3753] = {.lex_state = 131}, [3754] = {.lex_state = 131}, [3755] = {.lex_state = 131}, - [3756] = {.lex_state = 130}, - [3757] = {.lex_state = 130}, - [3758] = {.lex_state = 130}, - [3759] = {.lex_state = 130}, - [3760] = {.lex_state = 130}, - [3761] = {.lex_state = 131}, - [3762] = {.lex_state = 130}, - [3763] = {.lex_state = 131}, - [3764] = {.lex_state = 130}, - [3765] = {.lex_state = 130}, - [3766] = {.lex_state = 130}, - [3767] = {.lex_state = 130}, - [3768] = {.lex_state = 6}, + [3756] = {.lex_state = 132}, + [3757] = {.lex_state = 132}, + [3758] = {.lex_state = 132}, + [3759] = {.lex_state = 132}, + [3760] = {.lex_state = 132}, + [3761] = {.lex_state = 132}, + [3762] = {.lex_state = 132}, + [3763] = {.lex_state = 132}, + [3764] = {.lex_state = 131}, + [3765] = {.lex_state = 131}, + [3766] = {.lex_state = 131}, + [3767] = {.lex_state = 131}, + [3768] = {.lex_state = 131}, [3769] = {.lex_state = 131}, - [3770] = {.lex_state = 130}, - [3771] = {.lex_state = 130}, - [3772] = {.lex_state = 130}, - [3773] = {.lex_state = 130}, - [3774] = {.lex_state = 130}, + [3770] = {.lex_state = 131}, + [3771] = {.lex_state = 131}, + [3772] = {.lex_state = 131}, + [3773] = {.lex_state = 132}, + [3774] = {.lex_state = 131}, [3775] = {.lex_state = 131}, - [3776] = {.lex_state = 130}, - [3777] = {.lex_state = 130}, - [3778] = {.lex_state = 130}, - [3779] = {.lex_state = 130}, - [3780] = {.lex_state = 130}, - [3781] = {.lex_state = 130}, + [3776] = {.lex_state = 132}, + [3777] = {.lex_state = 131}, + [3778] = {.lex_state = 132}, + [3779] = {.lex_state = 131}, + [3780] = {.lex_state = 131}, + [3781] = {.lex_state = 131}, [3782] = {.lex_state = 131}, - [3783] = {.lex_state = 130}, + [3783] = {.lex_state = 132}, [3784] = {.lex_state = 131}, [3785] = {.lex_state = 131}, [3786] = {.lex_state = 131}, - [3787] = {.lex_state = 130}, - [3788] = {.lex_state = 130}, + [3787] = {.lex_state = 131}, + [3788] = {.lex_state = 131}, [3789] = {.lex_state = 131}, [3790] = {.lex_state = 131}, - [3791] = {.lex_state = 130}, + [3791] = {.lex_state = 131}, [3792] = {.lex_state = 131}, - [3793] = {.lex_state = 131}, - [3794] = {.lex_state = 130}, - [3795] = {.lex_state = 130}, - [3796] = {.lex_state = 130}, - [3797] = {.lex_state = 130}, - [3798] = {.lex_state = 130}, - [3799] = {.lex_state = 130}, - [3800] = {.lex_state = 131}, - [3801] = {.lex_state = 131}, - [3802] = {.lex_state = 131}, - [3803] = {.lex_state = 130}, - [3804] = {.lex_state = 130}, - [3805] = {.lex_state = 130}, - [3806] = {.lex_state = 130}, - [3807] = {.lex_state = 130}, - [3808] = {.lex_state = 130}, - [3809] = {.lex_state = 131}, - [3810] = {.lex_state = 130}, - [3811] = {.lex_state = 130}, - [3812] = {.lex_state = 131}, - [3813] = {.lex_state = 131}, - [3814] = {.lex_state = 130}, - [3815] = {.lex_state = 131}, - [3816] = {.lex_state = 130}, - [3817] = {.lex_state = 131}, - [3818] = {.lex_state = 131}, - [3819] = {.lex_state = 131}, - [3820] = {.lex_state = 131}, - [3821] = {.lex_state = 130}, - [3822] = {.lex_state = 130}, - [3823] = {.lex_state = 131}, - [3824] = {.lex_state = 131}, - [3825] = {.lex_state = 131}, + [3793] = {.lex_state = 132}, + [3794] = {.lex_state = 131}, + [3795] = {.lex_state = 131}, + [3796] = {.lex_state = 131}, + [3797] = {.lex_state = 131}, + [3798] = {.lex_state = 131}, + [3799] = {.lex_state = 132}, + [3800] = {.lex_state = 132}, + [3801] = {.lex_state = 132}, + [3802] = {.lex_state = 132}, + [3803] = {.lex_state = 131}, + [3804] = {.lex_state = 131}, + [3805] = {.lex_state = 132}, + [3806] = {.lex_state = 131}, + [3807] = {.lex_state = 131}, + [3808] = {.lex_state = 132}, + [3809] = {.lex_state = 132}, + [3810] = {.lex_state = 132}, + [3811] = {.lex_state = 131}, + [3812] = {.lex_state = 132}, + [3813] = {.lex_state = 132}, + [3814] = {.lex_state = 132}, + [3815] = {.lex_state = 132}, + [3816] = {.lex_state = 131}, + [3817] = {.lex_state = 132}, + [3818] = {.lex_state = 132}, + [3819] = {.lex_state = 132}, + [3820] = {.lex_state = 132}, + [3821] = {.lex_state = 132}, + [3822] = {.lex_state = 132}, + [3823] = {.lex_state = 132}, + [3824] = {.lex_state = 132}, + [3825] = {.lex_state = 132}, [3826] = {.lex_state = 131}, - [3827] = {.lex_state = 131}, + [3827] = {.lex_state = 132}, [3828] = {.lex_state = 131}, [3829] = {.lex_state = 131}, - [3830] = {.lex_state = 131}, - [3831] = {.lex_state = 131}, - [3832] = {.lex_state = 130}, - [3833] = {.lex_state = 131}, + [3830] = {.lex_state = 132}, + [3831] = {.lex_state = 132}, + [3832] = {.lex_state = 132}, + [3833] = {.lex_state = 132}, [3834] = {.lex_state = 131}, [3835] = {.lex_state = 131}, - [3836] = {.lex_state = 131}, + [3836] = {.lex_state = 132}, [3837] = {.lex_state = 131}, [3838] = {.lex_state = 131}, [3839] = {.lex_state = 131}, [3840] = {.lex_state = 131}, [3841] = {.lex_state = 131}, - [3842] = {.lex_state = 130}, - [3843] = {.lex_state = 130}, - [3844] = {.lex_state = 130}, - [3845] = {.lex_state = 130}, + [3842] = {.lex_state = 131}, + [3843] = {.lex_state = 131}, + [3844] = {.lex_state = 6}, + [3845] = {.lex_state = 131}, [3846] = {.lex_state = 131}, [3847] = {.lex_state = 131}, - [3848] = {.lex_state = 130}, + [3848] = {.lex_state = 131}, [3849] = {.lex_state = 131}, - [3850] = {.lex_state = 130}, + [3850] = {.lex_state = 131}, [3851] = {.lex_state = 131}, - [3852] = {.lex_state = 130}, + [3852] = {.lex_state = 131}, [3853] = {.lex_state = 131}, - [3854] = {.lex_state = 130}, + [3854] = {.lex_state = 132}, [3855] = {.lex_state = 131}, [3856] = {.lex_state = 131}, - [3857] = {.lex_state = 130}, - [3858] = {.lex_state = 131}, - [3859] = {.lex_state = 130}, - [3860] = {.lex_state = 130}, - [3861] = {.lex_state = 131}, - [3862] = {.lex_state = 130}, - [3863] = {.lex_state = 130}, - [3864] = {.lex_state = 130}, - [3865] = {.lex_state = 131}, - [3866] = {.lex_state = 131}, - [3867] = {.lex_state = 131}, - [3868] = {.lex_state = 131}, - [3869] = {.lex_state = 131}, - [3870] = {.lex_state = 131}, - [3871] = {.lex_state = 131}, - [3872] = {.lex_state = 131}, + [3857] = {.lex_state = 131}, + [3858] = {.lex_state = 132}, + [3859] = {.lex_state = 131}, + [3860] = {.lex_state = 132}, + [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}, + [3869] = {.lex_state = 132}, + [3870] = {.lex_state = 132}, + [3871] = {.lex_state = 132}, + [3872] = {.lex_state = 132}, [3873] = {.lex_state = 131}, - [3874] = {.lex_state = 130}, - [3875] = {.lex_state = 130}, - [3876] = {.lex_state = 130}, - [3877] = {.lex_state = 130}, - [3878] = {.lex_state = 130}, - [3879] = {.lex_state = 130}, - [3880] = {.lex_state = 130}, - [3881] = {.lex_state = 130}, - [3882] = {.lex_state = 131}, - [3883] = {.lex_state = 130}, + [3874] = {.lex_state = 132}, + [3875] = {.lex_state = 131}, + [3876] = {.lex_state = 132}, + [3877] = {.lex_state = 131}, + [3878] = {.lex_state = 132}, + [3879] = {.lex_state = 132}, + [3880] = {.lex_state = 131}, + [3881] = {.lex_state = 131}, + [3882] = {.lex_state = 132}, + [3883] = {.lex_state = 132}, [3884] = {.lex_state = 131}, - [3885] = {.lex_state = 130}, - [3886] = {.lex_state = 130}, - [3887] = {.lex_state = 130}, - [3888] = {.lex_state = 130}, - [3889] = {.lex_state = 130}, - [3890] = {.lex_state = 130}, - [3891] = {.lex_state = 131}, - [3892] = {.lex_state = 130}, + [3885] = {.lex_state = 131}, + [3886] = {.lex_state = 131}, + [3887] = {.lex_state = 131}, + [3888] = {.lex_state = 131}, + [3889] = {.lex_state = 131}, + [3890] = {.lex_state = 131}, + [3891] = {.lex_state = 132}, + [3892] = {.lex_state = 131}, [3893] = {.lex_state = 131}, - [3894] = {.lex_state = 130}, + [3894] = {.lex_state = 131}, [3895] = {.lex_state = 131}, [3896] = {.lex_state = 131}, [3897] = {.lex_state = 131}, - [3898] = {.lex_state = 131}, + [3898] = {.lex_state = 132}, [3899] = {.lex_state = 131}, - [3900] = {.lex_state = 131}, - [3901] = {.lex_state = 131}, - [3902] = {.lex_state = 130}, - [3903] = {.lex_state = 130}, - [3904] = {.lex_state = 130}, - [3905] = {.lex_state = 130}, - [3906] = {.lex_state = 131}, - [3907] = {.lex_state = 130}, - [3908] = {.lex_state = 131}, - [3909] = {.lex_state = 131}, - [3910] = {.lex_state = 130}, + [3900] = {.lex_state = 132}, + [3901] = {.lex_state = 132}, + [3902] = {.lex_state = 132}, + [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}, + [3910] = {.lex_state = 131}, [3911] = {.lex_state = 131}, [3912] = {.lex_state = 131}, - [3913] = {.lex_state = 130}, + [3913] = {.lex_state = 131}, [3914] = {.lex_state = 131}, - [3915] = {.lex_state = 130}, - [3916] = {.lex_state = 130}, + [3915] = {.lex_state = 131}, + [3916] = {.lex_state = 131}, [3917] = {.lex_state = 131}, - [3918] = {.lex_state = 130}, + [3918] = {.lex_state = 131}, [3919] = {.lex_state = 131}, [3920] = {.lex_state = 131}, [3921] = {.lex_state = 131}, - [3922] = {.lex_state = 130}, + [3922] = {.lex_state = 132}, [3923] = {.lex_state = 131}, [3924] = {.lex_state = 131}, - [3925] = {.lex_state = 131}, - [3926] = {.lex_state = 131}, + [3925] = {.lex_state = 132}, + [3926] = {.lex_state = 132}, [3927] = {.lex_state = 131}, [3928] = {.lex_state = 131}, - [3929] = {.lex_state = 131}, - [3930] = {.lex_state = 130}, - [3931] = {.lex_state = 130}, - [3932] = {.lex_state = 131}, - [3933] = {.lex_state = 131}, - [3934] = {.lex_state = 130}, - [3935] = {.lex_state = 130}, - [3936] = {.lex_state = 130}, - [3937] = {.lex_state = 131}, - [3938] = {.lex_state = 130}, - [3939] = {.lex_state = 130}, - [3940] = {.lex_state = 131}, - [3941] = {.lex_state = 131}, - [3942] = {.lex_state = 131}, - [3943] = {.lex_state = 131}, - [3944] = {.lex_state = 130}, - [3945] = {.lex_state = 130}, - [3946] = {.lex_state = 131}, - [3947] = {.lex_state = 131}, - [3948] = {.lex_state = 131}, - [3949] = {.lex_state = 130}, - [3950] = {.lex_state = 10}, - [3951] = {.lex_state = 130}, - [3952] = {.lex_state = 131}, - [3953] = {.lex_state = 130}, - [3954] = {.lex_state = 131}, - [3955] = {.lex_state = 130}, - [3956] = {.lex_state = 130}, - [3957] = {.lex_state = 131}, - [3958] = {.lex_state = 131}, - [3959] = {.lex_state = 130}, - [3960] = {.lex_state = 130}, - [3961] = {.lex_state = 130}, - [3962] = {.lex_state = 131}, - [3963] = {.lex_state = 131}, - [3964] = {.lex_state = 130}, - [3965] = {.lex_state = 131}, - [3966] = {.lex_state = 130}, - [3967] = {.lex_state = 17}, - [3968] = {.lex_state = 131}, - [3969] = {.lex_state = 130}, - [3970] = {.lex_state = 131}, - [3971] = {.lex_state = 131}, - [3972] = {.lex_state = 131}, - [3973] = {.lex_state = 130}, - [3974] = {.lex_state = 130}, - [3975] = {.lex_state = 131}, - [3976] = {.lex_state = 131}, + [3929] = {.lex_state = 132}, + [3930] = {.lex_state = 132}, + [3931] = {.lex_state = 132}, + [3932] = {.lex_state = 132}, + [3933] = {.lex_state = 132}, + [3934] = {.lex_state = 132}, + [3935] = {.lex_state = 132}, + [3936] = {.lex_state = 132}, + [3937] = {.lex_state = 132}, + [3938] = {.lex_state = 132}, + [3939] = {.lex_state = 132}, + [3940] = {.lex_state = 132}, + [3941] = {.lex_state = 132}, + [3942] = {.lex_state = 132}, + [3943] = {.lex_state = 132}, + [3944] = {.lex_state = 132}, + [3945] = {.lex_state = 132}, + [3946] = {.lex_state = 132}, + [3947] = {.lex_state = 132}, + [3948] = {.lex_state = 132}, + [3949] = {.lex_state = 132}, + [3950] = {.lex_state = 132}, + [3951] = {.lex_state = 132}, + [3952] = {.lex_state = 132}, + [3953] = {.lex_state = 132}, + [3954] = {.lex_state = 132}, + [3955] = {.lex_state = 132}, + [3956] = {.lex_state = 132}, + [3957] = {.lex_state = 132}, + [3958] = {.lex_state = 132}, + [3959] = {.lex_state = 132}, + [3960] = {.lex_state = 132}, + [3961] = {.lex_state = 132}, + [3962] = {.lex_state = 132}, + [3963] = {.lex_state = 132}, + [3964] = {.lex_state = 132}, + [3965] = {.lex_state = 132}, + [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}, + [3973] = {.lex_state = 132}, + [3974] = {.lex_state = 132}, + [3975] = {.lex_state = 132}, + [3976] = {.lex_state = 132}, [3977] = {.lex_state = 131}, - [3978] = {.lex_state = 131}, + [3978] = {.lex_state = 132}, [3979] = {.lex_state = 131}, - [3980] = {.lex_state = 131}, + [3980] = {.lex_state = 132}, [3981] = {.lex_state = 131}, - [3982] = {.lex_state = 130}, - [3983] = {.lex_state = 131}, - [3984] = {.lex_state = 131}, - [3985] = {.lex_state = 130}, - [3986] = {.lex_state = 130}, - [3987] = {.lex_state = 131}, - [3988] = {.lex_state = 131}, - [3989] = {.lex_state = 130}, + [3982] = {.lex_state = 132}, + [3983] = {.lex_state = 132}, + [3984] = {.lex_state = 132}, + [3985] = {.lex_state = 132}, + [3986] = {.lex_state = 132}, + [3987] = {.lex_state = 132}, + [3988] = {.lex_state = 132}, + [3989] = {.lex_state = 131}, [3990] = {.lex_state = 131}, - [3991] = {.lex_state = 131}, - [3992] = {.lex_state = 131}, + [3991] = {.lex_state = 17}, + [3992] = {.lex_state = 132}, [3993] = {.lex_state = 131}, - [3994] = {.lex_state = 131}, - [3995] = {.lex_state = 130}, + [3994] = {.lex_state = 132}, + [3995] = {.lex_state = 131}, [3996] = {.lex_state = 131}, - [3997] = {.lex_state = 130}, - [3998] = {.lex_state = 130}, - [3999] = {.lex_state = 17}, - [4000] = {.lex_state = 130}, - [4001] = {.lex_state = 130}, - [4002] = {.lex_state = 130}, - [4003] = {.lex_state = 130}, - [4004] = {.lex_state = 130}, - [4005] = {.lex_state = 130}, - [4006] = {.lex_state = 130}, - [4007] = {.lex_state = 17}, - [4008] = {.lex_state = 130}, - [4009] = {.lex_state = 130}, - [4010] = {.lex_state = 130}, - [4011] = {.lex_state = 130}, - [4012] = {.lex_state = 130}, - [4013] = {.lex_state = 130}, - [4014] = {.lex_state = 10}, - [4015] = {.lex_state = 17}, - [4016] = {.lex_state = 130}, - [4017] = {.lex_state = 130}, - [4018] = {.lex_state = 130}, - [4019] = {.lex_state = 131}, - [4020] = {.lex_state = 130}, - [4021] = {.lex_state = 130}, - [4022] = {.lex_state = 130}, - [4023] = {.lex_state = 130}, - [4024] = {.lex_state = 130}, - [4025] = {.lex_state = 130}, - [4026] = {.lex_state = 130}, - [4027] = {.lex_state = 130}, - [4028] = {.lex_state = 17}, - [4029] = {.lex_state = 130}, - [4030] = {.lex_state = 130}, - [4031] = {.lex_state = 130}, - [4032] = {.lex_state = 17}, - [4033] = {.lex_state = 130}, - [4034] = {.lex_state = 130}, - [4035] = {.lex_state = 130}, - [4036] = {.lex_state = 17}, - [4037] = {.lex_state = 130}, - [4038] = {.lex_state = 130}, - [4039] = {.lex_state = 17}, - [4040] = {.lex_state = 130}, - [4041] = {.lex_state = 130}, - [4042] = {.lex_state = 130}, - [4043] = {.lex_state = 130}, - [4044] = {.lex_state = 130}, - [4045] = {.lex_state = 130}, - [4046] = {.lex_state = 130}, - [4047] = {.lex_state = 130}, - [4048] = {.lex_state = 130}, - [4049] = {.lex_state = 130}, - [4050] = {.lex_state = 130}, - [4051] = {.lex_state = 130}, - [4052] = {.lex_state = 130}, - [4053] = {.lex_state = 130}, - [4054] = {.lex_state = 130}, - [4055] = {.lex_state = 130}, - [4056] = {.lex_state = 130}, - [4057] = {.lex_state = 130}, - [4058] = {.lex_state = 130}, - [4059] = {.lex_state = 130}, - [4060] = {.lex_state = 130}, - [4061] = {.lex_state = 130}, - [4062] = {.lex_state = 130}, - [4063] = {.lex_state = 130}, - [4064] = {.lex_state = 130}, - [4065] = {.lex_state = 130}, - [4066] = {.lex_state = 130}, - [4067] = {.lex_state = 130}, - [4068] = {.lex_state = 130}, - [4069] = {.lex_state = 130}, - [4070] = {.lex_state = 130}, - [4071] = {.lex_state = 130}, - [4072] = {.lex_state = 130}, - [4073] = {.lex_state = 130}, + [3997] = {.lex_state = 131}, + [3998] = {.lex_state = 131}, + [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}, + [4007] = {.lex_state = 132}, + [4008] = {.lex_state = 132}, + [4009] = {.lex_state = 132}, + [4010] = {.lex_state = 132}, + [4011] = {.lex_state = 132}, + [4012] = {.lex_state = 132}, + [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}, + [4020] = {.lex_state = 132}, + [4021] = {.lex_state = 132}, + [4022] = {.lex_state = 131}, + [4023] = {.lex_state = 132}, + [4024] = {.lex_state = 132}, + [4025] = {.lex_state = 132}, + [4026] = {.lex_state = 131}, + [4027] = {.lex_state = 132}, + [4028] = {.lex_state = 132}, + [4029] = {.lex_state = 131}, + [4030] = {.lex_state = 131}, + [4031] = {.lex_state = 131}, + [4032] = {.lex_state = 132}, + [4033] = {.lex_state = 132}, + [4034] = {.lex_state = 132}, + [4035] = {.lex_state = 132}, + [4036] = {.lex_state = 131}, + [4037] = {.lex_state = 132}, + [4038] = {.lex_state = 132}, + [4039] = {.lex_state = 132}, + [4040] = {.lex_state = 132}, + [4041] = {.lex_state = 10}, + [4042] = {.lex_state = 131}, + [4043] = {.lex_state = 132}, + [4044] = {.lex_state = 132}, + [4045] = {.lex_state = 131}, + [4046] = {.lex_state = 132}, + [4047] = {.lex_state = 131}, + [4048] = {.lex_state = 131}, + [4049] = {.lex_state = 132}, + [4050] = {.lex_state = 131}, + [4051] = {.lex_state = 131}, + [4052] = {.lex_state = 131}, + [4053] = {.lex_state = 131}, + [4054] = {.lex_state = 131}, + [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}, + [4064] = {.lex_state = 131}, + [4065] = {.lex_state = 131}, + [4066] = {.lex_state = 131}, + [4067] = {.lex_state = 131}, + [4068] = {.lex_state = 131}, + [4069] = {.lex_state = 17}, + [4070] = {.lex_state = 131}, + [4071] = {.lex_state = 131}, + [4072] = {.lex_state = 131}, + [4073] = {.lex_state = 131}, [4074] = {.lex_state = 131}, - [4075] = {.lex_state = 130}, - [4076] = {.lex_state = 130}, - [4077] = {.lex_state = 130}, - [4078] = {.lex_state = 130}, - [4079] = {.lex_state = 130}, - [4080] = {.lex_state = 130}, + [4075] = {.lex_state = 131}, + [4076] = {.lex_state = 131}, + [4077] = {.lex_state = 131}, + [4078] = {.lex_state = 131}, + [4079] = {.lex_state = 131}, + [4080] = {.lex_state = 131}, [4081] = {.lex_state = 131}, - [4082] = {.lex_state = 130}, - [4083] = {.lex_state = 130}, - [4084] = {.lex_state = 17}, - [4085] = {.lex_state = 130}, - [4086] = {.lex_state = 130}, - [4087] = {.lex_state = 130}, - [4088] = {.lex_state = 130}, - [4089] = {.lex_state = 130}, - [4090] = {.lex_state = 130}, - [4091] = {.lex_state = 130}, - [4092] = {.lex_state = 130}, - [4093] = {.lex_state = 130}, - [4094] = {.lex_state = 130}, - [4095] = {.lex_state = 130}, - [4096] = {.lex_state = 130}, - [4097] = {.lex_state = 130}, - [4098] = {.lex_state = 130}, - [4099] = {.lex_state = 130}, - [4100] = {.lex_state = 130}, - [4101] = {.lex_state = 130}, - [4102] = {.lex_state = 130}, - [4103] = {.lex_state = 130}, - [4104] = {.lex_state = 130}, - [4105] = {.lex_state = 130}, - [4106] = {.lex_state = 130}, - [4107] = {.lex_state = 130}, - [4108] = {.lex_state = 130}, - [4109] = {.lex_state = 130}, - [4110] = {.lex_state = 130}, - [4111] = {.lex_state = 130}, - [4112] = {.lex_state = 130}, - [4113] = {.lex_state = 130}, - [4114] = {.lex_state = 130}, - [4115] = {.lex_state = 130}, - [4116] = {.lex_state = 130}, - [4117] = {.lex_state = 130}, - [4118] = {.lex_state = 130}, - [4119] = {.lex_state = 130}, - [4120] = {.lex_state = 130}, - [4121] = {.lex_state = 130}, - [4122] = {.lex_state = 130}, - [4123] = {.lex_state = 130}, - [4124] = {.lex_state = 17}, - [4125] = {.lex_state = 130}, - [4126] = {.lex_state = 130}, - [4127] = {.lex_state = 130}, - [4128] = {.lex_state = 130}, - [4129] = {.lex_state = 130}, - [4130] = {.lex_state = 130}, - [4131] = {.lex_state = 130}, - [4132] = {.lex_state = 130}, - [4133] = {.lex_state = 130, .external_lex_state = 4}, - [4134] = {.lex_state = 130}, - [4135] = {.lex_state = 130}, - [4136] = {.lex_state = 130}, - [4137] = {.lex_state = 130}, - [4138] = {.lex_state = 130}, - [4139] = {.lex_state = 6, .external_lex_state = 4}, + [4082] = {.lex_state = 131}, + [4083] = {.lex_state = 132}, + [4084] = {.lex_state = 131}, + [4085] = {.lex_state = 131}, + [4086] = {.lex_state = 131}, + [4087] = {.lex_state = 10}, + [4088] = {.lex_state = 131}, + [4089] = {.lex_state = 131}, + [4090] = {.lex_state = 131}, + [4091] = {.lex_state = 17}, + [4092] = {.lex_state = 131}, + [4093] = {.lex_state = 131}, + [4094] = {.lex_state = 131}, + [4095] = {.lex_state = 131}, + [4096] = {.lex_state = 17}, + [4097] = {.lex_state = 131}, + [4098] = {.lex_state = 131}, + [4099] = {.lex_state = 131}, + [4100] = {.lex_state = 131}, + [4101] = {.lex_state = 131}, + [4102] = {.lex_state = 131}, + [4103] = {.lex_state = 131}, + [4104] = {.lex_state = 131}, + [4105] = {.lex_state = 131}, + [4106] = {.lex_state = 131}, + [4107] = {.lex_state = 17}, + [4108] = {.lex_state = 131}, + [4109] = {.lex_state = 17}, + [4110] = {.lex_state = 131}, + [4111] = {.lex_state = 131}, + [4112] = {.lex_state = 131}, + [4113] = {.lex_state = 131}, + [4114] = {.lex_state = 131}, + [4115] = {.lex_state = 131}, + [4116] = {.lex_state = 131}, + [4117] = {.lex_state = 131}, + [4118] = {.lex_state = 17}, + [4119] = {.lex_state = 131}, + [4120] = {.lex_state = 131}, + [4121] = {.lex_state = 131}, + [4122] = {.lex_state = 131}, + [4123] = {.lex_state = 131}, + [4124] = {.lex_state = 131}, + [4125] = {.lex_state = 131}, + [4126] = {.lex_state = 131}, + [4127] = {.lex_state = 131}, + [4128] = {.lex_state = 131}, + [4129] = {.lex_state = 131}, + [4130] = {.lex_state = 131}, + [4131] = {.lex_state = 131}, + [4132] = {.lex_state = 131}, + [4133] = {.lex_state = 131}, + [4134] = {.lex_state = 132}, + [4135] = {.lex_state = 131}, + [4136] = {.lex_state = 131}, + [4137] = {.lex_state = 131}, + [4138] = {.lex_state = 131}, + [4139] = {.lex_state = 131}, [4140] = {.lex_state = 131}, - [4141] = {.lex_state = 130}, - [4142] = {.lex_state = 130}, - [4143] = {.lex_state = 10}, - [4144] = {.lex_state = 130}, - [4145] = {.lex_state = 130}, - [4146] = {.lex_state = 130}, - [4147] = {.lex_state = 130}, - [4148] = {.lex_state = 130}, - [4149] = {.lex_state = 130}, - [4150] = {.lex_state = 130}, - [4151] = {.lex_state = 130}, - [4152] = {.lex_state = 130}, - [4153] = {.lex_state = 130}, - [4154] = {.lex_state = 130}, - [4155] = {.lex_state = 130}, - [4156] = {.lex_state = 130}, - [4157] = {.lex_state = 130}, - [4158] = {.lex_state = 130}, - [4159] = {.lex_state = 130}, - [4160] = {.lex_state = 130}, - [4161] = {.lex_state = 130}, - [4162] = {.lex_state = 130}, - [4163] = {.lex_state = 130}, - [4164] = {.lex_state = 130}, - [4165] = {.lex_state = 130}, - [4166] = {.lex_state = 130}, - [4167] = {.lex_state = 130}, - [4168] = {.lex_state = 130}, - [4169] = {.lex_state = 6, .external_lex_state = 4}, - [4170] = {.lex_state = 130, .external_lex_state = 4}, - [4171] = {.lex_state = 130}, - [4172] = {.lex_state = 130, .external_lex_state = 4}, - [4173] = {.lex_state = 130, .external_lex_state = 4}, - [4174] = {.lex_state = 17}, - [4175] = {.lex_state = 10}, - [4176] = {.lex_state = 130, .external_lex_state = 4}, - [4177] = {.lex_state = 130, .external_lex_state = 4}, + [4141] = {.lex_state = 131}, + [4142] = {.lex_state = 131}, + [4143] = {.lex_state = 131}, + [4144] = {.lex_state = 131}, + [4145] = {.lex_state = 131}, + [4146] = {.lex_state = 131}, + [4147] = {.lex_state = 131}, + [4148] = {.lex_state = 131}, + [4149] = {.lex_state = 131}, + [4150] = {.lex_state = 17}, + [4151] = {.lex_state = 131}, + [4152] = {.lex_state = 131}, + [4153] = {.lex_state = 131}, + [4154] = {.lex_state = 131}, + [4155] = {.lex_state = 131}, + [4156] = {.lex_state = 131}, + [4157] = {.lex_state = 131}, + [4158] = {.lex_state = 132}, + [4159] = {.lex_state = 131}, + [4160] = {.lex_state = 131}, + [4161] = {.lex_state = 131}, + [4162] = {.lex_state = 131}, + [4163] = {.lex_state = 131}, + [4164] = {.lex_state = 131}, + [4165] = {.lex_state = 131}, + [4166] = {.lex_state = 131}, + [4167] = {.lex_state = 131}, + [4168] = {.lex_state = 131}, + [4169] = {.lex_state = 131}, + [4170] = {.lex_state = 131}, + [4171] = {.lex_state = 131}, + [4172] = {.lex_state = 131}, + [4173] = {.lex_state = 131}, + [4174] = {.lex_state = 131}, + [4175] = {.lex_state = 131}, + [4176] = {.lex_state = 131}, + [4177] = {.lex_state = 131}, [4178] = {.lex_state = 131}, - [4179] = {.lex_state = 130}, + [4179] = {.lex_state = 131}, [4180] = {.lex_state = 131}, - [4181] = {.lex_state = 130}, - [4182] = {.lex_state = 130}, - [4183] = {.lex_state = 130}, - [4184] = {.lex_state = 130}, - [4185] = {.lex_state = 130, .external_lex_state = 4}, - [4186] = {.lex_state = 17}, - [4187] = {.lex_state = 130}, - [4188] = {.lex_state = 130}, - [4189] = {.lex_state = 130, .external_lex_state = 4}, - [4190] = {.lex_state = 130}, - [4191] = {.lex_state = 130}, - [4192] = {.lex_state = 17}, - [4193] = {.lex_state = 6, .external_lex_state = 4}, - [4194] = {.lex_state = 130, .external_lex_state = 4}, - [4195] = {.lex_state = 130}, - [4196] = {.lex_state = 130}, - [4197] = {.lex_state = 130, .external_lex_state = 4}, - [4198] = {.lex_state = 130}, - [4199] = {.lex_state = 130, .external_lex_state = 4}, - [4200] = {.lex_state = 130, .external_lex_state = 4}, - [4201] = {.lex_state = 130}, - [4202] = {.lex_state = 130}, - [4203] = {.lex_state = 130, .external_lex_state = 4}, - [4204] = {.lex_state = 130, .external_lex_state = 4}, - [4205] = {.lex_state = 10}, - [4206] = {.lex_state = 130, .external_lex_state = 4}, - [4207] = {.lex_state = 130}, - [4208] = {.lex_state = 130, .external_lex_state = 4}, - [4209] = {.lex_state = 130}, + [4181] = {.lex_state = 131}, + [4182] = {.lex_state = 131}, + [4183] = {.lex_state = 131}, + [4184] = {.lex_state = 131}, + [4185] = {.lex_state = 131}, + [4186] = {.lex_state = 131}, + [4187] = {.lex_state = 131}, + [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}, + [4195] = {.lex_state = 131}, + [4196] = {.lex_state = 131}, + [4197] = {.lex_state = 131}, + [4198] = {.lex_state = 131}, + [4199] = {.lex_state = 131}, + [4200] = {.lex_state = 131}, + [4201] = {.lex_state = 131}, + [4202] = {.lex_state = 131}, + [4203] = {.lex_state = 131}, + [4204] = {.lex_state = 131}, + [4205] = {.lex_state = 131}, + [4206] = {.lex_state = 131}, + [4207] = {.lex_state = 131}, + [4208] = {.lex_state = 131}, + [4209] = {.lex_state = 131}, [4210] = {.lex_state = 131}, - [4211] = {.lex_state = 130, .external_lex_state = 4}, - [4212] = {.lex_state = 6, .external_lex_state = 4}, - [4213] = {.lex_state = 130}, - [4214] = {.lex_state = 130, .external_lex_state = 4}, - [4215] = {.lex_state = 130, .external_lex_state = 4}, - [4216] = {.lex_state = 130}, - [4217] = {.lex_state = 130}, - [4218] = {.lex_state = 130}, - [4219] = {.lex_state = 130}, - [4220] = {.lex_state = 130, .external_lex_state = 4}, - [4221] = {.lex_state = 130, .external_lex_state = 4}, - [4222] = {.lex_state = 130}, - [4223] = {.lex_state = 130}, - [4224] = {.lex_state = 130}, - [4225] = {.lex_state = 130}, - [4226] = {.lex_state = 130, .external_lex_state = 4}, - [4227] = {.lex_state = 130, .external_lex_state = 4}, - [4228] = {.lex_state = 130}, - [4229] = {.lex_state = 130, .external_lex_state = 4}, - [4230] = {.lex_state = 130}, - [4231] = {.lex_state = 130}, - [4232] = {.lex_state = 130, .external_lex_state = 4}, - [4233] = {.lex_state = 130}, - [4234] = {.lex_state = 130}, + [4211] = {.lex_state = 131}, + [4212] = {.lex_state = 131}, + [4213] = {.lex_state = 131}, + [4214] = {.lex_state = 10}, + [4215] = {.lex_state = 6, .external_lex_state = 4}, + [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}, + [4222] = {.lex_state = 131}, + [4223] = {.lex_state = 131}, + [4224] = {.lex_state = 131}, + [4225] = {.lex_state = 131}, + [4226] = {.lex_state = 131}, + [4227] = {.lex_state = 131}, + [4228] = {.lex_state = 131}, + [4229] = {.lex_state = 131}, + [4230] = {.lex_state = 131}, + [4231] = {.lex_state = 131}, + [4232] = {.lex_state = 132}, + [4233] = {.lex_state = 131}, + [4234] = {.lex_state = 131}, [4235] = {.lex_state = 131}, - [4236] = {.lex_state = 130}, - [4237] = {.lex_state = 130}, + [4236] = {.lex_state = 131}, + [4237] = {.lex_state = 131}, [4238] = {.lex_state = 131}, - [4239] = {.lex_state = 17}, - [4240] = {.lex_state = 130, .external_lex_state = 4}, - [4241] = {.lex_state = 130}, - [4242] = {.lex_state = 130}, - [4243] = {.lex_state = 130}, - [4244] = {.lex_state = 130, .external_lex_state = 4}, - [4245] = {.lex_state = 130, .external_lex_state = 4}, - [4246] = {.lex_state = 130}, - [4247] = {.lex_state = 130, .external_lex_state = 4}, - [4248] = {.lex_state = 130}, - [4249] = {.lex_state = 130}, - [4250] = {.lex_state = 17}, - [4251] = {.lex_state = 130, .external_lex_state = 4}, - [4252] = {.lex_state = 130}, - [4253] = {.lex_state = 130}, + [4239] = {.lex_state = 131}, + [4240] = {.lex_state = 131}, + [4241] = {.lex_state = 131}, + [4242] = {.lex_state = 131}, + [4243] = {.lex_state = 131}, + [4244] = {.lex_state = 131}, + [4245] = {.lex_state = 131}, + [4246] = {.lex_state = 131}, + [4247] = {.lex_state = 131}, + [4248] = {.lex_state = 131}, + [4249] = {.lex_state = 131}, + [4250] = {.lex_state = 131}, + [4251] = {.lex_state = 131}, + [4252] = {.lex_state = 131}, + [4253] = {.lex_state = 131}, [4254] = {.lex_state = 131}, - [4255] = {.lex_state = 130}, - [4256] = {.lex_state = 17}, - [4257] = {.lex_state = 130, .external_lex_state = 4}, - [4258] = {.lex_state = 130, .external_lex_state = 4}, - [4259] = {.lex_state = 130}, - [4260] = {.lex_state = 130}, - [4261] = {.lex_state = 130, .external_lex_state = 4}, - [4262] = {.lex_state = 130, .external_lex_state = 4}, - [4263] = {.lex_state = 130, .external_lex_state = 4}, - [4264] = {.lex_state = 131}, - [4265] = {.lex_state = 130}, - [4266] = {.lex_state = 130, .external_lex_state = 4}, - [4267] = {.lex_state = 130, .external_lex_state = 4}, - [4268] = {.lex_state = 130}, + [4255] = {.lex_state = 131}, + [4256] = {.lex_state = 131}, + [4257] = {.lex_state = 131}, + [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}, + [4266] = {.lex_state = 131, .external_lex_state = 4}, + [4267] = {.lex_state = 131}, + [4268] = {.lex_state = 131, .external_lex_state = 4}, [4269] = {.lex_state = 131}, - [4270] = {.lex_state = 130}, - [4271] = {.lex_state = 130}, - [4272] = {.lex_state = 130, .external_lex_state = 4}, - [4273] = {.lex_state = 130}, - [4274] = {.lex_state = 130}, - [4275] = {.lex_state = 130}, - [4276] = {.lex_state = 130, .external_lex_state = 4}, - [4277] = {.lex_state = 130}, - [4278] = {.lex_state = 130, .external_lex_state = 4}, - [4279] = {.lex_state = 131}, - [4280] = {.lex_state = 130}, - [4281] = {.lex_state = 130, .external_lex_state = 4}, - [4282] = {.lex_state = 130}, - [4283] = {.lex_state = 130}, - [4284] = {.lex_state = 130}, - [4285] = {.lex_state = 130}, - [4286] = {.lex_state = 130}, - [4287] = {.lex_state = 130, .external_lex_state = 4}, - [4288] = {.lex_state = 130}, - [4289] = {.lex_state = 130}, - [4290] = {.lex_state = 130, .external_lex_state = 4}, - [4291] = {.lex_state = 130}, - [4292] = {.lex_state = 130, .external_lex_state = 4}, - [4293] = {.lex_state = 130}, - [4294] = {.lex_state = 130}, - [4295] = {.lex_state = 130}, - [4296] = {.lex_state = 130, .external_lex_state = 4}, - [4297] = {.lex_state = 130}, - [4298] = {.lex_state = 130, .external_lex_state = 4}, - [4299] = {.lex_state = 130, .external_lex_state = 4}, - [4300] = {.lex_state = 130, .external_lex_state = 4}, - [4301] = {.lex_state = 130, .external_lex_state = 4}, + [4270] = {.lex_state = 131}, + [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}, + [4277] = {.lex_state = 131}, + [4278] = {.lex_state = 131}, + [4279] = {.lex_state = 17}, + [4280] = {.lex_state = 131, .external_lex_state = 4}, + [4281] = {.lex_state = 131}, + [4282] = {.lex_state = 131, .external_lex_state = 4}, + [4283] = {.lex_state = 131}, + [4284] = {.lex_state = 131}, + [4285] = {.lex_state = 17}, + [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}, + [4292] = {.lex_state = 17}, + [4293] = {.lex_state = 131, .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}, + [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 = 130}, + [4304] = {.lex_state = 131, .external_lex_state = 4}, [4305] = {.lex_state = 131}, - [4306] = {.lex_state = 130}, - [4307] = {.lex_state = 130, .external_lex_state = 4}, - [4308] = {.lex_state = 130}, - [4309] = {.lex_state = 130}, - [4310] = {.lex_state = 130, .external_lex_state = 4}, - [4311] = {.lex_state = 130, .external_lex_state = 4}, - [4312] = {.lex_state = 130}, - [4313] = {.lex_state = 130, .external_lex_state = 4}, - [4314] = {.lex_state = 130, .external_lex_state = 4}, - [4315] = {.lex_state = 130, .external_lex_state = 4}, - [4316] = {.lex_state = 130, .external_lex_state = 4}, - [4317] = {.lex_state = 130, .external_lex_state = 4}, - [4318] = {.lex_state = 6}, - [4319] = {.lex_state = 130, .external_lex_state = 4}, - [4320] = {.lex_state = 130, .external_lex_state = 4}, - [4321] = {.lex_state = 130, .external_lex_state = 4}, - [4322] = {.lex_state = 130, .external_lex_state = 4}, - [4323] = {.lex_state = 130, .external_lex_state = 4}, - [4324] = {.lex_state = 130}, - [4325] = {.lex_state = 130, .external_lex_state = 4}, - [4326] = {.lex_state = 7, .external_lex_state = 4}, - [4327] = {.lex_state = 130, .external_lex_state = 4}, - [4328] = {.lex_state = 130, .external_lex_state = 4}, - [4329] = {.lex_state = 130}, - [4330] = {.lex_state = 130, .external_lex_state = 4}, - [4331] = {.lex_state = 130, .external_lex_state = 4}, - [4332] = {.lex_state = 130}, - [4333] = {.lex_state = 130, .external_lex_state = 4}, - [4334] = {.lex_state = 130}, - [4335] = {.lex_state = 130}, - [4336] = {.lex_state = 130, .external_lex_state = 4}, - [4337] = {.lex_state = 130}, - [4338] = {.lex_state = 130}, - [4339] = {.lex_state = 130, .external_lex_state = 4}, - [4340] = {.lex_state = 130, .external_lex_state = 4}, - [4341] = {.lex_state = 130}, - [4342] = {.lex_state = 130, .external_lex_state = 4}, - [4343] = {.lex_state = 130}, - [4344] = {.lex_state = 130}, - [4345] = {.lex_state = 130}, - [4346] = {.lex_state = 130}, - [4347] = {.lex_state = 130}, - [4348] = {.lex_state = 130}, - [4349] = {.lex_state = 130}, - [4350] = {.lex_state = 130}, - [4351] = {.lex_state = 130}, - [4352] = {.lex_state = 130}, - [4353] = {.lex_state = 130}, + [4306] = {.lex_state = 131}, + [4307] = {.lex_state = 131, .external_lex_state = 4}, + [4308] = {.lex_state = 131, .external_lex_state = 4}, + [4309] = {.lex_state = 131}, + [4310] = {.lex_state = 131}, + [4311] = {.lex_state = 131, .external_lex_state = 4}, + [4312] = {.lex_state = 6, .external_lex_state = 4}, + [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}, + [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}, + [4327] = {.lex_state = 131, .external_lex_state = 4}, + [4328] = {.lex_state = 131}, + [4329] = {.lex_state = 131}, + [4330] = {.lex_state = 17}, + [4331] = {.lex_state = 131}, + [4332] = {.lex_state = 131}, + [4333] = {.lex_state = 132}, + [4334] = {.lex_state = 131}, + [4335] = {.lex_state = 131}, + [4336] = {.lex_state = 132}, + [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}, + [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}, + [4352] = {.lex_state = 131}, + [4353] = {.lex_state = 131}, [4354] = {.lex_state = 131}, - [4355] = {.lex_state = 130, .external_lex_state = 4}, - [4356] = {.lex_state = 130}, - [4357] = {.lex_state = 130}, - [4358] = {.lex_state = 130}, - [4359] = {.lex_state = 130}, - [4360] = {.lex_state = 130, .external_lex_state = 4}, - [4361] = {.lex_state = 130}, - [4362] = {.lex_state = 130, .external_lex_state = 4}, - [4363] = {.lex_state = 130}, - [4364] = {.lex_state = 130}, - [4365] = {.lex_state = 130}, - [4366] = {.lex_state = 130}, - [4367] = {.lex_state = 130}, - [4368] = {.lex_state = 130}, - [4369] = {.lex_state = 130}, - [4370] = {.lex_state = 130}, - [4371] = {.lex_state = 130}, - [4372] = {.lex_state = 130}, - [4373] = {.lex_state = 130}, - [4374] = {.lex_state = 130, .external_lex_state = 4}, - [4375] = {.lex_state = 130}, - [4376] = {.lex_state = 130, .external_lex_state = 4}, - [4377] = {.lex_state = 130, .external_lex_state = 4}, - [4378] = {.lex_state = 130}, - [4379] = {.lex_state = 130}, - [4380] = {.lex_state = 130}, - [4381] = {.lex_state = 130}, - [4382] = {.lex_state = 130}, - [4383] = {.lex_state = 130}, - [4384] = {.lex_state = 130, .external_lex_state = 4}, - [4385] = {.lex_state = 130, .external_lex_state = 4}, - [4386] = {.lex_state = 130, .external_lex_state = 4}, - [4387] = {.lex_state = 130, .external_lex_state = 4}, - [4388] = {.lex_state = 130, .external_lex_state = 4}, - [4389] = {.lex_state = 130, .external_lex_state = 4}, - [4390] = {.lex_state = 130, .external_lex_state = 4}, - [4391] = {.lex_state = 130, .external_lex_state = 4}, - [4392] = {.lex_state = 130, .external_lex_state = 4}, - [4393] = {.lex_state = 130, .external_lex_state = 4}, - [4394] = {.lex_state = 130}, - [4395] = {.lex_state = 130}, - [4396] = {.lex_state = 130}, - [4397] = {.lex_state = 130}, - [4398] = {.lex_state = 130}, - [4399] = {.lex_state = 130}, - [4400] = {.lex_state = 130}, - [4401] = {.lex_state = 17}, - [4402] = {.lex_state = 130}, - [4403] = {.lex_state = 130, .external_lex_state = 4}, - [4404] = {.lex_state = 130, .external_lex_state = 4}, - [4405] = {.lex_state = 130}, - [4406] = {.lex_state = 130, .external_lex_state = 4}, - [4407] = {.lex_state = 130, .external_lex_state = 4}, - [4408] = {.lex_state = 130, .external_lex_state = 4}, - [4409] = {.lex_state = 130}, - [4410] = {.lex_state = 130, .external_lex_state = 4}, - [4411] = {.lex_state = 130}, - [4412] = {.lex_state = 130}, - [4413] = {.lex_state = 130, .external_lex_state = 4}, - [4414] = {.lex_state = 130}, - [4415] = {.lex_state = 130}, - [4416] = {.lex_state = 130}, - [4417] = {.lex_state = 130}, - [4418] = {.lex_state = 130}, - [4419] = {.lex_state = 130}, - [4420] = {.lex_state = 130}, - [4421] = {.lex_state = 130}, - [4422] = {.lex_state = 130}, - [4423] = {.lex_state = 130}, - [4424] = {.lex_state = 130}, - [4425] = {.lex_state = 130}, - [4426] = {.lex_state = 130}, - [4427] = {.lex_state = 130}, - [4428] = {.lex_state = 130}, - [4429] = {.lex_state = 130, .external_lex_state = 4}, - [4430] = {.lex_state = 130, .external_lex_state = 4}, - [4431] = {.lex_state = 130}, - [4432] = {.lex_state = 130}, - [4433] = {.lex_state = 130}, - [4434] = {.lex_state = 130}, - [4435] = {.lex_state = 130}, - [4436] = {.lex_state = 130}, - [4437] = {.lex_state = 130}, - [4438] = {.lex_state = 130}, - [4439] = {.lex_state = 130}, - [4440] = {.lex_state = 130}, - [4441] = {.lex_state = 130, .external_lex_state = 4}, - [4442] = {.lex_state = 130, .external_lex_state = 4}, - [4443] = {.lex_state = 130}, - [4444] = {.lex_state = 130}, - [4445] = {.lex_state = 130}, - [4446] = {.lex_state = 130}, - [4447] = {.lex_state = 130, .external_lex_state = 4}, - [4448] = {.lex_state = 130, .external_lex_state = 4}, - [4449] = {.lex_state = 17}, - [4450] = {.lex_state = 130, .external_lex_state = 4}, - [4451] = {.lex_state = 130}, - [4452] = {.lex_state = 130}, - [4453] = {.lex_state = 130}, - [4454] = {.lex_state = 130}, - [4455] = {.lex_state = 130}, - [4456] = {.lex_state = 130}, - [4457] = {.lex_state = 130}, - [4458] = {.lex_state = 130}, - [4459] = {.lex_state = 130}, - [4460] = {.lex_state = 130}, - [4461] = {.lex_state = 130}, - [4462] = {.lex_state = 130}, - [4463] = {.lex_state = 130}, - [4464] = {.lex_state = 130}, - [4465] = {.lex_state = 130}, - [4466] = {.lex_state = 130, .external_lex_state = 4}, - [4467] = {.lex_state = 130, .external_lex_state = 4}, - [4468] = {.lex_state = 130}, - [4469] = {.lex_state = 130}, - [4470] = {.lex_state = 130, .external_lex_state = 4}, - [4471] = {.lex_state = 130}, + [4355] = {.lex_state = 131, .external_lex_state = 4}, + [4356] = {.lex_state = 131, .external_lex_state = 4}, + [4357] = {.lex_state = 131}, + [4358] = {.lex_state = 131}, + [4359] = {.lex_state = 132}, + [4360] = {.lex_state = 131, .external_lex_state = 4}, + [4361] = {.lex_state = 131, .external_lex_state = 4}, + [4362] = {.lex_state = 131}, + [4363] = {.lex_state = 132}, + [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}, + [4371] = {.lex_state = 131}, + [4372] = {.lex_state = 132}, + [4373] = {.lex_state = 132}, + [4374] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4384] = {.lex_state = 131}, + [4385] = {.lex_state = 131, .external_lex_state = 4}, + [4386] = {.lex_state = 131, .external_lex_state = 4}, + [4387] = {.lex_state = 131}, + [4388] = {.lex_state = 131}, + [4389] = {.lex_state = 131, .external_lex_state = 4}, + [4390] = {.lex_state = 132}, + [4391] = {.lex_state = 131}, + [4392] = {.lex_state = 131}, + [4393] = {.lex_state = 131}, + [4394] = {.lex_state = 131}, + [4395] = {.lex_state = 6}, + [4396] = {.lex_state = 131, .external_lex_state = 4}, + [4397] = {.lex_state = 7, .external_lex_state = 4}, + [4398] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4406] = {.lex_state = 131, .external_lex_state = 4}, + [4407] = {.lex_state = 131}, + [4408] = {.lex_state = 131, .external_lex_state = 4}, + [4409] = {.lex_state = 131}, + [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}, + [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}, + [4419] = {.lex_state = 131}, + [4420] = {.lex_state = 131}, + [4421] = {.lex_state = 131, .external_lex_state = 4}, + [4422] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4430] = {.lex_state = 131, .external_lex_state = 4}, + [4431] = {.lex_state = 131}, + [4432] = {.lex_state = 131}, + [4433] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4438] = {.lex_state = 131}, + [4439] = {.lex_state = 131}, + [4440] = {.lex_state = 131}, + [4441] = {.lex_state = 131}, + [4442] = {.lex_state = 131}, + [4443] = {.lex_state = 131}, + [4444] = {.lex_state = 131}, + [4445] = {.lex_state = 131}, + [4446] = {.lex_state = 131}, + [4447] = {.lex_state = 131}, + [4448] = {.lex_state = 131}, + [4449] = {.lex_state = 131}, + [4450] = {.lex_state = 131}, + [4451] = {.lex_state = 131}, + [4452] = {.lex_state = 131}, + [4453] = {.lex_state = 131}, + [4454] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4461] = {.lex_state = 131}, + [4462] = {.lex_state = 132}, + [4463] = {.lex_state = 131}, + [4464] = {.lex_state = 131, .external_lex_state = 4}, + [4465] = {.lex_state = 131, .external_lex_state = 4}, + [4466] = {.lex_state = 131}, + [4467] = {.lex_state = 131, .external_lex_state = 4}, + [4468] = {.lex_state = 131}, + [4469] = {.lex_state = 131, .external_lex_state = 4}, + [4470] = {.lex_state = 131}, + [4471] = {.lex_state = 131}, [4472] = {.lex_state = 131}, - [4473] = {.lex_state = 130}, - [4474] = {.lex_state = 130}, - [4475] = {.lex_state = 130}, - [4476] = {.lex_state = 130}, - [4477] = {.lex_state = 130}, - [4478] = {.lex_state = 130}, - [4479] = {.lex_state = 130}, - [4480] = {.lex_state = 130}, - [4481] = {.lex_state = 130}, - [4482] = {.lex_state = 130}, - [4483] = {.lex_state = 130}, - [4484] = {.lex_state = 130}, - [4485] = {.lex_state = 130}, - [4486] = {.lex_state = 130}, - [4487] = {.lex_state = 130}, - [4488] = {.lex_state = 130}, - [4489] = {.lex_state = 130, .external_lex_state = 4}, - [4490] = {.lex_state = 130, .external_lex_state = 4}, - [4491] = {.lex_state = 130}, - [4492] = {.lex_state = 130}, - [4493] = {.lex_state = 130, .external_lex_state = 4}, - [4494] = {.lex_state = 130}, - [4495] = {.lex_state = 130}, - [4496] = {.lex_state = 130}, - [4497] = {.lex_state = 130}, - [4498] = {.lex_state = 130}, - [4499] = {.lex_state = 130}, - [4500] = {.lex_state = 130, .external_lex_state = 4}, - [4501] = {.lex_state = 130}, - [4502] = {.lex_state = 130}, - [4503] = {.lex_state = 130}, - [4504] = {.lex_state = 130, .external_lex_state = 4}, - [4505] = {.lex_state = 130}, - [4506] = {.lex_state = 130}, - [4507] = {.lex_state = 130}, - [4508] = {.lex_state = 130}, - [4509] = {.lex_state = 130}, - [4510] = {.lex_state = 130, .external_lex_state = 4}, - [4511] = {.lex_state = 130, .external_lex_state = 4}, - [4512] = {.lex_state = 130, .external_lex_state = 4}, - [4513] = {.lex_state = 130, .external_lex_state = 4}, - [4514] = {.lex_state = 130}, - [4515] = {.lex_state = 130, .external_lex_state = 4}, - [4516] = {.lex_state = 130, .external_lex_state = 4}, - [4517] = {.lex_state = 130, .external_lex_state = 4}, - [4518] = {.lex_state = 130}, - [4519] = {.lex_state = 130}, - [4520] = {.lex_state = 130, .external_lex_state = 4}, - [4521] = {.lex_state = 130}, - [4522] = {.lex_state = 130}, - [4523] = {.lex_state = 130, .external_lex_state = 4}, - [4524] = {.lex_state = 130}, - [4525] = {.lex_state = 130}, - [4526] = {.lex_state = 130, .external_lex_state = 4}, - [4527] = {.lex_state = 130, .external_lex_state = 4}, - [4528] = {.lex_state = 130, .external_lex_state = 4}, - [4529] = {.lex_state = 130, .external_lex_state = 4}, - [4530] = {.lex_state = 130, .external_lex_state = 4}, - [4531] = {.lex_state = 130, .external_lex_state = 4}, - [4532] = {.lex_state = 130}, - [4533] = {.lex_state = 130}, - [4534] = {.lex_state = 130}, - [4535] = {.lex_state = 130}, - [4536] = {.lex_state = 130}, - [4537] = {.lex_state = 130}, - [4538] = {.lex_state = 130}, - [4539] = {.lex_state = 130}, - [4540] = {.lex_state = 130}, - [4541] = {.lex_state = 130}, - [4542] = {.lex_state = 130}, - [4543] = {.lex_state = 130, .external_lex_state = 4}, - [4544] = {.lex_state = 130, .external_lex_state = 4}, - [4545] = {.lex_state = 130}, - [4546] = {.lex_state = 130}, - [4547] = {.lex_state = 130}, - [4548] = {.lex_state = 130}, - [4549] = {.lex_state = 130}, - [4550] = {.lex_state = 130}, - [4551] = {.lex_state = 130}, - [4552] = {.lex_state = 130}, - [4553] = {.lex_state = 130}, - [4554] = {.lex_state = 130}, - [4555] = {.lex_state = 130}, - [4556] = {.lex_state = 130}, - [4557] = {.lex_state = 130}, - [4558] = {.lex_state = 130}, - [4559] = {.lex_state = 130}, - [4560] = {.lex_state = 130}, - [4561] = {.lex_state = 130}, - [4562] = {.lex_state = 130, .external_lex_state = 4}, - [4563] = {.lex_state = 130}, - [4564] = {.lex_state = 130}, - [4565] = {.lex_state = 130}, - [4566] = {.lex_state = 130}, - [4567] = {.lex_state = 130}, - [4568] = {.lex_state = 130, .external_lex_state = 4}, - [4569] = {.lex_state = 130, .external_lex_state = 4}, - [4570] = {.lex_state = 130}, - [4571] = {.lex_state = 130}, - [4572] = {.lex_state = 130, .external_lex_state = 4}, - [4573] = {.lex_state = 130, .external_lex_state = 4}, - [4574] = {.lex_state = 130, .external_lex_state = 4}, + [4473] = {.lex_state = 131}, + [4474] = {.lex_state = 131}, + [4475] = {.lex_state = 131}, + [4476] = {.lex_state = 131}, + [4477] = {.lex_state = 131}, + [4478] = {.lex_state = 131, .external_lex_state = 4}, + [4479] = {.lex_state = 131}, + [4480] = {.lex_state = 131}, + [4481] = {.lex_state = 131}, + [4482] = {.lex_state = 131}, + [4483] = {.lex_state = 131, .external_lex_state = 4}, + [4484] = {.lex_state = 131}, + [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}, + [4492] = {.lex_state = 131, .external_lex_state = 4}, + [4493] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4498] = {.lex_state = 131}, + [4499] = {.lex_state = 131}, + [4500] = {.lex_state = 131}, + [4501] = {.lex_state = 131}, + [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}, + [4507] = {.lex_state = 131}, + [4508] = {.lex_state = 131, .external_lex_state = 4}, + [4509] = {.lex_state = 131}, + [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}, + [4518] = {.lex_state = 131, .external_lex_state = 4}, + [4519] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [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}, + [4532] = {.lex_state = 131}, + [4533] = {.lex_state = 131}, + [4534] = {.lex_state = 131}, + [4535] = {.lex_state = 131}, + [4536] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4547] = {.lex_state = 132}, + [4548] = {.lex_state = 131, .external_lex_state = 4}, + [4549] = {.lex_state = 131}, + [4550] = {.lex_state = 131, .external_lex_state = 4}, + [4551] = {.lex_state = 131}, + [4552] = {.lex_state = 131, .external_lex_state = 4}, + [4553] = {.lex_state = 131, .external_lex_state = 4}, + [4554] = {.lex_state = 131}, + [4555] = {.lex_state = 132}, + [4556] = {.lex_state = 131}, + [4557] = {.lex_state = 131}, + [4558] = {.lex_state = 131}, + [4559] = {.lex_state = 131}, + [4560] = {.lex_state = 131}, + [4561] = {.lex_state = 131}, + [4562] = {.lex_state = 131}, + [4563] = {.lex_state = 131}, + [4564] = {.lex_state = 131}, + [4565] = {.lex_state = 131}, + [4566] = {.lex_state = 131}, + [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}, + [4573] = {.lex_state = 131, .external_lex_state = 4}, + [4574] = {.lex_state = 131, .external_lex_state = 4}, [4575] = {.lex_state = 131}, - [4576] = {.lex_state = 130, .external_lex_state = 4}, - [4577] = {.lex_state = 130, .external_lex_state = 4}, - [4578] = {.lex_state = 130, .external_lex_state = 4}, - [4579] = {.lex_state = 130, .external_lex_state = 4}, - [4580] = {.lex_state = 130}, - [4581] = {.lex_state = 130, .external_lex_state = 4}, - [4582] = {.lex_state = 130, .external_lex_state = 4}, - [4583] = {.lex_state = 130, .external_lex_state = 4}, - [4584] = {.lex_state = 130}, - [4585] = {.lex_state = 130}, - [4586] = {.lex_state = 130, .external_lex_state = 4}, - [4587] = {.lex_state = 130}, - [4588] = {.lex_state = 130, .external_lex_state = 4}, - [4589] = {.lex_state = 130}, - [4590] = {.lex_state = 130, .external_lex_state = 4}, - [4591] = {.lex_state = 131}, - [4592] = {.lex_state = 130, .external_lex_state = 4}, - [4593] = {.lex_state = 130, .external_lex_state = 4}, - [4594] = {.lex_state = 130}, - [4595] = {.lex_state = 130, .external_lex_state = 4}, - [4596] = {.lex_state = 130}, - [4597] = {.lex_state = 130, .external_lex_state = 4}, - [4598] = {.lex_state = 130, .external_lex_state = 4}, - [4599] = {.lex_state = 130, .external_lex_state = 4}, - [4600] = {.lex_state = 17}, - [4601] = {.lex_state = 130, .external_lex_state = 4}, - [4602] = {.lex_state = 130}, - [4603] = {.lex_state = 130}, - [4604] = {.lex_state = 130}, - [4605] = {.lex_state = 130}, - [4606] = {.lex_state = 130}, - [4607] = {.lex_state = 130, .external_lex_state = 4}, - [4608] = {.lex_state = 130, .external_lex_state = 4}, - [4609] = {.lex_state = 130}, - [4610] = {.lex_state = 130}, - [4611] = {.lex_state = 130, .external_lex_state = 4}, - [4612] = {.lex_state = 130}, - [4613] = {.lex_state = 130, .external_lex_state = 4}, - [4614] = {.lex_state = 130}, - [4615] = {.lex_state = 130}, - [4616] = {.lex_state = 130, .external_lex_state = 4}, - [4617] = {.lex_state = 130}, - [4618] = {.lex_state = 130, .external_lex_state = 4}, - [4619] = {.lex_state = 130}, - [4620] = {.lex_state = 130}, - [4621] = {.lex_state = 130}, - [4622] = {.lex_state = 130}, - [4623] = {.lex_state = 130}, - [4624] = {.lex_state = 130, .external_lex_state = 4}, - [4625] = {.lex_state = 130}, - [4626] = {.lex_state = 130}, - [4627] = {.lex_state = 130, .external_lex_state = 4}, - [4628] = {.lex_state = 130}, - [4629] = {.lex_state = 130}, - [4630] = {.lex_state = 130, .external_lex_state = 4}, - [4631] = {.lex_state = 130}, - [4632] = {.lex_state = 130, .external_lex_state = 4}, - [4633] = {.lex_state = 130, .external_lex_state = 4}, - [4634] = {.lex_state = 130, .external_lex_state = 4}, - [4635] = {.lex_state = 130, .external_lex_state = 4}, - [4636] = {.lex_state = 130, .external_lex_state = 4}, - [4637] = {.lex_state = 130, .external_lex_state = 4}, - [4638] = {.lex_state = 130}, - [4639] = {.lex_state = 130, .external_lex_state = 4}, - [4640] = {.lex_state = 130}, - [4641] = {.lex_state = 130, .external_lex_state = 4}, - [4642] = {.lex_state = 130}, - [4643] = {.lex_state = 130}, - [4644] = {.lex_state = 130, .external_lex_state = 4}, - [4645] = {.lex_state = 130, .external_lex_state = 4}, - [4646] = {.lex_state = 130, .external_lex_state = 4}, - [4647] = {.lex_state = 130}, - [4648] = {.lex_state = 130}, - [4649] = {.lex_state = 130, .external_lex_state = 4}, - [4650] = {.lex_state = 130}, - [4651] = {.lex_state = 130}, - [4652] = {.lex_state = 130, .external_lex_state = 4}, - [4653] = {.lex_state = 130, .external_lex_state = 4}, - [4654] = {.lex_state = 130, .external_lex_state = 4}, + [4576] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [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}, + [4586] = {.lex_state = 131, .external_lex_state = 4}, + [4587] = {.lex_state = 131}, + [4588] = {.lex_state = 131}, + [4589] = {.lex_state = 131}, + [4590] = {.lex_state = 131}, + [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}, + [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}, + [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}, + [4617] = {.lex_state = 131, .external_lex_state = 4}, + [4618] = {.lex_state = 131, .external_lex_state = 4}, + [4619] = {.lex_state = 131}, + [4620] = {.lex_state = 131, .external_lex_state = 4}, + [4621] = {.lex_state = 131}, + [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}, + [4627] = {.lex_state = 131}, + [4628] = {.lex_state = 131, .external_lex_state = 4}, + [4629] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4639] = {.lex_state = 131, .external_lex_state = 4}, + [4640] = {.lex_state = 131, .external_lex_state = 4}, + [4641] = {.lex_state = 131, .external_lex_state = 4}, + [4642] = {.lex_state = 131, .external_lex_state = 4}, + [4643] = {.lex_state = 131, .external_lex_state = 4}, + [4644] = {.lex_state = 131, .external_lex_state = 4}, + [4645] = {.lex_state = 131, .external_lex_state = 4}, + [4646] = {.lex_state = 131, .external_lex_state = 4}, + [4647] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4652] = {.lex_state = 131, .external_lex_state = 4}, + [4653] = {.lex_state = 131}, + [4654] = {.lex_state = 6}, [4655] = {.lex_state = 131}, - [4656] = {.lex_state = 130}, - [4657] = {.lex_state = 130}, - [4658] = {.lex_state = 130, .external_lex_state = 4}, - [4659] = {.lex_state = 130, .external_lex_state = 4}, - [4660] = {.lex_state = 130, .external_lex_state = 4}, - [4661] = {.lex_state = 130, .external_lex_state = 4}, - [4662] = {.lex_state = 130, .external_lex_state = 4}, - [4663] = {.lex_state = 130, .external_lex_state = 4}, - [4664] = {.lex_state = 130, .external_lex_state = 4}, - [4665] = {.lex_state = 130, .external_lex_state = 4}, - [4666] = {.lex_state = 130}, - [4667] = {.lex_state = 130}, - [4668] = {.lex_state = 6}, - [4669] = {.lex_state = 130}, - [4670] = {.lex_state = 130, .external_lex_state = 4}, - [4671] = {.lex_state = 130, .external_lex_state = 4}, - [4672] = {.lex_state = 130}, - [4673] = {.lex_state = 130}, - [4674] = {.lex_state = 130}, - [4675] = {.lex_state = 130}, - [4676] = {.lex_state = 130, .external_lex_state = 4}, - [4677] = {.lex_state = 130, .external_lex_state = 4}, - [4678] = {.lex_state = 130}, - [4679] = {.lex_state = 130}, - [4680] = {.lex_state = 130, .external_lex_state = 4}, - [4681] = {.lex_state = 130}, - [4682] = {.lex_state = 130}, - [4683] = {.lex_state = 130}, - [4684] = {.lex_state = 130}, - [4685] = {.lex_state = 130}, - [4686] = {.lex_state = 130}, - [4687] = {.lex_state = 130}, - [4688] = {.lex_state = 130}, - [4689] = {.lex_state = 130}, - [4690] = {.lex_state = 130}, - [4691] = {.lex_state = 130}, - [4692] = {.lex_state = 130}, - [4693] = {.lex_state = 130}, - [4694] = {.lex_state = 130, .external_lex_state = 4}, - [4695] = {.lex_state = 130}, - [4696] = {.lex_state = 130, .external_lex_state = 4}, - [4697] = {.lex_state = 130}, - [4698] = {.lex_state = 130, .external_lex_state = 4}, - [4699] = {.lex_state = 130, .external_lex_state = 4}, - [4700] = {.lex_state = 130, .external_lex_state = 4}, - [4701] = {.lex_state = 130, .external_lex_state = 4}, - [4702] = {.lex_state = 130}, - [4703] = {.lex_state = 130}, - [4704] = {.lex_state = 130}, - [4705] = {.lex_state = 130, .external_lex_state = 4}, - [4706] = {.lex_state = 130, .external_lex_state = 4}, - [4707] = {.lex_state = 130}, - [4708] = {.lex_state = 130, .external_lex_state = 4}, + [4656] = {.lex_state = 131}, + [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}, + [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}, + [4671] = {.lex_state = 131}, + [4672] = {.lex_state = 131, .external_lex_state = 4}, + [4673] = {.lex_state = 131}, + [4674] = {.lex_state = 131, .external_lex_state = 4}, + [4675] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4682] = {.lex_state = 131}, + [4683] = {.lex_state = 131}, + [4684] = {.lex_state = 131}, + [4685] = {.lex_state = 131}, + [4686] = {.lex_state = 131, .external_lex_state = 4}, + [4687] = {.lex_state = 131, .external_lex_state = 4}, + [4688] = {.lex_state = 131}, + [4689] = {.lex_state = 131}, + [4690] = {.lex_state = 131}, + [4691] = {.lex_state = 131}, + [4692] = {.lex_state = 131}, + [4693] = {.lex_state = 131}, + [4694] = {.lex_state = 131}, + [4695] = {.lex_state = 131}, + [4696] = {.lex_state = 131}, + [4697] = {.lex_state = 131}, + [4698] = {.lex_state = 131}, + [4699] = {.lex_state = 131}, + [4700] = {.lex_state = 131}, + [4701] = {.lex_state = 131}, + [4702] = {.lex_state = 131}, + [4703] = {.lex_state = 132}, + [4704] = {.lex_state = 131, .external_lex_state = 4}, + [4705] = {.lex_state = 131}, + [4706] = {.lex_state = 131}, + [4707] = {.lex_state = 131, .external_lex_state = 4}, + [4708] = {.lex_state = 131}, [4709] = {.lex_state = 131}, - [4710] = {.lex_state = 130}, - [4711] = {.lex_state = 130, .external_lex_state = 4}, - [4712] = {.lex_state = 130}, - [4713] = {.lex_state = 130}, - [4714] = {.lex_state = 130}, - [4715] = {.lex_state = 130, .external_lex_state = 4}, - [4716] = {.lex_state = 130, .external_lex_state = 4}, - [4717] = {.lex_state = 130}, - [4718] = {.lex_state = 130}, - [4719] = {.lex_state = 130, .external_lex_state = 4}, - [4720] = {.lex_state = 130, .external_lex_state = 4}, - [4721] = {.lex_state = 130, .external_lex_state = 4}, - [4722] = {.lex_state = 130, .external_lex_state = 4}, - [4723] = {.lex_state = 130, .external_lex_state = 4}, - [4724] = {.lex_state = 130}, - [4725] = {.lex_state = 130, .external_lex_state = 4}, - [4726] = {.lex_state = 130}, - [4727] = {.lex_state = 130}, - [4728] = {.lex_state = 130}, - [4729] = {.lex_state = 130}, - [4730] = {.lex_state = 130}, - [4731] = {.lex_state = 130}, - [4732] = {.lex_state = 130}, - [4733] = {.lex_state = 130}, - [4734] = {.lex_state = 130, .external_lex_state = 4}, - [4735] = {.lex_state = 130}, - [4736] = {.lex_state = 130}, - [4737] = {.lex_state = 130}, - [4738] = {.lex_state = 130}, - [4739] = {.lex_state = 130}, - [4740] = {.lex_state = 130}, - [4741] = {.lex_state = 130}, - [4742] = {.lex_state = 130}, - [4743] = {.lex_state = 130}, - [4744] = {.lex_state = 130}, - [4745] = {.lex_state = 130}, - [4746] = {.lex_state = 130}, - [4747] = {.lex_state = 130, .external_lex_state = 4}, - [4748] = {.lex_state = 130}, - [4749] = {.lex_state = 130}, - [4750] = {.lex_state = 131}, - [4751] = {.lex_state = 130}, - [4752] = {.lex_state = 130, .external_lex_state = 4}, - [4753] = {.lex_state = 130}, - [4754] = {.lex_state = 130}, + [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}, + [4716] = {.lex_state = 131}, + [4717] = {.lex_state = 131}, + [4718] = {.lex_state = 131}, + [4719] = {.lex_state = 131}, + [4720] = {.lex_state = 131}, + [4721] = {.lex_state = 131}, + [4722] = {.lex_state = 131}, + [4723] = {.lex_state = 131}, + [4724] = {.lex_state = 131}, + [4725] = {.lex_state = 131}, + [4726] = {.lex_state = 131}, + [4727] = {.lex_state = 131}, + [4728] = {.lex_state = 131}, + [4729] = {.lex_state = 131}, + [4730] = {.lex_state = 131, .external_lex_state = 4}, + [4731] = {.lex_state = 131}, + [4732] = {.lex_state = 131}, + [4733] = {.lex_state = 131}, + [4734] = {.lex_state = 131}, + [4735] = {.lex_state = 131}, + [4736] = {.lex_state = 131}, + [4737] = {.lex_state = 131}, + [4738] = {.lex_state = 131}, + [4739] = {.lex_state = 131}, + [4740] = {.lex_state = 131}, + [4741] = {.lex_state = 131}, + [4742] = {.lex_state = 131}, + [4743] = {.lex_state = 131}, + [4744] = {.lex_state = 131}, + [4745] = {.lex_state = 131}, + [4746] = {.lex_state = 131}, + [4747] = {.lex_state = 131}, + [4748] = {.lex_state = 131}, + [4749] = {.lex_state = 131}, + [4750] = {.lex_state = 132}, + [4751] = {.lex_state = 131}, + [4752] = {.lex_state = 131}, + [4753] = {.lex_state = 131}, + [4754] = {.lex_state = 131}, [4755] = {.lex_state = 131}, - [4756] = {.lex_state = 130, .external_lex_state = 4}, - [4757] = {.lex_state = 130}, - [4758] = {.lex_state = 130, .external_lex_state = 4}, - [4759] = {.lex_state = 130}, - [4760] = {.lex_state = 130}, - [4761] = {.lex_state = 130}, - [4762] = {.lex_state = 130}, - [4763] = {.lex_state = 130}, - [4764] = {.lex_state = 130}, - [4765] = {.lex_state = 130}, - [4766] = {.lex_state = 130}, + [4756] = {.lex_state = 131}, + [4757] = {.lex_state = 132}, + [4758] = {.lex_state = 131}, + [4759] = {.lex_state = 131, .external_lex_state = 4}, + [4760] = {.lex_state = 131}, + [4761] = {.lex_state = 131, .external_lex_state = 4}, + [4762] = {.lex_state = 131, .external_lex_state = 4}, + [4763] = {.lex_state = 131}, + [4764] = {.lex_state = 131, .external_lex_state = 4}, + [4765] = {.lex_state = 131}, + [4766] = {.lex_state = 131}, [4767] = {.lex_state = 131}, - [4768] = {.lex_state = 130}, - [4769] = {.lex_state = 130}, - [4770] = {.lex_state = 130}, - [4771] = {.lex_state = 130}, - [4772] = {.lex_state = 130}, - [4773] = {.lex_state = 130}, - [4774] = {.lex_state = 130}, - [4775] = {.lex_state = 130, .external_lex_state = 4}, - [4776] = {.lex_state = 130}, - [4777] = {.lex_state = 131}, - [4778] = {.lex_state = 130}, - [4779] = {.lex_state = 130}, - [4780] = {.lex_state = 130}, - [4781] = {.lex_state = 130}, - [4782] = {.lex_state = 130}, - [4783] = {.lex_state = 130}, - [4784] = {.lex_state = 130}, - [4785] = {.lex_state = 130}, - [4786] = {.lex_state = 131}, - [4787] = {.lex_state = 130}, - [4788] = {.lex_state = 130}, - [4789] = {.lex_state = 130}, + [4768] = {.lex_state = 131}, + [4769] = {.lex_state = 131}, + [4770] = {.lex_state = 131}, + [4771] = {.lex_state = 131}, + [4772] = {.lex_state = 131, .external_lex_state = 4}, + [4773] = {.lex_state = 131}, + [4774] = {.lex_state = 131}, + [4775] = {.lex_state = 131}, + [4776] = {.lex_state = 131}, + [4777] = {.lex_state = 131, .external_lex_state = 4}, + [4778] = {.lex_state = 131}, + [4779] = {.lex_state = 131, .external_lex_state = 4}, + [4780] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4787] = {.lex_state = 131}, + [4788] = {.lex_state = 131}, + [4789] = {.lex_state = 131}, [4790] = {.lex_state = 131}, - [4791] = {.lex_state = 130}, - [4792] = {.lex_state = 130}, - [4793] = {.lex_state = 130}, - [4794] = {.lex_state = 130}, - [4795] = {.lex_state = 130}, + [4791] = {.lex_state = 131}, + [4792] = {.lex_state = 131}, + [4793] = {.lex_state = 131}, + [4794] = {.lex_state = 131}, + [4795] = {.lex_state = 131}, [4796] = {.lex_state = 131}, - [4797] = {.lex_state = 130}, - [4798] = {.lex_state = 130}, - [4799] = {.lex_state = 130}, - [4800] = {.lex_state = 130}, + [4797] = {.lex_state = 131}, + [4798] = {.lex_state = 131}, + [4799] = {.lex_state = 131}, + [4800] = {.lex_state = 131}, [4801] = {.lex_state = 131}, - [4802] = {.lex_state = 130}, - [4803] = {.lex_state = 130}, - [4804] = {.lex_state = 130}, - [4805] = {.lex_state = 130}, - [4806] = {.lex_state = 130}, - [4807] = {.lex_state = 130, .external_lex_state = 4}, - [4808] = {.lex_state = 130}, - [4809] = {.lex_state = 130}, - [4810] = {.lex_state = 130}, - [4811] = {.lex_state = 130}, - [4812] = {.lex_state = 130}, - [4813] = {.lex_state = 130}, - [4814] = {.lex_state = 130}, - [4815] = {.lex_state = 130}, - [4816] = {.lex_state = 130}, - [4817] = {.lex_state = 130}, - [4818] = {.lex_state = 130}, - [4819] = {.lex_state = 130}, - [4820] = {.lex_state = 130}, - [4821] = {.lex_state = 130}, - [4822] = {.lex_state = 130}, - [4823] = {.lex_state = 130}, - [4824] = {.lex_state = 130}, - [4825] = {.lex_state = 130}, - [4826] = {.lex_state = 130}, - [4827] = {.lex_state = 130}, - [4828] = {.lex_state = 130}, - [4829] = {.lex_state = 130}, - [4830] = {.lex_state = 130}, - [4831] = {.lex_state = 130}, + [4802] = {.lex_state = 131}, + [4803] = {.lex_state = 131}, + [4804] = {.lex_state = 131}, + [4805] = {.lex_state = 131}, + [4806] = {.lex_state = 131}, + [4807] = {.lex_state = 131}, + [4808] = {.lex_state = 131}, + [4809] = {.lex_state = 131, .external_lex_state = 4}, + [4810] = {.lex_state = 131}, + [4811] = {.lex_state = 131, .external_lex_state = 4}, + [4812] = {.lex_state = 131, .external_lex_state = 4}, + [4813] = {.lex_state = 131}, + [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}, + [4822] = {.lex_state = 131}, + [4823] = {.lex_state = 131}, + [4824] = {.lex_state = 131}, + [4825] = {.lex_state = 131}, + [4826] = {.lex_state = 131}, + [4827] = {.lex_state = 131}, + [4828] = {.lex_state = 131}, + [4829] = {.lex_state = 131}, + [4830] = {.lex_state = 131}, + [4831] = {.lex_state = 132}, [4832] = {.lex_state = 131}, - [4833] = {.lex_state = 130}, - [4834] = {.lex_state = 130}, - [4835] = {.lex_state = 130}, - [4836] = {.lex_state = 130}, - [4837] = {.lex_state = 130}, - [4838] = {.lex_state = 130, .external_lex_state = 4}, - [4839] = {.lex_state = 130}, - [4840] = {.lex_state = 130}, - [4841] = {.lex_state = 130}, - [4842] = {.lex_state = 130}, - [4843] = {.lex_state = 130}, - [4844] = {.lex_state = 130}, - [4845] = {.lex_state = 130}, - [4846] = {.lex_state = 130}, - [4847] = {.lex_state = 130}, - [4848] = {.lex_state = 130}, - [4849] = {.lex_state = 130}, - [4850] = {.lex_state = 130}, - [4851] = {.lex_state = 130}, - [4852] = {.lex_state = 130}, + [4833] = {.lex_state = 131, .external_lex_state = 4}, + [4834] = {.lex_state = 131}, + [4835] = {.lex_state = 131}, + [4836] = {.lex_state = 131}, + [4837] = {.lex_state = 131}, + [4838] = {.lex_state = 131}, + [4839] = {.lex_state = 131}, + [4840] = {.lex_state = 131}, + [4841] = {.lex_state = 131}, + [4842] = {.lex_state = 131}, + [4843] = {.lex_state = 131}, + [4844] = {.lex_state = 131}, + [4845] = {.lex_state = 131}, + [4846] = {.lex_state = 131}, + [4847] = {.lex_state = 131}, + [4848] = {.lex_state = 131}, + [4849] = {.lex_state = 131}, + [4850] = {.lex_state = 131}, + [4851] = {.lex_state = 131}, + [4852] = {.lex_state = 131}, [4853] = {.lex_state = 131}, - [4854] = {.lex_state = 130}, - [4855] = {.lex_state = 130, .external_lex_state = 4}, - [4856] = {.lex_state = 130}, - [4857] = {.lex_state = 131}, - [4858] = {.lex_state = 130}, - [4859] = {.lex_state = 130}, - [4860] = {.lex_state = 130}, - [4861] = {.lex_state = 130}, - [4862] = {.lex_state = 130}, - [4863] = {.lex_state = 130}, - [4864] = {.lex_state = 130}, - [4865] = {.lex_state = 130}, - [4866] = {.lex_state = 130}, - [4867] = {.lex_state = 130, .external_lex_state = 4}, - [4868] = {.lex_state = 130}, - [4869] = {.lex_state = 130}, - [4870] = {.lex_state = 130}, - [4871] = {.lex_state = 130}, - [4872] = {.lex_state = 130}, - [4873] = {.lex_state = 130}, - [4874] = {.lex_state = 130}, - [4875] = {.lex_state = 130}, - [4876] = {.lex_state = 130}, - [4877] = {.lex_state = 130}, - [4878] = {.lex_state = 130}, - [4879] = {.lex_state = 130}, + [4854] = {.lex_state = 131}, + [4855] = {.lex_state = 131}, + [4856] = {.lex_state = 131}, + [4857] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4865] = {.lex_state = 131}, + [4866] = {.lex_state = 131}, + [4867] = {.lex_state = 131}, + [4868] = {.lex_state = 131}, + [4869] = {.lex_state = 131}, + [4870] = {.lex_state = 132}, + [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}, [4880] = {.lex_state = 131}, - [4881] = {.lex_state = 130}, - [4882] = {.lex_state = 130}, - [4883] = {.lex_state = 130}, - [4884] = {.lex_state = 130}, + [4881] = {.lex_state = 131}, + [4882] = {.lex_state = 131}, + [4883] = {.lex_state = 131}, + [4884] = {.lex_state = 131}, [4885] = {.lex_state = 131}, - [4886] = {.lex_state = 130}, - [4887] = {.lex_state = 130}, - [4888] = {.lex_state = 130}, - [4889] = {.lex_state = 130}, - [4890] = {.lex_state = 130}, - [4891] = {.lex_state = 130}, - [4892] = {.lex_state = 130}, - [4893] = {.lex_state = 130}, + [4886] = {.lex_state = 131}, + [4887] = {.lex_state = 131}, + [4888] = {.lex_state = 131}, + [4889] = {.lex_state = 131, .external_lex_state = 4}, + [4890] = {.lex_state = 131}, + [4891] = {.lex_state = 131}, + [4892] = {.lex_state = 131}, + [4893] = {.lex_state = 131}, [4894] = {.lex_state = 131}, - [4895] = {.lex_state = 130}, - [4896] = {.lex_state = 130, .external_lex_state = 4}, - [4897] = {.lex_state = 130}, - [4898] = {.lex_state = 130}, + [4895] = {.lex_state = 131}, + [4896] = {.lex_state = 131}, + [4897] = {.lex_state = 131}, + [4898] = {.lex_state = 132}, [4899] = {.lex_state = 131}, - [4900] = {.lex_state = 130, .external_lex_state = 4}, - [4901] = {.lex_state = 130}, - [4902] = {.lex_state = 130}, + [4900] = {.lex_state = 131}, + [4901] = {.lex_state = 131}, + [4902] = {.lex_state = 131}, [4903] = {.lex_state = 131}, - [4904] = {.lex_state = 130}, + [4904] = {.lex_state = 132}, [4905] = {.lex_state = 131}, - [4906] = {.lex_state = 130, .external_lex_state = 4}, - [4907] = {.lex_state = 130}, + [4906] = {.lex_state = 132}, + [4907] = {.lex_state = 131}, [4908] = {.lex_state = 131}, - [4909] = {.lex_state = 130}, + [4909] = {.lex_state = 131}, [4910] = {.lex_state = 131}, - [4911] = {.lex_state = 130}, - [4912] = {.lex_state = 130}, + [4911] = {.lex_state = 132}, + [4912] = {.lex_state = 131, .external_lex_state = 4}, [4913] = {.lex_state = 131}, [4914] = {.lex_state = 131}, - [4915] = {.lex_state = 130}, - [4916] = {.lex_state = 130}, - [4917] = {.lex_state = 130}, - [4918] = {.lex_state = 130, .external_lex_state = 4}, - [4919] = {.lex_state = 131}, - [4920] = {.lex_state = 130}, - [4921] = {.lex_state = 130, .external_lex_state = 4}, + [4915] = {.lex_state = 131}, + [4916] = {.lex_state = 131}, + [4917] = {.lex_state = 131}, + [4918] = {.lex_state = 131}, + [4919] = {.lex_state = 132}, + [4920] = {.lex_state = 131}, + [4921] = {.lex_state = 131}, [4922] = {.lex_state = 131}, - [4923] = {.lex_state = 130}, - [4924] = {.lex_state = 130}, - [4925] = {.lex_state = 130}, - [4926] = {.lex_state = 130}, - [4927] = {.lex_state = 130, .external_lex_state = 4}, - [4928] = {.lex_state = 130}, - [4929] = {.lex_state = 130}, - [4930] = {.lex_state = 130}, - [4931] = {.lex_state = 130}, - [4932] = {.lex_state = 130}, - [4933] = {.lex_state = 130}, - [4934] = {.lex_state = 130}, - [4935] = {.lex_state = 130}, - [4936] = {.lex_state = 130}, - [4937] = {.lex_state = 130}, - [4938] = {.lex_state = 130, .external_lex_state = 4}, - [4939] = {.lex_state = 130}, - [4940] = {.lex_state = 130}, - [4941] = {.lex_state = 130}, - [4942] = {.lex_state = 130}, - [4943] = {.lex_state = 130}, - [4944] = {.lex_state = 130}, - [4945] = {.lex_state = 130}, - [4946] = {.lex_state = 130}, - [4947] = {.lex_state = 130, .external_lex_state = 4}, - [4948] = {.lex_state = 130}, - [4949] = {.lex_state = 130}, - [4950] = {.lex_state = 130}, - [4951] = {.lex_state = 130}, - [4952] = {.lex_state = 130}, - [4953] = {.lex_state = 130}, - [4954] = {.lex_state = 130}, - [4955] = {.lex_state = 130}, - [4956] = {.lex_state = 130}, - [4957] = {.lex_state = 130}, - [4958] = {.lex_state = 130, .external_lex_state = 4}, - [4959] = {.lex_state = 130}, - [4960] = {.lex_state = 130}, - [4961] = {.lex_state = 130}, - [4962] = {.lex_state = 130}, - [4963] = {.lex_state = 130, .external_lex_state = 4}, - [4964] = {.lex_state = 130}, - [4965] = {.lex_state = 130}, - [4966] = {.lex_state = 130}, - [4967] = {.lex_state = 130}, - [4968] = {.lex_state = 130}, - [4969] = {.lex_state = 130}, - [4970] = {.lex_state = 130, .external_lex_state = 4}, - [4971] = {.lex_state = 130}, - [4972] = {.lex_state = 130}, - [4973] = {.lex_state = 130, .external_lex_state = 4}, + [4923] = {.lex_state = 132}, + [4924] = {.lex_state = 132}, + [4925] = {.lex_state = 131}, + [4926] = {.lex_state = 131}, + [4927] = {.lex_state = 131}, + [4928] = {.lex_state = 131, .external_lex_state = 4}, + [4929] = {.lex_state = 131}, + [4930] = {.lex_state = 131}, + [4931] = {.lex_state = 131}, + [4932] = {.lex_state = 131}, + [4933] = {.lex_state = 131}, + [4934] = {.lex_state = 131}, + [4935] = {.lex_state = 131}, + [4936] = {.lex_state = 132}, + [4937] = {.lex_state = 132}, + [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}, + [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}, + [4959] = {.lex_state = 131}, + [4960] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [4967] = {.lex_state = 131}, + [4968] = {.lex_state = 131}, + [4969] = {.lex_state = 131}, + [4970] = {.lex_state = 132}, + [4971] = {.lex_state = 131}, + [4972] = {.lex_state = 131}, + [4973] = {.lex_state = 131}, [4974] = {.lex_state = 131}, - [4975] = {.lex_state = 130}, - [4976] = {.lex_state = 130}, - [4977] = {.lex_state = 130}, + [4975] = {.lex_state = 131, .external_lex_state = 4}, + [4976] = {.lex_state = 131}, + [4977] = {.lex_state = 131}, [4978] = {.lex_state = 131}, - [4979] = {.lex_state = 130}, + [4979] = {.lex_state = 131}, [4980] = {.lex_state = 131}, - [4981] = {.lex_state = 130}, - [4982] = {.lex_state = 130}, + [4981] = {.lex_state = 131}, + [4982] = {.lex_state = 132}, [4983] = {.lex_state = 131}, - [4984] = {.lex_state = 130}, - [4985] = {.lex_state = 130}, - [4986] = {.lex_state = 130, .external_lex_state = 4}, - [4987] = {.lex_state = 130, .external_lex_state = 4}, - [4988] = {.lex_state = 130}, - [4989] = {.lex_state = 130, .external_lex_state = 4}, - [4990] = {.lex_state = 130}, - [4991] = {.lex_state = 130}, - [4992] = {.lex_state = 130, .external_lex_state = 4}, - [4993] = {.lex_state = 130}, - [4994] = {.lex_state = 130}, - [4995] = {.lex_state = 130}, - [4996] = {.lex_state = 130}, - [4997] = {.lex_state = 130}, - [4998] = {.lex_state = 10}, - [4999] = {.lex_state = 10}, - [5000] = {.lex_state = 130}, - [5001] = {.lex_state = 130}, - [5002] = {.lex_state = 130}, - [5003] = {.lex_state = 10}, - [5004] = {.lex_state = 130}, - [5005] = {.lex_state = 10}, - [5006] = {.lex_state = 10}, - [5007] = {.lex_state = 10}, - [5008] = {.lex_state = 130}, - [5009] = {.lex_state = 130}, - [5010] = {.lex_state = 130}, - [5011] = {.lex_state = 130}, - [5012] = {.lex_state = 130}, - [5013] = {.lex_state = 130}, - [5014] = {.lex_state = 130}, - [5015] = {.lex_state = 10}, - [5016] = {.lex_state = 130}, - [5017] = {.lex_state = 130}, - [5018] = {.lex_state = 130}, - [5019] = {.lex_state = 130}, - [5020] = {.lex_state = 130}, - [5021] = {.lex_state = 130}, - [5022] = {.lex_state = 10}, - [5023] = {.lex_state = 130}, - [5024] = {.lex_state = 130}, - [5025] = {.lex_state = 10}, - [5026] = {.lex_state = 130}, - [5027] = {.lex_state = 10}, - [5028] = {.lex_state = 130}, - [5029] = {.lex_state = 130}, - [5030] = {.lex_state = 130}, - [5031] = {.lex_state = 130}, - [5032] = {.lex_state = 10}, - [5033] = {.lex_state = 130}, - [5034] = {.lex_state = 10}, - [5035] = {.lex_state = 130}, - [5036] = {.lex_state = 130}, - [5037] = {.lex_state = 130}, - [5038] = {.lex_state = 130}, - [5039] = {.lex_state = 10}, - [5040] = {.lex_state = 130}, - [5041] = {.lex_state = 130}, - [5042] = {.lex_state = 130}, - [5043] = {.lex_state = 130}, - [5044] = {.lex_state = 130}, - [5045] = {.lex_state = 130}, - [5046] = {.lex_state = 10}, + [4984] = {.lex_state = 131}, + [4985] = {.lex_state = 131}, + [4986] = {.lex_state = 131}, + [4987] = {.lex_state = 131}, + [4988] = {.lex_state = 131}, + [4989] = {.lex_state = 131}, + [4990] = {.lex_state = 131}, + [4991] = {.lex_state = 131}, + [4992] = {.lex_state = 131}, + [4993] = {.lex_state = 131}, + [4994] = {.lex_state = 131}, + [4995] = {.lex_state = 131}, + [4996] = {.lex_state = 132}, + [4997] = {.lex_state = 131}, + [4998] = {.lex_state = 131}, + [4999] = {.lex_state = 131}, + [5000] = {.lex_state = 131}, + [5001] = {.lex_state = 132}, + [5002] = {.lex_state = 131}, + [5003] = {.lex_state = 131}, + [5004] = {.lex_state = 131}, + [5005] = {.lex_state = 131}, + [5006] = {.lex_state = 131}, + [5007] = {.lex_state = 132}, + [5008] = {.lex_state = 131}, + [5009] = {.lex_state = 131}, + [5010] = {.lex_state = 131}, + [5011] = {.lex_state = 131}, + [5012] = {.lex_state = 131}, + [5013] = {.lex_state = 132}, + [5014] = {.lex_state = 131}, + [5015] = {.lex_state = 131}, + [5016] = {.lex_state = 131}, + [5017] = {.lex_state = 131}, + [5018] = {.lex_state = 131, .external_lex_state = 4}, + [5019] = {.lex_state = 131}, + [5020] = {.lex_state = 131}, + [5021] = {.lex_state = 131}, + [5022] = {.lex_state = 132}, + [5023] = {.lex_state = 131}, + [5024] = {.lex_state = 131}, + [5025] = {.lex_state = 131, .external_lex_state = 4}, + [5026] = {.lex_state = 131}, + [5027] = {.lex_state = 131}, + [5028] = {.lex_state = 131}, + [5029] = {.lex_state = 132}, + [5030] = {.lex_state = 132}, + [5031] = {.lex_state = 131}, + [5032] = {.lex_state = 131}, + [5033] = {.lex_state = 131}, + [5034] = {.lex_state = 131}, + [5035] = {.lex_state = 131}, + [5036] = {.lex_state = 131}, + [5037] = {.lex_state = 131}, + [5038] = {.lex_state = 131}, + [5039] = {.lex_state = 131}, + [5040] = {.lex_state = 131}, + [5041] = {.lex_state = 131}, + [5042] = {.lex_state = 131}, + [5043] = {.lex_state = 131}, + [5044] = {.lex_state = 131}, + [5045] = {.lex_state = 131}, + [5046] = {.lex_state = 132}, [5047] = {.lex_state = 131}, - [5048] = {.lex_state = 130}, - [5049] = {.lex_state = 130}, - [5050] = {.lex_state = 130}, - [5051] = {.lex_state = 130}, - [5052] = {.lex_state = 130}, - [5053] = {.lex_state = 130}, - [5054] = {.lex_state = 10}, - [5055] = {.lex_state = 10}, - [5056] = {.lex_state = 130}, - [5057] = {.lex_state = 130}, - [5058] = {.lex_state = 130}, - [5059] = {.lex_state = 10}, - [5060] = {.lex_state = 130}, - [5061] = {.lex_state = 130}, - [5062] = {.lex_state = 130}, - [5063] = {.lex_state = 130}, - [5064] = {.lex_state = 130}, - [5065] = {.lex_state = 130}, - [5066] = {.lex_state = 130}, - [5067] = {.lex_state = 130}, + [5048] = {.lex_state = 131}, + [5049] = {.lex_state = 131}, + [5050] = {.lex_state = 131, .external_lex_state = 4}, + [5051] = {.lex_state = 131, .external_lex_state = 4}, + [5052] = {.lex_state = 131}, + [5053] = {.lex_state = 132}, + [5054] = {.lex_state = 131, .external_lex_state = 4}, + [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}, + [5060] = {.lex_state = 131}, + [5061] = {.lex_state = 131}, + [5062] = {.lex_state = 132}, + [5063] = {.lex_state = 131}, + [5064] = {.lex_state = 131}, + [5065] = {.lex_state = 132}, + [5066] = {.lex_state = 132}, + [5067] = {.lex_state = 131}, [5068] = {.lex_state = 131}, - [5069] = {.lex_state = 130}, - [5070] = {.lex_state = 130}, - [5071] = {.lex_state = 130}, - [5072] = {.lex_state = 10}, - [5073] = {.lex_state = 130, .external_lex_state = 4}, - [5074] = {.lex_state = 130}, - [5075] = {.lex_state = 130}, - [5076] = {.lex_state = 130}, - [5077] = {.lex_state = 130}, - [5078] = {.lex_state = 10}, - [5079] = {.lex_state = 130}, - [5080] = {.lex_state = 130}, - [5081] = {.lex_state = 130}, - [5082] = {.lex_state = 130}, - [5083] = {.lex_state = 130}, - [5084] = {.lex_state = 130}, - [5085] = {.lex_state = 130}, - [5086] = {.lex_state = 10}, - [5087] = {.lex_state = 130}, - [5088] = {.lex_state = 130}, + [5069] = {.lex_state = 131}, + [5070] = {.lex_state = 131}, + [5071] = {.lex_state = 131}, + [5072] = {.lex_state = 131}, + [5073] = {.lex_state = 131}, + [5074] = {.lex_state = 131}, + [5075] = {.lex_state = 131}, + [5076] = {.lex_state = 131}, + [5077] = {.lex_state = 131}, + [5078] = {.lex_state = 131}, + [5079] = {.lex_state = 131}, + [5080] = {.lex_state = 131}, + [5081] = {.lex_state = 131}, + [5082] = {.lex_state = 131}, + [5083] = {.lex_state = 131}, + [5084] = {.lex_state = 131}, + [5085] = {.lex_state = 131}, + [5086] = {.lex_state = 131}, + [5087] = {.lex_state = 131}, + [5088] = {.lex_state = 131}, [5089] = {.lex_state = 131}, - [5090] = {.lex_state = 130}, - [5091] = {.lex_state = 130}, - [5092] = {.lex_state = 130}, - [5093] = {.lex_state = 130}, - [5094] = {.lex_state = 130}, - [5095] = {.lex_state = 130}, - [5096] = {.lex_state = 130}, - [5097] = {.lex_state = 130}, - [5098] = {.lex_state = 130}, - [5099] = {.lex_state = 130}, - [5100] = {.lex_state = 130}, - [5101] = {.lex_state = 130}, - [5102] = {.lex_state = 130}, - [5103] = {.lex_state = 130}, - [5104] = {.lex_state = 130}, - [5105] = {.lex_state = 130}, - [5106] = {.lex_state = 130}, - [5107] = {.lex_state = 130}, - [5108] = {.lex_state = 130}, - [5109] = {.lex_state = 130}, - [5110] = {.lex_state = 130}, - [5111] = {.lex_state = 130}, - [5112] = {.lex_state = 10}, - [5113] = {.lex_state = 130}, - [5114] = {.lex_state = 130}, - [5115] = {.lex_state = 130}, - [5116] = {.lex_state = 130}, - [5117] = {.lex_state = 130}, - [5118] = {.lex_state = 130}, - [5119] = {.lex_state = 130}, - [5120] = {.lex_state = 130}, - [5121] = {.lex_state = 130}, - [5122] = {.lex_state = 130}, - [5123] = {.lex_state = 130}, + [5090] = {.lex_state = 131}, + [5091] = {.lex_state = 131}, + [5092] = {.lex_state = 131}, + [5093] = {.lex_state = 131}, + [5094] = {.lex_state = 131}, + [5095] = {.lex_state = 131}, + [5096] = {.lex_state = 131}, + [5097] = {.lex_state = 131}, + [5098] = {.lex_state = 131}, + [5099] = {.lex_state = 131}, + [5100] = {.lex_state = 131}, + [5101] = {.lex_state = 131}, + [5102] = {.lex_state = 131}, + [5103] = {.lex_state = 131}, + [5104] = {.lex_state = 131}, + [5105] = {.lex_state = 131}, + [5106] = {.lex_state = 131}, + [5107] = {.lex_state = 132}, + [5108] = {.lex_state = 131}, + [5109] = {.lex_state = 131}, + [5110] = {.lex_state = 131}, + [5111] = {.lex_state = 131}, + [5112] = {.lex_state = 131}, + [5113] = {.lex_state = 131}, + [5114] = {.lex_state = 131}, + [5115] = {.lex_state = 131}, + [5116] = {.lex_state = 131}, + [5117] = {.lex_state = 131, .external_lex_state = 4}, + [5118] = {.lex_state = 131}, + [5119] = {.lex_state = 131}, + [5120] = {.lex_state = 131}, + [5121] = {.lex_state = 10}, + [5122] = {.lex_state = 131}, + [5123] = {.lex_state = 131}, [5124] = {.lex_state = 131}, - [5125] = {.lex_state = 130}, + [5125] = {.lex_state = 131}, [5126] = {.lex_state = 131}, - [5127] = {.lex_state = 130}, - [5128] = {.lex_state = 130}, - [5129] = {.lex_state = 10}, - [5130] = {.lex_state = 130}, - [5131] = {.lex_state = 130}, - [5132] = {.lex_state = 130}, - [5133] = {.lex_state = 130}, - [5134] = {.lex_state = 130}, - [5135] = {.lex_state = 130}, - [5136] = {.lex_state = 130}, - [5137] = {.lex_state = 130}, - [5138] = {.lex_state = 130}, - [5139] = {.lex_state = 130}, - [5140] = {.lex_state = 130}, - [5141] = {.lex_state = 130}, - [5142] = {.lex_state = 130}, - [5143] = {.lex_state = 130}, - [5144] = {.lex_state = 130}, + [5127] = {.lex_state = 131}, + [5128] = {.lex_state = 131}, + [5129] = {.lex_state = 131}, + [5130] = {.lex_state = 132}, + [5131] = {.lex_state = 10}, + [5132] = {.lex_state = 10}, + [5133] = {.lex_state = 131}, + [5134] = {.lex_state = 131}, + [5135] = {.lex_state = 10}, + [5136] = {.lex_state = 10}, + [5137] = {.lex_state = 10}, + [5138] = {.lex_state = 131}, + [5139] = {.lex_state = 131}, + [5140] = {.lex_state = 131}, + [5141] = {.lex_state = 131}, + [5142] = {.lex_state = 131}, + [5143] = {.lex_state = 131}, + [5144] = {.lex_state = 131}, [5145] = {.lex_state = 10}, - [5146] = {.lex_state = 130}, + [5146] = {.lex_state = 131}, [5147] = {.lex_state = 131}, - [5148] = {.lex_state = 130}, - [5149] = {.lex_state = 130}, - [5150] = {.lex_state = 130}, - [5151] = {.lex_state = 130}, - [5152] = {.lex_state = 130}, - [5153] = {.lex_state = 130}, + [5148] = {.lex_state = 131}, + [5149] = {.lex_state = 10}, + [5150] = {.lex_state = 131}, + [5151] = {.lex_state = 131}, + [5152] = {.lex_state = 131}, + [5153] = {.lex_state = 131}, [5154] = {.lex_state = 131}, - [5155] = {.lex_state = 10}, - [5156] = {.lex_state = 10}, + [5155] = {.lex_state = 131}, + [5156] = {.lex_state = 131}, [5157] = {.lex_state = 131}, - [5158] = {.lex_state = 10}, + [5158] = {.lex_state = 131}, [5159] = {.lex_state = 10}, - [5160] = {.lex_state = 130}, - [5161] = {.lex_state = 130}, - [5162] = {.lex_state = 130}, - [5163] = {.lex_state = 130}, - [5164] = {.lex_state = 130}, - [5165] = {.lex_state = 130}, - [5166] = {.lex_state = 130}, - [5167] = {.lex_state = 130}, - [5168] = {.lex_state = 130}, - [5169] = {.lex_state = 130}, - [5170] = {.lex_state = 130}, - [5171] = {.lex_state = 130}, - [5172] = {.lex_state = 130}, - [5173] = {.lex_state = 130}, - [5174] = {.lex_state = 131}, - [5175] = {.lex_state = 130}, - [5176] = {.lex_state = 130}, - [5177] = {.lex_state = 130}, - [5178] = {.lex_state = 130}, - [5179] = {.lex_state = 130}, - [5180] = {.lex_state = 130}, - [5181] = {.lex_state = 130}, - [5182] = {.lex_state = 130}, - [5183] = {.lex_state = 130}, - [5184] = {.lex_state = 130}, - [5185] = {.lex_state = 130}, - [5186] = {.lex_state = 130}, - [5187] = {.lex_state = 130}, - [5188] = {.lex_state = 130}, + [5160] = {.lex_state = 132}, + [5161] = {.lex_state = 131}, + [5162] = {.lex_state = 132}, + [5163] = {.lex_state = 131}, + [5164] = {.lex_state = 131}, + [5165] = {.lex_state = 131}, + [5166] = {.lex_state = 131}, + [5167] = {.lex_state = 131}, + [5168] = {.lex_state = 131}, + [5169] = {.lex_state = 131}, + [5170] = {.lex_state = 131}, + [5171] = {.lex_state = 131}, + [5172] = {.lex_state = 131}, + [5173] = {.lex_state = 10}, + [5174] = {.lex_state = 10}, + [5175] = {.lex_state = 132}, + [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}, + [5184] = {.lex_state = 131}, + [5185] = {.lex_state = 131}, + [5186] = {.lex_state = 131}, + [5187] = {.lex_state = 131}, + [5188] = {.lex_state = 131}, [5189] = {.lex_state = 131}, - [5190] = {.lex_state = 130}, - [5191] = {.lex_state = 130}, - [5192] = {.lex_state = 130}, - [5193] = {.lex_state = 130}, - [5194] = {.lex_state = 130}, - [5195] = {.lex_state = 130}, - [5196] = {.lex_state = 130}, - [5197] = {.lex_state = 130}, - [5198] = {.lex_state = 130}, - [5199] = {.lex_state = 130}, - [5200] = {.lex_state = 130}, - [5201] = {.lex_state = 130}, - [5202] = {.lex_state = 130}, - [5203] = {.lex_state = 130}, - [5204] = {.lex_state = 130}, - [5205] = {.lex_state = 130}, + [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}, + [5199] = {.lex_state = 131}, + [5200] = {.lex_state = 131}, + [5201] = {.lex_state = 131}, + [5202] = {.lex_state = 131}, + [5203] = {.lex_state = 131}, + [5204] = {.lex_state = 131}, + [5205] = {.lex_state = 131}, [5206] = {.lex_state = 131}, - [5207] = {.lex_state = 130}, - [5208] = {.lex_state = 130}, - [5209] = {.lex_state = 130}, - [5210] = {.lex_state = 130}, - [5211] = {.lex_state = 130}, - [5212] = {.lex_state = 130}, - [5213] = {.lex_state = 130}, - [5214] = {.lex_state = 130}, - [5215] = {.lex_state = 130}, - [5216] = {.lex_state = 130}, - [5217] = {.lex_state = 130}, - [5218] = {.lex_state = 130}, - [5219] = {.lex_state = 130}, - [5220] = {.lex_state = 17}, - [5221] = {.lex_state = 130}, - [5222] = {.lex_state = 130}, - [5223] = {.lex_state = 130}, - [5224] = {.lex_state = 17}, - [5225] = {.lex_state = 130}, - [5226] = {.lex_state = 130}, - [5227] = {.lex_state = 130}, - [5228] = {.lex_state = 130}, - [5229] = {.lex_state = 130}, - [5230] = {.lex_state = 131}, - [5231] = {.lex_state = 130}, - [5232] = {.lex_state = 130}, - [5233] = {.lex_state = 130}, - [5234] = {.lex_state = 130}, - [5235] = {.lex_state = 130}, - [5236] = {.lex_state = 130}, - [5237] = {.lex_state = 130}, - [5238] = {.lex_state = 130}, - [5239] = {.lex_state = 130}, - [5240] = {.lex_state = 130}, - [5241] = {.lex_state = 130}, - [5242] = {.lex_state = 130}, - [5243] = {.lex_state = 130}, - [5244] = {.lex_state = 130}, - [5245] = {.lex_state = 130}, - [5246] = {.lex_state = 130}, - [5247] = {.lex_state = 130}, - [5248] = {.lex_state = 130}, - [5249] = {.lex_state = 130}, - [5250] = {.lex_state = 130}, - [5251] = {.lex_state = 130}, - [5252] = {.lex_state = 130}, - [5253] = {.lex_state = 130}, - [5254] = {.lex_state = 130}, - [5255] = {.lex_state = 130}, - [5256] = {.lex_state = 130}, - [5257] = {.lex_state = 130}, - [5258] = {.lex_state = 130}, - [5259] = {.lex_state = 130}, - [5260] = {.lex_state = 130}, - [5261] = {.lex_state = 130}, - [5262] = {.lex_state = 130}, - [5263] = {.lex_state = 130}, - [5264] = {.lex_state = 130}, - [5265] = {.lex_state = 130}, - [5266] = {.lex_state = 130}, - [5267] = {.lex_state = 130}, - [5268] = {.lex_state = 130}, - [5269] = {.lex_state = 130}, - [5270] = {.lex_state = 130}, - [5271] = {.lex_state = 130}, - [5272] = {.lex_state = 130}, - [5273] = {.lex_state = 130}, - [5274] = {.lex_state = 130}, - [5275] = {.lex_state = 130}, - [5276] = {.lex_state = 130}, - [5277] = {.lex_state = 130}, - [5278] = {.lex_state = 130}, - [5279] = {.lex_state = 130}, - [5280] = {.lex_state = 130}, - [5281] = {.lex_state = 130}, - [5282] = {.lex_state = 130}, - [5283] = {.lex_state = 130}, - [5284] = {.lex_state = 130}, - [5285] = {.lex_state = 130}, - [5286] = {.lex_state = 130}, - [5287] = {.lex_state = 130}, - [5288] = {.lex_state = 130}, - [5289] = {.lex_state = 130}, - [5290] = {.lex_state = 130}, - [5291] = {.lex_state = 130}, - [5292] = {.lex_state = 130}, - [5293] = {.lex_state = 130}, - [5294] = {.lex_state = 130}, - [5295] = {.lex_state = 130}, - [5296] = {.lex_state = 130}, - [5297] = {.lex_state = 130}, - [5298] = {.lex_state = 130}, - [5299] = {.lex_state = 130}, - [5300] = {.lex_state = 130}, - [5301] = {.lex_state = 130}, - [5302] = {.lex_state = 130}, - [5303] = {.lex_state = 130}, - [5304] = {.lex_state = 130}, - [5305] = {.lex_state = 130}, - [5306] = {.lex_state = 130}, - [5307] = {.lex_state = 130}, - [5308] = {.lex_state = 130}, - [5309] = {.lex_state = 130}, - [5310] = {.lex_state = 130}, - [5311] = {.lex_state = 130}, - [5312] = {.lex_state = 130}, - [5313] = {.lex_state = 130}, - [5314] = {.lex_state = 130}, - [5315] = {.lex_state = 130}, - [5316] = {.lex_state = 130}, - [5317] = {.lex_state = 130}, - [5318] = {.lex_state = 130}, - [5319] = {.lex_state = 130}, - [5320] = {.lex_state = 130}, - [5321] = {.lex_state = 130}, - [5322] = {.lex_state = 130}, - [5323] = {.lex_state = 130}, - [5324] = {.lex_state = 130}, - [5325] = {.lex_state = 130}, - [5326] = {.lex_state = 130}, - [5327] = {.lex_state = 130}, - [5328] = {.lex_state = 130}, - [5329] = {.lex_state = 130}, - [5330] = {.lex_state = 130}, - [5331] = {.lex_state = 130}, - [5332] = {.lex_state = 130}, - [5333] = {.lex_state = 130}, - [5334] = {.lex_state = 130}, - [5335] = {.lex_state = 130}, - [5336] = {.lex_state = 130}, - [5337] = {.lex_state = 130}, - [5338] = {.lex_state = 130}, - [5339] = {.lex_state = 130}, - [5340] = {.lex_state = 130}, - [5341] = {.lex_state = 130}, - [5342] = {.lex_state = 130}, - [5343] = {.lex_state = 130}, - [5344] = {.lex_state = 130}, - [5345] = {.lex_state = 130}, - [5346] = {.lex_state = 130}, - [5347] = {.lex_state = 130}, - [5348] = {.lex_state = 130}, - [5349] = {.lex_state = 130}, - [5350] = {.lex_state = 130}, - [5351] = {.lex_state = 130}, + [5207] = {.lex_state = 131}, + [5208] = {.lex_state = 131}, + [5209] = {.lex_state = 131}, + [5210] = {.lex_state = 131}, + [5211] = {.lex_state = 10}, + [5212] = {.lex_state = 131}, + [5213] = {.lex_state = 10}, + [5214] = {.lex_state = 10}, + [5215] = {.lex_state = 131}, + [5216] = {.lex_state = 10}, + [5217] = {.lex_state = 131}, + [5218] = {.lex_state = 131}, + [5219] = {.lex_state = 131}, + [5220] = {.lex_state = 131}, + [5221] = {.lex_state = 131}, + [5222] = {.lex_state = 132}, + [5223] = {.lex_state = 131}, + [5224] = {.lex_state = 131}, + [5225] = {.lex_state = 131}, + [5226] = {.lex_state = 131}, + [5227] = {.lex_state = 131}, + [5228] = {.lex_state = 131}, + [5229] = {.lex_state = 131}, + [5230] = {.lex_state = 10}, + [5231] = {.lex_state = 131}, + [5232] = {.lex_state = 131}, + [5233] = {.lex_state = 131}, + [5234] = {.lex_state = 131}, + [5235] = {.lex_state = 131}, + [5236] = {.lex_state = 131}, + [5237] = {.lex_state = 131}, + [5238] = {.lex_state = 131}, + [5239] = {.lex_state = 10}, + [5240] = {.lex_state = 10}, + [5241] = {.lex_state = 131}, + [5242] = {.lex_state = 10}, + [5243] = {.lex_state = 10}, + [5244] = {.lex_state = 10}, + [5245] = {.lex_state = 10}, + [5246] = {.lex_state = 131}, + [5247] = {.lex_state = 131}, + [5248] = {.lex_state = 131}, + [5249] = {.lex_state = 131}, + [5250] = {.lex_state = 131}, + [5251] = {.lex_state = 10}, + [5252] = {.lex_state = 10}, + [5253] = {.lex_state = 131}, + [5254] = {.lex_state = 10}, + [5255] = {.lex_state = 131}, + [5256] = {.lex_state = 131}, + [5257] = {.lex_state = 10}, + [5258] = {.lex_state = 131}, + [5259] = {.lex_state = 131}, + [5260] = {.lex_state = 131}, + [5261] = {.lex_state = 131}, + [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}, + [5269] = {.lex_state = 131}, + [5270] = {.lex_state = 131}, + [5271] = {.lex_state = 131}, + [5272] = {.lex_state = 10}, + [5273] = {.lex_state = 131}, + [5274] = {.lex_state = 131}, + [5275] = {.lex_state = 10}, + [5276] = {.lex_state = 131}, + [5277] = {.lex_state = 131}, + [5278] = {.lex_state = 131}, + [5279] = {.lex_state = 132}, + [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}, + [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}, + [5295] = {.lex_state = 10}, + [5296] = {.lex_state = 10}, + [5297] = {.lex_state = 131}, + [5298] = {.lex_state = 131}, + [5299] = {.lex_state = 131}, + [5300] = {.lex_state = 131}, + [5301] = {.lex_state = 131}, + [5302] = {.lex_state = 132}, + [5303] = {.lex_state = 131}, + [5304] = {.lex_state = 131}, + [5305] = {.lex_state = 131}, + [5306] = {.lex_state = 131}, + [5307] = {.lex_state = 131}, + [5308] = {.lex_state = 131}, + [5309] = {.lex_state = 10}, + [5310] = {.lex_state = 131}, + [5311] = {.lex_state = 131}, + [5312] = {.lex_state = 132}, + [5313] = {.lex_state = 131}, + [5314] = {.lex_state = 10}, + [5315] = {.lex_state = 131}, + [5316] = {.lex_state = 131}, + [5317] = {.lex_state = 131}, + [5318] = {.lex_state = 10}, + [5319] = {.lex_state = 10}, + [5320] = {.lex_state = 10}, + [5321] = {.lex_state = 131}, + [5322] = {.lex_state = 131}, + [5323] = {.lex_state = 131}, + [5324] = {.lex_state = 131}, + [5325] = {.lex_state = 131}, + [5326] = {.lex_state = 131}, + [5327] = {.lex_state = 131}, + [5328] = {.lex_state = 131}, + [5329] = {.lex_state = 131}, + [5330] = {.lex_state = 131}, + [5331] = {.lex_state = 131}, + [5332] = {.lex_state = 131}, + [5333] = {.lex_state = 131}, + [5334] = {.lex_state = 131}, + [5335] = {.lex_state = 131}, + [5336] = {.lex_state = 131}, + [5337] = {.lex_state = 131}, + [5338] = {.lex_state = 131}, + [5339] = {.lex_state = 131}, + [5340] = {.lex_state = 131}, + [5341] = {.lex_state = 131}, + [5342] = {.lex_state = 131}, + [5343] = {.lex_state = 131}, + [5344] = {.lex_state = 131}, + [5345] = {.lex_state = 131}, + [5346] = {.lex_state = 131}, + [5347] = {.lex_state = 131}, + [5348] = {.lex_state = 131}, + [5349] = {.lex_state = 131}, + [5350] = {.lex_state = 131}, + [5351] = {.lex_state = 131}, [5352] = {.lex_state = 131}, - [5353] = {.lex_state = 130}, - [5354] = {.lex_state = 130}, - [5355] = {.lex_state = 130}, - [5356] = {.lex_state = 130}, - [5357] = {.lex_state = 130}, - [5358] = {.lex_state = 130}, - [5359] = {.lex_state = 130}, - [5360] = {.lex_state = 130}, - [5361] = {.lex_state = 130}, - [5362] = {.lex_state = 130}, - [5363] = {.lex_state = 130}, - [5364] = {.lex_state = 130}, - [5365] = {.lex_state = 130}, - [5366] = {.lex_state = 130}, - [5367] = {.lex_state = 130}, - [5368] = {.lex_state = 130}, - [5369] = {.lex_state = 130}, - [5370] = {.lex_state = 130}, - [5371] = {.lex_state = 130}, - [5372] = {.lex_state = 130}, - [5373] = {.lex_state = 130}, - [5374] = {.lex_state = 130}, - [5375] = {.lex_state = 130}, - [5376] = {.lex_state = 130}, - [5377] = {.lex_state = 130}, - [5378] = {.lex_state = 130}, - [5379] = {.lex_state = 130}, - [5380] = {.lex_state = 130}, - [5381] = {.lex_state = 130}, - [5382] = {.lex_state = 130}, - [5383] = {.lex_state = 130}, - [5384] = {.lex_state = 130}, - [5385] = {.lex_state = 130}, - [5386] = {.lex_state = 130}, - [5387] = {.lex_state = 130}, - [5388] = {.lex_state = 130}, - [5389] = {.lex_state = 130}, - [5390] = {.lex_state = 130}, - [5391] = {.lex_state = 130}, - [5392] = {.lex_state = 130}, - [5393] = {.lex_state = 130}, - [5394] = {.lex_state = 130}, - [5395] = {.lex_state = 130}, - [5396] = {.lex_state = 130}, - [5397] = {.lex_state = 130}, - [5398] = {.lex_state = 130}, - [5399] = {.lex_state = 130}, - [5400] = {.lex_state = 130}, + [5353] = {.lex_state = 131}, + [5354] = {.lex_state = 131}, + [5355] = {.lex_state = 131}, + [5356] = {.lex_state = 131}, + [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}, + [5364] = {.lex_state = 131}, + [5365] = {.lex_state = 131}, + [5366] = {.lex_state = 131}, + [5367] = {.lex_state = 131}, + [5368] = {.lex_state = 131}, + [5369] = {.lex_state = 131}, + [5370] = {.lex_state = 131}, + [5371] = {.lex_state = 131}, + [5372] = {.lex_state = 131}, + [5373] = {.lex_state = 131}, + [5374] = {.lex_state = 131}, + [5375] = {.lex_state = 131}, + [5376] = {.lex_state = 131}, + [5377] = {.lex_state = 131}, + [5378] = {.lex_state = 131}, + [5379] = {.lex_state = 131}, + [5380] = {.lex_state = 131}, + [5381] = {.lex_state = 131}, + [5382] = {.lex_state = 131}, + [5383] = {.lex_state = 131}, + [5384] = {.lex_state = 131}, + [5385] = {.lex_state = 131}, + [5386] = {.lex_state = 131}, + [5387] = {.lex_state = 131}, + [5388] = {.lex_state = 131}, + [5389] = {.lex_state = 131}, + [5390] = {.lex_state = 131}, + [5391] = {.lex_state = 131}, + [5392] = {.lex_state = 131}, + [5393] = {.lex_state = 131}, + [5394] = {.lex_state = 131}, + [5395] = {.lex_state = 131}, + [5396] = {.lex_state = 131}, + [5397] = {.lex_state = 131}, + [5398] = {.lex_state = 131}, + [5399] = {.lex_state = 131}, + [5400] = {.lex_state = 131}, [5401] = {.lex_state = 131}, - [5402] = {.lex_state = 130}, - [5403] = {.lex_state = 130}, - [5404] = {.lex_state = 130}, - [5405] = {.lex_state = 130}, - [5406] = {.lex_state = 130}, - [5407] = {.lex_state = 130}, - [5408] = {.lex_state = 130}, - [5409] = {.lex_state = 130}, - [5410] = {.lex_state = 130}, - [5411] = {.lex_state = 130}, - [5412] = {.lex_state = 130}, - [5413] = {.lex_state = 130}, - [5414] = {.lex_state = 130}, - [5415] = {.lex_state = 130}, - [5416] = {.lex_state = 130}, - [5417] = {.lex_state = 130}, + [5402] = {.lex_state = 131}, + [5403] = {.lex_state = 131}, + [5404] = {.lex_state = 131}, + [5405] = {.lex_state = 131}, + [5406] = {.lex_state = 131}, + [5407] = {.lex_state = 131}, + [5408] = {.lex_state = 131}, + [5409] = {.lex_state = 131}, + [5410] = {.lex_state = 131}, + [5411] = {.lex_state = 131}, + [5412] = {.lex_state = 131}, + [5413] = {.lex_state = 131}, + [5414] = {.lex_state = 131}, + [5415] = {.lex_state = 131}, + [5416] = {.lex_state = 131}, + [5417] = {.lex_state = 131}, [5418] = {.lex_state = 131}, - [5419] = {.lex_state = 130}, - [5420] = {.lex_state = 130}, - [5421] = {.lex_state = 130}, - [5422] = {.lex_state = 130}, - [5423] = {.lex_state = 130}, - [5424] = {.lex_state = 130}, - [5425] = {.lex_state = 130}, - [5426] = {.lex_state = 130}, - [5427] = {.lex_state = 130}, - [5428] = {.lex_state = 130}, - [5429] = {.lex_state = 130}, - [5430] = {.lex_state = 130}, - [5431] = {.lex_state = 130}, - [5432] = {.lex_state = 130}, - [5433] = {.lex_state = 130}, - [5434] = {.lex_state = 130}, - [5435] = {.lex_state = 130}, - [5436] = {.lex_state = 130}, - [5437] = {.lex_state = 130}, - [5438] = {.lex_state = 130}, - [5439] = {.lex_state = 130}, - [5440] = {.lex_state = 130}, - [5441] = {.lex_state = 130}, - [5442] = {.lex_state = 130}, - [5443] = {.lex_state = 130}, - [5444] = {.lex_state = 130}, - [5445] = {.lex_state = 130}, - [5446] = {.lex_state = 130}, - [5447] = {.lex_state = 130}, - [5448] = {.lex_state = 130}, - [5449] = {.lex_state = 130}, - [5450] = {.lex_state = 130}, - [5451] = {.lex_state = 130}, - [5452] = {.lex_state = 130}, - [5453] = {.lex_state = 130}, - [5454] = {.lex_state = 130}, - [5455] = {.lex_state = 130}, - [5456] = {.lex_state = 130}, - [5457] = {.lex_state = 130}, - [5458] = {.lex_state = 130}, - [5459] = {.lex_state = 130}, - [5460] = {.lex_state = 130}, - [5461] = {.lex_state = 130}, - [5462] = {.lex_state = 130}, - [5463] = {.lex_state = 130}, - [5464] = {.lex_state = 130}, - [5465] = {.lex_state = 130}, - [5466] = {.lex_state = 130}, - [5467] = {.lex_state = 130}, - [5468] = {.lex_state = 130}, - [5469] = {.lex_state = 130}, - [5470] = {.lex_state = 130}, - [5471] = {.lex_state = 130}, - [5472] = {.lex_state = 130}, - [5473] = {.lex_state = 130}, - [5474] = {.lex_state = 130}, - [5475] = {.lex_state = 130}, - [5476] = {.lex_state = 130}, - [5477] = {.lex_state = 130}, - [5478] = {.lex_state = 130}, - [5479] = {.lex_state = 130}, - [5480] = {.lex_state = 130}, - [5481] = {.lex_state = 130}, - [5482] = {.lex_state = 130}, - [5483] = {.lex_state = 130}, - [5484] = {.lex_state = 130}, + [5419] = {.lex_state = 131}, + [5420] = {.lex_state = 132}, + [5421] = {.lex_state = 131}, + [5422] = {.lex_state = 132}, + [5423] = {.lex_state = 131}, + [5424] = {.lex_state = 131}, + [5425] = {.lex_state = 131}, + [5426] = {.lex_state = 131}, + [5427] = {.lex_state = 131}, + [5428] = {.lex_state = 131}, + [5429] = {.lex_state = 131}, + [5430] = {.lex_state = 131}, + [5431] = {.lex_state = 131}, + [5432] = {.lex_state = 132}, + [5433] = {.lex_state = 131}, + [5434] = {.lex_state = 132}, + [5435] = {.lex_state = 131}, + [5436] = {.lex_state = 131}, + [5437] = {.lex_state = 131}, + [5438] = {.lex_state = 131}, + [5439] = {.lex_state = 131}, + [5440] = {.lex_state = 131}, + [5441] = {.lex_state = 131}, + [5442] = {.lex_state = 131}, + [5443] = {.lex_state = 131}, + [5444] = {.lex_state = 131}, + [5445] = {.lex_state = 131}, + [5446] = {.lex_state = 131}, + [5447] = {.lex_state = 131}, + [5448] = {.lex_state = 131}, + [5449] = {.lex_state = 131}, + [5450] = {.lex_state = 131}, + [5451] = {.lex_state = 131}, + [5452] = {.lex_state = 131}, + [5453] = {.lex_state = 131}, + [5454] = {.lex_state = 131}, + [5455] = {.lex_state = 131}, + [5456] = {.lex_state = 131}, + [5457] = {.lex_state = 131}, + [5458] = {.lex_state = 131}, + [5459] = {.lex_state = 131}, + [5460] = {.lex_state = 131}, + [5461] = {.lex_state = 131}, + [5462] = {.lex_state = 131}, + [5463] = {.lex_state = 131}, + [5464] = {.lex_state = 131}, + [5465] = {.lex_state = 131}, + [5466] = {.lex_state = 131}, + [5467] = {.lex_state = 131}, + [5468] = {.lex_state = 131}, + [5469] = {.lex_state = 131}, + [5470] = {.lex_state = 131}, + [5471] = {.lex_state = 131}, + [5472] = {.lex_state = 131}, + [5473] = {.lex_state = 131}, + [5474] = {.lex_state = 131}, + [5475] = {.lex_state = 131}, + [5476] = {.lex_state = 131}, + [5477] = {.lex_state = 131}, + [5478] = {.lex_state = 131}, + [5479] = {.lex_state = 131}, + [5480] = {.lex_state = 131}, + [5481] = {.lex_state = 131}, + [5482] = {.lex_state = 131}, + [5483] = {.lex_state = 131}, + [5484] = {.lex_state = 131}, [5485] = {.lex_state = 131}, - [5486] = {.lex_state = 130}, - [5487] = {.lex_state = 130}, - [5488] = {.lex_state = 130}, - [5489] = {.lex_state = 130}, + [5486] = {.lex_state = 131}, + [5487] = {.lex_state = 131}, + [5488] = {.lex_state = 131}, + [5489] = {.lex_state = 131}, [5490] = {.lex_state = 131}, [5491] = {.lex_state = 131}, - [5492] = {.lex_state = 130}, + [5492] = {.lex_state = 131}, [5493] = {.lex_state = 131}, [5494] = {.lex_state = 131}, - [5495] = {.lex_state = 130}, - [5496] = {.lex_state = 130}, - [5497] = {.lex_state = 130}, + [5495] = {.lex_state = 131}, + [5496] = {.lex_state = 131}, + [5497] = {.lex_state = 131}, [5498] = {.lex_state = 131}, - [5499] = {.lex_state = 130}, - [5500] = {.lex_state = 130}, - [5501] = {.lex_state = 130}, - [5502] = {.lex_state = 130}, - [5503] = {.lex_state = 130}, - [5504] = {.lex_state = 130}, - [5505] = {.lex_state = 130}, - [5506] = {.lex_state = 130}, + [5499] = {.lex_state = 131}, + [5500] = {.lex_state = 131}, + [5501] = {.lex_state = 131}, + [5502] = {.lex_state = 131}, + [5503] = {.lex_state = 131}, + [5504] = {.lex_state = 131}, + [5505] = {.lex_state = 131}, + [5506] = {.lex_state = 131}, [5507] = {.lex_state = 131}, - [5508] = {.lex_state = 130}, - [5509] = {.lex_state = 130}, + [5508] = {.lex_state = 131}, + [5509] = {.lex_state = 131}, [5510] = {.lex_state = 131}, - [5511] = {.lex_state = 130}, - [5512] = {.lex_state = 130}, - [5513] = {.lex_state = 130}, - [5514] = {.lex_state = 130}, - [5515] = {.lex_state = 130}, - [5516] = {.lex_state = 130}, - [5517] = {.lex_state = 130}, + [5511] = {.lex_state = 131}, + [5512] = {.lex_state = 131}, + [5513] = {.lex_state = 131}, + [5514] = {.lex_state = 131}, + [5515] = {.lex_state = 131}, + [5516] = {.lex_state = 131}, + [5517] = {.lex_state = 131}, [5518] = {.lex_state = 131}, - [5519] = {.lex_state = 130}, + [5519] = {.lex_state = 132}, [5520] = {.lex_state = 131}, - [5521] = {.lex_state = 130}, + [5521] = {.lex_state = 131}, [5522] = {.lex_state = 131}, - [5523] = {.lex_state = 130}, - [5524] = {.lex_state = 130}, + [5523] = {.lex_state = 131}, + [5524] = {.lex_state = 131}, [5525] = {.lex_state = 131}, - [5526] = {.lex_state = 130}, + [5526] = {.lex_state = 131}, [5527] = {.lex_state = 131}, - [5528] = {.lex_state = 130}, + [5528] = {.lex_state = 131}, [5529] = {.lex_state = 131}, - [5530] = {.lex_state = 130}, - [5531] = {.lex_state = 131}, - [5532] = {.lex_state = 130}, + [5530] = {.lex_state = 131}, + [5531] = {.lex_state = 132}, + [5532] = {.lex_state = 131}, [5533] = {.lex_state = 131}, - [5534] = {.lex_state = 130}, - [5535] = {.lex_state = 130}, + [5534] = {.lex_state = 131}, + [5535] = {.lex_state = 131}, [5536] = {.lex_state = 131}, - [5537] = {.lex_state = 130}, + [5537] = {.lex_state = 131}, [5538] = {.lex_state = 131}, [5539] = {.lex_state = 131}, [5540] = {.lex_state = 131}, @@ -22776,44 +23056,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5543] = {.lex_state = 131}, [5544] = {.lex_state = 131}, [5545] = {.lex_state = 131}, - [5546] = {.lex_state = 17}, + [5546] = {.lex_state = 131}, [5547] = {.lex_state = 131}, - [5548] = {.lex_state = 130}, - [5549] = {.lex_state = 130}, + [5548] = {.lex_state = 131}, + [5549] = {.lex_state = 132}, [5550] = {.lex_state = 131}, [5551] = {.lex_state = 131}, [5552] = {.lex_state = 131}, - [5553] = {.lex_state = 17}, + [5553] = {.lex_state = 131}, [5554] = {.lex_state = 131}, - [5555] = {.lex_state = 17}, + [5555] = {.lex_state = 131}, [5556] = {.lex_state = 131}, [5557] = {.lex_state = 131}, [5558] = {.lex_state = 131}, [5559] = {.lex_state = 131}, - [5560] = {.lex_state = 17}, - [5561] = {.lex_state = 130}, + [5560] = {.lex_state = 131}, + [5561] = {.lex_state = 131}, [5562] = {.lex_state = 131}, [5563] = {.lex_state = 131}, [5564] = {.lex_state = 131}, - [5565] = {.lex_state = 131}, + [5565] = {.lex_state = 17}, [5566] = {.lex_state = 131}, - [5567] = {.lex_state = 130}, - [5568] = {.lex_state = 131}, - [5569] = {.lex_state = 130}, + [5567] = {.lex_state = 17}, + [5568] = {.lex_state = 132}, + [5569] = {.lex_state = 131}, [5570] = {.lex_state = 131}, [5571] = {.lex_state = 131}, [5572] = {.lex_state = 131}, [5573] = {.lex_state = 131}, [5574] = {.lex_state = 131}, [5575] = {.lex_state = 131}, - [5576] = {.lex_state = 130}, - [5577] = {.lex_state = 131}, + [5576] = {.lex_state = 132}, + [5577] = {.lex_state = 132}, [5578] = {.lex_state = 131}, [5579] = {.lex_state = 131}, - [5580] = {.lex_state = 131}, + [5580] = {.lex_state = 132}, [5581] = {.lex_state = 131}, [5582] = {.lex_state = 131}, - [5583] = {.lex_state = 131}, + [5583] = {.lex_state = 132}, [5584] = {.lex_state = 131}, [5585] = {.lex_state = 131}, [5586] = {.lex_state = 131}, @@ -22855,7 +23135,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5622] = {.lex_state = 131}, [5623] = {.lex_state = 131}, [5624] = {.lex_state = 131}, - [5625] = {.lex_state = 131}, + [5625] = {.lex_state = 132}, [5626] = {.lex_state = 131}, [5627] = {.lex_state = 131}, [5628] = {.lex_state = 131}, @@ -22864,7 +23144,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5631] = {.lex_state = 131}, [5632] = {.lex_state = 131}, [5633] = {.lex_state = 131}, - [5634] = {.lex_state = 131}, + [5634] = {.lex_state = 132}, [5635] = {.lex_state = 131}, [5636] = {.lex_state = 131}, [5637] = {.lex_state = 131}, @@ -22880,7 +23160,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5647] = {.lex_state = 131}, [5648] = {.lex_state = 131}, [5649] = {.lex_state = 131}, - [5650] = {.lex_state = 130}, + [5650] = {.lex_state = 131}, [5651] = {.lex_state = 131}, [5652] = {.lex_state = 131}, [5653] = {.lex_state = 131}, @@ -22894,8 +23174,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5661] = {.lex_state = 131}, [5662] = {.lex_state = 131}, [5663] = {.lex_state = 131}, - [5664] = {.lex_state = 131}, - [5665] = {.lex_state = 131}, + [5664] = {.lex_state = 132}, + [5665] = {.lex_state = 132}, [5666] = {.lex_state = 131}, [5667] = {.lex_state = 131}, [5668] = {.lex_state = 131}, @@ -22903,28 +23183,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5670] = {.lex_state = 131}, [5671] = {.lex_state = 131}, [5672] = {.lex_state = 131}, - [5673] = {.lex_state = 131}, + [5673] = {.lex_state = 132}, [5674] = {.lex_state = 131}, - [5675] = {.lex_state = 131}, - [5676] = {.lex_state = 131}, + [5675] = {.lex_state = 132}, + [5676] = {.lex_state = 132}, [5677] = {.lex_state = 131}, [5678] = {.lex_state = 131}, [5679] = {.lex_state = 131}, [5680] = {.lex_state = 131}, [5681] = {.lex_state = 131}, - [5682] = {.lex_state = 131}, + [5682] = {.lex_state = 132}, [5683] = {.lex_state = 131}, [5684] = {.lex_state = 131}, [5685] = {.lex_state = 131}, - [5686] = {.lex_state = 131}, + [5686] = {.lex_state = 132}, [5687] = {.lex_state = 131}, [5688] = {.lex_state = 131}, [5689] = {.lex_state = 131}, [5690] = {.lex_state = 131}, - [5691] = {.lex_state = 131}, + [5691] = {.lex_state = 132}, [5692] = {.lex_state = 131}, [5693] = {.lex_state = 131}, - [5694] = {.lex_state = 131}, + [5694] = {.lex_state = 132}, [5695] = {.lex_state = 131}, [5696] = {.lex_state = 131}, [5697] = {.lex_state = 131}, @@ -22933,1032 +23213,1032 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5700] = {.lex_state = 131}, [5701] = {.lex_state = 131}, [5702] = {.lex_state = 131}, - [5703] = {.lex_state = 131}, - [5704] = {.lex_state = 131}, + [5703] = {.lex_state = 132}, + [5704] = {.lex_state = 132}, [5705] = {.lex_state = 131}, [5706] = {.lex_state = 131}, - [5707] = {.lex_state = 131}, + [5707] = {.lex_state = 132}, [5708] = {.lex_state = 131}, - [5709] = {.lex_state = 131}, + [5709] = {.lex_state = 132}, [5710] = {.lex_state = 131}, - [5711] = {.lex_state = 131}, - [5712] = {.lex_state = 131}, - [5713] = {.lex_state = 131}, - [5714] = {.lex_state = 131}, - [5715] = {.lex_state = 131}, - [5716] = {.lex_state = 131}, - [5717] = {.lex_state = 131}, - [5718] = {.lex_state = 131}, + [5711] = {.lex_state = 17}, + [5712] = {.lex_state = 132}, + [5713] = {.lex_state = 132}, + [5714] = {.lex_state = 132}, + [5715] = {.lex_state = 132}, + [5716] = {.lex_state = 132}, + [5717] = {.lex_state = 17}, + [5718] = {.lex_state = 132}, [5719] = {.lex_state = 131}, - [5720] = {.lex_state = 131}, - [5721] = {.lex_state = 131}, - [5722] = {.lex_state = 131}, - [5723] = {.lex_state = 131}, - [5724] = {.lex_state = 131}, - [5725] = {.lex_state = 131}, - [5726] = {.lex_state = 131}, - [5727] = {.lex_state = 131}, - [5728] = {.lex_state = 131}, + [5720] = {.lex_state = 132}, + [5721] = {.lex_state = 132}, + [5722] = {.lex_state = 132}, + [5723] = {.lex_state = 132}, + [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 = 131}, - [5731] = {.lex_state = 131}, - [5732] = {.lex_state = 131}, - [5733] = {.lex_state = 131}, + [5730] = {.lex_state = 132}, + [5731] = {.lex_state = 132}, + [5732] = {.lex_state = 17}, + [5733] = {.lex_state = 132}, [5734] = {.lex_state = 131}, [5735] = {.lex_state = 131}, - [5736] = {.lex_state = 131}, - [5737] = {.lex_state = 131}, - [5738] = {.lex_state = 131}, - [5739] = {.lex_state = 131}, - [5740] = {.lex_state = 131}, - [5741] = {.lex_state = 131}, + [5736] = {.lex_state = 132}, + [5737] = {.lex_state = 132}, + [5738] = {.lex_state = 17}, + [5739] = {.lex_state = 132}, + [5740] = {.lex_state = 132}, + [5741] = {.lex_state = 132}, [5742] = {.lex_state = 131}, - [5743] = {.lex_state = 131}, - [5744] = {.lex_state = 131}, - [5745] = {.lex_state = 131}, - [5746] = {.lex_state = 131}, - [5747] = {.lex_state = 131}, - [5748] = {.lex_state = 131}, - [5749] = {.lex_state = 131}, - [5750] = {.lex_state = 131}, + [5743] = {.lex_state = 132}, + [5744] = {.lex_state = 132}, + [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}, - [5752] = {.lex_state = 131}, - [5753] = {.lex_state = 131}, - [5754] = {.lex_state = 131}, - [5755] = {.lex_state = 131}, - [5756] = {.lex_state = 131}, - [5757] = {.lex_state = 131}, - [5758] = {.lex_state = 131}, - [5759] = {.lex_state = 131}, - [5760] = {.lex_state = 131}, - [5761] = {.lex_state = 131}, - [5762] = {.lex_state = 131}, - [5763] = {.lex_state = 131}, - [5764] = {.lex_state = 131}, - [5765] = {.lex_state = 131}, - [5766] = {.lex_state = 131}, - [5767] = {.lex_state = 131}, - [5768] = {.lex_state = 131}, - [5769] = {.lex_state = 131}, - [5770] = {.lex_state = 131}, - [5771] = {.lex_state = 131}, - [5772] = {.lex_state = 131}, - [5773] = {.lex_state = 131}, - [5774] = {.lex_state = 131}, - [5775] = {.lex_state = 131}, - [5776] = {.lex_state = 131}, - [5777] = {.lex_state = 131}, - [5778] = {.lex_state = 131}, - [5779] = {.lex_state = 131}, - [5780] = {.lex_state = 131}, - [5781] = {.lex_state = 131}, - [5782] = {.lex_state = 131}, - [5783] = {.lex_state = 131}, - [5784] = {.lex_state = 131}, - [5785] = {.lex_state = 131}, - [5786] = {.lex_state = 131}, - [5787] = {.lex_state = 131}, - [5788] = {.lex_state = 131}, - [5789] = {.lex_state = 131}, - [5790] = {.lex_state = 131}, - [5791] = {.lex_state = 131}, - [5792] = {.lex_state = 131}, - [5793] = {.lex_state = 131}, - [5794] = {.lex_state = 131}, - [5795] = {.lex_state = 131}, - [5796] = {.lex_state = 131}, - [5797] = {.lex_state = 131}, - [5798] = {.lex_state = 131}, - [5799] = {.lex_state = 131}, - [5800] = {.lex_state = 131}, - [5801] = {.lex_state = 131}, - [5802] = {.lex_state = 131}, - [5803] = {.lex_state = 131}, - [5804] = {.lex_state = 131}, - [5805] = {.lex_state = 131}, - [5806] = {.lex_state = 131}, - [5807] = {.lex_state = 131}, - [5808] = {.lex_state = 131}, - [5809] = {.lex_state = 131}, - [5810] = {.lex_state = 131}, - [5811] = {.lex_state = 131}, - [5812] = {.lex_state = 131}, - [5813] = {.lex_state = 131}, - [5814] = {.lex_state = 131}, - [5815] = {.lex_state = 131}, - [5816] = {.lex_state = 131}, - [5817] = {.lex_state = 131}, - [5818] = {.lex_state = 131}, - [5819] = {.lex_state = 131}, - [5820] = {.lex_state = 131}, - [5821] = {.lex_state = 131}, - [5822] = {.lex_state = 131}, - [5823] = {.lex_state = 131}, - [5824] = {.lex_state = 131}, - [5825] = {.lex_state = 131}, - [5826] = {.lex_state = 131}, - [5827] = {.lex_state = 131}, - [5828] = {.lex_state = 131}, - [5829] = {.lex_state = 131}, - [5830] = {.lex_state = 131}, - [5831] = {.lex_state = 131}, - [5832] = {.lex_state = 131}, - [5833] = {.lex_state = 1}, - [5834] = {.lex_state = 131}, - [5835] = {.lex_state = 131}, - [5836] = {.lex_state = 131}, - [5837] = {.lex_state = 131}, - [5838] = {.lex_state = 131}, + [5752] = {.lex_state = 132}, + [5753] = {.lex_state = 132}, + [5754] = {.lex_state = 132}, + [5755] = {.lex_state = 132}, + [5756] = {.lex_state = 132}, + [5757] = {.lex_state = 132}, + [5758] = {.lex_state = 132}, + [5759] = {.lex_state = 132}, + [5760] = {.lex_state = 132}, + [5761] = {.lex_state = 132}, + [5762] = {.lex_state = 132}, + [5763] = {.lex_state = 132}, + [5764] = {.lex_state = 132}, + [5765] = {.lex_state = 132}, + [5766] = {.lex_state = 132}, + [5767] = {.lex_state = 132}, + [5768] = {.lex_state = 132}, + [5769] = {.lex_state = 132}, + [5770] = {.lex_state = 132}, + [5771] = {.lex_state = 132}, + [5772] = {.lex_state = 132}, + [5773] = {.lex_state = 132}, + [5774] = {.lex_state = 132}, + [5775] = {.lex_state = 132}, + [5776] = {.lex_state = 132}, + [5777] = {.lex_state = 132}, + [5778] = {.lex_state = 132}, + [5779] = {.lex_state = 132}, + [5780] = {.lex_state = 132}, + [5781] = {.lex_state = 132}, + [5782] = {.lex_state = 132}, + [5783] = {.lex_state = 132}, + [5784] = {.lex_state = 132}, + [5785] = {.lex_state = 132}, + [5786] = {.lex_state = 132}, + [5787] = {.lex_state = 132}, + [5788] = {.lex_state = 132}, + [5789] = {.lex_state = 132}, + [5790] = {.lex_state = 132}, + [5791] = {.lex_state = 132}, + [5792] = {.lex_state = 132}, + [5793] = {.lex_state = 132}, + [5794] = {.lex_state = 132}, + [5795] = {.lex_state = 132}, + [5796] = {.lex_state = 132}, + [5797] = {.lex_state = 132}, + [5798] = {.lex_state = 132}, + [5799] = {.lex_state = 132}, + [5800] = {.lex_state = 132}, + [5801] = {.lex_state = 132}, + [5802] = {.lex_state = 132}, + [5803] = {.lex_state = 132}, + [5804] = {.lex_state = 132}, + [5805] = {.lex_state = 132}, + [5806] = {.lex_state = 132}, + [5807] = {.lex_state = 132}, + [5808] = {.lex_state = 132}, + [5809] = {.lex_state = 132}, + [5810] = {.lex_state = 132}, + [5811] = {.lex_state = 132}, + [5812] = {.lex_state = 132}, + [5813] = {.lex_state = 132}, + [5814] = {.lex_state = 132}, + [5815] = {.lex_state = 132}, + [5816] = {.lex_state = 132}, + [5817] = {.lex_state = 132}, + [5818] = {.lex_state = 132}, + [5819] = {.lex_state = 132}, + [5820] = {.lex_state = 132}, + [5821] = {.lex_state = 132}, + [5822] = {.lex_state = 132}, + [5823] = {.lex_state = 132}, + [5824] = {.lex_state = 132}, + [5825] = {.lex_state = 132}, + [5826] = {.lex_state = 132}, + [5827] = {.lex_state = 132}, + [5828] = {.lex_state = 132}, + [5829] = {.lex_state = 132}, + [5830] = {.lex_state = 132}, + [5831] = {.lex_state = 132}, + [5832] = {.lex_state = 132}, + [5833] = {.lex_state = 132}, + [5834] = {.lex_state = 132}, + [5835] = {.lex_state = 132}, + [5836] = {.lex_state = 132}, + [5837] = {.lex_state = 132}, + [5838] = {.lex_state = 132}, [5839] = {.lex_state = 131}, - [5840] = {.lex_state = 131}, - [5841] = {.lex_state = 131}, - [5842] = {.lex_state = 131}, - [5843] = {.lex_state = 131}, - [5844] = {.lex_state = 131}, - [5845] = {.lex_state = 131}, - [5846] = {.lex_state = 131}, - [5847] = {.lex_state = 131}, - [5848] = {.lex_state = 131}, - [5849] = {.lex_state = 131}, - [5850] = {.lex_state = 131}, - [5851] = {.lex_state = 131}, - [5852] = {.lex_state = 131}, - [5853] = {.lex_state = 131}, - [5854] = {.lex_state = 131}, - [5855] = {.lex_state = 131}, - [5856] = {.lex_state = 131}, - [5857] = {.lex_state = 131}, - [5858] = {.lex_state = 131}, - [5859] = {.lex_state = 131}, - [5860] = {.lex_state = 131}, - [5861] = {.lex_state = 131}, - [5862] = {.lex_state = 131}, - [5863] = {.lex_state = 131}, - [5864] = {.lex_state = 131}, - [5865] = {.lex_state = 131}, - [5866] = {.lex_state = 131}, - [5867] = {.lex_state = 131}, - [5868] = {.lex_state = 131}, - [5869] = {.lex_state = 131}, - [5870] = {.lex_state = 131}, - [5871] = {.lex_state = 131}, - [5872] = {.lex_state = 131}, - [5873] = {.lex_state = 4}, - [5874] = {.lex_state = 131}, - [5875] = {.lex_state = 131}, - [5876] = {.lex_state = 131}, - [5877] = {.lex_state = 131}, - [5878] = {.lex_state = 131}, - [5879] = {.lex_state = 131}, - [5880] = {.lex_state = 131}, - [5881] = {.lex_state = 131}, - [5882] = {.lex_state = 131}, - [5883] = {.lex_state = 131}, - [5884] = {.lex_state = 131}, - [5885] = {.lex_state = 131}, - [5886] = {.lex_state = 131}, - [5887] = {.lex_state = 131}, - [5888] = {.lex_state = 131}, - [5889] = {.lex_state = 131}, - [5890] = {.lex_state = 131}, - [5891] = {.lex_state = 131}, - [5892] = {.lex_state = 131}, - [5893] = {.lex_state = 131}, - [5894] = {.lex_state = 131}, - [5895] = {.lex_state = 131}, - [5896] = {.lex_state = 131}, - [5897] = {.lex_state = 131}, - [5898] = {.lex_state = 131}, - [5899] = {.lex_state = 131}, - [5900] = {.lex_state = 131}, - [5901] = {.lex_state = 131}, - [5902] = {.lex_state = 131}, - [5903] = {.lex_state = 131}, - [5904] = {.lex_state = 131}, - [5905] = {.lex_state = 131}, - [5906] = {.lex_state = 131}, - [5907] = {.lex_state = 131}, - [5908] = {.lex_state = 131}, - [5909] = {.lex_state = 131}, - [5910] = {.lex_state = 131}, - [5911] = {.lex_state = 131}, - [5912] = {.lex_state = 131}, - [5913] = {.lex_state = 131}, - [5914] = {.lex_state = 131}, - [5915] = {.lex_state = 131}, - [5916] = {.lex_state = 131}, - [5917] = {.lex_state = 131}, - [5918] = {.lex_state = 131}, - [5919] = {.lex_state = 131}, - [5920] = {.lex_state = 131}, - [5921] = {.lex_state = 131}, - [5922] = {.lex_state = 131}, - [5923] = {.lex_state = 131}, - [5924] = {.lex_state = 131}, - [5925] = {.lex_state = 131}, - [5926] = {.lex_state = 131}, - [5927] = {.lex_state = 131}, - [5928] = {.lex_state = 131}, - [5929] = {.lex_state = 131}, - [5930] = {.lex_state = 131}, - [5931] = {.lex_state = 131}, - [5932] = {.lex_state = 131}, - [5933] = {.lex_state = 131}, - [5934] = {.lex_state = 131}, - [5935] = {.lex_state = 131}, - [5936] = {.lex_state = 131}, - [5937] = {.lex_state = 131}, - [5938] = {.lex_state = 131}, - [5939] = {.lex_state = 131}, - [5940] = {.lex_state = 131}, - [5941] = {.lex_state = 131}, - [5942] = {.lex_state = 131}, - [5943] = {.lex_state = 131}, - [5944] = {.lex_state = 131}, - [5945] = {.lex_state = 131}, - [5946] = {.lex_state = 131}, - [5947] = {.lex_state = 8}, - [5948] = {.lex_state = 8}, - [5949] = {.lex_state = 8}, - [5950] = {.lex_state = 8}, - [5951] = {.lex_state = 8}, - [5952] = {.lex_state = 8}, - [5953] = {.lex_state = 8}, - [5954] = {.lex_state = 131}, - [5955] = {.lex_state = 8}, - [5956] = {.lex_state = 8}, - [5957] = {.lex_state = 8}, - [5958] = {.lex_state = 8}, - [5959] = {.lex_state = 8}, - [5960] = {.lex_state = 131}, - [5961] = {.lex_state = 131}, - [5962] = {.lex_state = 131}, - [5963] = {.lex_state = 131}, - [5964] = {.lex_state = 131}, - [5965] = {.lex_state = 131}, - [5966] = {.lex_state = 131}, - [5967] = {.lex_state = 131}, - [5968] = {.lex_state = 131}, - [5969] = {.lex_state = 131}, - [5970] = {.lex_state = 131}, - [5971] = {.lex_state = 131}, - [5972] = {.lex_state = 131}, - [5973] = {.lex_state = 131}, - [5974] = {.lex_state = 131}, - [5975] = {.lex_state = 131}, - [5976] = {.lex_state = 131}, - [5977] = {.lex_state = 131}, - [5978] = {.lex_state = 131}, - [5979] = {.lex_state = 131}, - [5980] = {.lex_state = 131}, - [5981] = {.lex_state = 131}, - [5982] = {.lex_state = 131}, - [5983] = {.lex_state = 131}, - [5984] = {.lex_state = 131}, - [5985] = {.lex_state = 131}, - [5986] = {.lex_state = 131}, - [5987] = {.lex_state = 131}, - [5988] = {.lex_state = 131}, - [5989] = {.lex_state = 131}, - [5990] = {.lex_state = 131}, - [5991] = {.lex_state = 131}, - [5992] = {.lex_state = 131}, - [5993] = {.lex_state = 131}, - [5994] = {.lex_state = 131}, - [5995] = {.lex_state = 131}, - [5996] = {.lex_state = 131}, - [5997] = {.lex_state = 131}, - [5998] = {.lex_state = 131}, - [5999] = {.lex_state = 131}, - [6000] = {.lex_state = 131}, - [6001] = {.lex_state = 131}, - [6002] = {.lex_state = 131}, - [6003] = {.lex_state = 131}, - [6004] = {.lex_state = 131}, - [6005] = {.lex_state = 131}, - [6006] = {.lex_state = 131}, - [6007] = {.lex_state = 131}, - [6008] = {.lex_state = 131}, - [6009] = {.lex_state = 131}, - [6010] = {.lex_state = 131}, - [6011] = {.lex_state = 131}, - [6012] = {.lex_state = 131}, - [6013] = {.lex_state = 131}, - [6014] = {.lex_state = 131}, - [6015] = {.lex_state = 131}, - [6016] = {.lex_state = 131}, - [6017] = {.lex_state = 131}, - [6018] = {.lex_state = 131}, - [6019] = {.lex_state = 131}, - [6020] = {.lex_state = 131}, - [6021] = {.lex_state = 131}, - [6022] = {.lex_state = 131}, - [6023] = {.lex_state = 131}, - [6024] = {.lex_state = 131}, - [6025] = {.lex_state = 131}, - [6026] = {.lex_state = 131}, - [6027] = {.lex_state = 131}, - [6028] = {.lex_state = 131}, - [6029] = {.lex_state = 131}, - [6030] = {.lex_state = 131}, - [6031] = {.lex_state = 131}, - [6032] = {.lex_state = 131}, - [6033] = {.lex_state = 131}, - [6034] = {.lex_state = 131}, - [6035] = {.lex_state = 131}, - [6036] = {.lex_state = 131}, - [6037] = {.lex_state = 131}, - [6038] = {.lex_state = 131}, - [6039] = {.lex_state = 131}, - [6040] = {.lex_state = 131}, - [6041] = {.lex_state = 131}, - [6042] = {.lex_state = 131}, - [6043] = {.lex_state = 131}, - [6044] = {.lex_state = 131}, - [6045] = {.lex_state = 131}, - [6046] = {.lex_state = 131}, - [6047] = {.lex_state = 131}, - [6048] = {.lex_state = 131}, - [6049] = {.lex_state = 131}, - [6050] = {.lex_state = 131}, - [6051] = {.lex_state = 131}, - [6052] = {.lex_state = 131}, - [6053] = {.lex_state = 131}, - [6054] = {.lex_state = 131}, - [6055] = {.lex_state = 131}, - [6056] = {.lex_state = 0}, - [6057] = {.lex_state = 0}, - [6058] = {.lex_state = 0}, - [6059] = {.lex_state = 131}, - [6060] = {.lex_state = 130}, - [6061] = {.lex_state = 130}, - [6062] = {.lex_state = 130}, - [6063] = {.lex_state = 130}, - [6064] = {.lex_state = 130}, - [6065] = {.lex_state = 130}, - [6066] = {.lex_state = 130}, - [6067] = {.lex_state = 130}, - [6068] = {.lex_state = 130}, - [6069] = {.lex_state = 130}, - [6070] = {.lex_state = 131}, - [6071] = {.lex_state = 130}, - [6072] = {.lex_state = 130}, - [6073] = {.lex_state = 130}, - [6074] = {.lex_state = 130}, - [6075] = {.lex_state = 130}, - [6076] = {.lex_state = 130}, - [6077] = {.lex_state = 0}, - [6078] = {.lex_state = 0}, - [6079] = {.lex_state = 0}, - [6080] = {.lex_state = 130}, - [6081] = {.lex_state = 131}, - [6082] = {.lex_state = 130}, - [6083] = {.lex_state = 130}, - [6084] = {.lex_state = 131}, - [6085] = {.lex_state = 130}, - [6086] = {.lex_state = 17}, - [6087] = {.lex_state = 130}, - [6088] = {.lex_state = 130}, - [6089] = {.lex_state = 17}, - [6090] = {.lex_state = 0}, - [6091] = {.lex_state = 130}, - [6092] = {.lex_state = 131}, - [6093] = {.lex_state = 131}, - [6094] = {.lex_state = 131}, - [6095] = {.lex_state = 131}, - [6096] = {.lex_state = 131}, - [6097] = {.lex_state = 131}, - [6098] = {.lex_state = 131}, - [6099] = {.lex_state = 131}, - [6100] = {.lex_state = 0}, - [6101] = {.lex_state = 131}, - [6102] = {.lex_state = 131}, - [6103] = {.lex_state = 131}, - [6104] = {.lex_state = 131}, - [6105] = {.lex_state = 131}, - [6106] = {.lex_state = 131}, - [6107] = {.lex_state = 131}, - [6108] = {.lex_state = 131}, - [6109] = {.lex_state = 131}, - [6110] = {.lex_state = 131}, - [6111] = {.lex_state = 131}, - [6112] = {.lex_state = 131}, - [6113] = {.lex_state = 131}, - [6114] = {.lex_state = 10}, - [6115] = {.lex_state = 131}, - [6116] = {.lex_state = 131}, - [6117] = {.lex_state = 131}, - [6118] = {.lex_state = 131}, - [6119] = {.lex_state = 131}, - [6120] = {.lex_state = 131}, - [6121] = {.lex_state = 131}, - [6122] = {.lex_state = 131}, - [6123] = {.lex_state = 131}, - [6124] = {.lex_state = 131}, - [6125] = {.lex_state = 131}, - [6126] = {.lex_state = 131}, - [6127] = {.lex_state = 131}, - [6128] = {.lex_state = 131}, - [6129] = {.lex_state = 131}, - [6130] = {.lex_state = 130}, - [6131] = {.lex_state = 131}, - [6132] = {.lex_state = 130}, - [6133] = {.lex_state = 130}, - [6134] = {.lex_state = 0}, - [6135] = {.lex_state = 0}, - [6136] = {.lex_state = 131}, - [6137] = {.lex_state = 0}, - [6138] = {.lex_state = 131}, - [6139] = {.lex_state = 130}, - [6140] = {.lex_state = 130}, - [6141] = {.lex_state = 131}, - [6142] = {.lex_state = 130}, - [6143] = {.lex_state = 18, .external_lex_state = 5}, - [6144] = {.lex_state = 131}, - [6145] = {.lex_state = 131}, - [6146] = {.lex_state = 18, .external_lex_state = 5}, - [6147] = {.lex_state = 131}, - [6148] = {.lex_state = 131}, - [6149] = {.lex_state = 130}, - [6150] = {.lex_state = 131}, - [6151] = {.lex_state = 18, .external_lex_state = 5}, - [6152] = {.lex_state = 130}, - [6153] = {.lex_state = 131}, - [6154] = {.lex_state = 131}, - [6155] = {.lex_state = 131}, - [6156] = {.lex_state = 130}, - [6157] = {.lex_state = 131}, - [6158] = {.lex_state = 18, .external_lex_state = 5}, - [6159] = {.lex_state = 130}, - [6160] = {.lex_state = 18, .external_lex_state = 5}, - [6161] = {.lex_state = 18, .external_lex_state = 5}, - [6162] = {.lex_state = 18, .external_lex_state = 5}, - [6163] = {.lex_state = 130}, - [6164] = {.lex_state = 131}, - [6165] = {.lex_state = 130}, - [6166] = {.lex_state = 130}, - [6167] = {.lex_state = 131}, - [6168] = {.lex_state = 130}, - [6169] = {.lex_state = 18, .external_lex_state = 5}, - [6170] = {.lex_state = 130}, - [6171] = {.lex_state = 130}, - [6172] = {.lex_state = 18, .external_lex_state = 5}, - [6173] = {.lex_state = 131}, - [6174] = {.lex_state = 131}, - [6175] = {.lex_state = 130}, - [6176] = {.lex_state = 131}, - [6177] = {.lex_state = 18, .external_lex_state = 5}, - [6178] = {.lex_state = 18, .external_lex_state = 5}, - [6179] = {.lex_state = 0}, - [6180] = {.lex_state = 131}, - [6181] = {.lex_state = 2}, - [6182] = {.lex_state = 0, .external_lex_state = 5}, - [6183] = {.lex_state = 0}, - [6184] = {.lex_state = 131}, - [6185] = {.lex_state = 131}, - [6186] = {.lex_state = 0}, - [6187] = {.lex_state = 0, .external_lex_state = 5}, - [6188] = {.lex_state = 0}, - [6189] = {.lex_state = 0}, - [6190] = {.lex_state = 0, .external_lex_state = 5}, - [6191] = {.lex_state = 10}, - [6192] = {.lex_state = 0, .external_lex_state = 5}, - [6193] = {.lex_state = 2}, - [6194] = {.lex_state = 0, .external_lex_state = 5}, - [6195] = {.lex_state = 131}, - [6196] = {.lex_state = 0}, - [6197] = {.lex_state = 131}, - [6198] = {.lex_state = 130}, - [6199] = {.lex_state = 0}, - [6200] = {.lex_state = 0}, - [6201] = {.lex_state = 131}, - [6202] = {.lex_state = 2}, - [6203] = {.lex_state = 131}, - [6204] = {.lex_state = 2}, - [6205] = {.lex_state = 0}, - [6206] = {.lex_state = 2}, - [6207] = {.lex_state = 0}, - [6208] = {.lex_state = 131}, - [6209] = {.lex_state = 0}, - [6210] = {.lex_state = 0}, - [6211] = {.lex_state = 0}, - [6212] = {.lex_state = 2}, - [6213] = {.lex_state = 2}, - [6214] = {.lex_state = 0, .external_lex_state = 5}, - [6215] = {.lex_state = 0, .external_lex_state = 5}, - [6216] = {.lex_state = 10}, - [6217] = {.lex_state = 0, .external_lex_state = 5}, - [6218] = {.lex_state = 131}, - [6219] = {.lex_state = 0, .external_lex_state = 5}, - [6220] = {.lex_state = 0, .external_lex_state = 5}, - [6221] = {.lex_state = 0, .external_lex_state = 5}, - [6222] = {.lex_state = 0, .external_lex_state = 5}, - [6223] = {.lex_state = 0}, - [6224] = {.lex_state = 0, .external_lex_state = 5}, - [6225] = {.lex_state = 0}, - [6226] = {.lex_state = 131}, - [6227] = {.lex_state = 130}, - [6228] = {.lex_state = 2}, - [6229] = {.lex_state = 131}, - [6230] = {.lex_state = 2}, - [6231] = {.lex_state = 2}, - [6232] = {.lex_state = 131}, - [6233] = {.lex_state = 0, .external_lex_state = 5}, - [6234] = {.lex_state = 0}, - [6235] = {.lex_state = 130}, - [6236] = {.lex_state = 2}, - [6237] = {.lex_state = 0, .external_lex_state = 5}, - [6238] = {.lex_state = 0, .external_lex_state = 5}, - [6239] = {.lex_state = 0, .external_lex_state = 5}, - [6240] = {.lex_state = 131}, - [6241] = {.lex_state = 130}, - [6242] = {.lex_state = 2}, - [6243] = {.lex_state = 2}, - [6244] = {.lex_state = 130}, - [6245] = {.lex_state = 0}, - [6246] = {.lex_state = 0}, - [6247] = {.lex_state = 0, .external_lex_state = 5}, - [6248] = {.lex_state = 0, .external_lex_state = 5}, - [6249] = {.lex_state = 0}, - [6250] = {.lex_state = 0}, - [6251] = {.lex_state = 131}, - [6252] = {.lex_state = 131}, - [6253] = {.lex_state = 0, .external_lex_state = 5}, - [6254] = {.lex_state = 1}, - [6255] = {.lex_state = 0, .external_lex_state = 5}, - [6256] = {.lex_state = 0, .external_lex_state = 5}, - [6257] = {.lex_state = 130}, - [6258] = {.lex_state = 130}, - [6259] = {.lex_state = 0}, - [6260] = {.lex_state = 1}, - [6261] = {.lex_state = 0}, - [6262] = {.lex_state = 0}, - [6263] = {.lex_state = 0}, + [5840] = {.lex_state = 132}, + [5841] = {.lex_state = 132}, + [5842] = {.lex_state = 132}, + [5843] = {.lex_state = 132}, + [5844] = {.lex_state = 132}, + [5845] = {.lex_state = 132}, + [5846] = {.lex_state = 132}, + [5847] = {.lex_state = 132}, + [5848] = {.lex_state = 132}, + [5849] = {.lex_state = 132}, + [5850] = {.lex_state = 132}, + [5851] = {.lex_state = 132}, + [5852] = {.lex_state = 132}, + [5853] = {.lex_state = 132}, + [5854] = {.lex_state = 132}, + [5855] = {.lex_state = 132}, + [5856] = {.lex_state = 132}, + [5857] = {.lex_state = 132}, + [5858] = {.lex_state = 132}, + [5859] = {.lex_state = 132}, + [5860] = {.lex_state = 132}, + [5861] = {.lex_state = 132}, + [5862] = {.lex_state = 132}, + [5863] = {.lex_state = 132}, + [5864] = {.lex_state = 132}, + [5865] = {.lex_state = 132}, + [5866] = {.lex_state = 132}, + [5867] = {.lex_state = 132}, + [5868] = {.lex_state = 132}, + [5869] = {.lex_state = 132}, + [5870] = {.lex_state = 132}, + [5871] = {.lex_state = 132}, + [5872] = {.lex_state = 132}, + [5873] = {.lex_state = 132}, + [5874] = {.lex_state = 132}, + [5875] = {.lex_state = 132}, + [5876] = {.lex_state = 132}, + [5877] = {.lex_state = 132}, + [5878] = {.lex_state = 132}, + [5879] = {.lex_state = 132}, + [5880] = {.lex_state = 132}, + [5881] = {.lex_state = 132}, + [5882] = {.lex_state = 132}, + [5883] = {.lex_state = 132}, + [5884] = {.lex_state = 132}, + [5885] = {.lex_state = 132}, + [5886] = {.lex_state = 132}, + [5887] = {.lex_state = 132}, + [5888] = {.lex_state = 132}, + [5889] = {.lex_state = 132}, + [5890] = {.lex_state = 132}, + [5891] = {.lex_state = 132}, + [5892] = {.lex_state = 132}, + [5893] = {.lex_state = 132}, + [5894] = {.lex_state = 132}, + [5895] = {.lex_state = 132}, + [5896] = {.lex_state = 132}, + [5897] = {.lex_state = 132}, + [5898] = {.lex_state = 132}, + [5899] = {.lex_state = 132}, + [5900] = {.lex_state = 132}, + [5901] = {.lex_state = 132}, + [5902] = {.lex_state = 132}, + [5903] = {.lex_state = 132}, + [5904] = {.lex_state = 132}, + [5905] = {.lex_state = 132}, + [5906] = {.lex_state = 132}, + [5907] = {.lex_state = 132}, + [5908] = {.lex_state = 132}, + [5909] = {.lex_state = 132}, + [5910] = {.lex_state = 132}, + [5911] = {.lex_state = 132}, + [5912] = {.lex_state = 132}, + [5913] = {.lex_state = 132}, + [5914] = {.lex_state = 132}, + [5915] = {.lex_state = 132}, + [5916] = {.lex_state = 132}, + [5917] = {.lex_state = 132}, + [5918] = {.lex_state = 132}, + [5919] = {.lex_state = 132}, + [5920] = {.lex_state = 132}, + [5921] = {.lex_state = 132}, + [5922] = {.lex_state = 132}, + [5923] = {.lex_state = 132}, + [5924] = {.lex_state = 132}, + [5925] = {.lex_state = 132}, + [5926] = {.lex_state = 132}, + [5927] = {.lex_state = 132}, + [5928] = {.lex_state = 132}, + [5929] = {.lex_state = 132}, + [5930] = {.lex_state = 132}, + [5931] = {.lex_state = 132}, + [5932] = {.lex_state = 132}, + [5933] = {.lex_state = 132}, + [5934] = {.lex_state = 132}, + [5935] = {.lex_state = 132}, + [5936] = {.lex_state = 132}, + [5937] = {.lex_state = 132}, + [5938] = {.lex_state = 132}, + [5939] = {.lex_state = 132}, + [5940] = {.lex_state = 132}, + [5941] = {.lex_state = 132}, + [5942] = {.lex_state = 132}, + [5943] = {.lex_state = 132}, + [5944] = {.lex_state = 132}, + [5945] = {.lex_state = 132}, + [5946] = {.lex_state = 132}, + [5947] = {.lex_state = 132}, + [5948] = {.lex_state = 132}, + [5949] = {.lex_state = 132}, + [5950] = {.lex_state = 132}, + [5951] = {.lex_state = 132}, + [5952] = {.lex_state = 132}, + [5953] = {.lex_state = 132}, + [5954] = {.lex_state = 132}, + [5955] = {.lex_state = 132}, + [5956] = {.lex_state = 132}, + [5957] = {.lex_state = 132}, + [5958] = {.lex_state = 132}, + [5959] = {.lex_state = 132}, + [5960] = {.lex_state = 132}, + [5961] = {.lex_state = 132}, + [5962] = {.lex_state = 132}, + [5963] = {.lex_state = 132}, + [5964] = {.lex_state = 132}, + [5965] = {.lex_state = 132}, + [5966] = {.lex_state = 132}, + [5967] = {.lex_state = 132}, + [5968] = {.lex_state = 132}, + [5969] = {.lex_state = 132}, + [5970] = {.lex_state = 132}, + [5971] = {.lex_state = 132}, + [5972] = {.lex_state = 132}, + [5973] = {.lex_state = 132}, + [5974] = {.lex_state = 132}, + [5975] = {.lex_state = 132}, + [5976] = {.lex_state = 132}, + [5977] = {.lex_state = 132}, + [5978] = {.lex_state = 132}, + [5979] = {.lex_state = 132}, + [5980] = {.lex_state = 132}, + [5981] = {.lex_state = 132}, + [5982] = {.lex_state = 132}, + [5983] = {.lex_state = 132}, + [5984] = {.lex_state = 132}, + [5985] = {.lex_state = 132}, + [5986] = {.lex_state = 132}, + [5987] = {.lex_state = 132}, + [5988] = {.lex_state = 132}, + [5989] = {.lex_state = 132}, + [5990] = {.lex_state = 132}, + [5991] = {.lex_state = 132}, + [5992] = {.lex_state = 132}, + [5993] = {.lex_state = 132}, + [5994] = {.lex_state = 132}, + [5995] = {.lex_state = 132}, + [5996] = {.lex_state = 132}, + [5997] = {.lex_state = 132}, + [5998] = {.lex_state = 132}, + [5999] = {.lex_state = 132}, + [6000] = {.lex_state = 132}, + [6001] = {.lex_state = 132}, + [6002] = {.lex_state = 1}, + [6003] = {.lex_state = 132}, + [6004] = {.lex_state = 132}, + [6005] = {.lex_state = 132}, + [6006] = {.lex_state = 132}, + [6007] = {.lex_state = 132}, + [6008] = {.lex_state = 132}, + [6009] = {.lex_state = 132}, + [6010] = {.lex_state = 132}, + [6011] = {.lex_state = 132}, + [6012] = {.lex_state = 132}, + [6013] = {.lex_state = 132}, + [6014] = {.lex_state = 132}, + [6015] = {.lex_state = 132}, + [6016] = {.lex_state = 132}, + [6017] = {.lex_state = 132}, + [6018] = {.lex_state = 132}, + [6019] = {.lex_state = 132}, + [6020] = {.lex_state = 132}, + [6021] = {.lex_state = 132}, + [6022] = {.lex_state = 132}, + [6023] = {.lex_state = 132}, + [6024] = {.lex_state = 132}, + [6025] = {.lex_state = 132}, + [6026] = {.lex_state = 132}, + [6027] = {.lex_state = 132}, + [6028] = {.lex_state = 132}, + [6029] = {.lex_state = 132}, + [6030] = {.lex_state = 132}, + [6031] = {.lex_state = 132}, + [6032] = {.lex_state = 132}, + [6033] = {.lex_state = 132}, + [6034] = {.lex_state = 132}, + [6035] = {.lex_state = 132}, + [6036] = {.lex_state = 132}, + [6037] = {.lex_state = 132}, + [6038] = {.lex_state = 132}, + [6039] = {.lex_state = 132}, + [6040] = {.lex_state = 132}, + [6041] = {.lex_state = 132}, + [6042] = {.lex_state = 132}, + [6043] = {.lex_state = 132}, + [6044] = {.lex_state = 132}, + [6045] = {.lex_state = 132}, + [6046] = {.lex_state = 132}, + [6047] = {.lex_state = 132}, + [6048] = {.lex_state = 132}, + [6049] = {.lex_state = 132}, + [6050] = {.lex_state = 132}, + [6051] = {.lex_state = 132}, + [6052] = {.lex_state = 132}, + [6053] = {.lex_state = 132}, + [6054] = {.lex_state = 132}, + [6055] = {.lex_state = 132}, + [6056] = {.lex_state = 132}, + [6057] = {.lex_state = 132}, + [6058] = {.lex_state = 132}, + [6059] = {.lex_state = 132}, + [6060] = {.lex_state = 132}, + [6061] = {.lex_state = 132}, + [6062] = {.lex_state = 132}, + [6063] = {.lex_state = 4}, + [6064] = {.lex_state = 132}, + [6065] = {.lex_state = 132}, + [6066] = {.lex_state = 132}, + [6067] = {.lex_state = 132}, + [6068] = {.lex_state = 132}, + [6069] = {.lex_state = 132}, + [6070] = {.lex_state = 132}, + [6071] = {.lex_state = 132}, + [6072] = {.lex_state = 132}, + [6073] = {.lex_state = 132}, + [6074] = {.lex_state = 132}, + [6075] = {.lex_state = 132}, + [6076] = {.lex_state = 132}, + [6077] = {.lex_state = 132}, + [6078] = {.lex_state = 132}, + [6079] = {.lex_state = 132}, + [6080] = {.lex_state = 132}, + [6081] = {.lex_state = 132}, + [6082] = {.lex_state = 132}, + [6083] = {.lex_state = 132}, + [6084] = {.lex_state = 132}, + [6085] = {.lex_state = 132}, + [6086] = {.lex_state = 132}, + [6087] = {.lex_state = 132}, + [6088] = {.lex_state = 132}, + [6089] = {.lex_state = 132}, + [6090] = {.lex_state = 132}, + [6091] = {.lex_state = 132}, + [6092] = {.lex_state = 132}, + [6093] = {.lex_state = 132}, + [6094] = {.lex_state = 132}, + [6095] = {.lex_state = 132}, + [6096] = {.lex_state = 132}, + [6097] = {.lex_state = 132}, + [6098] = {.lex_state = 132}, + [6099] = {.lex_state = 132}, + [6100] = {.lex_state = 132}, + [6101] = {.lex_state = 132}, + [6102] = {.lex_state = 132}, + [6103] = {.lex_state = 132}, + [6104] = {.lex_state = 132}, + [6105] = {.lex_state = 132}, + [6106] = {.lex_state = 132}, + [6107] = {.lex_state = 132}, + [6108] = {.lex_state = 132}, + [6109] = {.lex_state = 132}, + [6110] = {.lex_state = 132}, + [6111] = {.lex_state = 132}, + [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}, + [6124] = {.lex_state = 132}, + [6125] = {.lex_state = 132}, + [6126] = {.lex_state = 132}, + [6127] = {.lex_state = 132}, + [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}, + [6140] = {.lex_state = 132}, + [6141] = {.lex_state = 8}, + [6142] = {.lex_state = 8}, + [6143] = {.lex_state = 8}, + [6144] = {.lex_state = 8}, + [6145] = {.lex_state = 132}, + [6146] = {.lex_state = 132}, + [6147] = {.lex_state = 132}, + [6148] = {.lex_state = 132}, + [6149] = {.lex_state = 132}, + [6150] = {.lex_state = 132}, + [6151] = {.lex_state = 132}, + [6152] = {.lex_state = 132}, + [6153] = {.lex_state = 132}, + [6154] = {.lex_state = 132}, + [6155] = {.lex_state = 132}, + [6156] = {.lex_state = 132}, + [6157] = {.lex_state = 132}, + [6158] = {.lex_state = 132}, + [6159] = {.lex_state = 132}, + [6160] = {.lex_state = 132}, + [6161] = {.lex_state = 132}, + [6162] = {.lex_state = 132}, + [6163] = {.lex_state = 132}, + [6164] = {.lex_state = 132}, + [6165] = {.lex_state = 132}, + [6166] = {.lex_state = 132}, + [6167] = {.lex_state = 132}, + [6168] = {.lex_state = 132}, + [6169] = {.lex_state = 132}, + [6170] = {.lex_state = 132}, + [6171] = {.lex_state = 132}, + [6172] = {.lex_state = 132}, + [6173] = {.lex_state = 132}, + [6174] = {.lex_state = 132}, + [6175] = {.lex_state = 132}, + [6176] = {.lex_state = 132}, + [6177] = {.lex_state = 132}, + [6178] = {.lex_state = 132}, + [6179] = {.lex_state = 132}, + [6180] = {.lex_state = 132}, + [6181] = {.lex_state = 132}, + [6182] = {.lex_state = 132}, + [6183] = {.lex_state = 132}, + [6184] = {.lex_state = 132}, + [6185] = {.lex_state = 132}, + [6186] = {.lex_state = 132}, + [6187] = {.lex_state = 132}, + [6188] = {.lex_state = 132}, + [6189] = {.lex_state = 132}, + [6190] = {.lex_state = 132}, + [6191] = {.lex_state = 132}, + [6192] = {.lex_state = 132}, + [6193] = {.lex_state = 132}, + [6194] = {.lex_state = 132}, + [6195] = {.lex_state = 132}, + [6196] = {.lex_state = 132}, + [6197] = {.lex_state = 132}, + [6198] = {.lex_state = 132}, + [6199] = {.lex_state = 132}, + [6200] = {.lex_state = 132}, + [6201] = {.lex_state = 132}, + [6202] = {.lex_state = 132}, + [6203] = {.lex_state = 132}, + [6204] = {.lex_state = 132}, + [6205] = {.lex_state = 132}, + [6206] = {.lex_state = 132}, + [6207] = {.lex_state = 132}, + [6208] = {.lex_state = 132}, + [6209] = {.lex_state = 132}, + [6210] = {.lex_state = 132}, + [6211] = {.lex_state = 132}, + [6212] = {.lex_state = 132}, + [6213] = {.lex_state = 132}, + [6214] = {.lex_state = 132}, + [6215] = {.lex_state = 132}, + [6216] = {.lex_state = 132}, + [6217] = {.lex_state = 132}, + [6218] = {.lex_state = 132}, + [6219] = {.lex_state = 132}, + [6220] = {.lex_state = 132}, + [6221] = {.lex_state = 132}, + [6222] = {.lex_state = 132}, + [6223] = {.lex_state = 132}, + [6224] = {.lex_state = 132}, + [6225] = {.lex_state = 132}, + [6226] = {.lex_state = 132}, + [6227] = {.lex_state = 132}, + [6228] = {.lex_state = 132}, + [6229] = {.lex_state = 132}, + [6230] = {.lex_state = 132}, + [6231] = {.lex_state = 132}, + [6232] = {.lex_state = 132}, + [6233] = {.lex_state = 132}, + [6234] = {.lex_state = 132}, + [6235] = {.lex_state = 132}, + [6236] = {.lex_state = 132}, + [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}, + [6255] = {.lex_state = 131}, + [6256] = {.lex_state = 131}, + [6257] = {.lex_state = 131}, + [6258] = {.lex_state = 131}, + [6259] = {.lex_state = 131}, + [6260] = {.lex_state = 132}, + [6261] = {.lex_state = 131}, + [6262] = {.lex_state = 131}, + [6263] = {.lex_state = 131}, [6264] = {.lex_state = 131}, - [6265] = {.lex_state = 130}, + [6265] = {.lex_state = 131}, [6266] = {.lex_state = 131}, [6267] = {.lex_state = 131}, - [6268] = {.lex_state = 130}, - [6269] = {.lex_state = 0}, - [6270] = {.lex_state = 1}, - [6271] = {.lex_state = 131}, + [6268] = {.lex_state = 131}, + [6269] = {.lex_state = 131}, + [6270] = {.lex_state = 0}, + [6271] = {.lex_state = 0}, [6272] = {.lex_state = 131}, [6273] = {.lex_state = 131}, - [6274] = {.lex_state = 1}, - [6275] = {.lex_state = 131}, + [6274] = {.lex_state = 0}, + [6275] = {.lex_state = 132}, [6276] = {.lex_state = 131}, - [6277] = {.lex_state = 131}, - [6278] = {.lex_state = 131}, - [6279] = {.lex_state = 0}, - [6280] = {.lex_state = 0}, + [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 = 0}, - [6284] = {.lex_state = 1}, - [6285] = {.lex_state = 1}, - [6286] = {.lex_state = 1}, - [6287] = {.lex_state = 131}, - [6288] = {.lex_state = 131}, - [6289] = {.lex_state = 131}, - [6290] = {.lex_state = 1}, - [6291] = {.lex_state = 1}, - [6292] = {.lex_state = 131}, - [6293] = {.lex_state = 1}, - [6294] = {.lex_state = 131}, - [6295] = {.lex_state = 131}, - [6296] = {.lex_state = 1}, - [6297] = {.lex_state = 0}, - [6298] = {.lex_state = 131}, - [6299] = {.lex_state = 131}, - [6300] = {.lex_state = 1}, - [6301] = {.lex_state = 1}, - [6302] = {.lex_state = 130}, - [6303] = {.lex_state = 131}, - [6304] = {.lex_state = 1}, - [6305] = {.lex_state = 131}, - [6306] = {.lex_state = 1}, - [6307] = {.lex_state = 131}, - [6308] = {.lex_state = 131}, - [6309] = {.lex_state = 1}, - [6310] = {.lex_state = 131}, - [6311] = {.lex_state = 1}, - [6312] = {.lex_state = 0}, - [6313] = {.lex_state = 0}, - [6314] = {.lex_state = 131}, - [6315] = {.lex_state = 1}, - [6316] = {.lex_state = 131}, - [6317] = {.lex_state = 131}, - [6318] = {.lex_state = 0}, + [6283] = {.lex_state = 131}, + [6284] = {.lex_state = 17}, + [6285] = {.lex_state = 0}, + [6286] = {.lex_state = 132}, + [6287] = {.lex_state = 132}, + [6288] = {.lex_state = 132}, + [6289] = {.lex_state = 132}, + [6290] = {.lex_state = 132}, + [6291] = {.lex_state = 132}, + [6292] = {.lex_state = 132}, + [6293] = {.lex_state = 132}, + [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}, + [6301] = {.lex_state = 132}, + [6302] = {.lex_state = 132}, + [6303] = {.lex_state = 132}, + [6304] = {.lex_state = 132}, + [6305] = {.lex_state = 132}, + [6306] = {.lex_state = 132}, + [6307] = {.lex_state = 132}, + [6308] = {.lex_state = 132}, + [6309] = {.lex_state = 132}, + [6310] = {.lex_state = 0}, + [6311] = {.lex_state = 132}, + [6312] = {.lex_state = 132}, + [6313] = {.lex_state = 132}, + [6314] = {.lex_state = 132}, + [6315] = {.lex_state = 132}, + [6316] = {.lex_state = 132}, + [6317] = {.lex_state = 132}, + [6318] = {.lex_state = 132}, [6319] = {.lex_state = 131}, - [6320] = {.lex_state = 0}, - [6321] = {.lex_state = 131}, - [6322] = {.lex_state = 0}, - [6323] = {.lex_state = 131}, - [6324] = {.lex_state = 131}, - [6325] = {.lex_state = 131}, - [6326] = {.lex_state = 131}, - [6327] = {.lex_state = 0}, - [6328] = {.lex_state = 131}, - [6329] = {.lex_state = 131}, - [6330] = {.lex_state = 0}, + [6320] = {.lex_state = 132}, + [6321] = {.lex_state = 132}, + [6322] = {.lex_state = 132}, + [6323] = {.lex_state = 10}, + [6324] = {.lex_state = 132}, + [6325] = {.lex_state = 132}, + [6326] = {.lex_state = 132}, + [6327] = {.lex_state = 131}, + [6328] = {.lex_state = 132}, + [6329] = {.lex_state = 132}, + [6330] = {.lex_state = 131}, [6331] = {.lex_state = 131}, [6332] = {.lex_state = 131}, - [6333] = {.lex_state = 1}, + [6333] = {.lex_state = 0}, [6334] = {.lex_state = 131}, - [6335] = {.lex_state = 131}, - [6336] = {.lex_state = 131}, - [6337] = {.lex_state = 1}, - [6338] = {.lex_state = 0}, - [6339] = {.lex_state = 131}, - [6340] = {.lex_state = 131}, - [6341] = {.lex_state = 10}, - [6342] = {.lex_state = 0}, + [6335] = {.lex_state = 132}, + [6336] = {.lex_state = 0}, + [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}, - [6344] = {.lex_state = 0}, + [6344] = {.lex_state = 132}, [6345] = {.lex_state = 131}, - [6346] = {.lex_state = 131}, - [6347] = {.lex_state = 1}, - [6348] = {.lex_state = 131}, - [6349] = {.lex_state = 1}, - [6350] = {.lex_state = 1}, - [6351] = {.lex_state = 1}, - [6352] = {.lex_state = 131}, - [6353] = {.lex_state = 130}, - [6354] = {.lex_state = 131}, - [6355] = {.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}, + [6352] = {.lex_state = 132}, + [6353] = {.lex_state = 131}, + [6354] = {.lex_state = 132}, + [6355] = {.lex_state = 132}, [6356] = {.lex_state = 131}, - [6357] = {.lex_state = 1}, - [6358] = {.lex_state = 10}, - [6359] = {.lex_state = 0}, - [6360] = {.lex_state = 1}, + [6357] = {.lex_state = 132}, + [6358] = {.lex_state = 18, .external_lex_state = 5}, + [6359] = {.lex_state = 18, .external_lex_state = 5}, + [6360] = {.lex_state = 18, .external_lex_state = 5}, [6361] = {.lex_state = 131}, - [6362] = {.lex_state = 131}, - [6363] = {.lex_state = 1}, - [6364] = {.lex_state = 131}, - [6365] = {.lex_state = 131}, + [6362] = {.lex_state = 18, .external_lex_state = 5}, + [6363] = {.lex_state = 132}, + [6364] = {.lex_state = 132}, + [6365] = {.lex_state = 132}, [6366] = {.lex_state = 131}, [6367] = {.lex_state = 131}, - [6368] = {.lex_state = 131}, - [6369] = {.lex_state = 131}, - [6370] = {.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 = 131}, - [6374] = {.lex_state = 131}, - [6375] = {.lex_state = 131}, - [6376] = {.lex_state = 130}, - [6377] = {.lex_state = 131}, - [6378] = {.lex_state = 131}, - [6379] = {.lex_state = 131}, - [6380] = {.lex_state = 131}, - [6381] = {.lex_state = 131}, - [6382] = {.lex_state = 0}, - [6383] = {.lex_state = 131}, - [6384] = {.lex_state = 131}, - [6385] = {.lex_state = 131}, - [6386] = {.lex_state = 131}, - [6387] = {.lex_state = 131}, - [6388] = {.lex_state = 131}, - [6389] = {.lex_state = 131}, - [6390] = {.lex_state = 131}, - [6391] = {.lex_state = 131}, - [6392] = {.lex_state = 0}, - [6393] = {.lex_state = 131}, - [6394] = {.lex_state = 130}, - [6395] = {.lex_state = 130}, - [6396] = {.lex_state = 130}, - [6397] = {.lex_state = 0}, + [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}, + [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}, + [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}, + [6396] = {.lex_state = 0}, + [6397] = {.lex_state = 0, .external_lex_state = 5}, [6398] = {.lex_state = 131}, - [6399] = {.lex_state = 131}, - [6400] = {.lex_state = 131}, - [6401] = {.lex_state = 131}, - [6402] = {.lex_state = 131}, - [6403] = {.lex_state = 131}, - [6404] = {.lex_state = 131}, - [6405] = {.lex_state = 131}, - [6406] = {.lex_state = 130}, - [6407] = {.lex_state = 0}, - [6408] = {.lex_state = 0}, - [6409] = {.lex_state = 131}, + [6399] = {.lex_state = 0, .external_lex_state = 5}, + [6400] = {.lex_state = 2}, + [6401] = {.lex_state = 0, .external_lex_state = 5}, + [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}, - [6411] = {.lex_state = 0}, - [6412] = {.lex_state = 131}, + [6411] = {.lex_state = 2}, + [6412] = {.lex_state = 132}, [6413] = {.lex_state = 131}, - [6414] = {.lex_state = 0}, - [6415] = {.lex_state = 10}, + [6414] = {.lex_state = 2}, + [6415] = {.lex_state = 132}, [6416] = {.lex_state = 0}, - [6417] = {.lex_state = 131}, - [6418] = {.lex_state = 0}, - [6419] = {.lex_state = 131}, - [6420] = {.lex_state = 130}, + [6417] = {.lex_state = 0}, + [6418] = {.lex_state = 131}, + [6419] = {.lex_state = 0, .external_lex_state = 5}, + [6420] = {.lex_state = 0}, [6421] = {.lex_state = 0}, - [6422] = {.lex_state = 131}, - [6423] = {.lex_state = 131}, + [6422] = {.lex_state = 0}, + [6423] = {.lex_state = 0}, [6424] = {.lex_state = 0}, - [6425] = {.lex_state = 131}, - [6426] = {.lex_state = 130}, - [6427] = {.lex_state = 131}, - [6428] = {.lex_state = 18, .external_lex_state = 5}, - [6429] = {.lex_state = 10}, - [6430] = {.lex_state = 131}, - [6431] = {.lex_state = 0}, - [6432] = {.lex_state = 18, .external_lex_state = 5}, - [6433] = {.lex_state = 131}, + [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}, - [6435] = {.lex_state = 131}, - [6436] = {.lex_state = 130}, - [6437] = {.lex_state = 10}, - [6438] = {.lex_state = 131}, - [6439] = {.lex_state = 10}, - [6440] = {.lex_state = 131}, - [6441] = {.lex_state = 131}, - [6442] = {.lex_state = 131}, - [6443] = {.lex_state = 131}, - [6444] = {.lex_state = 0}, - [6445] = {.lex_state = 4}, - [6446] = {.lex_state = 131}, - [6447] = {.lex_state = 10}, - [6448] = {.lex_state = 131}, - [6449] = {.lex_state = 10}, - [6450] = {.lex_state = 131}, - [6451] = {.lex_state = 131}, - [6452] = {.lex_state = 131}, - [6453] = {.lex_state = 131}, + [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}, + [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 = 131}, - [6456] = {.lex_state = 18, .external_lex_state = 5}, - [6457] = {.lex_state = 10}, - [6458] = {.lex_state = 131}, - [6459] = {.lex_state = 131}, - [6460] = {.lex_state = 131}, - [6461] = {.lex_state = 130}, - [6462] = {.lex_state = 18, .external_lex_state = 5}, - [6463] = {.lex_state = 131}, - [6464] = {.lex_state = 131}, - [6465] = {.lex_state = 130}, - [6466] = {.lex_state = 131}, - [6467] = {.lex_state = 131}, - [6468] = {.lex_state = 131}, - [6469] = {.lex_state = 131}, - [6470] = {.lex_state = 0}, + [6455] = {.lex_state = 0, .external_lex_state = 5}, + [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}, + [6468] = {.lex_state = 132}, + [6469] = {.lex_state = 1}, + [6470] = {.lex_state = 132}, [6471] = {.lex_state = 0}, - [6472] = {.lex_state = 131}, - [6473] = {.lex_state = 10}, - [6474] = {.lex_state = 131}, - [6475] = {.lex_state = 130}, - [6476] = {.lex_state = 131}, + [6472] = {.lex_state = 1}, + [6473] = {.lex_state = 132}, + [6474] = {.lex_state = 10}, + [6475] = {.lex_state = 132}, + [6476] = {.lex_state = 132}, [6477] = {.lex_state = 0}, - [6478] = {.lex_state = 131}, - [6479] = {.lex_state = 2}, - [6480] = {.lex_state = 2}, - [6481] = {.lex_state = 131}, - [6482] = {.lex_state = 2}, - [6483] = {.lex_state = 131}, - [6484] = {.lex_state = 131}, - [6485] = {.lex_state = 0}, - [6486] = {.lex_state = 131}, - [6487] = {.lex_state = 131}, - [6488] = {.lex_state = 0}, - [6489] = {.lex_state = 131}, - [6490] = {.lex_state = 131}, + [6478] = {.lex_state = 132}, + [6479] = {.lex_state = 1}, + [6480] = {.lex_state = 132}, + [6481] = {.lex_state = 132}, + [6482] = {.lex_state = 132}, + [6483] = {.lex_state = 1}, + [6484] = {.lex_state = 132}, + [6485] = {.lex_state = 132}, + [6486] = {.lex_state = 0}, + [6487] = {.lex_state = 0}, + [6488] = {.lex_state = 132}, + [6489] = {.lex_state = 132}, + [6490] = {.lex_state = 132}, [6491] = {.lex_state = 0}, - [6492] = {.lex_state = 131}, - [6493] = {.lex_state = 0}, - [6494] = {.lex_state = 131}, - [6495] = {.lex_state = 131}, - [6496] = {.lex_state = 0}, - [6497] = {.lex_state = 18, .external_lex_state = 5}, - [6498] = {.lex_state = 131}, - [6499] = {.lex_state = 131}, + [6492] = {.lex_state = 1}, + [6493] = {.lex_state = 132}, + [6494] = {.lex_state = 132}, + [6495] = {.lex_state = 132}, + [6496] = {.lex_state = 132}, + [6497] = {.lex_state = 132}, + [6498] = {.lex_state = 1}, + [6499] = {.lex_state = 132}, [6500] = {.lex_state = 0}, - [6501] = {.lex_state = 0}, - [6502] = {.lex_state = 131}, - [6503] = {.lex_state = 10}, - [6504] = {.lex_state = 130}, + [6501] = {.lex_state = 132}, + [6502] = {.lex_state = 1}, + [6503] = {.lex_state = 0}, + [6504] = {.lex_state = 132}, [6505] = {.lex_state = 131}, - [6506] = {.lex_state = 131}, - [6507] = {.lex_state = 10}, - [6508] = {.lex_state = 0}, - [6509] = {.lex_state = 0}, - [6510] = {.lex_state = 131}, - [6511] = {.lex_state = 10}, - [6512] = {.lex_state = 0}, - [6513] = {.lex_state = 0}, - [6514] = {.lex_state = 0}, - [6515] = {.lex_state = 10}, - [6516] = {.lex_state = 10}, - [6517] = {.lex_state = 0}, - [6518] = {.lex_state = 1}, + [6506] = {.lex_state = 1}, + [6507] = {.lex_state = 132}, + [6508] = {.lex_state = 1}, + [6509] = {.lex_state = 1}, + [6510] = {.lex_state = 132}, + [6511] = {.lex_state = 1}, + [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 = 0}, - [6521] = {.lex_state = 10}, - [6522] = {.lex_state = 0}, - [6523] = {.lex_state = 0}, - [6524] = {.lex_state = 10}, - [6525] = {.lex_state = 10}, - [6526] = {.lex_state = 0}, + [6520] = {.lex_state = 1}, + [6521] = {.lex_state = 0}, + [6522] = {.lex_state = 132}, + [6523] = {.lex_state = 132}, + [6524] = {.lex_state = 132}, + [6525] = {.lex_state = 1}, + [6526] = {.lex_state = 132}, [6527] = {.lex_state = 0}, - [6528] = {.lex_state = 0}, - [6529] = {.lex_state = 0}, - [6530] = {.lex_state = 10}, + [6528] = {.lex_state = 132}, + [6529] = {.lex_state = 132}, + [6530] = {.lex_state = 0}, [6531] = {.lex_state = 0}, - [6532] = {.lex_state = 0}, - [6533] = {.lex_state = 0}, - [6534] = {.lex_state = 0}, - [6535] = {.lex_state = 0}, - [6536] = {.lex_state = 10}, - [6537] = {.lex_state = 10}, + [6532] = {.lex_state = 132}, + [6533] = {.lex_state = 131}, + [6534] = {.lex_state = 132}, + [6535] = {.lex_state = 132}, + [6536] = {.lex_state = 0}, + [6537] = {.lex_state = 132}, [6538] = {.lex_state = 0}, - [6539] = {.lex_state = 0}, - [6540] = {.lex_state = 0}, - [6541] = {.lex_state = 0}, - [6542] = {.lex_state = 0}, + [6539] = {.lex_state = 132}, + [6540] = {.lex_state = 1}, + [6541] = {.lex_state = 132}, + [6542] = {.lex_state = 1}, [6543] = {.lex_state = 0}, - [6544] = {.lex_state = 0}, - [6545] = {.lex_state = 0}, - [6546] = {.lex_state = 0}, - [6547] = {.lex_state = 0}, - [6548] = {.lex_state = 0}, - [6549] = {.lex_state = 0}, - [6550] = {.lex_state = 10}, - [6551] = {.lex_state = 10}, - [6552] = {.lex_state = 0}, - [6553] = {.lex_state = 0}, - [6554] = {.lex_state = 0}, - [6555] = {.lex_state = 0}, - [6556] = {.lex_state = 0}, - [6557] = {.lex_state = 10}, + [6544] = {.lex_state = 132}, + [6545] = {.lex_state = 1}, + [6546] = {.lex_state = 1}, + [6547] = {.lex_state = 1}, + [6548] = {.lex_state = 1}, + [6549] = {.lex_state = 132}, + [6550] = {.lex_state = 1}, + [6551] = {.lex_state = 1}, + [6552] = {.lex_state = 1}, + [6553] = {.lex_state = 1}, + [6554] = {.lex_state = 131}, + [6555] = {.lex_state = 132}, + [6556] = {.lex_state = 1}, + [6557] = {.lex_state = 0}, [6558] = {.lex_state = 0}, - [6559] = {.lex_state = 0}, + [6559] = {.lex_state = 1}, [6560] = {.lex_state = 0}, - [6561] = {.lex_state = 131}, - [6562] = {.lex_state = 10}, + [6561] = {.lex_state = 0}, + [6562] = {.lex_state = 132}, [6563] = {.lex_state = 0}, [6564] = {.lex_state = 0}, [6565] = {.lex_state = 0}, - [6566] = {.lex_state = 1}, - [6567] = {.lex_state = 0}, - [6568] = {.lex_state = 10}, + [6566] = {.lex_state = 132}, + [6567] = {.lex_state = 1}, + [6568] = {.lex_state = 132}, [6569] = {.lex_state = 0}, - [6570] = {.lex_state = 0}, - [6571] = {.lex_state = 0}, - [6572] = {.lex_state = 0}, - [6573] = {.lex_state = 0}, - [6574] = {.lex_state = 10}, - [6575] = {.lex_state = 0}, - [6576] = {.lex_state = 0}, - [6577] = {.lex_state = 10}, - [6578] = {.lex_state = 0}, - [6579] = {.lex_state = 0}, - [6580] = {.lex_state = 0}, - [6581] = {.lex_state = 10}, - [6582] = {.lex_state = 10}, - [6583] = {.lex_state = 10}, - [6584] = {.lex_state = 10}, - [6585] = {.lex_state = 10}, - [6586] = {.lex_state = 10}, - [6587] = {.lex_state = 0}, - [6588] = {.lex_state = 0}, - [6589] = {.lex_state = 10}, - [6590] = {.lex_state = 0}, - [6591] = {.lex_state = 10}, - [6592] = {.lex_state = 0}, + [6570] = {.lex_state = 132}, + [6571] = {.lex_state = 1}, + [6572] = {.lex_state = 132}, + [6573] = {.lex_state = 1}, + [6574] = {.lex_state = 1}, + [6575] = {.lex_state = 132}, + [6576] = {.lex_state = 1}, + [6577] = {.lex_state = 1}, + [6578] = {.lex_state = 132}, + [6579] = {.lex_state = 10}, + [6580] = {.lex_state = 1}, + [6581] = {.lex_state = 132}, + [6582] = {.lex_state = 131}, + [6583] = {.lex_state = 132}, + [6584] = {.lex_state = 132}, + [6585] = {.lex_state = 132}, + [6586] = {.lex_state = 132}, + [6587] = {.lex_state = 132}, + [6588] = {.lex_state = 132}, + [6589] = {.lex_state = 132}, + [6590] = {.lex_state = 132}, + [6591] = {.lex_state = 132}, + [6592] = {.lex_state = 132}, [6593] = {.lex_state = 1}, [6594] = {.lex_state = 1}, - [6595] = {.lex_state = 10}, - [6596] = {.lex_state = 10}, - [6597] = {.lex_state = 0}, - [6598] = {.lex_state = 0}, - [6599] = {.lex_state = 0}, - [6600] = {.lex_state = 0}, - [6601] = {.lex_state = 0}, - [6602] = {.lex_state = 0}, - [6603] = {.lex_state = 0}, - [6604] = {.lex_state = 0}, - [6605] = {.lex_state = 0}, - [6606] = {.lex_state = 0}, - [6607] = {.lex_state = 0}, + [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}, + [6605] = {.lex_state = 132}, + [6606] = {.lex_state = 132}, + [6607] = {.lex_state = 131}, [6608] = {.lex_state = 0}, - [6609] = {.lex_state = 131}, - [6610] = {.lex_state = 0}, - [6611] = {.lex_state = 0}, - [6612] = {.lex_state = 0}, + [6609] = {.lex_state = 132}, + [6610] = {.lex_state = 132}, + [6611] = {.lex_state = 132}, + [6612] = {.lex_state = 132}, [6613] = {.lex_state = 0}, - [6614] = {.lex_state = 131}, - [6615] = {.lex_state = 0}, - [6616] = {.lex_state = 0}, - [6617] = {.lex_state = 10}, - [6618] = {.lex_state = 10}, - [6619] = {.lex_state = 0}, - [6620] = {.lex_state = 0}, - [6621] = {.lex_state = 0}, - [6622] = {.lex_state = 0}, - [6623] = {.lex_state = 0, .external_lex_state = 5}, - [6624] = {.lex_state = 0, .external_lex_state = 5}, - [6625] = {.lex_state = 0}, - [6626] = {.lex_state = 10}, - [6627] = {.lex_state = 0, .external_lex_state = 5}, - [6628] = {.lex_state = 0, .external_lex_state = 5}, - [6629] = {.lex_state = 0}, - [6630] = {.lex_state = 0}, - [6631] = {.lex_state = 0}, - [6632] = {.lex_state = 0}, - [6633] = {.lex_state = 0}, - [6634] = {.lex_state = 0}, - [6635] = {.lex_state = 0}, + [6614] = {.lex_state = 132}, + [6615] = {.lex_state = 10}, + [6616] = {.lex_state = 132}, + [6617] = {.lex_state = 131}, + [6618] = {.lex_state = 132}, + [6619] = {.lex_state = 132}, + [6620] = {.lex_state = 132}, + [6621] = {.lex_state = 132}, + [6622] = {.lex_state = 131}, + [6623] = {.lex_state = 132}, + [6624] = {.lex_state = 0}, + [6625] = {.lex_state = 132}, + [6626] = {.lex_state = 0}, + [6627] = {.lex_state = 131}, + [6628] = {.lex_state = 0}, + [6629] = {.lex_state = 131}, + [6630] = {.lex_state = 132}, + [6631] = {.lex_state = 132}, + [6632] = {.lex_state = 132}, + [6633] = {.lex_state = 132}, + [6634] = {.lex_state = 132}, + [6635] = {.lex_state = 131}, [6636] = {.lex_state = 0}, [6637] = {.lex_state = 0}, - [6638] = {.lex_state = 0}, - [6639] = {.lex_state = 0}, - [6640] = {.lex_state = 10}, - [6641] = {.lex_state = 0}, + [6638] = {.lex_state = 18, .external_lex_state = 5}, + [6639] = {.lex_state = 132}, + [6640] = {.lex_state = 0}, + [6641] = {.lex_state = 132}, [6642] = {.lex_state = 0}, - [6643] = {.lex_state = 0}, - [6644] = {.lex_state = 0}, - [6645] = {.lex_state = 10}, - [6646] = {.lex_state = 0}, - [6647] = {.lex_state = 0}, - [6648] = {.lex_state = 0}, - [6649] = {.lex_state = 0}, - [6650] = {.lex_state = 0}, - [6651] = {.lex_state = 0}, + [6643] = {.lex_state = 18, .external_lex_state = 5}, + [6644] = {.lex_state = 132}, + [6645] = {.lex_state = 132}, + [6646] = {.lex_state = 132}, + [6647] = {.lex_state = 132}, + [6648] = {.lex_state = 10}, + [6649] = {.lex_state = 132}, + [6650] = {.lex_state = 10}, + [6651] = {.lex_state = 131}, [6652] = {.lex_state = 0}, - [6653] = {.lex_state = 0}, - [6654] = {.lex_state = 10}, - [6655] = {.lex_state = 10}, + [6653] = {.lex_state = 18, .external_lex_state = 5}, + [6654] = {.lex_state = 131}, + [6655] = {.lex_state = 0}, [6656] = {.lex_state = 0}, - [6657] = {.lex_state = 0}, - [6658] = {.lex_state = 0}, - [6659] = {.lex_state = 0}, - [6660] = {.lex_state = 0}, + [6657] = {.lex_state = 10}, + [6658] = {.lex_state = 132}, + [6659] = {.lex_state = 131}, + [6660] = {.lex_state = 132}, [6661] = {.lex_state = 0}, - [6662] = {.lex_state = 0}, - [6663] = {.lex_state = 0}, - [6664] = {.lex_state = 0}, + [6662] = {.lex_state = 132}, + [6663] = {.lex_state = 132}, + [6664] = {.lex_state = 132}, [6665] = {.lex_state = 0}, [6666] = {.lex_state = 0}, - [6667] = {.lex_state = 0}, - [6668] = {.lex_state = 0}, + [6667] = {.lex_state = 132}, + [6668] = {.lex_state = 10}, [6669] = {.lex_state = 0}, - [6670] = {.lex_state = 0}, - [6671] = {.lex_state = 0}, - [6672] = {.lex_state = 4}, - [6673] = {.lex_state = 0}, - [6674] = {.lex_state = 0}, - [6675] = {.lex_state = 0}, - [6676] = {.lex_state = 0}, - [6677] = {.lex_state = 0}, - [6678] = {.lex_state = 0}, - [6679] = {.lex_state = 0}, - [6680] = {.lex_state = 0}, - [6681] = {.lex_state = 0}, - [6682] = {.lex_state = 0}, + [6670] = {.lex_state = 132}, + [6671] = {.lex_state = 132}, + [6672] = {.lex_state = 132}, + [6673] = {.lex_state = 132}, + [6674] = {.lex_state = 132}, + [6675] = {.lex_state = 132}, + [6676] = {.lex_state = 132}, + [6677] = {.lex_state = 132}, + [6678] = {.lex_state = 10}, + [6679] = {.lex_state = 10}, + [6680] = {.lex_state = 132}, + [6681] = {.lex_state = 132}, + [6682] = {.lex_state = 10}, [6683] = {.lex_state = 0}, - [6684] = {.lex_state = 0}, + [6684] = {.lex_state = 131}, [6685] = {.lex_state = 0}, - [6686] = {.lex_state = 10}, - [6687] = {.lex_state = 0}, - [6688] = {.lex_state = 0}, - [6689] = {.lex_state = 0}, - [6690] = {.lex_state = 10}, - [6691] = {.lex_state = 0}, + [6686] = {.lex_state = 132}, + [6687] = {.lex_state = 131}, + [6688] = {.lex_state = 132}, + [6689] = {.lex_state = 132}, + [6690] = {.lex_state = 0}, + [6691] = {.lex_state = 132}, [6692] = {.lex_state = 0}, - [6693] = {.lex_state = 10}, - [6694] = {.lex_state = 0}, - [6695] = {.lex_state = 0}, - [6696] = {.lex_state = 10}, - [6697] = {.lex_state = 0}, - [6698] = {.lex_state = 0}, - [6699] = {.lex_state = 0}, - [6700] = {.lex_state = 0}, - [6701] = {.lex_state = 0}, - [6702] = {.lex_state = 0}, - [6703] = {.lex_state = 0}, - [6704] = {.lex_state = 0}, - [6705] = {.lex_state = 0}, - [6706] = {.lex_state = 0}, - [6707] = {.lex_state = 0}, - [6708] = {.lex_state = 0}, - [6709] = {.lex_state = 0}, - [6710] = {.lex_state = 0}, - [6711] = {.lex_state = 0}, - [6712] = {.lex_state = 0}, - [6713] = {.lex_state = 0}, - [6714] = {.lex_state = 0}, + [6693] = {.lex_state = 132}, + [6694] = {.lex_state = 10}, + [6695] = {.lex_state = 132}, + [6696] = {.lex_state = 132}, + [6697] = {.lex_state = 18, .external_lex_state = 5}, + [6698] = {.lex_state = 132}, + [6699] = {.lex_state = 132}, + [6700] = {.lex_state = 132}, + [6701] = {.lex_state = 132}, + [6702] = {.lex_state = 132}, + [6703] = {.lex_state = 132}, + [6704] = {.lex_state = 2}, + [6705] = {.lex_state = 132}, + [6706] = {.lex_state = 132}, + [6707] = {.lex_state = 132}, + [6708] = {.lex_state = 4}, + [6709] = {.lex_state = 132}, + [6710] = {.lex_state = 132}, + [6711] = {.lex_state = 132}, + [6712] = {.lex_state = 132}, + [6713] = {.lex_state = 132}, + [6714] = {.lex_state = 132}, [6715] = {.lex_state = 0}, - [6716] = {.lex_state = 0}, - [6717] = {.lex_state = 0}, - [6718] = {.lex_state = 0}, - [6719] = {.lex_state = 10}, - [6720] = {.lex_state = 10}, - [6721] = {.lex_state = 0}, - [6722] = {.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}, [6723] = {.lex_state = 0}, - [6724] = {.lex_state = 10}, - [6725] = {.lex_state = 0}, - [6726] = {.lex_state = 0}, - [6727] = {.lex_state = 1}, - [6728] = {.lex_state = 0}, + [6724] = {.lex_state = 18, .external_lex_state = 5}, + [6725] = {.lex_state = 132}, + [6726] = {.lex_state = 2}, + [6727] = {.lex_state = 0}, + [6728] = {.lex_state = 132}, [6729] = {.lex_state = 0}, [6730] = {.lex_state = 0}, [6731] = {.lex_state = 0}, @@ -23966,58 +24246,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6733] = {.lex_state = 0}, [6734] = {.lex_state = 0}, [6735] = {.lex_state = 0}, - [6736] = {.lex_state = 130, .external_lex_state = 4}, + [6736] = {.lex_state = 0}, [6737] = {.lex_state = 0}, [6738] = {.lex_state = 0}, [6739] = {.lex_state = 0}, [6740] = {.lex_state = 0}, [6741] = {.lex_state = 0}, [6742] = {.lex_state = 0}, - [6743] = {.lex_state = 10}, + [6743] = {.lex_state = 0}, [6744] = {.lex_state = 0}, [6745] = {.lex_state = 0}, [6746] = {.lex_state = 0}, [6747] = {.lex_state = 0}, [6748] = {.lex_state = 0}, - [6749] = {.lex_state = 131}, + [6749] = {.lex_state = 0}, [6750] = {.lex_state = 0}, [6751] = {.lex_state = 0}, - [6752] = {.lex_state = 0}, + [6752] = {.lex_state = 132}, [6753] = {.lex_state = 0}, [6754] = {.lex_state = 0}, [6755] = {.lex_state = 0}, - [6756] = {.lex_state = 0}, + [6756] = {.lex_state = 10}, [6757] = {.lex_state = 0}, - [6758] = {.lex_state = 0}, - [6759] = {.lex_state = 0}, + [6758] = {.lex_state = 10}, + [6759] = {.lex_state = 132}, [6760] = {.lex_state = 0}, - [6761] = {.lex_state = 0}, - [6762] = {.lex_state = 0}, - [6763] = {.lex_state = 10}, + [6761] = {.lex_state = 0, .external_lex_state = 5}, + [6762] = {.lex_state = 10}, + [6763] = {.lex_state = 0}, [6764] = {.lex_state = 10}, [6765] = {.lex_state = 0}, [6766] = {.lex_state = 0}, - [6767] = {.lex_state = 0}, + [6767] = {.lex_state = 10}, [6768] = {.lex_state = 0}, [6769] = {.lex_state = 0}, [6770] = {.lex_state = 0}, - [6771] = {.lex_state = 10}, - [6772] = {.lex_state = 10}, + [6771] = {.lex_state = 1}, + [6772] = {.lex_state = 0}, [6773] = {.lex_state = 0}, [6774] = {.lex_state = 0}, [6775] = {.lex_state = 0}, [6776] = {.lex_state = 0}, [6777] = {.lex_state = 0}, - [6778] = {.lex_state = 0}, - [6779] = {.lex_state = 10}, - [6780] = {.lex_state = 131}, - [6781] = {.lex_state = 131}, + [6778] = {.lex_state = 0, .external_lex_state = 5}, + [6779] = {.lex_state = 0}, + [6780] = {.lex_state = 0}, + [6781] = {.lex_state = 0}, [6782] = {.lex_state = 0}, - [6783] = {.lex_state = 0}, + [6783] = {.lex_state = 10}, [6784] = {.lex_state = 0}, - [6785] = {.lex_state = 0}, - [6786] = {.lex_state = 131}, - [6787] = {.lex_state = 131}, + [6785] = {.lex_state = 10}, + [6786] = {.lex_state = 0}, + [6787] = {.lex_state = 0}, [6788] = {.lex_state = 0}, [6789] = {.lex_state = 0}, [6790] = {.lex_state = 0}, @@ -24036,172 +24316,172 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6803] = {.lex_state = 0}, [6804] = {.lex_state = 0}, [6805] = {.lex_state = 0}, - [6806] = {.lex_state = 0}, + [6806] = {.lex_state = 132}, [6807] = {.lex_state = 0}, [6808] = {.lex_state = 0}, [6809] = {.lex_state = 0}, [6810] = {.lex_state = 0}, [6811] = {.lex_state = 0}, [6812] = {.lex_state = 0}, - [6813] = {.lex_state = 10}, + [6813] = {.lex_state = 0}, [6814] = {.lex_state = 0}, [6815] = {.lex_state = 0}, [6816] = {.lex_state = 0}, - [6817] = {.lex_state = 131}, + [6817] = {.lex_state = 0}, [6818] = {.lex_state = 0}, - [6819] = {.lex_state = 3}, + [6819] = {.lex_state = 0}, [6820] = {.lex_state = 0}, - [6821] = {.lex_state = 131}, + [6821] = {.lex_state = 0}, [6822] = {.lex_state = 0}, [6823] = {.lex_state = 0}, - [6824] = {.lex_state = 131}, + [6824] = {.lex_state = 0}, [6825] = {.lex_state = 0}, - [6826] = {.lex_state = 131}, - [6827] = {.lex_state = 131}, - [6828] = {.lex_state = 131}, + [6826] = {.lex_state = 0}, + [6827] = {.lex_state = 0}, + [6828] = {.lex_state = 0}, [6829] = {.lex_state = 0}, - [6830] = {.lex_state = 10}, + [6830] = {.lex_state = 0}, [6831] = {.lex_state = 0}, [6832] = {.lex_state = 10}, - [6833] = {.lex_state = 10}, + [6833] = {.lex_state = 0}, [6834] = {.lex_state = 0}, [6835] = {.lex_state = 0}, - [6836] = {.lex_state = 131}, - [6837] = {.lex_state = 131}, - [6838] = {.lex_state = 131}, - [6839] = {.lex_state = 10}, + [6836] = {.lex_state = 0}, + [6837] = {.lex_state = 0}, + [6838] = {.lex_state = 0}, + [6839] = {.lex_state = 0}, [6840] = {.lex_state = 0}, [6841] = {.lex_state = 0}, - [6842] = {.lex_state = 0}, - [6843] = {.lex_state = 131}, - [6844] = {.lex_state = 131}, - [6845] = {.lex_state = 131}, - [6846] = {.lex_state = 131}, - [6847] = {.lex_state = 131}, - [6848] = {.lex_state = 131}, - [6849] = {.lex_state = 131}, - [6850] = {.lex_state = 0}, + [6842] = {.lex_state = 10}, + [6843] = {.lex_state = 10}, + [6844] = {.lex_state = 0}, + [6845] = {.lex_state = 0}, + [6846] = {.lex_state = 0}, + [6847] = {.lex_state = 0}, + [6848] = {.lex_state = 0}, + [6849] = {.lex_state = 0}, + [6850] = {.lex_state = 10}, [6851] = {.lex_state = 0}, - [6852] = {.lex_state = 0}, - [6853] = {.lex_state = 0}, - [6854] = {.lex_state = 15}, + [6852] = {.lex_state = 10}, + [6853] = {.lex_state = 10}, + [6854] = {.lex_state = 0}, [6855] = {.lex_state = 0}, [6856] = {.lex_state = 0}, [6857] = {.lex_state = 0}, - [6858] = {.lex_state = 131}, - [6859] = {.lex_state = 131}, - [6860] = {.lex_state = 131}, - [6861] = {.lex_state = 131}, - [6862] = {.lex_state = 131}, - [6863] = {.lex_state = 131}, + [6858] = {.lex_state = 10}, + [6859] = {.lex_state = 0}, + [6860] = {.lex_state = 0}, + [6861] = {.lex_state = 0}, + [6862] = {.lex_state = 0}, + [6863] = {.lex_state = 10}, [6864] = {.lex_state = 0}, [6865] = {.lex_state = 0}, [6866] = {.lex_state = 0}, - [6867] = {.lex_state = 0}, - [6868] = {.lex_state = 131}, + [6867] = {.lex_state = 131, .external_lex_state = 4}, + [6868] = {.lex_state = 10}, [6869] = {.lex_state = 0}, - [6870] = {.lex_state = 131}, + [6870] = {.lex_state = 0}, [6871] = {.lex_state = 0}, [6872] = {.lex_state = 0}, - [6873] = {.lex_state = 131}, - [6874] = {.lex_state = 0}, + [6873] = {.lex_state = 0}, + [6874] = {.lex_state = 1}, [6875] = {.lex_state = 0}, - [6876] = {.lex_state = 131}, - [6877] = {.lex_state = 131}, - [6878] = {.lex_state = 0}, - [6879] = {.lex_state = 131}, - [6880] = {.lex_state = 131}, - [6881] = {.lex_state = 131}, - [6882] = {.lex_state = 0}, - [6883] = {.lex_state = 131}, - [6884] = {.lex_state = 131}, - [6885] = {.lex_state = 0}, + [6876] = {.lex_state = 10}, + [6877] = {.lex_state = 10}, + [6878] = {.lex_state = 10}, + [6879] = {.lex_state = 0}, + [6880] = {.lex_state = 0}, + [6881] = {.lex_state = 0}, + [6882] = {.lex_state = 132}, + [6883] = {.lex_state = 132}, + [6884] = {.lex_state = 10}, + [6885] = {.lex_state = 10}, [6886] = {.lex_state = 0}, [6887] = {.lex_state = 0}, [6888] = {.lex_state = 0}, - [6889] = {.lex_state = 0}, - [6890] = {.lex_state = 15}, - [6891] = {.lex_state = 131}, - [6892] = {.lex_state = 131}, - [6893] = {.lex_state = 131}, - [6894] = {.lex_state = 131}, - [6895] = {.lex_state = 131}, + [6889] = {.lex_state = 10}, + [6890] = {.lex_state = 0}, + [6891] = {.lex_state = 0}, + [6892] = {.lex_state = 0}, + [6893] = {.lex_state = 0}, + [6894] = {.lex_state = 0}, + [6895] = {.lex_state = 0}, [6896] = {.lex_state = 0}, - [6897] = {.lex_state = 3}, - [6898] = {.lex_state = 131}, - [6899] = {.lex_state = 131}, + [6897] = {.lex_state = 0}, + [6898] = {.lex_state = 4}, + [6899] = {.lex_state = 0}, [6900] = {.lex_state = 0}, - [6901] = {.lex_state = 131}, + [6901] = {.lex_state = 0}, [6902] = {.lex_state = 0}, - [6903] = {.lex_state = 131}, + [6903] = {.lex_state = 132}, [6904] = {.lex_state = 0}, [6905] = {.lex_state = 0}, [6906] = {.lex_state = 0}, [6907] = {.lex_state = 0}, - [6908] = {.lex_state = 0}, - [6909] = {.lex_state = 131}, - [6910] = {.lex_state = 131}, - [6911] = {.lex_state = 131}, - [6912] = {.lex_state = 0}, - [6913] = {.lex_state = 131}, + [6908] = {.lex_state = 10}, + [6909] = {.lex_state = 0}, + [6910] = {.lex_state = 0}, + [6911] = {.lex_state = 0}, + [6912] = {.lex_state = 10}, + [6913] = {.lex_state = 1}, [6914] = {.lex_state = 0}, - [6915] = {.lex_state = 0}, + [6915] = {.lex_state = 10}, [6916] = {.lex_state = 0}, - [6917] = {.lex_state = 0}, + [6917] = {.lex_state = 10}, [6918] = {.lex_state = 0}, - [6919] = {.lex_state = 131}, + [6919] = {.lex_state = 0}, [6920] = {.lex_state = 0}, [6921] = {.lex_state = 0}, - [6922] = {.lex_state = 131}, + [6922] = {.lex_state = 0}, [6923] = {.lex_state = 0}, [6924] = {.lex_state = 0}, [6925] = {.lex_state = 0}, [6926] = {.lex_state = 0}, [6927] = {.lex_state = 0}, - [6928] = {.lex_state = 0}, + [6928] = {.lex_state = 0, .external_lex_state = 5}, [6929] = {.lex_state = 0}, [6930] = {.lex_state = 0}, [6931] = {.lex_state = 0}, [6932] = {.lex_state = 0}, [6933] = {.lex_state = 10}, [6934] = {.lex_state = 0}, - [6935] = {.lex_state = 0}, - [6936] = {.lex_state = 10}, - [6937] = {.lex_state = 1}, - [6938] = {.lex_state = 0}, - [6939] = {.lex_state = 0}, + [6935] = {.lex_state = 1}, + [6936] = {.lex_state = 0}, + [6937] = {.lex_state = 10}, + [6938] = {.lex_state = 10}, + [6939] = {.lex_state = 10}, [6940] = {.lex_state = 0}, [6941] = {.lex_state = 0}, [6942] = {.lex_state = 0}, - [6943] = {.lex_state = 10}, + [6943] = {.lex_state = 132}, [6944] = {.lex_state = 0}, [6945] = {.lex_state = 0}, [6946] = {.lex_state = 0}, [6947] = {.lex_state = 0}, - [6948] = {.lex_state = 10}, + [6948] = {.lex_state = 0}, [6949] = {.lex_state = 0}, [6950] = {.lex_state = 0}, - [6951] = {.lex_state = 15}, - [6952] = {.lex_state = 131}, - [6953] = {.lex_state = 0}, + [6951] = {.lex_state = 0}, + [6952] = {.lex_state = 0}, + [6953] = {.lex_state = 1}, [6954] = {.lex_state = 0}, [6955] = {.lex_state = 0}, - [6956] = {.lex_state = 10}, - [6957] = {.lex_state = 131}, + [6956] = {.lex_state = 0}, + [6957] = {.lex_state = 0}, [6958] = {.lex_state = 0}, [6959] = {.lex_state = 0}, - [6960] = {.lex_state = 131}, + [6960] = {.lex_state = 0}, [6961] = {.lex_state = 0}, [6962] = {.lex_state = 0}, [6963] = {.lex_state = 0}, [6964] = {.lex_state = 0}, - [6965] = {.lex_state = 15}, + [6965] = {.lex_state = 0}, [6966] = {.lex_state = 0}, [6967] = {.lex_state = 0}, - [6968] = {.lex_state = 131}, - [6969] = {.lex_state = 131}, + [6968] = {.lex_state = 0}, + [6969] = {.lex_state = 0}, [6970] = {.lex_state = 0}, - [6971] = {.lex_state = 0}, + [6971] = {.lex_state = 10}, [6972] = {.lex_state = 0}, [6973] = {.lex_state = 0}, [6974] = {.lex_state = 0}, @@ -24210,38 +24490,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6977] = {.lex_state = 0}, [6978] = {.lex_state = 0}, [6979] = {.lex_state = 0}, - [6980] = {.lex_state = 0}, - [6981] = {.lex_state = 0}, - [6982] = {.lex_state = 1}, - [6983] = {.lex_state = 131}, - [6984] = {.lex_state = 0}, + [6980] = {.lex_state = 10}, + [6981] = {.lex_state = 10}, + [6982] = {.lex_state = 10}, + [6983] = {.lex_state = 0}, + [6984] = {.lex_state = 10}, [6985] = {.lex_state = 0}, [6986] = {.lex_state = 0}, [6987] = {.lex_state = 0}, - [6988] = {.lex_state = 131}, - [6989] = {.lex_state = 131}, + [6988] = {.lex_state = 0}, + [6989] = {.lex_state = 0}, [6990] = {.lex_state = 0}, - [6991] = {.lex_state = 10}, - [6992] = {.lex_state = 0}, - [6993] = {.lex_state = 131}, + [6991] = {.lex_state = 0}, + [6992] = {.lex_state = 10}, + [6993] = {.lex_state = 10}, [6994] = {.lex_state = 0}, - [6995] = {.lex_state = 0}, + [6995] = {.lex_state = 10}, [6996] = {.lex_state = 0}, [6997] = {.lex_state = 0}, [6998] = {.lex_state = 0}, - [6999] = {.lex_state = 0}, - [7000] = {.lex_state = 0}, + [6999] = {.lex_state = 10}, + [7000] = {.lex_state = 10}, [7001] = {.lex_state = 0}, [7002] = {.lex_state = 0}, [7003] = {.lex_state = 0}, [7004] = {.lex_state = 0}, - [7005] = {.lex_state = 0}, - [7006] = {.lex_state = 0}, - [7007] = {.lex_state = 0}, + [7005] = {.lex_state = 10}, + [7006] = {.lex_state = 10}, + [7007] = {.lex_state = 10}, [7008] = {.lex_state = 0}, [7009] = {.lex_state = 0}, - [7010] = {.lex_state = 0}, - [7011] = {.lex_state = 15}, + [7010] = {.lex_state = 132}, + [7011] = {.lex_state = 0}, [7012] = {.lex_state = 0}, [7013] = {.lex_state = 0}, [7014] = {.lex_state = 0}, @@ -24250,59 +24530,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7017] = {.lex_state = 0}, [7018] = {.lex_state = 0}, [7019] = {.lex_state = 0}, - [7020] = {.lex_state = 0}, + [7020] = {.lex_state = 10}, [7021] = {.lex_state = 0}, - [7022] = {.lex_state = 0}, + [7022] = {.lex_state = 10}, [7023] = {.lex_state = 0}, - [7024] = {.lex_state = 0}, + [7024] = {.lex_state = 10}, [7025] = {.lex_state = 0}, - [7026] = {.lex_state = 15}, + [7026] = {.lex_state = 0}, [7027] = {.lex_state = 0}, [7028] = {.lex_state = 0}, - [7029] = {.lex_state = 1}, - [7030] = {.lex_state = 0}, + [7029] = {.lex_state = 10}, + [7030] = {.lex_state = 10}, [7031] = {.lex_state = 0}, [7032] = {.lex_state = 0}, [7033] = {.lex_state = 0}, - [7034] = {.lex_state = 0}, + [7034] = {.lex_state = 0, .external_lex_state = 5}, [7035] = {.lex_state = 0}, [7036] = {.lex_state = 0}, - [7037] = {.lex_state = 0}, - [7038] = {.lex_state = 0}, + [7037] = {.lex_state = 132}, + [7038] = {.lex_state = 14}, [7039] = {.lex_state = 0}, [7040] = {.lex_state = 0}, - [7041] = {.lex_state = 0}, + [7041] = {.lex_state = 132}, [7042] = {.lex_state = 0}, [7043] = {.lex_state = 0}, [7044] = {.lex_state = 0}, [7045] = {.lex_state = 0}, - [7046] = {.lex_state = 0}, - [7047] = {.lex_state = 0}, - [7048] = {.lex_state = 0}, + [7046] = {.lex_state = 132}, + [7047] = {.lex_state = 10}, + [7048] = {.lex_state = 10}, [7049] = {.lex_state = 0}, [7050] = {.lex_state = 0}, [7051] = {.lex_state = 0}, - [7052] = {.lex_state = 0}, + [7052] = {.lex_state = 132}, [7053] = {.lex_state = 0}, - [7054] = {.lex_state = 0}, - [7055] = {.lex_state = 0}, + [7054] = {.lex_state = 132}, + [7055] = {.lex_state = 132}, [7056] = {.lex_state = 0}, [7057] = {.lex_state = 0}, - [7058] = {.lex_state = 0}, - [7059] = {.lex_state = 0}, - [7060] = {.lex_state = 0}, - [7061] = {.lex_state = 0}, + [7058] = {.lex_state = 132}, + [7059] = {.lex_state = 132}, + [7060] = {.lex_state = 132}, + [7061] = {.lex_state = 14}, [7062] = {.lex_state = 0}, [7063] = {.lex_state = 0}, [7064] = {.lex_state = 0}, - [7065] = {.lex_state = 0}, - [7066] = {.lex_state = 0}, + [7065] = {.lex_state = 14}, + [7066] = {.lex_state = 132}, [7067] = {.lex_state = 0}, [7068] = {.lex_state = 0}, [7069] = {.lex_state = 0}, - [7070] = {.lex_state = 0}, - [7071] = {.lex_state = 0}, - [7072] = {.lex_state = 131}, + [7070] = {.lex_state = 132}, + [7071] = {.lex_state = 3}, + [7072] = {.lex_state = 0}, [7073] = {.lex_state = 0}, [7074] = {.lex_state = 0}, [7075] = {.lex_state = 0}, @@ -24310,139 +24590,139 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7077] = {.lex_state = 0}, [7078] = {.lex_state = 0}, [7079] = {.lex_state = 0}, - [7080] = {.lex_state = 0}, + [7080] = {.lex_state = 132}, [7081] = {.lex_state = 0}, [7082] = {.lex_state = 0}, [7083] = {.lex_state = 0}, - [7084] = {.lex_state = 10}, - [7085] = {.lex_state = 0, .external_lex_state = 6}, - [7086] = {.lex_state = 0, .external_lex_state = 6}, - [7087] = {.lex_state = 10}, - [7088] = {.lex_state = 0, .external_lex_state = 6}, - [7089] = {.lex_state = 0, .external_lex_state = 6}, - [7090] = {.lex_state = 10}, + [7084] = {.lex_state = 132}, + [7085] = {.lex_state = 132}, + [7086] = {.lex_state = 132}, + [7087] = {.lex_state = 132}, + [7088] = {.lex_state = 132}, + [7089] = {.lex_state = 132}, + [7090] = {.lex_state = 132}, [7091] = {.lex_state = 0}, [7092] = {.lex_state = 0}, [7093] = {.lex_state = 0}, [7094] = {.lex_state = 0}, - [7095] = {.lex_state = 0}, + [7095] = {.lex_state = 132}, [7096] = {.lex_state = 0}, [7097] = {.lex_state = 0}, [7098] = {.lex_state = 0}, - [7099] = {.lex_state = 0}, + [7099] = {.lex_state = 10}, [7100] = {.lex_state = 0}, [7101] = {.lex_state = 0}, - [7102] = {.lex_state = 0, .external_lex_state = 7}, + [7102] = {.lex_state = 0}, [7103] = {.lex_state = 0}, - [7104] = {.lex_state = 0, .external_lex_state = 6}, - [7105] = {.lex_state = 0, .external_lex_state = 6}, - [7106] = {.lex_state = 0, .external_lex_state = 8}, - [7107] = {.lex_state = 0, .external_lex_state = 6}, - [7108] = {.lex_state = 0, .external_lex_state = 6}, + [7104] = {.lex_state = 132}, + [7105] = {.lex_state = 132}, + [7106] = {.lex_state = 0}, + [7107] = {.lex_state = 0}, + [7108] = {.lex_state = 132}, [7109] = {.lex_state = 0}, - [7110] = {.lex_state = 131}, + [7110] = {.lex_state = 10}, [7111] = {.lex_state = 0}, [7112] = {.lex_state = 0}, [7113] = {.lex_state = 0}, - [7114] = {.lex_state = 131}, - [7115] = {.lex_state = 0, .external_lex_state = 7}, + [7114] = {.lex_state = 132}, + [7115] = {.lex_state = 0}, [7116] = {.lex_state = 0}, [7117] = {.lex_state = 0}, - [7118] = {.lex_state = 0, .external_lex_state = 6}, + [7118] = {.lex_state = 132}, [7119] = {.lex_state = 0}, - [7120] = {.lex_state = 0}, + [7120] = {.lex_state = 132}, [7121] = {.lex_state = 0}, - [7122] = {.lex_state = 0, .external_lex_state = 7}, + [7122] = {.lex_state = 0}, [7123] = {.lex_state = 0}, - [7124] = {.lex_state = 0, .external_lex_state = 9}, + [7124] = {.lex_state = 1}, [7125] = {.lex_state = 0}, - [7126] = {.lex_state = 0}, + [7126] = {.lex_state = 132}, [7127] = {.lex_state = 0}, [7128] = {.lex_state = 0}, - [7129] = {.lex_state = 0}, - [7130] = {.lex_state = 10}, + [7129] = {.lex_state = 132}, + [7130] = {.lex_state = 0}, [7131] = {.lex_state = 0}, [7132] = {.lex_state = 0}, [7133] = {.lex_state = 0}, [7134] = {.lex_state = 0}, - [7135] = {.lex_state = 1}, + [7135] = {.lex_state = 132}, [7136] = {.lex_state = 0}, [7137] = {.lex_state = 0}, [7138] = {.lex_state = 0}, - [7139] = {.lex_state = 0}, + [7139] = {.lex_state = 132}, [7140] = {.lex_state = 0}, - [7141] = {.lex_state = 0}, + [7141] = {.lex_state = 132}, [7142] = {.lex_state = 0}, [7143] = {.lex_state = 0}, - [7144] = {.lex_state = 0}, - [7145] = {.lex_state = 0}, + [7144] = {.lex_state = 132}, + [7145] = {.lex_state = 132}, [7146] = {.lex_state = 0}, [7147] = {.lex_state = 0}, - [7148] = {.lex_state = 131}, - [7149] = {.lex_state = 0}, - [7150] = {.lex_state = 4}, + [7148] = {.lex_state = 0}, + [7149] = {.lex_state = 132}, + [7150] = {.lex_state = 0}, [7151] = {.lex_state = 0}, [7152] = {.lex_state = 0}, - [7153] = {.lex_state = 0}, - [7154] = {.lex_state = 1}, + [7153] = {.lex_state = 132}, + [7154] = {.lex_state = 0}, [7155] = {.lex_state = 0}, - [7156] = {.lex_state = 0}, + [7156] = {.lex_state = 132}, [7157] = {.lex_state = 0}, - [7158] = {.lex_state = 0}, - [7159] = {.lex_state = 0}, - [7160] = {.lex_state = 0}, - [7161] = {.lex_state = 1}, - [7162] = {.lex_state = 1}, - [7163] = {.lex_state = 131}, + [7158] = {.lex_state = 132}, + [7159] = {.lex_state = 132}, + [7160] = {.lex_state = 10}, + [7161] = {.lex_state = 10}, + [7162] = {.lex_state = 0}, + [7163] = {.lex_state = 3}, [7164] = {.lex_state = 0}, - [7165] = {.lex_state = 0, .external_lex_state = 6}, - [7166] = {.lex_state = 0}, + [7165] = {.lex_state = 0}, + [7166] = {.lex_state = 132}, [7167] = {.lex_state = 0}, [7168] = {.lex_state = 0}, - [7169] = {.lex_state = 0}, - [7170] = {.lex_state = 0}, - [7171] = {.lex_state = 10}, + [7169] = {.lex_state = 132}, + [7170] = {.lex_state = 132}, + [7171] = {.lex_state = 132}, [7172] = {.lex_state = 0}, - [7173] = {.lex_state = 0, .external_lex_state = 6}, + [7173] = {.lex_state = 0}, [7174] = {.lex_state = 0}, [7175] = {.lex_state = 0}, - [7176] = {.lex_state = 10}, + [7176] = {.lex_state = 0}, [7177] = {.lex_state = 0}, [7178] = {.lex_state = 0}, [7179] = {.lex_state = 0}, - [7180] = {.lex_state = 0, .external_lex_state = 6}, - [7181] = {.lex_state = 0, .external_lex_state = 6}, + [7180] = {.lex_state = 0}, + [7181] = {.lex_state = 0}, [7182] = {.lex_state = 0}, [7183] = {.lex_state = 0}, - [7184] = {.lex_state = 0, .external_lex_state = 6}, + [7184] = {.lex_state = 132}, [7185] = {.lex_state = 0}, [7186] = {.lex_state = 0}, [7187] = {.lex_state = 0}, [7188] = {.lex_state = 0}, - [7189] = {.lex_state = 131}, - [7190] = {.lex_state = 10}, + [7189] = {.lex_state = 0}, + [7190] = {.lex_state = 0}, [7191] = {.lex_state = 0}, [7192] = {.lex_state = 0}, - [7193] = {.lex_state = 0}, + [7193] = {.lex_state = 1}, [7194] = {.lex_state = 0}, [7195] = {.lex_state = 0}, - [7196] = {.lex_state = 0}, + [7196] = {.lex_state = 10}, [7197] = {.lex_state = 0}, - [7198] = {.lex_state = 10}, - [7199] = {.lex_state = 4}, - [7200] = {.lex_state = 10}, - [7201] = {.lex_state = 0}, + [7198] = {.lex_state = 132}, + [7199] = {.lex_state = 132}, + [7200] = {.lex_state = 132}, + [7201] = {.lex_state = 10}, [7202] = {.lex_state = 0}, [7203] = {.lex_state = 0}, [7204] = {.lex_state = 0}, - [7205] = {.lex_state = 0, .external_lex_state = 6}, - [7206] = {.lex_state = 0}, - [7207] = {.lex_state = 1}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 14}, + [7207] = {.lex_state = 0}, [7208] = {.lex_state = 0}, [7209] = {.lex_state = 0}, [7210] = {.lex_state = 0}, [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 131}, + [7212] = {.lex_state = 132}, [7213] = {.lex_state = 0}, [7214] = {.lex_state = 0}, [7215] = {.lex_state = 0}, @@ -24451,79 +24731,79 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7218] = {.lex_state = 0}, [7219] = {.lex_state = 0}, [7220] = {.lex_state = 0}, - [7221] = {.lex_state = 0}, + [7221] = {.lex_state = 132}, [7222] = {.lex_state = 0}, [7223] = {.lex_state = 0}, - [7224] = {.lex_state = 0}, + [7224] = {.lex_state = 132}, [7225] = {.lex_state = 0}, [7226] = {.lex_state = 0}, [7227] = {.lex_state = 0}, [7228] = {.lex_state = 0}, - [7229] = {.lex_state = 130}, - [7230] = {.lex_state = 0}, - [7231] = {.lex_state = 0}, - [7232] = {.lex_state = 0}, + [7229] = {.lex_state = 0}, + [7230] = {.lex_state = 10}, + [7231] = {.lex_state = 132}, + [7232] = {.lex_state = 1}, [7233] = {.lex_state = 0}, - [7234] = {.lex_state = 10}, + [7234] = {.lex_state = 0}, [7235] = {.lex_state = 0}, [7236] = {.lex_state = 0}, [7237] = {.lex_state = 0}, [7238] = {.lex_state = 0}, - [7239] = {.lex_state = 16}, + [7239] = {.lex_state = 0}, [7240] = {.lex_state = 0}, [7241] = {.lex_state = 0}, - [7242] = {.lex_state = 131}, + [7242] = {.lex_state = 0}, [7243] = {.lex_state = 0}, - [7244] = {.lex_state = 0, .external_lex_state = 6}, - [7245] = {.lex_state = 0, .external_lex_state = 6}, + [7244] = {.lex_state = 0}, + [7245] = {.lex_state = 0}, [7246] = {.lex_state = 0}, [7247] = {.lex_state = 0}, - [7248] = {.lex_state = 131}, - [7249] = {.lex_state = 130}, - [7250] = {.lex_state = 130}, - [7251] = {.lex_state = 10}, - [7252] = {.lex_state = 0, .external_lex_state = 6}, + [7248] = {.lex_state = 0}, + [7249] = {.lex_state = 132}, + [7250] = {.lex_state = 0}, + [7251] = {.lex_state = 0}, + [7252] = {.lex_state = 132}, [7253] = {.lex_state = 0}, [7254] = {.lex_state = 0}, [7255] = {.lex_state = 0}, [7256] = {.lex_state = 0}, [7257] = {.lex_state = 0}, - [7258] = {.lex_state = 0, .external_lex_state = 4}, + [7258] = {.lex_state = 132}, [7259] = {.lex_state = 0}, [7260] = {.lex_state = 0}, [7261] = {.lex_state = 0}, [7262] = {.lex_state = 0}, - [7263] = {.lex_state = 0}, + [7263] = {.lex_state = 132}, [7264] = {.lex_state = 0}, - [7265] = {.lex_state = 1}, - [7266] = {.lex_state = 0}, + [7265] = {.lex_state = 0}, + [7266] = {.lex_state = 10}, [7267] = {.lex_state = 0}, [7268] = {.lex_state = 0}, - [7269] = {.lex_state = 0, .external_lex_state = 6}, - [7270] = {.lex_state = 0, .external_lex_state = 8}, + [7269] = {.lex_state = 0}, + [7270] = {.lex_state = 132}, [7271] = {.lex_state = 0}, [7272] = {.lex_state = 0}, [7273] = {.lex_state = 0}, - [7274] = {.lex_state = 10}, + [7274] = {.lex_state = 132}, [7275] = {.lex_state = 0}, - [7276] = {.lex_state = 131}, + [7276] = {.lex_state = 0}, [7277] = {.lex_state = 0}, [7278] = {.lex_state = 0}, - [7279] = {.lex_state = 130}, + [7279] = {.lex_state = 14}, [7280] = {.lex_state = 0}, [7281] = {.lex_state = 0}, - [7282] = {.lex_state = 0}, + [7282] = {.lex_state = 132}, [7283] = {.lex_state = 0}, [7284] = {.lex_state = 0}, [7285] = {.lex_state = 0}, - [7286] = {.lex_state = 0, .external_lex_state = 6}, - [7287] = {.lex_state = 10}, - [7288] = {.lex_state = 130}, + [7286] = {.lex_state = 14}, + [7287] = {.lex_state = 0}, + [7288] = {.lex_state = 0}, [7289] = {.lex_state = 0}, - [7290] = {.lex_state = 0}, - [7291] = {.lex_state = 0, .external_lex_state = 6}, - [7292] = {.lex_state = 0, .external_lex_state = 6}, - [7293] = {.lex_state = 0, .external_lex_state = 6}, + [7290] = {.lex_state = 132}, + [7291] = {.lex_state = 0}, + [7292] = {.lex_state = 4}, + [7293] = {.lex_state = 0}, [7294] = {.lex_state = 0}, [7295] = {.lex_state = 0}, [7296] = {.lex_state = 0}, @@ -24531,80 +24811,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7298] = {.lex_state = 0}, [7299] = {.lex_state = 0}, [7300] = {.lex_state = 0}, - [7301] = {.lex_state = 0, .external_lex_state = 7}, - [7302] = {.lex_state = 1}, + [7301] = {.lex_state = 0, .external_lex_state = 6}, + [7302] = {.lex_state = 0}, [7303] = {.lex_state = 0}, [7304] = {.lex_state = 0}, [7305] = {.lex_state = 0}, - [7306] = {.lex_state = 0, .external_lex_state = 8}, + [7306] = {.lex_state = 0}, [7307] = {.lex_state = 0}, [7308] = {.lex_state = 0}, [7309] = {.lex_state = 0}, [7310] = {.lex_state = 0}, [7311] = {.lex_state = 0}, - [7312] = {.lex_state = 1}, - [7313] = {.lex_state = 1}, + [7312] = {.lex_state = 131}, + [7313] = {.lex_state = 0}, [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 1}, + [7315] = {.lex_state = 0}, [7316] = {.lex_state = 0}, - [7317] = {.lex_state = 0, .external_lex_state = 6}, - [7318] = {.lex_state = 0}, + [7317] = {.lex_state = 0}, + [7318] = {.lex_state = 10}, [7319] = {.lex_state = 0}, - [7320] = {.lex_state = 10}, - [7321] = {.lex_state = 0}, - [7322] = {.lex_state = 0, .external_lex_state = 6}, - [7323] = {.lex_state = 1}, - [7324] = {.lex_state = 4}, - [7325] = {.lex_state = 10}, - [7326] = {.lex_state = 1}, - [7327] = {.lex_state = 131}, - [7328] = {.lex_state = 1}, + [7320] = {.lex_state = 0}, + [7321] = {.lex_state = 1}, + [7322] = {.lex_state = 1}, + [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}, [7329] = {.lex_state = 0}, [7330] = {.lex_state = 0}, - [7331] = {.lex_state = 0}, + [7331] = {.lex_state = 10}, [7332] = {.lex_state = 0}, - [7333] = {.lex_state = 0, .external_lex_state = 6}, + [7333] = {.lex_state = 132}, [7334] = {.lex_state = 0}, - [7335] = {.lex_state = 10}, - [7336] = {.lex_state = 0}, - [7337] = {.lex_state = 0, .external_lex_state = 6}, - [7338] = {.lex_state = 0, .external_lex_state = 6}, + [7335] = {.lex_state = 0, .external_lex_state = 7}, + [7336] = {.lex_state = 0, .external_lex_state = 6}, + [7337] = {.lex_state = 0}, + [7338] = {.lex_state = 0}, [7339] = {.lex_state = 0}, - [7340] = {.lex_state = 0, .external_lex_state = 6}, - [7341] = {.lex_state = 0, .external_lex_state = 6}, - [7342] = {.lex_state = 0}, + [7340] = {.lex_state = 0}, + [7341] = {.lex_state = 0}, + [7342] = {.lex_state = 0, .external_lex_state = 7}, [7343] = {.lex_state = 0}, [7344] = {.lex_state = 0}, - [7345] = {.lex_state = 0}, - [7346] = {.lex_state = 0, .external_lex_state = 6}, + [7345] = {.lex_state = 0, .external_lex_state = 4}, + [7346] = {.lex_state = 0, .external_lex_state = 7}, [7347] = {.lex_state = 0}, - [7348] = {.lex_state = 10}, + [7348] = {.lex_state = 0, .external_lex_state = 6}, [7349] = {.lex_state = 0}, - [7350] = {.lex_state = 131}, - [7351] = {.lex_state = 0, .external_lex_state = 9}, - [7352] = {.lex_state = 0, .external_lex_state = 7}, - [7353] = {.lex_state = 0}, - [7354] = {.lex_state = 0}, - [7355] = {.lex_state = 0, .external_lex_state = 6}, - [7356] = {.lex_state = 0, .external_lex_state = 7}, + [7350] = {.lex_state = 0}, + [7351] = {.lex_state = 0}, + [7352] = {.lex_state = 0}, + [7353] = {.lex_state = 10}, + [7354] = {.lex_state = 10}, + [7355] = {.lex_state = 0}, + [7356] = {.lex_state = 0}, [7357] = {.lex_state = 0}, [7358] = {.lex_state = 0}, [7359] = {.lex_state = 0}, - [7360] = {.lex_state = 0, .external_lex_state = 6}, + [7360] = {.lex_state = 0}, [7361] = {.lex_state = 0}, - [7362] = {.lex_state = 0, .external_lex_state = 8}, - [7363] = {.lex_state = 10}, - [7364] = {.lex_state = 0, .external_lex_state = 6}, - [7365] = {.lex_state = 0}, - [7366] = {.lex_state = 0}, + [7362] = {.lex_state = 0}, + [7363] = {.lex_state = 0}, + [7364] = {.lex_state = 1}, + [7365] = {.lex_state = 10}, + [7366] = {.lex_state = 131}, [7367] = {.lex_state = 0}, - [7368] = {.lex_state = 0, .external_lex_state = 6}, + [7368] = {.lex_state = 0}, [7369] = {.lex_state = 0, .external_lex_state = 6}, - [7370] = {.lex_state = 131}, + [7370] = {.lex_state = 0, .external_lex_state = 8}, [7371] = {.lex_state = 0}, - [7372] = {.lex_state = 0}, + [7372] = {.lex_state = 10}, [7373] = {.lex_state = 0}, - [7374] = {.lex_state = 0}, + [7374] = {.lex_state = 0, .external_lex_state = 8}, [7375] = {.lex_state = 0}, [7376] = {.lex_state = 0}, [7377] = {.lex_state = 0}, @@ -24615,177 +24895,414 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7382] = {.lex_state = 0}, [7383] = {.lex_state = 0}, [7384] = {.lex_state = 0}, - [7385] = {.lex_state = 14}, - [7386] = {.lex_state = 0, .external_lex_state = 6}, - [7387] = {.lex_state = 0}, - [7388] = {.lex_state = 0}, - [7389] = {.lex_state = 0}, - [7390] = {.lex_state = 130}, - [7391] = {.lex_state = 10}, - [7392] = {.lex_state = 0, .external_lex_state = 6}, + [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}, + [7390] = {.lex_state = 0}, + [7391] = {.lex_state = 0}, + [7392] = {.lex_state = 0}, [7393] = {.lex_state = 0}, - [7394] = {.lex_state = 0}, + [7394] = {.lex_state = 0, .external_lex_state = 6}, [7395] = {.lex_state = 0}, - [7396] = {.lex_state = 0}, - [7397] = {.lex_state = 0}, + [7396] = {.lex_state = 0, .external_lex_state = 8}, + [7397] = {.lex_state = 0, .external_lex_state = 8}, [7398] = {.lex_state = 0}, - [7399] = {.lex_state = 0}, - [7400] = {.lex_state = 1}, - [7401] = {.lex_state = 0, .external_lex_state = 6}, + [7399] = {.lex_state = 0, .external_lex_state = 8}, + [7400] = {.lex_state = 10}, + [7401] = {.lex_state = 0}, [7402] = {.lex_state = 0}, - [7403] = {.lex_state = 0}, - [7404] = {.lex_state = 0}, - [7405] = {.lex_state = 0}, - [7406] = {.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 = 0}, + [7408] = {.lex_state = 131}, [7409] = {.lex_state = 0}, [7410] = {.lex_state = 0}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, - [7413] = {.lex_state = 0}, - [7414] = {.lex_state = 0, .external_lex_state = 7}, + [7413] = {.lex_state = 132}, + [7414] = {.lex_state = 0}, [7415] = {.lex_state = 0}, [7416] = {.lex_state = 0}, [7417] = {.lex_state = 0}, - [7418] = {.lex_state = 0, .external_lex_state = 6}, - [7419] = {.lex_state = 0, .external_lex_state = 4}, - [7420] = {.lex_state = 0}, - [7421] = {.lex_state = 0, .external_lex_state = 7}, + [7418] = {.lex_state = 0}, + [7419] = {.lex_state = 0}, + [7420] = {.lex_state = 1}, + [7421] = {.lex_state = 0}, [7422] = {.lex_state = 0}, - [7423] = {.lex_state = 131}, - [7424] = {.lex_state = 0}, - [7425] = {.lex_state = 0, .external_lex_state = 9}, + [7423] = {.lex_state = 0}, + [7424] = {.lex_state = 10}, + [7425] = {.lex_state = 0}, [7426] = {.lex_state = 0}, - [7427] = {.lex_state = 0, .external_lex_state = 6}, - [7428] = {.lex_state = 131}, - [7429] = {.lex_state = 10}, - [7430] = {.lex_state = 0}, - [7431] = {.lex_state = 0}, - [7432] = {.lex_state = 0}, - [7433] = {.lex_state = 0}, - [7434] = {.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}, + [7439] = {.lex_state = 0, .external_lex_state = 6}, [7440] = {.lex_state = 0}, [7441] = {.lex_state = 0}, - [7442] = {.lex_state = 131}, + [7442] = {.lex_state = 0, .external_lex_state = 6}, [7443] = {.lex_state = 0}, [7444] = {.lex_state = 0}, - [7445] = {.lex_state = 0}, - [7446] = {.lex_state = 0}, + [7445] = {.lex_state = 0, .external_lex_state = 6}, + [7446] = {.lex_state = 132}, [7447] = {.lex_state = 0}, [7448] = {.lex_state = 0}, - [7449] = {.lex_state = 10}, + [7449] = {.lex_state = 0}, [7450] = {.lex_state = 0}, - [7451] = {.lex_state = 0}, + [7451] = {.lex_state = 0, .external_lex_state = 6}, [7452] = {.lex_state = 0}, - [7453] = {.lex_state = 131}, + [7453] = {.lex_state = 0}, [7454] = {.lex_state = 0}, [7455] = {.lex_state = 0}, [7456] = {.lex_state = 0}, - [7457] = {.lex_state = 0}, + [7457] = {.lex_state = 0, .external_lex_state = 6}, [7458] = {.lex_state = 0}, - [7459] = {.lex_state = 10}, - [7460] = {.lex_state = 0}, + [7459] = {.lex_state = 0, .external_lex_state = 6}, + [7460] = {.lex_state = 131}, [7461] = {.lex_state = 0}, - [7462] = {.lex_state = 0}, + [7462] = {.lex_state = 0, .external_lex_state = 6}, [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 0}, - [7465] = {.lex_state = 0, .external_lex_state = 6}, - [7466] = {.lex_state = 131}, - [7467] = {.lex_state = 0, .external_lex_state = 6}, - [7468] = {.lex_state = 0, .external_lex_state = 6}, - [7469] = {.lex_state = 0}, + [7464] = {.lex_state = 0, .external_lex_state = 6}, + [7465] = {.lex_state = 0, .external_lex_state = 8}, + [7466] = {.lex_state = 0}, + [7467] = {.lex_state = 0}, + [7468] = {.lex_state = 0}, + [7469] = {.lex_state = 10}, [7470] = {.lex_state = 0}, - [7471] = {.lex_state = 0}, + [7471] = {.lex_state = 132}, [7472] = {.lex_state = 0}, [7473] = {.lex_state = 0}, [7474] = {.lex_state = 0}, - [7475] = {.lex_state = 0, .external_lex_state = 8}, - [7476] = {.lex_state = 0}, - [7477] = {.lex_state = 0}, + [7475] = {.lex_state = 0}, + [7476] = {.lex_state = 0, .external_lex_state = 6}, + [7477] = {.lex_state = 0, .external_lex_state = 6}, [7478] = {.lex_state = 0}, - [7479] = {.lex_state = 0, .external_lex_state = 6}, - [7480] = {.lex_state = 0, .external_lex_state = 6}, - [7481] = {.lex_state = 0, .external_lex_state = 6}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 0}, + [7481] = {.lex_state = 1}, [7482] = {.lex_state = 0}, [7483] = {.lex_state = 0}, [7484] = {.lex_state = 0}, [7485] = {.lex_state = 0}, - [7486] = {.lex_state = 0}, + [7486] = {.lex_state = 131}, [7487] = {.lex_state = 0}, [7488] = {.lex_state = 0}, [7489] = {.lex_state = 0}, [7490] = {.lex_state = 0}, - [7491] = {.lex_state = 10}, - [7492] = {.lex_state = 4}, - [7493] = {.lex_state = 131}, + [7491] = {.lex_state = 0, .external_lex_state = 8}, + [7492] = {.lex_state = 0}, + [7493] = {.lex_state = 0}, [7494] = {.lex_state = 0}, - [7495] = {.lex_state = 0}, - [7496] = {.lex_state = 0}, - [7497] = {.lex_state = 10}, - [7498] = {.lex_state = 0, .external_lex_state = 7}, - [7499] = {.lex_state = 0}, - [7500] = {.lex_state = 0, .external_lex_state = 6}, - [7501] = {.lex_state = 0, .external_lex_state = 9}, - [7502] = {.lex_state = 0, .external_lex_state = 7}, - [7503] = {.lex_state = 0, .external_lex_state = 7}, + [7495] = {.lex_state = 0, .external_lex_state = 6}, + [7496] = {.lex_state = 0, .external_lex_state = 6}, + [7497] = {.lex_state = 0}, + [7498] = {.lex_state = 0, .external_lex_state = 6}, + [7499] = {.lex_state = 0, .external_lex_state = 6}, + [7500] = {.lex_state = 10}, + [7501] = {.lex_state = 0}, + [7502] = {.lex_state = 0}, + [7503] = {.lex_state = 0}, [7504] = {.lex_state = 0, .external_lex_state = 7}, - [7505] = {.lex_state = 0}, - [7506] = {.lex_state = 0}, - [7507] = {.lex_state = 0, .external_lex_state = 6}, - [7508] = {.lex_state = 0}, - [7509] = {.lex_state = 14}, + [7505] = {.lex_state = 0, .external_lex_state = 6}, + [7506] = {.lex_state = 0, .external_lex_state = 6}, + [7507] = {.lex_state = 0}, + [7508] = {.lex_state = 10}, + [7509] = {.lex_state = 0}, [7510] = {.lex_state = 0}, [7511] = {.lex_state = 0}, - [7512] = {.lex_state = 131}, - [7513] = {.lex_state = 0}, - [7514] = {.lex_state = 131}, + [7512] = {.lex_state = 0, .external_lex_state = 6}, + [7513] = {.lex_state = 1}, + [7514] = {.lex_state = 10}, [7515] = {.lex_state = 0}, - [7516] = {.lex_state = 0, .external_lex_state = 6}, - [7517] = {.lex_state = 0, .external_lex_state = 4}, + [7516] = {.lex_state = 0}, + [7517] = {.lex_state = 0}, [7518] = {.lex_state = 0}, - [7519] = {.lex_state = 0, .external_lex_state = 9}, - [7520] = {.lex_state = 0}, + [7519] = {.lex_state = 0}, + [7520] = {.lex_state = 1}, [7521] = {.lex_state = 0}, [7522] = {.lex_state = 0}, - [7523] = {.lex_state = 0, .external_lex_state = 7}, + [7523] = {.lex_state = 0}, [7524] = {.lex_state = 0}, [7525] = {.lex_state = 0}, [7526] = {.lex_state = 0}, - [7527] = {.lex_state = 10}, + [7527] = {.lex_state = 0}, [7528] = {.lex_state = 0}, - [7529] = {.lex_state = 0, .external_lex_state = 7}, - [7530] = {.lex_state = 131}, - [7531] = {.lex_state = 0, .external_lex_state = 7}, + [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 = 131}, - [7535] = {.lex_state = 14}, + [7534] = {.lex_state = 132}, + [7535] = {.lex_state = 0}, [7536] = {.lex_state = 0}, - [7537] = {.lex_state = 131}, - [7538] = {.lex_state = 14}, - [7539] = {(TSStateId)(-1)}, - [7540] = {(TSStateId)(-1)}, - [7541] = {(TSStateId)(-1)}, - [7542] = {(TSStateId)(-1)}, - [7543] = {(TSStateId)(-1)}, - [7544] = {(TSStateId)(-1)}, - [7545] = {(TSStateId)(-1)}, - [7546] = {(TSStateId)(-1)}, - [7547] = {(TSStateId)(-1)}, - [7548] = {(TSStateId)(-1)}, - [7549] = {(TSStateId)(-1)}, - [7550] = {(TSStateId)(-1)}, - [7551] = {(TSStateId)(-1)}, - [7552] = {(TSStateId)(-1)}, - [7553] = {(TSStateId)(-1)}, - [7554] = {(TSStateId)(-1)}, - [7555] = {(TSStateId)(-1)}, + [7537] = {.lex_state = 0}, + [7538] = {.lex_state = 0}, + [7539] = {.lex_state = 0}, + [7540] = {.lex_state = 0, .external_lex_state = 6}, + [7541] = {.lex_state = 0}, + [7542] = {.lex_state = 132}, + [7543] = {.lex_state = 0}, + [7544] = {.lex_state = 10}, + [7545] = {.lex_state = 132}, + [7546] = {.lex_state = 132}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 0}, + [7549] = {.lex_state = 0}, + [7550] = {.lex_state = 10}, + [7551] = {.lex_state = 0}, + [7552] = {.lex_state = 0}, + [7553] = {.lex_state = 0}, + [7554] = {.lex_state = 0}, + [7555] = {.lex_state = 0}, + [7556] = {.lex_state = 0}, + [7557] = {.lex_state = 0}, + [7558] = {.lex_state = 0}, + [7559] = {.lex_state = 0}, + [7560] = {.lex_state = 0}, + [7561] = {.lex_state = 0}, + [7562] = {.lex_state = 0}, + [7563] = {.lex_state = 0}, + [7564] = {.lex_state = 0}, + [7565] = {.lex_state = 0}, + [7566] = {.lex_state = 1}, + [7567] = {.lex_state = 0}, + [7568] = {.lex_state = 0}, + [7569] = {.lex_state = 0}, + [7570] = {.lex_state = 0}, + [7571] = {.lex_state = 0}, + [7572] = {.lex_state = 0, .external_lex_state = 6}, + [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}, + [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}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 15}, + [7589] = {.lex_state = 0}, + [7590] = {.lex_state = 10}, + [7591] = {.lex_state = 0}, + [7592] = {.lex_state = 0}, + [7593] = {.lex_state = 0}, + [7594] = {.lex_state = 0}, + [7595] = {.lex_state = 0}, + [7596] = {.lex_state = 0}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 0}, + [7599] = {.lex_state = 0}, + [7600] = {.lex_state = 0}, + [7601] = {.lex_state = 0, .external_lex_state = 6}, + [7602] = {.lex_state = 1}, + [7603] = {.lex_state = 0}, + [7604] = {.lex_state = 0}, + [7605] = {.lex_state = 0}, + [7606] = {.lex_state = 0, .external_lex_state = 6}, + [7607] = {.lex_state = 0}, + [7608] = {.lex_state = 0}, + [7609] = {.lex_state = 10}, + [7610] = {.lex_state = 0, .external_lex_state = 6}, + [7611] = {.lex_state = 0}, + [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}, + [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}, + [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}, + [7632] = {.lex_state = 0}, + [7633] = {.lex_state = 0}, + [7634] = {.lex_state = 0, .external_lex_state = 6}, + [7635] = {.lex_state = 0}, + [7636] = {.lex_state = 0}, + [7637] = {.lex_state = 0}, + [7638] = {.lex_state = 0}, + [7639] = {.lex_state = 16}, + [7640] = {.lex_state = 0}, + [7641] = {.lex_state = 0}, + [7642] = {.lex_state = 0}, + [7643] = {.lex_state = 0, .external_lex_state = 6}, + [7644] = {.lex_state = 0}, + [7645] = {.lex_state = 0}, + [7646] = {.lex_state = 0}, + [7647] = {.lex_state = 0}, + [7648] = {.lex_state = 131}, + [7649] = {.lex_state = 1}, + [7650] = {.lex_state = 0}, + [7651] = {.lex_state = 0}, + [7652] = {.lex_state = 0}, + [7653] = {.lex_state = 0}, + [7654] = {.lex_state = 0, .external_lex_state = 8}, + [7655] = {.lex_state = 15}, + [7656] = {.lex_state = 0}, + [7657] = {.lex_state = 0}, + [7658] = {.lex_state = 10}, + [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}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 0}, + [7666] = {.lex_state = 10}, + [7667] = {.lex_state = 0}, + [7668] = {.lex_state = 0}, + [7669] = {.lex_state = 0}, + [7670] = {.lex_state = 0}, + [7671] = {.lex_state = 0}, + [7672] = {.lex_state = 0, .external_lex_state = 6}, + [7673] = {.lex_state = 0}, + [7674] = {.lex_state = 0}, + [7675] = {.lex_state = 0}, + [7676] = {.lex_state = 0}, + [7677] = {.lex_state = 0}, + [7678] = {.lex_state = 0}, + [7679] = {.lex_state = 0}, + [7680] = {.lex_state = 0}, + [7681] = {.lex_state = 15}, + [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}, + [7689] = {.lex_state = 0}, + [7690] = {.lex_state = 0}, + [7691] = {.lex_state = 0, .external_lex_state = 6}, + [7692] = {.lex_state = 0}, + [7693] = {.lex_state = 132}, + [7694] = {.lex_state = 0}, + [7695] = {.lex_state = 0}, + [7696] = {.lex_state = 0}, + [7697] = {.lex_state = 0, .external_lex_state = 4}, + [7698] = {.lex_state = 0}, + [7699] = {.lex_state = 0}, + [7700] = {.lex_state = 0, .external_lex_state = 6}, + [7701] = {.lex_state = 0}, + [7702] = {.lex_state = 0}, + [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}, + [7710] = {.lex_state = 0}, + [7711] = {.lex_state = 0}, + [7712] = {.lex_state = 4}, + [7713] = {.lex_state = 10}, + [7714] = {.lex_state = 0}, + [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)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -25013,132 +25530,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [1] = { - [sym_compilation_unit] = STATE(7420), - [sym__top_level_item] = STATE(2012), - [sym_global_statement] = STATE(2006), - [sym_extern_alias_directive] = STATE(2006), - [sym_using_directive] = STATE(2006), - [sym_global_attribute] = STATE(2006), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2006), - [sym_file_scoped_namespace_declaration] = STATE(2006), - [sym_type_declaration] = STATE(2006), - [sym_class_declaration] = STATE(1992), - [sym__class_declaration_initializer] = STATE(7418), - [sym_struct_declaration] = STATE(1992), - [sym__struct_declaration_initializer] = STATE(6917), - [sym_enum_declaration] = STATE(1992), - [sym_interface_declaration] = STATE(1992), - [sym__interface_declaration_initializer] = STATE(6923), - [sym_delegate_declaration] = STATE(1992), - [sym__delegate_declaration_initializer] = STATE(6505), - [sym_record_declaration] = STATE(1992), - [sym__record_declaration_initializer] = STATE(6559), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2007), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2001), - [sym_preproc_if_in_expression] = STATE(3005), + [sym_compilation_unit] = STATE(7521), + [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_preproc_region] = STATE(1), [sym_preproc_endregion] = STATE(1), [sym_preproc_line] = STATE(1), @@ -25148,10 +25667,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(13), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2176), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym_compilation_unit_repeat1] = STATE(18), + [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(23), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), @@ -25270,133 +25789,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [2] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(4274), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7435), - [sym_preproc_elif_in_top_level] = STATE(7435), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7433), - [sym_preproc_elif_in_expression] = STATE(7433), + [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_preproc_region] = STATE(2), [sym_preproc_endregion] = STATE(2), [sym_preproc_line] = STATE(2), @@ -25406,10 +25929,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = 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(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -25529,133 +26052,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [3] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7232), - [sym_preproc_elif_in_top_level] = STATE(7232), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7216), - [sym_preproc_elif_in_expression] = STATE(7216), + [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_preproc_region] = STATE(3), [sym_preproc_endregion] = STATE(3), [sym_preproc_line] = STATE(3), @@ -25665,10 +26192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3), [sym_preproc_define] = STATE(3), [sym_preproc_undef] = STATE(3), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = 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(10), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -25788,133 +26315,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [4] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7068), - [sym_preproc_elif_in_top_level] = STATE(7068), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7216), - [sym_preproc_elif_in_expression] = STATE(7216), + [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_preproc_region] = STATE(4), [sym_preproc_endregion] = STATE(4), [sym_preproc_line] = STATE(4), @@ -25924,10 +26455,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = 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(14), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26028,7 +26559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(219), + [aux_sym_preproc_if_token3] = ACTIONS(211), [aux_sym_preproc_else_token1] = ACTIONS(213), [aux_sym_preproc_elif_token1] = ACTIONS(215), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -26047,133 +26578,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [5] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7235), - [sym_preproc_elif_in_top_level] = STATE(7235), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7216), - [sym_preproc_elif_in_expression] = STATE(7216), + [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_preproc_region] = STATE(5), [sym_preproc_endregion] = STATE(5), [sym_preproc_line] = STATE(5), @@ -26183,10 +26718,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = 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(11), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26287,7 +26822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(221), + [aux_sym_preproc_if_token3] = ACTIONS(219), [aux_sym_preproc_else_token1] = ACTIONS(213), [aux_sym_preproc_elif_token1] = ACTIONS(215), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -26306,133 +26841,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [6] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7266), - [sym_preproc_elif_in_top_level] = STATE(7266), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7216), - [sym_preproc_elif_in_expression] = STATE(7216), + [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(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_preproc_region] = STATE(6), [sym_preproc_endregion] = STATE(6), [sym_preproc_line] = STATE(6), @@ -26442,10 +26981,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(6), [sym_preproc_define] = STATE(6), [sym_preproc_undef] = STATE(6), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = 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(13), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26546,7 +27085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(223), + [aux_sym_preproc_if_token3] = ACTIONS(221), [aux_sym_preproc_else_token1] = ACTIONS(213), [aux_sym_preproc_elif_token1] = ACTIONS(215), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -26565,131 +27104,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [7] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7308), - [sym_preproc_elif_in_top_level] = STATE(7308), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(7), [sym_preproc_endregion] = STATE(7), [sym_preproc_line] = STATE(7), @@ -26699,10 +27244,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -26803,9 +27348,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(225), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [aux_sym_preproc_if_token3] = ACTIONS(223), + [aux_sym_preproc_else_token1] = ACTIONS(213), + [aux_sym_preproc_elif_token1] = ACTIONS(215), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -26822,131 +27367,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [8] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7139), - [sym_preproc_elif_in_top_level] = STATE(7139), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(8), [sym_preproc_endregion] = STATE(8), [sym_preproc_line] = STATE(8), @@ -26956,10 +27507,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -27060,9 +27611,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(231), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [aux_sym_preproc_if_token3] = ACTIONS(223), + [aux_sym_preproc_else_token1] = ACTIONS(213), + [aux_sym_preproc_elif_token1] = ACTIONS(215), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27079,131 +27630,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [9] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7435), - [sym_preproc_elif_in_top_level] = STATE(7435), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(9), [sym_preproc_endregion] = STATE(9), [sym_preproc_line] = STATE(9), @@ -27213,9 +27766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(9), [sym_preproc_define] = STATE(9), [sym_preproc_undef] = STATE(9), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(159), @@ -27317,9 +27870,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(211), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [aux_sym_preproc_if_token3] = ACTIONS(217), + [aux_sym_preproc_else_token1] = ACTIONS(225), + [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27336,131 +27889,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [10] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7147), - [sym_preproc_elif_in_top_level] = STATE(7147), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(10), [sym_preproc_endregion] = STATE(10), [sym_preproc_line] = STATE(10), @@ -27470,10 +28025,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -27574,9 +28129,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(233), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [aux_sym_preproc_if_token3] = ACTIONS(229), + [aux_sym_preproc_else_token1] = ACTIONS(225), + [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27593,131 +28148,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [11] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7191), - [sym_preproc_elif_in_top_level] = STATE(7191), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(11), [sym_preproc_endregion] = STATE(11), [sym_preproc_line] = STATE(11), @@ -27727,10 +28284,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -27831,9 +28388,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(235), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [aux_sym_preproc_if_token3] = ACTIONS(231), + [aux_sym_preproc_else_token1] = ACTIONS(225), + [aux_sym_preproc_elif_token1] = ACTIONS(227), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -27850,131 +28407,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [12] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_else_in_top_level] = STATE(7486), - [sym_preproc_elif_in_top_level] = STATE(7486), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(12), [sym_preproc_endregion] = STATE(12), [sym_preproc_line] = STATE(12), @@ -27984,10 +28543,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -28088,9 +28647,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(237), - [aux_sym_preproc_else_token1] = ACTIONS(227), - [aux_sym_preproc_elif_token1] = ACTIONS(229), + [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), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -28107,131 +28666,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [13] = { - [sym__top_level_item] = STATE(2012), - [sym_global_statement] = STATE(2006), - [sym_extern_alias_directive] = STATE(2006), - [sym_using_directive] = STATE(2006), - [sym_global_attribute] = STATE(2006), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2006), - [sym_file_scoped_namespace_declaration] = STATE(2006), - [sym_type_declaration] = STATE(2006), - [sym_class_declaration] = STATE(1992), - [sym__class_declaration_initializer] = STATE(7418), - [sym_struct_declaration] = STATE(1992), - [sym__struct_declaration_initializer] = STATE(6917), - [sym_enum_declaration] = STATE(1992), - [sym_interface_declaration] = STATE(1992), - [sym__interface_declaration_initializer] = STATE(6923), - [sym_delegate_declaration] = STATE(1992), - [sym__delegate_declaration_initializer] = STATE(6505), - [sym_record_declaration] = STATE(1992), - [sym__record_declaration_initializer] = STATE(6559), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2007), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2001), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(13), [sym_preproc_endregion] = STATE(13), [sym_preproc_line] = STATE(13), @@ -28241,28 +28802,27 @@ 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_compilation_unit_repeat1] = STATE(17), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2176), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [ts_builtin_sym_end] = ACTIONS(239), + [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(25), - [anon_sym_extern] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(159), [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_SEMI] = ACTIONS(161), + [anon_sym_global] = ACTIONS(163), + [anon_sym_using] = ACTIONS(165), + [anon_sym_unsafe] = ACTIONS(167), [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_namespace] = ACTIONS(47), + [anon_sym_return] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), [anon_sym_class] = ACTIONS(49), [anon_sym_ref] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_enum] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(177), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(61), [anon_sym_record] = ACTIONS(63), @@ -28270,7 +28830,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(69), + [anon_sym_fixed] = ACTIONS(179), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -28286,7 +28846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -28303,23 +28863,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -28345,7 +28905,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(147), + [aux_sym_preproc_if_token1] = ACTIONS(209), + [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), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -28362,131 +28925,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [14] = { - [sym__top_level_item] = STATE(2012), - [sym_global_statement] = STATE(2006), - [sym_extern_alias_directive] = STATE(2006), - [sym_using_directive] = STATE(2006), - [sym_global_attribute] = STATE(2006), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2006), - [sym_file_scoped_namespace_declaration] = STATE(2006), - [sym_type_declaration] = STATE(2006), - [sym_class_declaration] = STATE(1992), - [sym__class_declaration_initializer] = STATE(7418), - [sym_struct_declaration] = STATE(1992), - [sym__struct_declaration_initializer] = STATE(6917), - [sym_enum_declaration] = STATE(1992), - [sym_interface_declaration] = STATE(1992), - [sym__interface_declaration_initializer] = STATE(6923), - [sym_delegate_declaration] = STATE(1992), - [sym__delegate_declaration_initializer] = STATE(6505), - [sym_record_declaration] = STATE(1992), - [sym__record_declaration_initializer] = STATE(6559), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2007), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2001), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(14), [sym_preproc_endregion] = STATE(14), [sym_preproc_line] = STATE(14), @@ -28496,266 +29061,270 @@ 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_compilation_unit_repeat1] = STATE(17), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2176), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [ts_builtin_sym_end] = ACTIONS(241), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [15] = { - [sym__top_level_item] = STATE(2012), - [sym_global_statement] = STATE(2006), - [sym_extern_alias_directive] = STATE(2006), - [sym_using_directive] = STATE(2006), - [sym_global_attribute] = STATE(2006), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2006), - [sym_file_scoped_namespace_declaration] = STATE(2006), - [sym_type_declaration] = STATE(2006), - [sym_class_declaration] = STATE(1992), - [sym__class_declaration_initializer] = STATE(7418), - [sym_struct_declaration] = STATE(1992), - [sym__struct_declaration_initializer] = STATE(6917), - [sym_enum_declaration] = STATE(1992), - [sym_interface_declaration] = STATE(1992), - [sym__interface_declaration_initializer] = STATE(6923), - [sym_delegate_declaration] = STATE(1992), - [sym__delegate_declaration_initializer] = STATE(6505), - [sym_record_declaration] = STATE(1992), - [sym__record_declaration_initializer] = STATE(6559), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2007), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2001), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(15), - [sym_preproc_endregion] = STATE(15), - [sym_preproc_line] = STATE(15), - [sym_preproc_pragma] = STATE(15), - [sym_preproc_nullable] = STATE(15), - [sym_preproc_error] = STATE(15), - [sym_preproc_warning] = STATE(15), - [sym_preproc_define] = STATE(15), - [sym_preproc_undef] = STATE(15), - [aux_sym_compilation_unit_repeat1] = STATE(14), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2176), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [ts_builtin_sym_end] = ACTIONS(239), + [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(25), + [anon_sym_extern] = ACTIONS(159), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_global] = ACTIONS(163), + [anon_sym_using] = ACTIONS(165), + [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(177), + [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(179), + [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(181), + [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(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_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(203), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [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(209), + [aux_sym_preproc_if_token3] = ACTIONS(237), + [aux_sym_preproc_else_token1] = ACTIONS(225), + [aux_sym_preproc_elif_token1] = ACTIONS(227), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [15] = { + [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_preproc_region] = STATE(15), + [sym_preproc_endregion] = STATE(15), + [sym_preproc_line] = STATE(15), + [sym_preproc_pragma] = STATE(15), + [sym_preproc_nullable] = STATE(15), + [sym_preproc_error] = STATE(15), + [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__class_declaration_initializer_repeat2] = STATE(2356), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [ts_builtin_sym_end] = ACTIONS(239), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -28872,129 +29441,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [16] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(16), [sym_preproc_endregion] = STATE(16), [sym_preproc_line] = STATE(16), @@ -29004,10 +29577,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(16), [sym_preproc_define] = STATE(16), [sym_preproc_undef] = STATE(16), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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(241), [sym__identifier_token] = ACTIONS(243), [anon_sym_extern] = ACTIONS(246), [anon_sym_alias] = ACTIONS(249), @@ -29108,9 +29682,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(423), [sym_verbatim_string_literal] = ACTIONS(420), [aux_sym_preproc_if_token1] = ACTIONS(426), - [aux_sym_preproc_if_token3] = ACTIONS(429), - [aux_sym_preproc_else_token1] = ACTIONS(429), - [aux_sym_preproc_elif_token1] = ACTIONS(429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -29121,137 +29692,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(431), - [sym_interpolation_verbatim_start] = ACTIONS(434), - [sym_interpolation_raw_start] = ACTIONS(437), - [sym_raw_string_start] = ACTIONS(440), + [sym_interpolation_regular_start] = ACTIONS(429), + [sym_interpolation_verbatim_start] = ACTIONS(432), + [sym_interpolation_raw_start] = ACTIONS(435), + [sym_raw_string_start] = ACTIONS(438), }, [17] = { - [sym__top_level_item] = STATE(2012), - [sym_global_statement] = STATE(2006), - [sym_extern_alias_directive] = STATE(2006), - [sym_using_directive] = STATE(2006), - [sym_global_attribute] = STATE(2006), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2006), - [sym_file_scoped_namespace_declaration] = STATE(2006), - [sym_type_declaration] = STATE(2006), - [sym_class_declaration] = STATE(1992), - [sym__class_declaration_initializer] = STATE(7418), - [sym_struct_declaration] = STATE(1992), - [sym__struct_declaration_initializer] = STATE(6917), - [sym_enum_declaration] = STATE(1992), - [sym_interface_declaration] = STATE(1992), - [sym__interface_declaration_initializer] = STATE(6923), - [sym_delegate_declaration] = STATE(1992), - [sym__delegate_declaration_initializer] = STATE(6505), - [sym_record_declaration] = STATE(1992), - [sym__record_declaration_initializer] = STATE(6559), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2007), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2001), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(17), [sym_preproc_endregion] = STATE(17), [sym_preproc_line] = STATE(17), @@ -29261,250 +29832,256 @@ 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_compilation_unit_repeat1] = STATE(17), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2176), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2282), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [ts_builtin_sym_end] = ACTIONS(443), - [sym__identifier_token] = ACTIONS(445), - [anon_sym_extern] = ACTIONS(448), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_global] = ACTIONS(457), - [anon_sym_using] = ACTIONS(460), - [anon_sym_unsafe] = ACTIONS(463), - [anon_sym_static] = ACTIONS(466), - [anon_sym_LBRACK] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(472), - [anon_sym_return] = ACTIONS(475), - [anon_sym_namespace] = ACTIONS(478), - [anon_sym_class] = ACTIONS(481), - [anon_sym_ref] = ACTIONS(484), - [anon_sym_struct] = ACTIONS(487), - [anon_sym_enum] = ACTIONS(490), - [anon_sym_LBRACE] = ACTIONS(493), - [anon_sym_interface] = ACTIONS(496), - [anon_sym_delegate] = ACTIONS(499), - [anon_sym_record] = ACTIONS(502), - [anon_sym_abstract] = ACTIONS(505), - [anon_sym_async] = ACTIONS(466), - [anon_sym_const] = ACTIONS(505), - [anon_sym_file] = ACTIONS(508), - [anon_sym_fixed] = ACTIONS(511), - [anon_sym_internal] = ACTIONS(505), - [anon_sym_new] = ACTIONS(514), - [anon_sym_override] = ACTIONS(505), - [anon_sym_partial] = ACTIONS(505), - [anon_sym_private] = ACTIONS(505), - [anon_sym_protected] = ACTIONS(505), - [anon_sym_public] = ACTIONS(505), - [anon_sym_readonly] = ACTIONS(505), - [anon_sym_required] = ACTIONS(505), - [anon_sym_sealed] = ACTIONS(505), - [anon_sym_virtual] = ACTIONS(505), - [anon_sym_volatile] = ACTIONS(505), - [anon_sym_where] = ACTIONS(451), - [anon_sym_notnull] = ACTIONS(451), - [anon_sym_unmanaged] = ACTIONS(451), - [anon_sym_checked] = ACTIONS(517), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [anon_sym_true] = ACTIONS(523), - [anon_sym_false] = ACTIONS(523), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(529), - [anon_sym_CARET] = ACTIONS(520), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_this] = ACTIONS(532), - [anon_sym_scoped] = ACTIONS(535), - [anon_sym_base] = ACTIONS(538), - [anon_sym_var] = ACTIONS(541), - [sym_predefined_type] = ACTIONS(544), - [anon_sym_break] = ACTIONS(547), - [anon_sym_unchecked] = ACTIONS(517), - [anon_sym_continue] = ACTIONS(550), - [anon_sym_do] = ACTIONS(553), - [anon_sym_while] = ACTIONS(556), - [anon_sym_for] = ACTIONS(559), - [anon_sym_lock] = ACTIONS(562), - [anon_sym_yield] = ACTIONS(565), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_default] = ACTIONS(571), - [anon_sym_throw] = ACTIONS(574), - [anon_sym_try] = ACTIONS(577), - [anon_sym_when] = ACTIONS(451), - [anon_sym_await] = ACTIONS(580), - [anon_sym_foreach] = ACTIONS(583), - [anon_sym_goto] = ACTIONS(586), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOT_DOT] = ACTIONS(592), - [anon_sym_from] = ACTIONS(595), - [anon_sym_into] = ACTIONS(451), - [anon_sym_join] = ACTIONS(451), - [anon_sym_on] = ACTIONS(451), - [anon_sym_equals] = ACTIONS(451), - [anon_sym_let] = ACTIONS(451), - [anon_sym_orderby] = ACTIONS(451), - [anon_sym_ascending] = ACTIONS(451), - [anon_sym_descending] = ACTIONS(451), - [anon_sym_group] = ACTIONS(451), - [anon_sym_by] = ACTIONS(451), - [anon_sym_select] = ACTIONS(451), - [anon_sym_stackalloc] = ACTIONS(598), - [anon_sym_sizeof] = ACTIONS(601), - [anon_sym_typeof] = ACTIONS(604), - [anon_sym___makeref] = ACTIONS(607), - [anon_sym___reftype] = ACTIONS(610), - [anon_sym___refvalue] = ACTIONS(613), - [sym_null_literal] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(619), - [sym_integer_literal] = ACTIONS(616), - [sym_real_literal] = ACTIONS(622), - [anon_sym_DQUOTE] = ACTIONS(625), - [sym_verbatim_string_literal] = ACTIONS(622), - [aux_sym_preproc_if_token1] = ACTIONS(628), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(631), - [sym_interpolation_verbatim_start] = ACTIONS(634), - [sym_interpolation_raw_start] = ACTIONS(637), - [sym_raw_string_start] = ACTIONS(640), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [18] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5338), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(18), [sym_preproc_endregion] = STATE(18), [sym_preproc_line] = STATE(18), @@ -29514,27 +30091,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(18), [sym_preproc_define] = STATE(18), [sym_preproc_undef] = STATE(18), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), + [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(239), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(159), + [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_global] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_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(169), + [anon_sym_LBRACK] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_namespace] = ACTIONS(173), + [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(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -29542,7 +30120,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(69), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -29558,7 +30136,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -29575,23 +30153,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -29617,8 +30195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -29635,129 +30212,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [19] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(19), [sym_preproc_endregion] = STATE(19), [sym_preproc_line] = STATE(19), @@ -29767,27 +30348,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(19), [sym_preproc_define] = STATE(19), [sym_preproc_undef] = STATE(19), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(20), + [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(159), + [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), - [anon_sym_global] = ACTIONS(163), - [anon_sym_using] = ACTIONS(165), - [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_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(169), + [anon_sym_LBRACK] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_namespace] = ACTIONS(173), + [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(175), - [anon_sym_LBRACE] = ACTIONS(177), + [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), @@ -29795,7 +30377,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(69), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(71), [anon_sym_override] = ACTIONS(65), @@ -29811,7 +30393,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -29828,23 +30410,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -29870,8 +30452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(147), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -29888,129 +30469,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [20] = { - [sym_extern_alias_directive] = STATE(1911), - [sym_using_directive] = STATE(1911), - [sym_global_attribute] = STATE(1911), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(1911), - [sym_file_scoped_namespace_declaration] = STATE(1911), - [sym_type_declaration] = STATE(1911), - [sym_class_declaration] = STATE(1931), - [sym__class_declaration_initializer] = STATE(7118), - [sym_struct_declaration] = STATE(1931), - [sym__struct_declaration_initializer] = STATE(7021), - [sym_enum_declaration] = STATE(1931), - [sym_interface_declaration] = STATE(1931), - [sym__interface_declaration_initializer] = STATE(7018), - [sym_delegate_declaration] = STATE(1931), - [sym__delegate_declaration_initializer] = STATE(6404), - [sym_record_declaration] = STATE(1931), - [sym__record_declaration_initializer] = STATE(6723), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1911), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1934), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(20), [sym_preproc_endregion] = STATE(20), [sym_preproc_line] = STATE(20), @@ -30020,10 +30603,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(2170), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2290), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(16), + [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(25), [anon_sym_extern] = ACTIONS(159), [anon_sym_alias] = ACTIONS(29), @@ -30124,7 +30707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), [aux_sym_preproc_if_token1] = ACTIONS(209), - [aux_sym_preproc_if_token3] = ACTIONS(645), + [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), @@ -30141,112 +30724,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [21] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), + [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(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(21), [sym_preproc_endregion] = STATE(21), [sym_preproc_line] = STATE(21), @@ -30256,81 +30858,85 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(159), [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(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(669), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), - [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_SEMI] = ACTIONS(161), + [anon_sym_global] = ACTIONS(163), + [anon_sym_using] = ACTIONS(165), + [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(177), + [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(179), + [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(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_checked] = ACTIONS(181), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -30355,7 +30961,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(715), + [aux_sym_preproc_if_token1] = ACTIONS(209), + [aux_sym_preproc_if_token3] = ACTIONS(645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -30372,112 +30979,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [22] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), + [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(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(22), [sym_preproc_endregion] = STATE(22), [sym_preproc_line] = STATE(22), @@ -30487,81 +31113,85 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), + [anon_sym_extern] = ACTIONS(159), [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(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), - [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_SEMI] = ACTIONS(161), + [anon_sym_global] = ACTIONS(163), + [anon_sym_using] = ACTIONS(165), + [anon_sym_unsafe] = ACTIONS(167), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(171), + [anon_sym_namespace] = ACTIONS(173), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(175), + [anon_sym_LBRACE] = ACTIONS(177), + [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(179), + [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(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_checked] = ACTIONS(181), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -30586,7 +31216,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(715), + [aux_sym_preproc_if_token1] = ACTIONS(209), + [aux_sym_preproc_if_token3] = ACTIONS(645), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -30603,112 +31234,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [23] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(23), [sym_preproc_endregion] = STATE(23), [sym_preproc_line] = STATE(23), @@ -30718,10 +31351,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(23), [sym_preproc_define] = STATE(23), [sym_preproc_undef] = STATE(23), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(24), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -30732,18 +31365,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -30757,7 +31390,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -30774,24 +31407,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -30817,7 +31450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -30834,112 +31467,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [24] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(24), [sym_preproc_endregion] = STATE(24), [sym_preproc_line] = STATE(24), @@ -30949,10 +31584,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(24), [sym_preproc_define] = STATE(24), [sym_preproc_undef] = STATE(24), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -30963,18 +31598,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -30988,7 +31623,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -31005,24 +31640,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -31048,7 +31683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -31065,112 +31700,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [25] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(25), [sym_preproc_endregion] = STATE(25), [sym_preproc_line] = STATE(25), @@ -31180,10 +31817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(25), [sym_preproc_define] = STATE(25), [sym_preproc_undef] = STATE(25), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(26), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -31194,18 +31831,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -31219,7 +31856,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -31236,24 +31873,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(735), - [anon_sym_default] = ACTIONS(735), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -31279,7 +31916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -31296,112 +31933,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [26] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(26), [sym_preproc_endregion] = STATE(26), [sym_preproc_line] = STATE(26), @@ -31411,10 +32050,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(26), [sym_preproc_define] = STATE(26), [sym_preproc_undef] = STATE(26), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -31425,18 +32064,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -31450,7 +32089,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -31467,24 +32106,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -31510,7 +32149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -31527,112 +32166,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [27] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4949), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(27), [sym_preproc_endregion] = STATE(27), [sym_preproc_line] = STATE(27), @@ -31642,228 +32283,230 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [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(741), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), - [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(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = 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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(703), - [anon_sym_try] = ACTIONS(705), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), - [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(715), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4824), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -31873,10 +32516,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(28), [sym_preproc_define] = STATE(28), [sym_preproc_undef] = STATE(28), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(46), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -31886,20 +32529,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(747), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -31913,41 +32555,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(703), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), + [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -31972,7 +32615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -31989,112 +32632,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [29] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(29), [sym_preproc_endregion] = STATE(29), [sym_preproc_line] = STATE(29), @@ -32104,10 +32749,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(29), [sym_preproc_define] = STATE(29), [sym_preproc_undef] = STATE(29), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(31), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -32117,19 +32762,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -32143,42 +32789,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [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(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(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(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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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(727), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -32203,7 +32848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -32220,112 +32865,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [30] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(30), [sym_preproc_endregion] = STATE(30), [sym_preproc_line] = STATE(30), @@ -32335,10 +32982,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(30), [sym_preproc_define] = STATE(30), [sym_preproc_undef] = STATE(30), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(38), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -32348,20 +32995,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(749), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -32375,41 +33022,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -32434,7 +33081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -32451,112 +33098,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [31] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(31), [sym_preproc_endregion] = STATE(31), [sym_preproc_line] = STATE(31), @@ -32566,10 +33215,10 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -32579,19 +33228,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(721), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -32605,42 +33255,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [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(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(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(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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_case] = ACTIONS(723), - [anon_sym_default] = ACTIONS(723), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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(727), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -32665,7 +33314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -32682,112 +33331,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [32] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4886), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(32), [sym_preproc_endregion] = STATE(32), [sym_preproc_line] = STATE(32), @@ -32797,10 +33448,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(32), [sym_preproc_define] = STATE(32), [sym_preproc_undef] = STATE(32), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(58), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -32810,20 +33461,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(753), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -32837,41 +33488,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -32896,7 +33547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -32913,112 +33564,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [33] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4835), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(33), [sym_preproc_endregion] = STATE(33), [sym_preproc_line] = STATE(33), @@ -33028,10 +33681,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(33), [sym_preproc_define] = STATE(33), [sym_preproc_undef] = STATE(33), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -33041,20 +33694,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -33068,41 +33721,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -33127,7 +33780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -33144,112 +33797,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [34] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(34), [sym_preproc_endregion] = STATE(34), [sym_preproc_line] = STATE(34), @@ -33259,10 +33914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(34), [sym_preproc_define] = STATE(34), [sym_preproc_undef] = STATE(34), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -33272,20 +33927,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_delegate] = ACTIONS(671), + [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), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -33299,41 +33954,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -33358,7 +34013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -33375,112 +34030,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [35] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4898), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(35), [sym_preproc_endregion] = STATE(35), [sym_preproc_line] = STATE(35), @@ -33490,10 +34147,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(35), [sym_preproc_define] = STATE(35), [sym_preproc_undef] = STATE(35), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -33503,20 +34160,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -33530,41 +34187,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -33589,7 +34246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -33606,112 +34263,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [36] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(36), [sym_preproc_endregion] = STATE(36), [sym_preproc_line] = STATE(36), @@ -33721,10 +34380,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(36), [sym_preproc_define] = STATE(36), [sym_preproc_undef] = STATE(36), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(39), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -33734,20 +34393,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -33761,41 +34420,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(703), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(707), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -33820,7 +34479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -33837,112 +34496,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [37] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(37), [sym_preproc_endregion] = STATE(37), [sym_preproc_line] = STATE(37), @@ -33952,228 +34613,230 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(767), - [anon_sym_extern] = ACTIONS(770), - [anon_sym_alias] = ACTIONS(773), - [anon_sym_SEMI] = ACTIONS(776), - [anon_sym_global] = ACTIONS(773), - [anon_sym_using] = ACTIONS(779), - [anon_sym_unsafe] = ACTIONS(782), - [anon_sym_static] = ACTIONS(785), - [anon_sym_LBRACK] = ACTIONS(788), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_return] = ACTIONS(794), - [anon_sym_ref] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_delegate] = ACTIONS(805), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_async] = ACTIONS(785), - [anon_sym_const] = ACTIONS(770), - [anon_sym_file] = ACTIONS(808), - [anon_sym_fixed] = ACTIONS(811), - [anon_sym_internal] = ACTIONS(770), - [anon_sym_new] = ACTIONS(814), - [anon_sym_override] = ACTIONS(770), - [anon_sym_partial] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_protected] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_readonly] = ACTIONS(770), - [anon_sym_required] = ACTIONS(770), - [anon_sym_sealed] = ACTIONS(770), - [anon_sym_virtual] = ACTIONS(770), - [anon_sym_volatile] = ACTIONS(770), - [anon_sym_where] = ACTIONS(773), - [anon_sym_notnull] = ACTIONS(773), - [anon_sym_unmanaged] = ACTIONS(773), - [anon_sym_checked] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(820), - [anon_sym_TILDE] = ACTIONS(820), - [anon_sym_PLUS_PLUS] = ACTIONS(820), - [anon_sym_DASH_DASH] = ACTIONS(820), - [anon_sym_true] = ACTIONS(823), - [anon_sym_false] = ACTIONS(823), - [anon_sym_PLUS] = ACTIONS(826), - [anon_sym_DASH] = ACTIONS(826), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(820), - [anon_sym_AMP] = ACTIONS(820), - [anon_sym_this] = ACTIONS(832), - [anon_sym_scoped] = ACTIONS(835), - [anon_sym_base] = ACTIONS(838), - [anon_sym_var] = ACTIONS(841), - [sym_predefined_type] = ACTIONS(844), - [anon_sym_break] = ACTIONS(847), - [anon_sym_unchecked] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_do] = ACTIONS(853), - [anon_sym_while] = ACTIONS(856), - [anon_sym_for] = ACTIONS(859), - [anon_sym_lock] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(865), - [anon_sym_switch] = ACTIONS(868), - [anon_sym_case] = ACTIONS(871), - [anon_sym_default] = ACTIONS(873), - [anon_sym_throw] = ACTIONS(876), - [anon_sym_try] = ACTIONS(879), - [anon_sym_when] = ACTIONS(773), - [anon_sym_await] = ACTIONS(882), - [anon_sym_foreach] = ACTIONS(885), - [anon_sym_goto] = ACTIONS(888), - [anon_sym_if] = ACTIONS(891), - [anon_sym_DOT_DOT] = ACTIONS(894), - [anon_sym_from] = ACTIONS(897), - [anon_sym_into] = ACTIONS(773), - [anon_sym_join] = ACTIONS(773), - [anon_sym_on] = ACTIONS(773), - [anon_sym_equals] = ACTIONS(773), - [anon_sym_let] = ACTIONS(773), - [anon_sym_orderby] = ACTIONS(773), - [anon_sym_ascending] = ACTIONS(773), - [anon_sym_descending] = ACTIONS(773), - [anon_sym_group] = ACTIONS(773), - [anon_sym_by] = ACTIONS(773), - [anon_sym_select] = ACTIONS(773), - [anon_sym_stackalloc] = ACTIONS(900), - [anon_sym_sizeof] = ACTIONS(903), - [anon_sym_typeof] = ACTIONS(906), - [anon_sym___makeref] = ACTIONS(909), - [anon_sym___reftype] = ACTIONS(912), - [anon_sym___refvalue] = ACTIONS(915), - [sym_null_literal] = ACTIONS(918), - [anon_sym_SQUOTE] = ACTIONS(921), - [sym_integer_literal] = ACTIONS(918), - [sym_real_literal] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(927), - [sym_verbatim_string_literal] = ACTIONS(924), - [aux_sym_preproc_if_token1] = ACTIONS(930), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(933), - [sym_interpolation_verbatim_start] = ACTIONS(936), - [sym_interpolation_raw_start] = ACTIONS(939), - [sym_raw_string_start] = ACTIONS(942), + [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), + [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(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_this] = 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), }, [38] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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_preproc_region] = STATE(38), [sym_preproc_endregion] = STATE(38), [sym_preproc_line] = STATE(38), @@ -34183,10 +34846,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(38), [sym_preproc_define] = STATE(38), [sym_preproc_undef] = STATE(38), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -34196,19 +34859,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(653), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -34222,41 +34886,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(679), - [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(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(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(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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(907), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(909), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -34281,7 +34945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -34298,112 +34962,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [39] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -34413,10 +35079,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(39), [sym_preproc_define] = STATE(39), [sym_preproc_undef] = STATE(39), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_alias] = ACTIONS(29), @@ -34427,18 +35093,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -34452,7 +35118,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -34469,23 +35135,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -34511,7 +35178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -34528,112 +35195,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [40] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(40), [sym_preproc_endregion] = STATE(40), [sym_preproc_line] = STATE(40), @@ -34643,10 +35312,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(40), [sym_preproc_define] = STATE(40), [sym_preproc_undef] = STATE(40), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -34657,18 +35326,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(949), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -34682,7 +35351,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -34699,23 +35368,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -34741,7 +35410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -34758,112 +35427,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [41] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(41), [sym_preproc_endregion] = STATE(41), [sym_preproc_line] = STATE(41), @@ -34873,10 +35544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(41), [sym_preproc_define] = STATE(41), [sym_preproc_undef] = STATE(41), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(40), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -34887,18 +35558,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -34912,7 +35583,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -34929,23 +35600,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -34971,7 +35642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -34988,112 +35659,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [42] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(42), [sym_preproc_endregion] = STATE(42), [sym_preproc_line] = STATE(42), @@ -35103,10 +35776,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(42), [sym_preproc_define] = STATE(42), [sym_preproc_undef] = STATE(42), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(38), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -35117,18 +35790,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -35142,7 +35815,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35159,23 +35832,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35201,7 +35874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -35218,112 +35891,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [43] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(43), [sym_preproc_endregion] = STATE(43), [sym_preproc_line] = STATE(43), @@ -35333,10 +36008,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(43), [sym_preproc_define] = STATE(43), [sym_preproc_undef] = STATE(43), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -35347,18 +36022,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -35372,7 +36047,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35389,23 +36064,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35431,7 +36106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -35448,112 +36123,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [44] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(44), [sym_preproc_endregion] = STATE(44), [sym_preproc_line] = STATE(44), @@ -35563,10 +36240,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(44), [sym_preproc_define] = STATE(44), [sym_preproc_undef] = STATE(44), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -35577,18 +36254,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(957), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -35602,7 +36279,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35619,23 +36296,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35661,7 +36338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -35678,112 +36355,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [45] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(45), [sym_preproc_endregion] = STATE(45), [sym_preproc_line] = STATE(45), @@ -35793,10 +36472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(45), [sym_preproc_define] = STATE(45), [sym_preproc_undef] = STATE(45), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -35807,18 +36486,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -35832,7 +36511,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -35849,23 +36528,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -35891,7 +36570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -35908,112 +36587,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [46] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(46), [sym_preproc_endregion] = STATE(46), [sym_preproc_line] = STATE(46), @@ -36023,10 +36704,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(46), [sym_preproc_define] = STATE(46), [sym_preproc_undef] = STATE(46), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -36037,18 +36718,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(961), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -36062,7 +36743,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36079,23 +36760,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36121,7 +36802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -36138,112 +36819,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [47] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(47), [sym_preproc_endregion] = STATE(47), [sym_preproc_line] = STATE(47), @@ -36253,10 +36936,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(47), [sym_preproc_define] = STATE(47), [sym_preproc_undef] = STATE(47), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -36267,18 +36950,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(963), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -36292,7 +36975,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36309,23 +36992,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36351,7 +37034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -36368,112 +37051,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [48] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(48), [sym_preproc_endregion] = STATE(48), [sym_preproc_line] = STATE(48), @@ -36483,10 +37168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(48), [sym_preproc_define] = STATE(48), [sym_preproc_undef] = STATE(48), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -36497,18 +37182,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(965), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -36522,7 +37207,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36539,23 +37224,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36581,7 +37266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -36598,112 +37283,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [49] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(49), [sym_preproc_endregion] = STATE(49), [sym_preproc_line] = STATE(49), @@ -36713,10 +37400,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(49), [sym_preproc_define] = STATE(49), [sym_preproc_undef] = STATE(49), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -36727,18 +37414,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -36752,7 +37439,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36769,23 +37456,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -36811,7 +37498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -36828,112 +37515,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [50] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(50), [sym_preproc_endregion] = STATE(50), [sym_preproc_line] = STATE(50), @@ -36943,10 +37632,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(50), [sym_preproc_define] = STATE(50), [sym_preproc_undef] = STATE(50), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), @@ -36957,18 +37646,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -36982,7 +37671,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -36999,23 +37688,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37041,7 +37730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -37058,112 +37747,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [51] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(51), [sym_preproc_endregion] = STATE(51), [sym_preproc_line] = STATE(51), @@ -37173,10 +37864,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(51), [sym_preproc_define] = STATE(51), [sym_preproc_undef] = STATE(51), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -37187,18 +37878,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -37212,7 +37903,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37229,23 +37920,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37271,7 +37962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -37288,112 +37979,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [52] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), + [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(52), [sym_preproc_endregion] = STATE(52), [sym_preproc_line] = STATE(52), @@ -37403,10 +38096,474 @@ 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(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(48), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), + [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(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_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(695), + [anon_sym_try] = ACTIONS(697), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(699), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), + [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(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), + }, + [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__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(53), + [sym_preproc_endregion] = STATE(53), + [sym_preproc_line] = STATE(53), + [sym_preproc_pragma] = STATE(53), + [sym_preproc_nullable] = STATE(53), + [sym_preproc_error] = STATE(53), + [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), + [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(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_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(695), + [anon_sym_try] = ACTIONS(697), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(699), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), + [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(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), + }, + [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__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(54), + [sym_preproc_endregion] = STATE(54), + [sym_preproc_line] = STATE(54), + [sym_preproc_pragma] = STATE(54), + [sym_preproc_nullable] = STATE(54), + [sym_preproc_error] = STATE(54), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -37417,18 +38574,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -37442,7 +38599,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37459,23 +38616,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37501,7 +38658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -37517,126 +38674,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [53] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(53), - [sym_preproc_endregion] = STATE(53), - [sym_preproc_line] = STATE(53), - [sym_preproc_pragma] = STATE(53), - [sym_preproc_nullable] = STATE(53), - [sym_preproc_error] = STATE(53), - [sym_preproc_warning] = STATE(53), - [sym_preproc_define] = STATE(53), - [sym_preproc_undef] = STATE(53), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(55), + [sym_preproc_endregion] = STATE(55), + [sym_preproc_line] = STATE(55), + [sym_preproc_pragma] = STATE(55), + [sym_preproc_nullable] = STATE(55), + [sym_preproc_error] = STATE(55), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -37647,18 +38806,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(975), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -37672,7 +38831,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37689,23 +38848,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37731,7 +38890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -37747,126 +38906,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [54] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(54), - [sym_preproc_endregion] = STATE(54), - [sym_preproc_line] = STATE(54), - [sym_preproc_pragma] = STATE(54), - [sym_preproc_nullable] = STATE(54), - [sym_preproc_error] = STATE(54), - [sym_preproc_warning] = STATE(54), - [sym_preproc_define] = STATE(54), - [sym_preproc_undef] = STATE(54), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(46), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(56), + [sym_preproc_endregion] = STATE(56), + [sym_preproc_line] = STATE(56), + [sym_preproc_pragma] = STATE(56), + [sym_preproc_nullable] = STATE(56), + [sym_preproc_error] = STATE(56), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -37877,18 +39038,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -37902,7 +39063,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -37919,23 +39080,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -37961,7 +39122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -37977,126 +39138,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [55] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(55), - [sym_preproc_endregion] = STATE(55), - [sym_preproc_line] = STATE(55), - [sym_preproc_pragma] = STATE(55), - [sym_preproc_nullable] = STATE(55), - [sym_preproc_error] = STATE(55), - [sym_preproc_warning] = STATE(55), - [sym_preproc_define] = STATE(55), - [sym_preproc_undef] = STATE(55), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(57), + [sym_preproc_endregion] = STATE(57), + [sym_preproc_line] = STATE(57), + [sym_preproc_pragma] = STATE(57), + [sym_preproc_nullable] = STATE(57), + [sym_preproc_error] = STATE(57), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -38107,18 +39270,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(979), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -38132,7 +39295,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38149,23 +39312,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38191,7 +39354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -38207,126 +39370,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [56] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(56), - [sym_preproc_endregion] = STATE(56), - [sym_preproc_line] = STATE(56), - [sym_preproc_pragma] = STATE(56), - [sym_preproc_nullable] = STATE(56), - [sym_preproc_error] = STATE(56), - [sym_preproc_warning] = STATE(56), - [sym_preproc_define] = STATE(56), - [sym_preproc_undef] = STATE(56), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(51), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(58), + [sym_preproc_endregion] = STATE(58), + [sym_preproc_line] = STATE(58), + [sym_preproc_pragma] = STATE(58), + [sym_preproc_nullable] = STATE(58), + [sym_preproc_error] = STATE(58), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -38337,18 +39502,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -38362,7 +39527,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38379,23 +39544,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38421,7 +39586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -38437,126 +39602,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [57] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(57), - [sym_preproc_endregion] = STATE(57), - [sym_preproc_line] = STATE(57), - [sym_preproc_pragma] = STATE(57), - [sym_preproc_nullable] = STATE(57), - [sym_preproc_error] = STATE(57), - [sym_preproc_warning] = STATE(57), - [sym_preproc_define] = STATE(57), - [sym_preproc_undef] = STATE(57), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(39), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(59), + [sym_preproc_endregion] = STATE(59), + [sym_preproc_line] = STATE(59), + [sym_preproc_pragma] = STATE(59), + [sym_preproc_nullable] = STATE(59), + [sym_preproc_error] = STATE(59), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -38567,18 +39734,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(983), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -38592,7 +39759,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38609,23 +39776,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38651,7 +39818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -38667,126 +39834,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [58] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(58), - [sym_preproc_endregion] = STATE(58), - [sym_preproc_line] = STATE(58), - [sym_preproc_pragma] = STATE(58), - [sym_preproc_nullable] = STATE(58), - [sym_preproc_error] = STATE(58), - [sym_preproc_warning] = STATE(58), - [sym_preproc_define] = STATE(58), - [sym_preproc_undef] = STATE(58), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(37), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(60), + [sym_preproc_endregion] = STATE(60), + [sym_preproc_line] = STATE(60), + [sym_preproc_pragma] = STATE(60), + [sym_preproc_nullable] = STATE(60), + [sym_preproc_error] = STATE(60), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -38797,18 +39966,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -38822,7 +39991,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -38839,23 +40008,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -38881,7 +40050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -38897,126 +40066,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [59] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2072), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(59), - [sym_preproc_endregion] = STATE(59), - [sym_preproc_line] = STATE(59), - [sym_preproc_pragma] = STATE(59), - [sym_preproc_nullable] = STATE(59), - [sym_preproc_error] = STATE(59), - [sym_preproc_warning] = STATE(59), - [sym_preproc_define] = STATE(59), - [sym_preproc_undef] = STATE(59), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym_block_repeat1] = STATE(58), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(61), + [sym_preproc_endregion] = STATE(61), + [sym_preproc_line] = STATE(61), + [sym_preproc_pragma] = STATE(61), + [sym_preproc_nullable] = STATE(61), + [sym_preproc_error] = STATE(61), + [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_block_repeat1] = STATE(41), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -39027,18 +40198,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), + [anon_sym_return] = ACTIONS(659), + [anon_sym_ref] = ACTIONS(661), + [anon_sym_LBRACE] = ACTIONS(663), [anon_sym_RBRACE] = ACTIONS(987), - [anon_sym_delegate] = ACTIONS(671), + [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_this] = 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(695), + [anon_sym_try] = ACTIONS(697), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(699), + [anon_sym_foreach] = ACTIONS(117), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), + [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(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), + }, + [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_preproc_region] = STATE(62), + [sym_preproc_endregion] = STATE(62), + [sym_preproc_line] = STATE(62), + [sym_preproc_pragma] = STATE(62), + [sym_preproc_nullable] = STATE(62), + [sym_preproc_error] = STATE(62), + [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), + [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_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -39052,7 +40453,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39069,23 +40470,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39111,7 +40512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -39127,146 +40528,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [60] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1963), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(60), - [sym_preproc_endregion] = STATE(60), - [sym_preproc_line] = STATE(60), - [sym_preproc_pragma] = STATE(60), - [sym_preproc_nullable] = STATE(60), - [sym_preproc_error] = STATE(60), - [sym_preproc_warning] = STATE(60), - [sym_preproc_define] = STATE(60), - [sym_preproc_undef] = STATE(60), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(63), + [sym_preproc_endregion] = STATE(63), + [sym_preproc_line] = STATE(63), + [sym_preproc_pragma] = STATE(63), + [sym_preproc_nullable] = STATE(63), + [sym_preproc_error] = STATE(63), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), + [anon_sym_file] = ACTIONS(669), [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -39280,7 +40683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39297,23 +40700,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39339,7 +40742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39355,146 +40758,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [61] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1967), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(61), - [sym_preproc_endregion] = STATE(61), - [sym_preproc_line] = STATE(61), - [sym_preproc_pragma] = STATE(61), - [sym_preproc_nullable] = STATE(61), - [sym_preproc_error] = STATE(61), - [sym_preproc_warning] = STATE(61), - [sym_preproc_define] = STATE(61), - [sym_preproc_undef] = STATE(61), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(64), + [sym_preproc_endregion] = STATE(64), + [sym_preproc_line] = STATE(64), + [sym_preproc_pragma] = STATE(64), + [sym_preproc_nullable] = STATE(64), + [sym_preproc_error] = STATE(64), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), + [anon_sym_file] = ACTIONS(669), [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -39508,7 +40913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39525,23 +40930,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39567,7 +40972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39583,146 +40988,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [62] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6880), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(62), - [sym_preproc_endregion] = STATE(62), - [sym_preproc_line] = STATE(62), - [sym_preproc_pragma] = STATE(62), - [sym_preproc_nullable] = STATE(62), - [sym_preproc_error] = STATE(62), - [sym_preproc_warning] = STATE(62), - [sym_preproc_define] = STATE(62), - [sym_preproc_undef] = STATE(62), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(65), + [sym_preproc_endregion] = STATE(65), + [sym_preproc_line] = STATE(65), + [sym_preproc_pragma] = STATE(65), + [sym_preproc_nullable] = STATE(65), + [sym_preproc_error] = STATE(65), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -39736,7 +41143,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(1007), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39753,23 +41160,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -39795,7 +41202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -39811,146 +41218,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [63] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(7163), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(63), - [sym_preproc_endregion] = STATE(63), - [sym_preproc_line] = STATE(63), - [sym_preproc_pragma] = STATE(63), - [sym_preproc_nullable] = STATE(63), - [sym_preproc_error] = STATE(63), - [sym_preproc_warning] = STATE(63), - [sym_preproc_define] = STATE(63), - [sym_preproc_undef] = STATE(63), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(66), + [sym_preproc_endregion] = STATE(66), + [sym_preproc_line] = STATE(66), + [sym_preproc_pragma] = STATE(66), + [sym_preproc_nullable] = STATE(66), + [sym_preproc_error] = STATE(66), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -39964,7 +41373,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(1007), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -39981,23 +41390,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [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), @@ -40023,7 +41432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40039,146 +41448,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [64] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1889), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(64), - [sym_preproc_endregion] = STATE(64), - [sym_preproc_line] = STATE(64), - [sym_preproc_pragma] = STATE(64), - [sym_preproc_nullable] = STATE(64), - [sym_preproc_error] = STATE(64), - [sym_preproc_warning] = STATE(64), - [sym_preproc_define] = STATE(64), - [sym_preproc_undef] = STATE(64), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(67), + [sym_preproc_endregion] = STATE(67), + [sym_preproc_line] = STATE(67), + [sym_preproc_pragma] = STATE(67), + [sym_preproc_nullable] = STATE(67), + [sym_preproc_error] = STATE(67), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [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(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -40192,7 +41603,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(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40209,23 +41620,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40251,7 +41662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(705), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40267,146 +41678,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [65] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1964), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(65), - [sym_preproc_endregion] = STATE(65), - [sym_preproc_line] = STATE(65), - [sym_preproc_pragma] = STATE(65), - [sym_preproc_nullable] = STATE(65), - [sym_preproc_error] = STATE(65), - [sym_preproc_warning] = STATE(65), - [sym_preproc_define] = STATE(65), - [sym_preproc_undef] = STATE(65), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(68), + [sym_preproc_endregion] = STATE(68), + [sym_preproc_line] = STATE(68), + [sym_preproc_pragma] = STATE(68), + [sym_preproc_nullable] = STATE(68), + [sym_preproc_error] = STATE(68), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [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(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -40420,7 +41833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40437,23 +41850,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -40479,7 +41892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -40495,146 +41908,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [66] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2045), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(66), - [sym_preproc_endregion] = STATE(66), - [sym_preproc_line] = STATE(66), - [sym_preproc_pragma] = STATE(66), - [sym_preproc_nullable] = STATE(66), - [sym_preproc_error] = STATE(66), - [sym_preproc_warning] = STATE(66), - [sym_preproc_define] = STATE(66), - [sym_preproc_undef] = STATE(66), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(69), + [sym_preproc_endregion] = STATE(69), + [sym_preproc_line] = STATE(69), + [sym_preproc_pragma] = STATE(69), + [sym_preproc_nullable] = STATE(69), + [sym_preproc_error] = STATE(69), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [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_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -40648,7 +42063,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(679), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -40665,23 +42080,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [anon_sym_break] = ACTIONS(93), + [anon_sym_unchecked] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(95), + [anon_sym_do] = ACTIONS(97), + [anon_sym_while] = ACTIONS(99), + [anon_sym_for] = ACTIONS(101), + [anon_sym_lock] = ACTIONS(103), + [anon_sym_yield] = ACTIONS(105), + [anon_sym_switch] = ACTIONS(107), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [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), @@ -40707,7 +42122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40723,146 +42138,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [67] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1950), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(67), - [sym_preproc_endregion] = STATE(67), - [sym_preproc_line] = STATE(67), - [sym_preproc_pragma] = STATE(67), - [sym_preproc_nullable] = STATE(67), - [sym_preproc_error] = STATE(67), - [sym_preproc_warning] = STATE(67), - [sym_preproc_define] = STATE(67), - [sym_preproc_undef] = STATE(67), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [70] = { + [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(2032), + [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_preproc_region] = STATE(70), + [sym_preproc_endregion] = STATE(70), + [sym_preproc_line] = STATE(70), + [sym_preproc_pragma] = STATE(70), + [sym_preproc_nullable] = STATE(70), + [sym_preproc_error] = STATE(70), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(661), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -40935,7 +42352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -40951,146 +42368,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [68] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1869), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(68), - [sym_preproc_endregion] = STATE(68), - [sym_preproc_line] = STATE(68), - [sym_preproc_pragma] = STATE(68), - [sym_preproc_nullable] = STATE(68), - [sym_preproc_error] = STATE(68), - [sym_preproc_warning] = STATE(68), - [sym_preproc_define] = STATE(68), - [sym_preproc_undef] = STATE(68), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(71), + [sym_preproc_endregion] = STATE(71), + [sym_preproc_line] = STATE(71), + [sym_preproc_pragma] = STATE(71), + [sym_preproc_nullable] = STATE(71), + [sym_preproc_error] = STATE(71), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -41104,7 +42523,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(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41121,23 +42540,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41163,7 +42582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41179,146 +42598,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [69] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1965), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(69), - [sym_preproc_endregion] = STATE(69), - [sym_preproc_line] = STATE(69), - [sym_preproc_pragma] = STATE(69), - [sym_preproc_nullable] = STATE(69), - [sym_preproc_error] = STATE(69), - [sym_preproc_warning] = STATE(69), - [sym_preproc_define] = STATE(69), - [sym_preproc_undef] = STATE(69), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(72), + [sym_preproc_endregion] = STATE(72), + [sym_preproc_line] = STATE(72), + [sym_preproc_pragma] = STATE(72), + [sym_preproc_nullable] = STATE(72), + [sym_preproc_error] = STATE(72), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [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(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -41332,7 +42753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41349,23 +42770,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -41391,7 +42812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -41407,146 +42828,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [70] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1873), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(70), - [sym_preproc_endregion] = STATE(70), - [sym_preproc_line] = STATE(70), - [sym_preproc_pragma] = STATE(70), - [sym_preproc_nullable] = STATE(70), - [sym_preproc_error] = STATE(70), - [sym_preproc_warning] = STATE(70), - [sym_preproc_define] = STATE(70), - [sym_preproc_undef] = STATE(70), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(73), + [sym_preproc_endregion] = STATE(73), + [sym_preproc_line] = STATE(73), + [sym_preproc_pragma] = STATE(73), + [sym_preproc_nullable] = STATE(73), + [sym_preproc_error] = STATE(73), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -41560,7 +42983,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41577,23 +43000,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -41619,7 +43042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41635,146 +43058,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [71] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1902), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(71), - [sym_preproc_endregion] = STATE(71), - [sym_preproc_line] = STATE(71), - [sym_preproc_pragma] = STATE(71), - [sym_preproc_nullable] = STATE(71), - [sym_preproc_error] = STATE(71), - [sym_preproc_warning] = STATE(71), - [sym_preproc_define] = STATE(71), - [sym_preproc_undef] = STATE(71), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(74), + [sym_preproc_endregion] = STATE(74), + [sym_preproc_line] = STATE(74), + [sym_preproc_pragma] = STATE(74), + [sym_preproc_nullable] = STATE(74), + [sym_preproc_error] = STATE(74), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -41788,7 +43213,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -41805,23 +43230,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -41847,7 +43272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -41863,146 +43288,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [72] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1875), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(72), - [sym_preproc_endregion] = STATE(72), - [sym_preproc_line] = STATE(72), - [sym_preproc_pragma] = STATE(72), - [sym_preproc_nullable] = STATE(72), - [sym_preproc_error] = STATE(72), - [sym_preproc_warning] = STATE(72), - [sym_preproc_define] = STATE(72), - [sym_preproc_undef] = STATE(72), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(75), + [sym_preproc_endregion] = STATE(75), + [sym_preproc_line] = STATE(75), + [sym_preproc_pragma] = STATE(75), + [sym_preproc_nullable] = STATE(75), + [sym_preproc_error] = STATE(75), + [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_repeat2] = STATE(2536), + [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(161), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -42016,7 +43443,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(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42033,23 +43460,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42075,7 +43502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42091,146 +43518,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [73] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6838), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(73), - [sym_preproc_endregion] = STATE(73), - [sym_preproc_line] = STATE(73), - [sym_preproc_pragma] = STATE(73), - [sym_preproc_nullable] = STATE(73), - [sym_preproc_error] = STATE(73), - [sym_preproc_warning] = STATE(73), - [sym_preproc_define] = STATE(73), - [sym_preproc_undef] = STATE(73), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(76), + [sym_preproc_endregion] = STATE(76), + [sym_preproc_line] = STATE(76), + [sym_preproc_pragma] = STATE(76), + [sym_preproc_nullable] = STATE(76), + [sym_preproc_error] = STATE(76), + [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_repeat2] = STATE(2536), + [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(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -42244,7 +43673,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42261,23 +43690,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42303,7 +43732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42319,146 +43748,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [74] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6845), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(74), - [sym_preproc_endregion] = STATE(74), - [sym_preproc_line] = STATE(74), - [sym_preproc_pragma] = STATE(74), - [sym_preproc_nullable] = STATE(74), - [sym_preproc_error] = STATE(74), - [sym_preproc_warning] = STATE(74), - [sym_preproc_define] = STATE(74), - [sym_preproc_undef] = STATE(74), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(77), + [sym_preproc_endregion] = STATE(77), + [sym_preproc_line] = STATE(77), + [sym_preproc_pragma] = STATE(77), + [sym_preproc_nullable] = STATE(77), + [sym_preproc_error] = STATE(77), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -42472,7 +43903,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(1007), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42489,23 +43920,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [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), @@ -42531,7 +43962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42547,146 +43978,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [75] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6894), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(75), - [sym_preproc_endregion] = STATE(75), - [sym_preproc_line] = STATE(75), - [sym_preproc_pragma] = STATE(75), - [sym_preproc_nullable] = STATE(75), - [sym_preproc_error] = STATE(75), - [sym_preproc_warning] = STATE(75), - [sym_preproc_define] = STATE(75), - [sym_preproc_undef] = STATE(75), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(78), + [sym_preproc_endregion] = STATE(78), + [sym_preproc_line] = STATE(78), + [sym_preproc_pragma] = STATE(78), + [sym_preproc_nullable] = STATE(78), + [sym_preproc_error] = STATE(78), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -42700,7 +44133,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42717,23 +44150,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -42759,7 +44192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -42775,146 +44208,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [76] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1880), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(76), - [sym_preproc_endregion] = STATE(76), - [sym_preproc_line] = STATE(76), - [sym_preproc_pragma] = STATE(76), - [sym_preproc_nullable] = STATE(76), - [sym_preproc_error] = STATE(76), - [sym_preproc_warning] = STATE(76), - [sym_preproc_define] = STATE(76), - [sym_preproc_undef] = STATE(76), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [79] = { + [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(2039), + [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_preproc_region] = STATE(79), + [sym_preproc_endregion] = STATE(79), + [sym_preproc_line] = STATE(79), + [sym_preproc_pragma] = STATE(79), + [sym_preproc_nullable] = STATE(79), + [sym_preproc_error] = STATE(79), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -42928,7 +44363,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -42945,23 +44380,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -42987,7 +44422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43003,146 +44438,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [77] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6846), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(77), - [sym_preproc_endregion] = STATE(77), - [sym_preproc_line] = STATE(77), - [sym_preproc_pragma] = STATE(77), - [sym_preproc_nullable] = STATE(77), - [sym_preproc_error] = STATE(77), - [sym_preproc_warning] = STATE(77), - [sym_preproc_define] = STATE(77), - [sym_preproc_undef] = STATE(77), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(80), + [sym_preproc_endregion] = STATE(80), + [sym_preproc_line] = STATE(80), + [sym_preproc_pragma] = STATE(80), + [sym_preproc_nullable] = STATE(80), + [sym_preproc_error] = STATE(80), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [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(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -43156,7 +44593,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(1007), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43173,23 +44610,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43215,7 +44652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [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), @@ -43231,146 +44668,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [78] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1894), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(78), - [sym_preproc_endregion] = STATE(78), - [sym_preproc_line] = STATE(78), - [sym_preproc_pragma] = STATE(78), - [sym_preproc_nullable] = STATE(78), - [sym_preproc_error] = STATE(78), - [sym_preproc_warning] = STATE(78), - [sym_preproc_define] = STATE(78), - [sym_preproc_undef] = STATE(78), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(81), + [sym_preproc_endregion] = STATE(81), + [sym_preproc_line] = STATE(81), + [sym_preproc_pragma] = STATE(81), + [sym_preproc_nullable] = STATE(81), + [sym_preproc_error] = STATE(81), + [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_repeat2] = STATE(2536), + [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(161), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -43384,7 +44823,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(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43401,23 +44840,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43443,7 +44882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43459,146 +44898,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [79] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(7072), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(79), - [sym_preproc_endregion] = STATE(79), - [sym_preproc_line] = STATE(79), - [sym_preproc_pragma] = STATE(79), - [sym_preproc_nullable] = STATE(79), - [sym_preproc_error] = STATE(79), - [sym_preproc_warning] = STATE(79), - [sym_preproc_define] = STATE(79), - [sym_preproc_undef] = STATE(79), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(82), + [sym_preproc_endregion] = STATE(82), + [sym_preproc_line] = STATE(82), + [sym_preproc_pragma] = STATE(82), + [sym_preproc_nullable] = STATE(82), + [sym_preproc_error] = STATE(82), + [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_repeat2] = STATE(2536), + [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(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -43612,7 +45053,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43629,23 +45070,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -43671,7 +45112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43687,146 +45128,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [80] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1872), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(80), - [sym_preproc_endregion] = STATE(80), - [sym_preproc_line] = STATE(80), - [sym_preproc_pragma] = STATE(80), - [sym_preproc_nullable] = STATE(80), - [sym_preproc_error] = STATE(80), - [sym_preproc_warning] = STATE(80), - [sym_preproc_define] = STATE(80), - [sym_preproc_undef] = STATE(80), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [83] = { + [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(2045), + [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_preproc_region] = STATE(83), + [sym_preproc_endregion] = STATE(83), + [sym_preproc_line] = STATE(83), + [sym_preproc_pragma] = STATE(83), + [sym_preproc_nullable] = STATE(83), + [sym_preproc_error] = STATE(83), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -43840,7 +45283,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(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -43857,23 +45300,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [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), @@ -43899,7 +45342,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -43915,146 +45358,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [81] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1954), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(81), - [sym_preproc_endregion] = STATE(81), - [sym_preproc_line] = STATE(81), - [sym_preproc_pragma] = STATE(81), - [sym_preproc_nullable] = STATE(81), - [sym_preproc_error] = STATE(81), - [sym_preproc_warning] = STATE(81), - [sym_preproc_define] = STATE(81), - [sym_preproc_undef] = STATE(81), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [84] = { + [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(2008), + [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_preproc_region] = STATE(84), + [sym_preproc_endregion] = STATE(84), + [sym_preproc_line] = STATE(84), + [sym_preproc_pragma] = STATE(84), + [sym_preproc_nullable] = STATE(84), + [sym_preproc_error] = STATE(84), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(31), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_using] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(999), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(661), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -44127,7 +45572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44143,146 +45588,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [82] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2035), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(82), - [sym_preproc_endregion] = STATE(82), - [sym_preproc_line] = STATE(82), - [sym_preproc_pragma] = STATE(82), - [sym_preproc_nullable] = STATE(82), - [sym_preproc_error] = STATE(82), - [sym_preproc_warning] = STATE(82), - [sym_preproc_define] = STATE(82), - [sym_preproc_undef] = STATE(82), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(85), + [sym_preproc_endregion] = STATE(85), + [sym_preproc_line] = STATE(85), + [sym_preproc_pragma] = STATE(85), + [sym_preproc_nullable] = STATE(85), + [sym_preproc_error] = STATE(85), + [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_repeat2] = STATE(2536), + [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_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -44296,7 +45743,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(679), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44313,23 +45760,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44355,7 +45802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44371,146 +45818,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [83] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6847), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(83), - [sym_preproc_endregion] = STATE(83), - [sym_preproc_line] = STATE(83), - [sym_preproc_pragma] = STATE(83), - [sym_preproc_nullable] = STATE(83), - [sym_preproc_error] = STATE(83), - [sym_preproc_warning] = STATE(83), - [sym_preproc_define] = STATE(83), - [sym_preproc_undef] = STATE(83), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(86), + [sym_preproc_endregion] = STATE(86), + [sym_preproc_line] = STATE(86), + [sym_preproc_pragma] = STATE(86), + [sym_preproc_nullable] = STATE(86), + [sym_preproc_error] = STATE(86), + [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_repeat2] = STATE(2536), + [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(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -44524,7 +45973,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44541,23 +45990,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44583,7 +46032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44599,146 +46048,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [84] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(7212), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(84), - [sym_preproc_endregion] = STATE(84), - [sym_preproc_line] = STATE(84), - [sym_preproc_pragma] = STATE(84), - [sym_preproc_nullable] = STATE(84), - [sym_preproc_error] = STATE(84), - [sym_preproc_warning] = STATE(84), - [sym_preproc_define] = STATE(84), - [sym_preproc_undef] = STATE(84), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(87), + [sym_preproc_endregion] = STATE(87), + [sym_preproc_line] = STATE(87), + [sym_preproc_pragma] = STATE(87), + [sym_preproc_nullable] = STATE(87), + [sym_preproc_error] = STATE(87), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -44752,7 +46203,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44769,23 +46220,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -44811,7 +46262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -44827,146 +46278,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [85] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(7327), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), + [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(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(85), - [sym_preproc_endregion] = STATE(85), - [sym_preproc_line] = STATE(85), - [sym_preproc_pragma] = STATE(85), - [sym_preproc_nullable] = STATE(85), - [sym_preproc_error] = STATE(85), - [sym_preproc_warning] = STATE(85), - [sym_preproc_define] = STATE(85), - [sym_preproc_undef] = STATE(85), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(88), + [sym_preproc_endregion] = STATE(88), + [sym_preproc_line] = STATE(88), + [sym_preproc_pragma] = STATE(88), + [sym_preproc_nullable] = STATE(88), + [sym_preproc_error] = STATE(88), + [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_repeat2] = STATE(2536), + [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(995), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -44980,7 +46433,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(1007), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -44997,23 +46450,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45039,7 +46492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45055,146 +46508,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [86] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1943), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(86), - [sym_preproc_endregion] = STATE(86), - [sym_preproc_line] = STATE(86), - [sym_preproc_pragma] = STATE(86), - [sym_preproc_nullable] = STATE(86), - [sym_preproc_error] = STATE(86), - [sym_preproc_warning] = STATE(86), - [sym_preproc_define] = STATE(86), - [sym_preproc_undef] = STATE(86), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(89), + [sym_preproc_endregion] = STATE(89), + [sym_preproc_line] = STATE(89), + [sym_preproc_pragma] = STATE(89), + [sym_preproc_nullable] = STATE(89), + [sym_preproc_error] = STATE(89), + [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_repeat2] = STATE(2536), + [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(31), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -45208,7 +46663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45225,23 +46680,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45267,7 +46722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45283,146 +46738,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [87] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1972), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(87), - [sym_preproc_endregion] = STATE(87), - [sym_preproc_line] = STATE(87), - [sym_preproc_pragma] = STATE(87), - [sym_preproc_nullable] = STATE(87), - [sym_preproc_error] = STATE(87), - [sym_preproc_warning] = STATE(87), - [sym_preproc_define] = STATE(87), - [sym_preproc_undef] = STATE(87), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(90), + [sym_preproc_endregion] = STATE(90), + [sym_preproc_line] = STATE(90), + [sym_preproc_pragma] = STATE(90), + [sym_preproc_nullable] = STATE(90), + [sym_preproc_error] = STATE(90), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -45436,7 +46893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45453,23 +46910,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(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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45495,7 +46952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45511,146 +46968,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [88] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6848), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(88), - [sym_preproc_endregion] = STATE(88), - [sym_preproc_line] = STATE(88), - [sym_preproc_pragma] = STATE(88), - [sym_preproc_nullable] = STATE(88), - [sym_preproc_error] = STATE(88), - [sym_preproc_warning] = STATE(88), - [sym_preproc_define] = STATE(88), - [sym_preproc_undef] = STATE(88), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(91), + [sym_preproc_endregion] = STATE(91), + [sym_preproc_line] = STATE(91), + [sym_preproc_pragma] = STATE(91), + [sym_preproc_nullable] = STATE(91), + [sym_preproc_error] = STATE(91), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -45664,7 +47123,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(1007), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45681,23 +47140,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45723,7 +47182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45739,146 +47198,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [89] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6828), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(89), - [sym_preproc_endregion] = STATE(89), - [sym_preproc_line] = STATE(89), - [sym_preproc_pragma] = STATE(89), - [sym_preproc_nullable] = STATE(89), - [sym_preproc_error] = STATE(89), - [sym_preproc_warning] = STATE(89), - [sym_preproc_define] = STATE(89), - [sym_preproc_undef] = STATE(89), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(92), + [sym_preproc_endregion] = STATE(92), + [sym_preproc_line] = STATE(92), + [sym_preproc_pragma] = STATE(92), + [sym_preproc_nullable] = STATE(92), + [sym_preproc_error] = STATE(92), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -45892,7 +47353,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(1007), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -45909,23 +47370,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -45951,7 +47412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -45967,125 +47428,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [90] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2026), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(90), - [sym_preproc_endregion] = STATE(90), - [sym_preproc_line] = STATE(90), - [sym_preproc_pragma] = STATE(90), - [sym_preproc_nullable] = STATE(90), - [sym_preproc_error] = STATE(90), - [sym_preproc_warning] = STATE(90), - [sym_preproc_define] = STATE(90), - [sym_preproc_undef] = STATE(90), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(93), + [sym_preproc_endregion] = STATE(93), + [sym_preproc_line] = STATE(93), + [sym_preproc_pragma] = STATE(93), + [sym_preproc_nullable] = STATE(93), + [sym_preproc_error] = STATE(93), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -46096,17 +47559,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -46120,7 +47583,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46137,23 +47600,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46179,7 +47642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -46195,146 +47658,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [91] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2028), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), + [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(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(91), - [sym_preproc_endregion] = STATE(91), - [sym_preproc_line] = STATE(91), - [sym_preproc_pragma] = STATE(91), - [sym_preproc_nullable] = STATE(91), - [sym_preproc_error] = STATE(91), - [sym_preproc_warning] = STATE(91), - [sym_preproc_define] = STATE(91), - [sym_preproc_undef] = STATE(91), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(94), + [sym_preproc_endregion] = STATE(94), + [sym_preproc_line] = STATE(94), + [sym_preproc_pragma] = STATE(94), + [sym_preproc_nullable] = STATE(94), + [sym_preproc_error] = STATE(94), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [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_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -46348,7 +47813,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(679), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46365,23 +47830,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46407,7 +47872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46423,146 +47888,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [92] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1874), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(92), - [sym_preproc_endregion] = STATE(92), - [sym_preproc_line] = STATE(92), - [sym_preproc_pragma] = STATE(92), - [sym_preproc_nullable] = STATE(92), - [sym_preproc_error] = STATE(92), - [sym_preproc_warning] = STATE(92), - [sym_preproc_define] = STATE(92), - [sym_preproc_undef] = STATE(92), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(95), + [sym_preproc_endregion] = STATE(95), + [sym_preproc_line] = STATE(95), + [sym_preproc_pragma] = STATE(95), + [sym_preproc_nullable] = STATE(95), + [sym_preproc_error] = STATE(95), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), [anon_sym_return] = ACTIONS(171), - [anon_sym_ref] = ACTIONS(719), + [anon_sym_ref] = ACTIONS(661), [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [anon_sym_delegate] = ACTIONS(667), [anon_sym_abstract] = ACTIONS(647), [anon_sym_async] = ACTIONS(655), [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -46635,7 +48102,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46651,146 +48118,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [93] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1876), - [sym_variable_declaration] = STATE(7452), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1877), - [sym_break_statement] = STATE(1876), - [sym_checked_statement] = STATE(1876), - [sym_continue_statement] = STATE(1876), - [sym_do_statement] = STATE(1876), - [sym_empty_statement] = STATE(1876), - [sym_expression_statement] = STATE(1876), - [sym_fixed_statement] = STATE(1876), - [sym_for_statement] = STATE(1876), - [sym_return_statement] = STATE(1876), - [sym_lock_statement] = STATE(1876), - [sym_yield_statement] = STATE(1876), - [sym_switch_statement] = STATE(1876), - [sym_throw_statement] = STATE(1876), - [sym_try_statement] = STATE(1876), - [sym_unsafe_statement] = STATE(1876), - [sym_using_statement] = STATE(1876), - [sym_foreach_statement] = STATE(1876), - [sym__foreach_statement_initializer] = STATE(71), - [sym_goto_statement] = STATE(1876), - [sym_labeled_statement] = STATE(1876), - [sym_if_statement] = STATE(1876), - [sym_while_statement] = STATE(1876), - [sym_local_declaration_statement] = STATE(1876), - [sym_local_function_statement] = STATE(1876), - [sym__local_function_declaration] = STATE(6115), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5014), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2203), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1876), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(93), - [sym_preproc_endregion] = STATE(93), - [sym_preproc_line] = STATE(93), - [sym_preproc_pragma] = STATE(93), - [sym_preproc_nullable] = STATE(93), - [sym_preproc_error] = STATE(93), - [sym_preproc_warning] = STATE(93), - [sym_preproc_define] = STATE(93), - [sym_preproc_undef] = STATE(93), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2452), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(96), + [sym_preproc_endregion] = STATE(96), + [sym_preproc_line] = STATE(96), + [sym_preproc_pragma] = STATE(96), + [sym_preproc_nullable] = STATE(96), + [sym_preproc_error] = STATE(96), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(161), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(1037), - [anon_sym_unsafe] = ACTIONS(1039), + [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(171), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(177), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1041), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -46804,7 +48273,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(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -46821,23 +48290,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(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(199), - [anon_sym_try] = ACTIONS(201), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(203), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(205), - [anon_sym_if] = ACTIONS(207), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -46863,7 +48332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(705), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -46879,125 +48348,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [94] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2042), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(94), - [sym_preproc_endregion] = STATE(94), - [sym_preproc_line] = STATE(94), - [sym_preproc_pragma] = STATE(94), - [sym_preproc_nullable] = STATE(94), - [sym_preproc_error] = STATE(94), - [sym_preproc_warning] = STATE(94), - [sym_preproc_define] = STATE(94), - [sym_preproc_undef] = STATE(94), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(97), + [sym_preproc_endregion] = STATE(97), + [sym_preproc_line] = STATE(97), + [sym_preproc_pragma] = STATE(97), + [sym_preproc_nullable] = STATE(97), + [sym_preproc_error] = STATE(97), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -47008,17 +48479,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -47032,7 +48503,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47049,23 +48520,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47091,7 +48562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -47107,146 +48578,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [95] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6836), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(95), - [sym_preproc_endregion] = STATE(95), - [sym_preproc_line] = STATE(95), - [sym_preproc_pragma] = STATE(95), - [sym_preproc_nullable] = STATE(95), - [sym_preproc_error] = STATE(95), - [sym_preproc_warning] = STATE(95), - [sym_preproc_define] = STATE(95), - [sym_preproc_undef] = STATE(95), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(98), + [sym_preproc_endregion] = STATE(98), + [sym_preproc_line] = STATE(98), + [sym_preproc_pragma] = STATE(98), + [sym_preproc_nullable] = STATE(98), + [sym_preproc_error] = STATE(98), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_SEMI] = ACTIONS(161), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -47260,7 +48733,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(1007), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47277,23 +48750,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47319,7 +48792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47335,146 +48808,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [96] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2046), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), + [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(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(96), - [sym_preproc_endregion] = STATE(96), - [sym_preproc_line] = STATE(96), - [sym_preproc_pragma] = STATE(96), - [sym_preproc_nullable] = STATE(96), - [sym_preproc_error] = STATE(96), - [sym_preproc_warning] = STATE(96), - [sym_preproc_define] = STATE(96), - [sym_preproc_undef] = STATE(96), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(99), + [sym_preproc_endregion] = STATE(99), + [sym_preproc_line] = STATE(99), + [sym_preproc_pragma] = STATE(99), + [sym_preproc_nullable] = STATE(99), + [sym_preproc_error] = STATE(99), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [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_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -47488,7 +48963,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(679), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47505,23 +48980,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47547,7 +49022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47563,146 +49038,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [97] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2047), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), + [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(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(97), - [sym_preproc_endregion] = STATE(97), - [sym_preproc_line] = STATE(97), - [sym_preproc_pragma] = STATE(97), - [sym_preproc_nullable] = STATE(97), - [sym_preproc_error] = STATE(97), - [sym_preproc_warning] = STATE(97), - [sym_preproc_define] = STATE(97), - [sym_preproc_undef] = STATE(97), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(100), + [sym_preproc_endregion] = STATE(100), + [sym_preproc_line] = STATE(100), + [sym_preproc_pragma] = STATE(100), + [sym_preproc_nullable] = STATE(100), + [sym_preproc_error] = STATE(100), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [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_using] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(991), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(993), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -47716,7 +49193,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(679), + [anon_sym_checked] = ACTIONS(181), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47733,23 +49210,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(199), + [anon_sym_try] = ACTIONS(201), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(203), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(205), + [anon_sym_if] = ACTIONS(207), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -47775,7 +49252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -47791,125 +49268,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [98] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2053), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(98), - [sym_preproc_endregion] = STATE(98), - [sym_preproc_line] = STATE(98), - [sym_preproc_pragma] = STATE(98), - [sym_preproc_nullable] = STATE(98), - [sym_preproc_error] = STATE(98), - [sym_preproc_warning] = STATE(98), - [sym_preproc_define] = STATE(98), - [sym_preproc_undef] = STATE(98), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__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(101), + [sym_preproc_endregion] = STATE(101), + [sym_preproc_line] = STATE(101), + [sym_preproc_pragma] = STATE(101), + [sym_preproc_nullable] = STATE(101), + [sym_preproc_error] = STATE(101), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), @@ -47920,17 +49399,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -47944,7 +49423,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(679), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -47961,23 +49440,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48003,7 +49482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [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), @@ -48019,146 +49498,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [99] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1971), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(99), - [sym_preproc_endregion] = STATE(99), - [sym_preproc_line] = STATE(99), - [sym_preproc_pragma] = STATE(99), - [sym_preproc_nullable] = STATE(99), - [sym_preproc_error] = STATE(99), - [sym_preproc_warning] = STATE(99), - [sym_preproc_define] = STATE(99), - [sym_preproc_undef] = STATE(99), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(102), + [sym_preproc_endregion] = STATE(102), + [sym_preproc_line] = STATE(102), + [sym_preproc_pragma] = STATE(102), + [sym_preproc_nullable] = STATE(102), + [sym_preproc_error] = STATE(102), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), + [anon_sym_SEMI] = ACTIONS(649), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(989), - [anon_sym_unsafe] = ACTIONS(991), + [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(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(993), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(671), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -48172,7 +49653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(73), + [anon_sym_checked] = ACTIONS(675), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48189,23 +49670,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(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(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(695), + [anon_sym_try] = ACTIONS(697), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(115), + [anon_sym_await] = ACTIONS(699), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(119), - [anon_sym_if] = ACTIONS(121), + [anon_sym_goto] = ACTIONS(701), + [anon_sym_if] = ACTIONS(703), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48231,7 +49712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -48247,146 +49728,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [100] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2037), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(100), - [sym_preproc_endregion] = STATE(100), - [sym_preproc_line] = STATE(100), - [sym_preproc_pragma] = STATE(100), - [sym_preproc_nullable] = STATE(100), - [sym_preproc_error] = STATE(100), - [sym_preproc_warning] = STATE(100), - [sym_preproc_define] = STATE(100), - [sym_preproc_undef] = STATE(100), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(103), + [sym_preproc_endregion] = STATE(103), + [sym_preproc_line] = STATE(103), + [sym_preproc_pragma] = STATE(103), + [sym_preproc_nullable] = STATE(103), + [sym_preproc_error] = STATE(103), + [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_repeat2] = STATE(2536), + [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_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -48400,7 +49883,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(679), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48417,23 +49900,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48459,7 +49942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48475,146 +49958,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [101] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2069), - [sym_variable_declaration] = STATE(7384), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(2060), - [sym_break_statement] = STATE(2069), - [sym_checked_statement] = STATE(2069), - [sym_continue_statement] = STATE(2069), - [sym_do_statement] = STATE(2069), - [sym_empty_statement] = STATE(2069), - [sym_expression_statement] = STATE(2069), - [sym_fixed_statement] = STATE(2069), - [sym_for_statement] = STATE(2069), - [sym_return_statement] = STATE(2069), - [sym_lock_statement] = STATE(2069), - [sym_yield_statement] = STATE(2069), - [sym_switch_statement] = STATE(2069), - [sym_throw_statement] = STATE(2069), - [sym_try_statement] = STATE(2069), - [sym_unsafe_statement] = STATE(2069), - [sym_using_statement] = STATE(2069), - [sym_foreach_statement] = STATE(2069), - [sym__foreach_statement_initializer] = STATE(91), - [sym_goto_statement] = STATE(2069), - [sym_labeled_statement] = STATE(2069), - [sym_if_statement] = STATE(2069), - [sym_while_statement] = STATE(2069), - [sym_local_declaration_statement] = STATE(2069), - [sym_local_function_statement] = STATE(2069), - [sym__local_function_declaration] = STATE(6092), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5190), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2212), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(2069), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(101), - [sym_preproc_endregion] = STATE(101), - [sym_preproc_line] = STATE(101), - [sym_preproc_pragma] = STATE(101), - [sym_preproc_nullable] = STATE(101), - [sym_preproc_error] = STATE(101), - [sym_preproc_warning] = STATE(101), - [sym_preproc_define] = STATE(101), - [sym_preproc_undef] = STATE(101), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2473), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(104), + [sym_preproc_endregion] = STATE(104), + [sym_preproc_line] = STATE(104), + [sym_preproc_pragma] = STATE(104), + [sym_preproc_nullable] = STATE(104), + [sym_preproc_error] = STATE(104), + [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_repeat2] = STATE(2536), + [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_SEMI] = ACTIONS(1005), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(651), - [anon_sym_unsafe] = ACTIONS(653), + [anon_sym_using] = ACTIONS(1007), + [anon_sym_unsafe] = ACTIONS(1009), [anon_sym_static] = ACTIONS(655), [anon_sym_LBRACK] = ACTIONS(657), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(663), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(675), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1015), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -48628,7 +50113,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(679), + [anon_sym_checked] = ACTIONS(1017), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48645,23 +50130,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(687), - [anon_sym_unchecked] = ACTIONS(679), - [anon_sym_continue] = ACTIONS(689), - [anon_sym_do] = ACTIONS(691), - [anon_sym_while] = ACTIONS(693), - [anon_sym_for] = ACTIONS(695), - [anon_sym_lock] = ACTIONS(697), - [anon_sym_yield] = ACTIONS(699), - [anon_sym_switch] = ACTIONS(701), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(725), - [anon_sym_try] = ACTIONS(705), + [anon_sym_throw] = ACTIONS(1035), + [anon_sym_try] = ACTIONS(1037), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(727), + [anon_sym_await] = ACTIONS(1039), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(709), - [anon_sym_if] = ACTIONS(711), + [anon_sym_goto] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1043), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -48687,7 +50172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(715), + [aux_sym_preproc_if_token1] = ACTIONS(1045), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48703,146 +50188,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [102] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(6919), - [sym_variable_declaration] = STATE(7116), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(6863), - [sym_break_statement] = STATE(6919), - [sym_checked_statement] = STATE(6919), - [sym_continue_statement] = STATE(6919), - [sym_do_statement] = STATE(6919), - [sym_empty_statement] = STATE(6919), - [sym_expression_statement] = STATE(6919), - [sym_fixed_statement] = STATE(6919), - [sym_for_statement] = STATE(6919), - [sym_return_statement] = STATE(6919), - [sym_lock_statement] = STATE(6919), - [sym_yield_statement] = STATE(6919), - [sym_switch_statement] = STATE(6919), - [sym_throw_statement] = STATE(6919), - [sym_try_statement] = STATE(6919), - [sym_unsafe_statement] = STATE(6919), - [sym_using_statement] = STATE(6919), - [sym_foreach_statement] = STATE(6919), - [sym__foreach_statement_initializer] = STATE(75), - [sym_goto_statement] = STATE(6919), - [sym_labeled_statement] = STATE(6919), - [sym_if_statement] = STATE(6919), - [sym_while_statement] = STATE(6919), - [sym_local_declaration_statement] = STATE(6919), - [sym_local_function_statement] = STATE(6919), - [sym__local_function_declaration] = STATE(6131), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5548), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(6919), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(102), - [sym_preproc_endregion] = STATE(102), - [sym_preproc_line] = STATE(102), - [sym_preproc_pragma] = STATE(102), - [sym_preproc_nullable] = STATE(102), - [sym_preproc_error] = STATE(102), - [sym_preproc_warning] = STATE(102), - [sym_preproc_define] = STATE(102), - [sym_preproc_undef] = STATE(102), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2454), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [105] = { + [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(2040), + [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_preproc_region] = STATE(105), + [sym_preproc_endregion] = STATE(105), + [sym_preproc_line] = STATE(105), + [sym_preproc_pragma] = STATE(105), + [sym_preproc_nullable] = STATE(105), + [sym_preproc_error] = STATE(105), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(995), + [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(1001), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1003), - [anon_sym_delegate] = ACTIONS(671), + [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(673), - [anon_sym_fixed] = ACTIONS(1005), + [anon_sym_file] = ACTIONS(669), + [anon_sym_fixed] = ACTIONS(1001), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), + [anon_sym_new] = ACTIONS(673), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -48856,7 +50343,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(1007), + [anon_sym_checked] = ACTIONS(73), [anon_sym_BANG] = ACTIONS(75), [anon_sym_TILDE] = ACTIONS(75), [anon_sym_PLUS_PLUS] = ACTIONS(75), @@ -48873,23 +50360,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(1009), - [anon_sym_unchecked] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1013), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1017), - [anon_sym_lock] = ACTIONS(1019), - [anon_sym_yield] = ACTIONS(1021), - [anon_sym_switch] = ACTIONS(1023), + [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(1025), - [anon_sym_try] = ACTIONS(1027), + [anon_sym_throw] = ACTIONS(111), + [anon_sym_try] = ACTIONS(113), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(115), [anon_sym_foreach] = ACTIONS(117), - [anon_sym_goto] = ACTIONS(1031), - [anon_sym_if] = ACTIONS(1033), + [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), @@ -48915,7 +50402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1035), + [aux_sym_preproc_if_token1] = ACTIONS(1003), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -48931,194 +50418,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [103] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(1949), - [sym_variable_declaration] = STATE(7382), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5628), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_statement] = STATE(1982), - [sym_break_statement] = STATE(1949), - [sym_checked_statement] = STATE(1949), - [sym_continue_statement] = STATE(1949), - [sym_do_statement] = STATE(1949), - [sym_empty_statement] = STATE(1949), - [sym_expression_statement] = STATE(1949), - [sym_fixed_statement] = STATE(1949), - [sym_for_statement] = STATE(1949), - [sym_return_statement] = STATE(1949), - [sym_lock_statement] = STATE(1949), - [sym_yield_statement] = STATE(1949), - [sym_switch_statement] = STATE(1949), - [sym_throw_statement] = STATE(1949), - [sym_try_statement] = STATE(1949), - [sym_unsafe_statement] = STATE(1949), - [sym_using_statement] = STATE(1949), - [sym_foreach_statement] = STATE(1949), - [sym__foreach_statement_initializer] = STATE(103), - [sym_goto_statement] = STATE(1949), - [sym_labeled_statement] = STATE(1949), - [sym_if_statement] = STATE(1949), - [sym_while_statement] = STATE(1949), - [sym_local_declaration_statement] = STATE(1949), - [sym_local_function_statement] = STATE(1949), - [sym__local_function_declaration] = STATE(6123), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(5549), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2263), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_top_level] = STATE(1949), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(103), - [sym_preproc_endregion] = STATE(103), - [sym_preproc_line] = STATE(103), - [sym_preproc_pragma] = STATE(103), - [sym_preproc_nullable] = STATE(103), - [sym_preproc_error] = STATE(103), - [sym_preproc_warning] = STATE(103), - [sym_preproc_define] = STATE(103), - [sym_preproc_undef] = STATE(103), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2289), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2475), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(31), - [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_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(993), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(677), - [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_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), + [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_preproc_region] = STATE(106), + [sym_preproc_endregion] = STATE(106), + [sym_preproc_line] = STATE(106), + [sym_preproc_pragma] = STATE(106), + [sym_preproc_nullable] = STATE(106), + [sym_preproc_error] = STATE(106), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1077), [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_unchecked] = ACTIONS(1067), + [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(111), - [anon_sym_try] = ACTIONS(113), + [anon_sym_throw] = ACTIONS(1079), [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_await] = ACTIONS(1081), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1085), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49143,7 +50605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -49159,167 +50621,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [104] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5401), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4908), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6271), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5117), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(104), - [sym_preproc_endregion] = STATE(104), - [sym_preproc_line] = STATE(104), - [sym_preproc_pragma] = STATE(104), - [sym_preproc_nullable] = STATE(104), - [sym_preproc_error] = STATE(104), - [sym_preproc_warning] = STATE(104), - [sym_preproc_define] = STATE(104), - [sym_preproc_undef] = STATE(104), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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_preproc_region] = STATE(107), + [sym_preproc_endregion] = STATE(107), + [sym_preproc_line] = STATE(107), + [sym_preproc_pragma] = STATE(107), + [sym_preproc_nullable] = STATE(107), + [sym_preproc_error] = STATE(107), + [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), + [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_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), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1081), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1081), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1093), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49344,7 +50808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -49360,167 +50824,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [105] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4922), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym__variable_designation] = STATE(6635), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2142), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(105), - [sym_preproc_endregion] = STATE(105), - [sym_preproc_line] = STATE(105), - [sym_preproc_pragma] = STATE(105), - [sym_preproc_nullable] = STATE(105), - [sym_preproc_error] = STATE(105), - [sym_preproc_warning] = STATE(105), - [sym_preproc_define] = STATE(105), - [sym_preproc_undef] = STATE(105), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(108), + [sym_preproc_endregion] = STATE(108), + [sym_preproc_line] = STATE(108), + [sym_preproc_pragma] = STATE(108), + [sym_preproc_nullable] = STATE(108), + [sym_preproc_error] = STATE(108), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1121), + [sym_discard] = ACTIONS(1123), + [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), @@ -49545,7 +51011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -49561,167 +51027,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [106] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5401), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4908), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6370), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5117), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(106), - [sym_preproc_endregion] = STATE(106), - [sym_preproc_line] = STATE(106), - [sym_preproc_pragma] = STATE(106), - [sym_preproc_nullable] = STATE(106), - [sym_preproc_error] = STATE(106), - [sym_preproc_warning] = STATE(106), - [sym_preproc_define] = STATE(106), - [sym_preproc_undef] = STATE(106), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(1121), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [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_preproc_region] = STATE(109), + [sym_preproc_endregion] = STATE(109), + [sym_preproc_line] = STATE(109), + [sym_preproc_pragma] = STATE(109), + [sym_preproc_nullable] = STATE(109), + [sym_preproc_error] = STATE(109), + [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), + [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_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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1123), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1121), + [sym_discard] = ACTIONS(1123), + [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), @@ -49746,7 +51214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -49762,167 +51230,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [107] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5401), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4908), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6372), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5117), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(107), - [sym_preproc_endregion] = STATE(107), - [sym_preproc_line] = STATE(107), - [sym_preproc_pragma] = STATE(107), - [sym_preproc_nullable] = STATE(107), - [sym_preproc_error] = STATE(107), - [sym_preproc_warning] = STATE(107), - [sym_preproc_define] = STATE(107), - [sym_preproc_undef] = STATE(107), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(1125), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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_preproc_region] = STATE(110), + [sym_preproc_endregion] = STATE(110), + [sym_preproc_line] = STATE(110), + [sym_preproc_pragma] = STATE(110), + [sym_preproc_nullable] = STATE(110), + [sym_preproc_error] = STATE(110), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1127), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1081), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1133), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -49947,7 +51417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -49963,167 +51433,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [108] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5401), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4908), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6326), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5117), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(108), - [sym_preproc_endregion] = STATE(108), - [sym_preproc_line] = STATE(108), - [sym_preproc_pragma] = STATE(108), - [sym_preproc_nullable] = STATE(108), - [sym_preproc_error] = STATE(108), - [sym_preproc_warning] = STATE(108), - [sym_preproc_define] = STATE(108), - [sym_preproc_undef] = STATE(108), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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_preproc_region] = STATE(111), + [sym_preproc_endregion] = STATE(111), + [sym_preproc_line] = STATE(111), + [sym_preproc_pragma] = STATE(111), + [sym_preproc_nullable] = STATE(111), + [sym_preproc_error] = STATE(111), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1131), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1081), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1137), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50148,7 +51620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -50164,368 +51636,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [109] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5401), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4908), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6319), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5117), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(109), - [sym_preproc_endregion] = STATE(109), - [sym_preproc_line] = STATE(109), - [sym_preproc_pragma] = STATE(109), - [sym_preproc_nullable] = STATE(109), - [sym_preproc_error] = STATE(109), - [sym_preproc_warning] = STATE(109), - [sym_preproc_define] = STATE(109), - [sym_preproc_undef] = STATE(109), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(1053), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1135), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [110] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4922), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym__variable_designation] = STATE(6635), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2142), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(110), - [sym_preproc_endregion] = STATE(110), - [sym_preproc_line] = STATE(110), - [sym_preproc_pragma] = STATE(110), - [sym_preproc_nullable] = STATE(110), - [sym_preproc_error] = STATE(110), - [sym_preproc_warning] = STATE(110), - [sym_preproc_define] = STATE(110), - [sym_preproc_undef] = STATE(110), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(112), + [sym_preproc_endregion] = STATE(112), + [sym_preproc_line] = STATE(112), + [sym_preproc_pragma] = STATE(112), + [sym_preproc_nullable] = STATE(112), + [sym_preproc_error] = STATE(112), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1081), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1141), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -50550,7 +51823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -50566,503 +51839,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [111] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3615), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(111), - [sym_preproc_endregion] = STATE(111), - [sym_preproc_line] = STATE(111), - [sym_preproc_pragma] = STATE(111), - [sym_preproc_nullable] = STATE(111), - [sym_preproc_error] = STATE(111), - [sym_preproc_warning] = STATE(111), - [sym_preproc_define] = STATE(111), - [sym_preproc_undef] = STATE(111), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [112] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3593), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(112), - [sym_preproc_endregion] = STATE(112), - [sym_preproc_line] = STATE(112), - [sym_preproc_pragma] = STATE(112), - [sym_preproc_nullable] = STATE(112), - [sym_preproc_error] = STATE(112), - [sym_preproc_warning] = STATE(112), - [sym_preproc_define] = STATE(112), - [sym_preproc_undef] = STATE(112), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1157), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_if_token3] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, [113] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4905), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(113), [sym_preproc_endregion] = STATE(113), [sym_preproc_line] = STATE(113), @@ -51072,59 +51947,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -51149,7 +52024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -51166,102 +52041,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [114] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4796), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6450), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(114), [sym_preproc_endregion] = STATE(114), [sym_preproc_line] = STATE(114), @@ -51271,59 +52148,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -51348,7 +52225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -51365,102 +52242,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [115] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4899), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(115), [sym_preproc_endregion] = STATE(115), [sym_preproc_line] = STATE(115), @@ -51470,59 +52349,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -51547,7 +52426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -51564,102 +52443,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [116] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4755), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(116), [sym_preproc_endregion] = STATE(116), [sym_preproc_line] = STATE(116), @@ -51669,59 +52550,59 @@ 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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -51746,7 +52627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -51763,102 +52644,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [117] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4832), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(117), [sym_preproc_endregion] = STATE(117), [sym_preproc_line] = STATE(117), @@ -51868,59 +52751,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -51945,7 +52828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -51962,102 +52845,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [118] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4910), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6450), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(118), [sym_preproc_endregion] = STATE(118), [sym_preproc_line] = STATE(118), @@ -52067,59 +52952,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -52144,7 +53029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -52161,102 +53046,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [119] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4983), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(119), [sym_preproc_endregion] = STATE(119), [sym_preproc_line] = STATE(119), @@ -52266,59 +53153,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -52343,7 +53230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -52360,102 +53247,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [120] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4913), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(120), [sym_preproc_endregion] = STATE(120), [sym_preproc_line] = STATE(120), @@ -52465,59 +53354,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -52542,7 +53431,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -52559,102 +53448,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [121] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4786), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(121), [sym_preproc_endregion] = STATE(121), [sym_preproc_line] = STATE(121), @@ -52664,59 +53555,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -52741,7 +53632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -52758,102 +53649,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [122] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4767), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(122), [sym_preproc_endregion] = STATE(122), [sym_preproc_line] = STATE(122), @@ -52863,59 +53756,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -52940,7 +53833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -52957,102 +53850,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [123] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4786), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(123), [sym_preproc_endregion] = STATE(123), [sym_preproc_line] = STATE(123), @@ -53062,59 +53957,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -53139,7 +54034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -53156,102 +54051,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [124] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4853), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6464), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(124), [sym_preproc_endregion] = STATE(124), [sym_preproc_line] = STATE(124), @@ -53261,59 +54138,72 @@ 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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -53326,19 +54216,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(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -53349,108 +54246,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [125] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4980), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(125), [sym_preproc_endregion] = STATE(125), [sym_preproc_line] = STATE(125), @@ -53460,59 +54359,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -53537,7 +54436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -53554,102 +54453,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [126] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4894), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7064), - [sym_pattern] = STATE(6506), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7067), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(126), [sym_preproc_endregion] = STATE(126), [sym_preproc_line] = STATE(126), @@ -53659,59 +54560,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -53736,7 +54637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -53753,102 +54654,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [127] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4903), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(127), [sym_preproc_endregion] = STATE(127), [sym_preproc_line] = STATE(127), @@ -53858,59 +54761,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -53935,7 +54838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -53952,102 +54855,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [128] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4750), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6464), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(128), [sym_preproc_endregion] = STATE(128), [sym_preproc_line] = STATE(128), @@ -54057,59 +54962,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -54134,7 +55039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -54151,102 +55056,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [129] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4885), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(129), [sym_preproc_endregion] = STATE(129), [sym_preproc_line] = STATE(129), @@ -54256,59 +55163,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -54333,7 +55240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -54350,102 +55257,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [130] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4801), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(130), [sym_preproc_endregion] = STATE(130), [sym_preproc_line] = STATE(130), @@ -54455,59 +55364,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -54532,7 +55441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -54549,102 +55458,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [131] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4922), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(131), [sym_preproc_endregion] = STATE(131), [sym_preproc_line] = STATE(131), @@ -54654,59 +55565,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -54731,7 +55642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -54748,102 +55659,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [132] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4914), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7064), - [sym_pattern] = STATE(6506), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7067), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(132), [sym_preproc_endregion] = STATE(132), [sym_preproc_line] = STATE(132), @@ -54853,59 +55766,59 @@ 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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1219), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -54930,7 +55843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -54947,102 +55860,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [133] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4899), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(133), [sym_preproc_endregion] = STATE(133), [sym_preproc_line] = STATE(133), @@ -55052,59 +55967,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -55129,7 +56044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -55146,102 +56061,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [134] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4880), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(134), [sym_preproc_endregion] = STATE(134), [sym_preproc_line] = STATE(134), @@ -55251,59 +56168,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -55328,7 +56245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -55345,102 +56262,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [135] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4777), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(135), [sym_preproc_endregion] = STATE(135), [sym_preproc_line] = STATE(135), @@ -55450,59 +56369,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -55527,7 +56446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -55544,102 +56463,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [136] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4857), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(136), [sym_preproc_endregion] = STATE(136), [sym_preproc_line] = STATE(136), @@ -55649,59 +56570,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -55726,7 +56647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -55743,102 +56664,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [137] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4790), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(137), [sym_preproc_endregion] = STATE(137), [sym_preproc_line] = STATE(137), @@ -55848,59 +56771,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -55925,7 +56848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -55942,102 +56865,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [138] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4832), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(138), [sym_preproc_endregion] = STATE(138), [sym_preproc_line] = STATE(138), @@ -56047,59 +56972,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -56124,7 +57049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -56141,102 +57066,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [139] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4922), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(139), [sym_preproc_endregion] = STATE(139), [sym_preproc_line] = STATE(139), @@ -56246,59 +57173,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -56323,7 +57250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -56340,102 +57267,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [140] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4974), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6401), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(140), [sym_preproc_endregion] = STATE(140), [sym_preproc_line] = STATE(140), @@ -56445,59 +57374,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1217), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -56522,7 +57451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -56539,102 +57468,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [141] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4919), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_pattern] = STATE(6405), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5026), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3450), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(141), [sym_preproc_endregion] = STATE(141), [sym_preproc_line] = STATE(141), @@ -56644,59 +57575,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_RPAREN] = ACTIONS(1215), - [anon_sym_ref] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1119), + [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), @@ -56721,7 +57652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -56738,101 +57669,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [142] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5157), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym__variable_designation] = STATE(6635), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2145), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(142), [sym_preproc_endregion] = STATE(142), [sym_preproc_line] = STATE(142), @@ -56842,59 +57776,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(142), [sym_preproc_define] = STATE(142), [sym_preproc_undef] = STATE(142), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1223), - [anon_sym_ref] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1229), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -56919,7 +57853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -56936,101 +57870,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [143] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5157), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(7047), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym__variable_designation] = STATE(6635), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2145), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -57040,59 +57977,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(143), [sym_preproc_define] = STATE(143), [sym_preproc_undef] = STATE(143), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1137), - [anon_sym_ref] = ACTIONS(1225), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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(1229), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1115), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -57117,7 +58054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -57134,82 +58071,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [144] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3938), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -57219,71 +58158,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(144), [sym_preproc_define] = STATE(144), [sym_preproc_undef] = STATE(144), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1139), + [anon_sym_SEMI] = ACTIONS(1221), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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), @@ -57296,26 +58236,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [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), @@ -57326,88 +58266,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3904), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(145), [sym_preproc_endregion] = STATE(145), [sym_preproc_line] = STATE(145), @@ -57417,71 +58378,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_SEMI] = ACTIONS(1209), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1211), + [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_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1251), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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(1113), + [anon_sym_scoped] = ACTIONS(1115), + [anon_sym_params] = ACTIONS(1117), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1231), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1235), + [sym_discard] = ACTIONS(1123), + [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), @@ -57494,26 +58443,19 @@ static const uint16_t ts_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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_if_token3] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -57524,88 +58466,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [146] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4153), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(146), [sym_preproc_endregion] = STATE(146), [sym_preproc_line] = STATE(146), @@ -57615,72 +58578,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_SEMI] = ACTIONS(1209), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [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_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), + [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_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(1231), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1235), + [sym_discard] = ACTIONS(1123), + [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), @@ -57693,23 +58643,19 @@ static const uint16_t ts_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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -57726,82 +58672,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [147] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4107), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(147), [sym_preproc_endregion] = STATE(147), [sym_preproc_line] = STATE(147), @@ -57811,72 +58759,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1139), + [anon_sym_SEMI] = ACTIONS(1221), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1067), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -57889,23 +58835,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -57916,88 +58865,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [148] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4181), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(148), [sym_preproc_endregion] = STATE(148), [sym_preproc_line] = STATE(148), @@ -58007,71 +58958,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58084,23 +59034,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58111,88 +59064,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [149] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4098), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(149), [sym_preproc_endregion] = STATE(149), [sym_preproc_line] = STATE(149), @@ -58202,71 +59157,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1221), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58279,23 +59235,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58306,88 +59262,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [150] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4123), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(150), [sym_preproc_endregion] = STATE(150), [sym_preproc_line] = STATE(150), @@ -58397,71 +59355,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58474,23 +59433,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58501,88 +59460,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [151] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4184), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(151), [sym_preproc_endregion] = STATE(151), [sym_preproc_line] = STATE(151), @@ -58592,68 +59553,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1139), + [anon_sym_SEMI] = ACTIONS(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58666,26 +59627,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58702,82 +59663,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [152] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4242), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(152), [sym_preproc_endregion] = STATE(152), [sym_preproc_line] = STATE(152), @@ -58787,68 +59750,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1209), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1371), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1371), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -58861,26 +59827,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), - [aux_sym_preproc_if_token3] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), + [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), @@ -58897,82 +59860,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [153] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4223), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(153), [sym_preproc_endregion] = STATE(153), [sym_preproc_line] = STATE(153), @@ -58982,71 +59947,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1221), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1101), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1101), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -59059,23 +60021,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -59092,82 +60057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [154] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4310), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(154), [sym_preproc_endregion] = STATE(154), [sym_preproc_line] = STATE(154), @@ -59177,845 +60144,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1139), - [sym_raw_string_start] = ACTIONS(1457), - }, - [155] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4211), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(155), - [sym_preproc_endregion] = STATE(155), - [sym_preproc_line] = STATE(155), - [sym_preproc_pragma] = STATE(155), - [sym_preproc_nullable] = STATE(155), - [sym_preproc_error] = STATE(155), - [sym_preproc_warning] = STATE(155), - [sym_preproc_define] = STATE(155), - [sym_preproc_undef] = STATE(155), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1209), - [sym_raw_string_start] = ACTIONS(1457), - }, - [156] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4362), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(156), - [sym_preproc_endregion] = STATE(156), - [sym_preproc_line] = STATE(156), - [sym_preproc_pragma] = STATE(156), - [sym_preproc_nullable] = STATE(156), - [sym_preproc_error] = STATE(156), - [sym_preproc_warning] = STATE(156), - [sym_preproc_define] = STATE(156), - [sym_preproc_undef] = STATE(156), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1401), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1209), - [sym_raw_string_start] = ACTIONS(1457), - }, - [157] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4251), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(157), - [sym_preproc_endregion] = STATE(157), - [sym_preproc_line] = STATE(157), - [sym_preproc_pragma] = STATE(157), - [sym_preproc_nullable] = STATE(157), - [sym_preproc_error] = STATE(157), - [sym_preproc_warning] = STATE(157), - [sym_preproc_define] = STATE(157), - [sym_preproc_undef] = STATE(157), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1139), - [sym_raw_string_start] = ACTIONS(1457), - }, - [158] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4564), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(158), - [sym_preproc_endregion] = STATE(158), - [sym_preproc_line] = STATE(158), - [sym_preproc_pragma] = STATE(158), - [sym_preproc_nullable] = STATE(158), - [sym_preproc_error] = STATE(158), - [sym_preproc_warning] = STATE(158), - [sym_preproc_define] = STATE(158), - [sym_preproc_undef] = STATE(158), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1317), + [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(1109), + [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_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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60028,23 +60221,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), + [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(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [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(1085), + [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), @@ -60060,152 +60253,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [159] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(159), - [sym_preproc_endregion] = STATE(159), - [sym_preproc_line] = STATE(159), - [sym_preproc_pragma] = STATE(159), - [sym_preproc_nullable] = STATE(159), - [sym_preproc_error] = STATE(159), - [sym_preproc_warning] = STATE(159), - [sym_preproc_define] = STATE(159), - [sym_preproc_undef] = STATE(159), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(155), + [sym_preproc_endregion] = STATE(155), + [sym_preproc_line] = STATE(155), + [sym_preproc_pragma] = STATE(155), + [sym_preproc_nullable] = STATE(155), + [sym_preproc_error] = STATE(155), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1139), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60218,26 +60418,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60248,157 +60445,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [160] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4697), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(160), - [sym_preproc_endregion] = STATE(160), - [sym_preproc_line] = STATE(160), - [sym_preproc_pragma] = STATE(160), - [sym_preproc_nullable] = STATE(160), - [sym_preproc_error] = STATE(160), - [sym_preproc_warning] = STATE(160), - [sym_preproc_define] = STATE(160), - [sym_preproc_undef] = STATE(160), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(156), + [sym_preproc_endregion] = STATE(156), + [sym_preproc_line] = STATE(156), + [sym_preproc_pragma] = STATE(156), + [sym_preproc_nullable] = STATE(156), + [sym_preproc_error] = STATE(156), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1209), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60411,26 +60615,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -60441,88 +60642,874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), + }, + [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_preproc_region] = STATE(157), + [sym_preproc_endregion] = STATE(157), + [sym_preproc_line] = STATE(157), + [sym_preproc_pragma] = STATE(157), + [sym_preproc_nullable] = STATE(157), + [sym_preproc_error] = STATE(157), + [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), + }, + [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_preproc_region] = STATE(158), + [sym_preproc_endregion] = STATE(158), + [sym_preproc_line] = STATE(158), + [sym_preproc_pragma] = STATE(158), + [sym_preproc_nullable] = STATE(158), + [sym_preproc_error] = STATE(158), + [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), + }, + [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_preproc_region] = STATE(159), + [sym_preproc_endregion] = STATE(159), + [sym_preproc_line] = STATE(159), + [sym_preproc_pragma] = STATE(159), + [sym_preproc_nullable] = STATE(159), + [sym_preproc_error] = STATE(159), + [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), + }, + [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_preproc_region] = STATE(160), + [sym_preproc_endregion] = STATE(160), + [sym_preproc_line] = STATE(160), + [sym_preproc_pragma] = STATE(160), + [sym_preproc_nullable] = STATE(160), + [sym_preproc_error] = STATE(160), + [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), }, [161] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4589), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(161), [sym_preproc_endregion] = STATE(161), [sym_preproc_line] = STATE(161), @@ -60532,69 +61519,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60607,11 +61594,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -60623,7 +61610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -60640,82 +61627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [162] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4684), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(162), [sym_preproc_endregion] = STATE(162), [sym_preproc_line] = STATE(162), @@ -60725,69 +61714,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1501), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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_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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60800,11 +61789,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -60816,7 +61805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -60833,82 +61822,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [163] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(163), [sym_preproc_endregion] = STATE(163), [sym_preproc_line] = STATE(163), @@ -60918,69 +61909,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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_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_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(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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -60993,11 +61981,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -61009,7 +61997,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61026,82 +62017,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [164] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4368), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(164), [sym_preproc_endregion] = STATE(164), [sym_preproc_line] = STATE(164), @@ -61111,69 +62104,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1209), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), + [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_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_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(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_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1223), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61186,23 +62179,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -61213,88 +62206,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [165] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4353), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(165), [sym_preproc_endregion] = STATE(165), [sym_preproc_line] = STATE(165), @@ -61304,69 +62299,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61379,23 +62374,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61406,88 +62401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [166] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4861), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(166), [sym_preproc_endregion] = STATE(166), [sym_preproc_line] = STATE(166), @@ -61497,68 +62494,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1151), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61571,23 +62566,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61604,82 +62602,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [167] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4751), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(167), [sym_preproc_endregion] = STATE(167), [sym_preproc_line] = STATE(167), @@ -61689,68 +62689,69 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61763,23 +62764,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -61790,88 +62791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [168] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4743), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(168), [sym_preproc_endregion] = STATE(168), [sym_preproc_line] = STATE(168), @@ -61881,68 +62884,69 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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_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_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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -61955,23 +62959,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -61982,88 +62986,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [169] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4640), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(169), [sym_preproc_endregion] = STATE(169), [sym_preproc_line] = STATE(169), @@ -62073,68 +63079,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_list_pattern_repeat1] = STATE(6812), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = 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), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1165), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62147,23 +63153,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -62180,82 +63186,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [170] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4407), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(170), [sym_preproc_endregion] = STATE(170), [sym_preproc_line] = STATE(170), @@ -62265,260 +63273,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1209), - [sym_raw_string_start] = ACTIONS(1457), - }, - [171] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3508), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(171), - [sym_preproc_endregion] = STATE(171), - [sym_preproc_line] = STATE(171), - [sym_preproc_pragma] = STATE(171), - [sym_preproc_nullable] = STATE(171), - [sym_preproc_error] = STATE(171), - [sym_preproc_warning] = STATE(171), - [sym_preproc_define] = STATE(171), - [sym_preproc_undef] = STATE(171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1151), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62531,23 +63347,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -62558,159 +63374,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [172] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4808), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(172), - [sym_preproc_endregion] = STATE(172), - [sym_preproc_line] = STATE(172), - [sym_preproc_pragma] = STATE(172), - [sym_preproc_nullable] = STATE(172), - [sym_preproc_error] = STATE(172), - [sym_preproc_warning] = STATE(172), - [sym_preproc_define] = STATE(172), - [sym_preproc_undef] = STATE(172), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(171), + [sym_preproc_endregion] = STATE(171), + [sym_preproc_line] = STATE(171), + [sym_preproc_pragma] = STATE(171), + [sym_preproc_nullable] = STATE(171), + [sym_preproc_error] = STATE(171), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1541), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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(1321), - [anon_sym_EQ_GT] = ACTIONS(1209), + [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(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62723,23 +63541,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -62755,154 +63573,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), }, - [173] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(173), - [sym_preproc_endregion] = STATE(173), - [sym_preproc_line] = STATE(173), - [sym_preproc_pragma] = STATE(173), - [sym_preproc_nullable] = STATE(173), - [sym_preproc_error] = STATE(173), - [sym_preproc_warning] = STATE(173), - [sym_preproc_define] = STATE(173), - [sym_preproc_undef] = STATE(173), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym_list_pattern_repeat1] = STATE(6651), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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_preproc_region] = STATE(172), + [sym_preproc_endregion] = STATE(172), + [sym_preproc_line] = STATE(172), + [sym_preproc_pragma] = STATE(172), + [sym_preproc_nullable] = STATE(172), + [sym_preproc_error] = STATE(172), + [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), + [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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -62915,23 +63735,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), + [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(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [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(1085), + [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), @@ -62947,83 +63767,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), }, + [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_preproc_region] = STATE(173), + [sym_preproc_endregion] = STATE(173), + [sym_preproc_line] = STATE(173), + [sym_preproc_pragma] = STATE(173), + [sym_preproc_nullable] = STATE(173), + [sym_preproc_error] = STATE(173), + [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), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1529), + [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(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_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(1569), + [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_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [174] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4679), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(174), [sym_preproc_endregion] = STATE(174), [sym_preproc_line] = STATE(174), @@ -63033,68 +64049,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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(1167), - [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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), @@ -63107,23 +64123,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63134,88 +64150,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [175] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4514), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(175), [sym_preproc_endregion] = STATE(175), [sym_preproc_line] = STATE(175), @@ -63225,68 +64243,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1569), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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(1321), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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), @@ -63299,23 +64317,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -63332,82 +64350,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [176] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(176), [sym_preproc_endregion] = STATE(176), [sym_preproc_line] = STATE(176), @@ -63417,68 +64437,65 @@ 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(3051), - [aux_sym_list_pattern_repeat1] = STATE(6657), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -63491,11 +64508,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -63507,7 +64524,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -63524,82 +64544,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [177] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4918), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(177), [sym_preproc_endregion] = STATE(177), [sym_preproc_line] = STATE(177), @@ -63609,189 +64631,191 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1139), - [sym_raw_string_start] = ACTIONS(1457), + [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(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(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(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_scoped] = 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(1165), + [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_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [178] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4645), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(178), [sym_preproc_endregion] = STATE(178), [sym_preproc_line] = STATE(178), @@ -63801,189 +64825,191 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1585), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1139), - [sym_raw_string_start] = ACTIONS(1457), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), + [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_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [179] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3588), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(179), [sym_preproc_endregion] = STATE(179), [sym_preproc_line] = STATE(179), @@ -63993,68 +65019,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [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_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(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_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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64067,23 +65093,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64094,88 +65120,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [180] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4971), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(180), [sym_preproc_endregion] = STATE(180), [sym_preproc_line] = STATE(180), @@ -64185,68 +65213,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1209), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(683), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64259,23 +65287,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -64286,88 +65314,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [181] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(181), [sym_preproc_endregion] = STATE(181), [sym_preproc_line] = STATE(181), @@ -64377,68 +65407,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(3051), - [aux_sym_list_pattern_repeat1] = STATE(6755), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_list_pattern_repeat1] = STATE(6839), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = 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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64451,11 +65481,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -64467,7 +65497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -64484,82 +65514,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [182] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4806), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(182), [sym_preproc_endregion] = STATE(182), [sym_preproc_line] = STATE(182), @@ -64569,65 +65601,262 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1627), + [anon_sym_COMMA] = ACTIONS(1221), + [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(1057), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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_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(1657), + [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_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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), + }, + [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_preproc_region] = STATE(183), + [sym_preproc_endregion] = STATE(183), + [sym_preproc_line] = STATE(183), + [sym_preproc_pragma] = STATE(183), + [sym_preproc_nullable] = STATE(183), + [sym_preproc_error] = STATE(183), + [sym_preproc_warning] = STATE(183), + [sym_preproc_define] = STATE(183), + [sym_preproc_undef] = STATE(183), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [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(1153), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -64640,11 +65869,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -64656,10 +65885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [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), @@ -64675,275 +65901,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), }, - [183] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4986), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(183), - [sym_preproc_endregion] = STATE(183), - [sym_preproc_line] = STATE(183), - [sym_preproc_pragma] = STATE(183), - [sym_preproc_nullable] = STATE(183), - [sym_preproc_error] = STATE(183), - [sym_preproc_warning] = STATE(183), - [sym_preproc_define] = STATE(183), - [sym_preproc_undef] = STATE(183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1681), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1681), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_as] = ACTIONS(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_interpolation_close_brace] = ACTIONS(1209), - [sym_raw_string_start] = ACTIONS(1457), - }, [184] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4304), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(184), [sym_preproc_endregion] = STATE(184), [sym_preproc_line] = STATE(184), @@ -64953,68 +65989,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1697), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), + [anon_sym_in] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_EQ_GT] = ACTIONS(1209), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65027,23 +66063,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65054,88 +66090,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [185] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4445), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(185), [sym_preproc_endregion] = STATE(185), [sym_preproc_line] = STATE(185), @@ -65145,68 +66183,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [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(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65219,23 +66257,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -65252,82 +66290,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [186] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4841), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(186), [sym_preproc_endregion] = STATE(186), [sym_preproc_line] = STATE(186), @@ -65337,68 +66377,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65411,23 +66451,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -65444,82 +66484,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [187] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4964), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(187), [sym_preproc_endregion] = STATE(187), [sym_preproc_line] = STATE(187), @@ -65529,68 +66571,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65603,23 +66645,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -65630,88 +66672,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [188] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4465), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(188), [sym_preproc_endregion] = STATE(188), [sym_preproc_line] = STATE(188), @@ -65721,68 +66765,262 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -65795,23 +67033,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -65827,275 +67065,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), }, - [189] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3556), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1697), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, [190] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4372), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -66105,68 +67153,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(190), [sym_preproc_define] = STATE(190), [sym_preproc_undef] = STATE(190), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_list_pattern_repeat1] = STATE(6896), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = 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), + [anon_sym_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1165), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66179,23 +67227,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -66206,88 +67254,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [191] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4868), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(191), [sym_preproc_endregion] = STATE(191), [sym_preproc_line] = STATE(191), @@ -66297,65 +67347,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_list_pattern_repeat1] = STATE(6792), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), + [sym__identifier_token] = 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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66368,11 +67421,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -66384,10 +67437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(1209), - [aux_sym_preproc_else_token1] = ACTIONS(1209), - [aux_sym_preproc_elif_token1] = ACTIONS(1209), + [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), @@ -66404,82 +67454,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [192] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(192), [sym_preproc_endregion] = STATE(192), [sym_preproc_line] = STATE(192), @@ -66489,68 +67541,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(3051), - [aux_sym_list_pattern_repeat1] = STATE(6546), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66563,11 +67615,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -66579,7 +67631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -66596,82 +67648,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [193] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4270), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(193), [sym_preproc_endregion] = STATE(193), [sym_preproc_line] = STATE(193), @@ -66681,260 +67735,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [194] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(194), - [sym_preproc_endregion] = STATE(194), - [sym_preproc_line] = STATE(194), - [sym_preproc_pragma] = STATE(194), - [sym_preproc_nullable] = STATE(194), - [sym_preproc_error] = STATE(194), - [sym_preproc_warning] = STATE(194), - [sym_preproc_define] = STATE(194), - [sym_preproc_undef] = STATE(194), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym_list_pattern_repeat1] = STATE(6705), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_RBRACK] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -66947,23 +67809,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), + [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(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [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(1085), + [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), @@ -66979,154 +67841,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), }, - [195] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3474), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(195), - [sym_preproc_endregion] = STATE(195), - [sym_preproc_line] = STATE(195), - [sym_preproc_pragma] = STATE(195), - [sym_preproc_nullable] = STATE(195), - [sym_preproc_error] = STATE(195), - [sym_preproc_warning] = STATE(195), - [sym_preproc_define] = STATE(195), - [sym_preproc_undef] = STATE(195), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [194] = { + [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(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_preproc_region] = STATE(194), + [sym_preproc_endregion] = STATE(194), + [sym_preproc_line] = STATE(194), + [sym_preproc_pragma] = STATE(194), + [sym_preproc_nullable] = STATE(194), + [sym_preproc_error] = STATE(194), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1609), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1609), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1211), + [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), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67139,23 +68003,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67166,88 +68030,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), + }, + [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_preproc_region] = STATE(195), + [sym_preproc_endregion] = STATE(195), + [sym_preproc_line] = STATE(195), + [sym_preproc_pragma] = STATE(195), + [sym_preproc_nullable] = STATE(195), + [sym_preproc_error] = STATE(195), + [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), }, [196] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4492), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(196), [sym_preproc_endregion] = STATE(196), [sym_preproc_line] = STATE(196), @@ -67257,68 +68317,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [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(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1665), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1665), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), + [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(1167), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67331,23 +68391,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67358,88 +68418,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [197] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4872), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(197), [sym_preproc_endregion] = STATE(197), [sym_preproc_line] = STATE(197), @@ -67449,68 +68511,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1211), + [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(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1527), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1527), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67523,23 +68585,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67550,88 +68612,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [198] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4375), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(198), [sym_preproc_endregion] = STATE(198), [sym_preproc_line] = STATE(198), @@ -67641,68 +68705,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -67715,23 +68779,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -67742,88 +68806,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4482), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -67833,188 +68899,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(199), [sym_preproc_define] = STATE(199), [sym_preproc_undef] = STATE(199), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [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(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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), }, [200] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3945), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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_preproc_region] = STATE(200), [sym_preproc_endregion] = STATE(200), [sym_preproc_line] = STATE(200), @@ -68024,67 +69093,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68097,23 +69167,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68124,88 +69194,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [201] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4021), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(201), [sym_preproc_endregion] = STATE(201), [sym_preproc_line] = STATE(201), @@ -68215,67 +69287,68 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68288,23 +69361,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68315,88 +69388,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [202] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4642), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -68406,188 +69481,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(202), [sym_preproc_define] = STATE(202), [sym_preproc_undef] = STATE(202), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1789), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1789), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [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(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4783), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(203), [sym_preproc_endregion] = STATE(203), [sym_preproc_line] = STATE(203), @@ -68597,67 +69675,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), + [anon_sym_EQ_GT] = ACTIONS(1221), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68670,23 +69749,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68697,88 +69776,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [204] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4409), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(204), [sym_preproc_endregion] = STATE(204), [sym_preproc_line] = STATE(204), @@ -68788,67 +69869,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -68861,23 +69942,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -68888,88 +69969,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [205] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4863), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(205), [sym_preproc_endregion] = STATE(205), [sym_preproc_line] = STATE(205), @@ -68979,67 +70062,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1877), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69052,23 +70135,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69079,88 +70162,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [206] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(206), [sym_preproc_endregion] = STATE(206), [sym_preproc_line] = STATE(206), @@ -69170,67 +70255,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69243,23 +70328,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -69270,88 +70355,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [207] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4915), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(207), [sym_preproc_endregion] = STATE(207), [sym_preproc_line] = STATE(207), @@ -69361,67 +70448,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1843), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1843), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69434,23 +70521,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69461,88 +70548,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [208] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4797), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(208), [sym_preproc_endregion] = STATE(208), [sym_preproc_line] = STATE(208), @@ -69552,67 +70641,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69625,23 +70714,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -69652,88 +70741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [209] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4763), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(209), [sym_preproc_endregion] = STATE(209), [sym_preproc_line] = STATE(209), @@ -69743,67 +70834,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1211), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -69816,23 +70907,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1211), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -69849,82 +70940,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [210] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4035), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(210), [sym_preproc_endregion] = STATE(210), [sym_preproc_line] = STATE(210), @@ -69934,67 +71027,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70007,23 +71100,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70034,88 +71127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [211] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4868), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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_preproc_region] = STATE(211), [sym_preproc_endregion] = STATE(211), [sym_preproc_line] = STATE(211), @@ -70125,67 +71220,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1909), - [anon_sym_RBRACK] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1709), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1709), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70198,23 +71293,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), + [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(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), + [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(1085), + [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), @@ -70231,82 +71326,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [212] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4985), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(212), [sym_preproc_endregion] = STATE(212), [sym_preproc_line] = STATE(212), @@ -70316,67 +71413,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1879), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70389,23 +71486,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_with] = ACTIONS(1153), + [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(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -70422,82 +71519,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [213] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4560), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(213), [sym_preproc_endregion] = STATE(213), [sym_preproc_line] = STATE(213), @@ -70507,67 +71606,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1211), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70580,23 +71679,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70607,88 +71706,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [214] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3832), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(214), [sym_preproc_endregion] = STATE(214), [sym_preproc_line] = STATE(214), @@ -70698,67 +71799,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), + [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_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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_and] = ACTIONS(1211), - [anon_sym_or] = ACTIONS(1211), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70771,23 +71872,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70798,88 +71899,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [215] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4717), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(215), [sym_preproc_endregion] = STATE(215), [sym_preproc_line] = STATE(215), @@ -70889,67 +71992,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_DOT] = ACTIONS(1153), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_and] = ACTIONS(1153), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -70962,23 +72065,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -70989,103 +72092,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [216] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6735), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(216), [sym_preproc_endregion] = STATE(216), [sym_preproc_line] = STATE(216), @@ -71095,55 +72185,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71156,19 +72258,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71179,88 +72285,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [217] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3915), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(217), [sym_preproc_endregion] = STATE(217), [sym_preproc_line] = STATE(217), @@ -71270,66 +72378,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1949), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_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(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_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(1927), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71342,23 +72451,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71369,103 +72478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [218] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6642), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(218), [sym_preproc_endregion] = STATE(218), [sym_preproc_line] = STATE(218), @@ -71475,55 +72571,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(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(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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1083), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71536,19 +72644,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [anon_sym_with] = ACTIONS(1223), + [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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -71559,88 +72671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [219] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5227), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(219), [sym_preproc_endregion] = STATE(219), [sym_preproc_line] = STATE(219), @@ -71650,66 +72764,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1965), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1969), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1969), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71722,23 +72837,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(1969), - [anon_sym_is] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71749,88 +72864,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [220] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3696), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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(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_preproc_region] = STATE(220), [sym_preproc_endregion] = STATE(220), [sym_preproc_line] = STATE(220), @@ -71840,66 +72957,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1153), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -71912,23 +73030,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -71939,88 +73057,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [221] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5192), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(221), [sym_preproc_endregion] = STATE(221), [sym_preproc_line] = STATE(221), @@ -72030,66 +73165,55 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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(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_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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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), @@ -72102,11 +73226,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -72118,7 +73238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -72135,97 +73255,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [222] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6681), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -72235,55 +73342,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(222), [sym_preproc_define] = STATE(222), [sym_preproc_undef] = STATE(222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1957), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_GT] = ACTIONS(1959), [anon_sym_where] = ACTIONS(29), + [anon_sym_QMARK] = ACTIONS(1959), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1959), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72296,7 +73414,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(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), @@ -72308,7 +73430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -72325,97 +73447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [223] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6734), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -72425,55 +73534,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(223), [sym_preproc_define] = STATE(223), [sym_preproc_undef] = STATE(223), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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_preproc_region] = STATE(224), + [sym_preproc_endregion] = STATE(224), + [sym_preproc_line] = STATE(224), + [sym_preproc_pragma] = STATE(224), + [sym_preproc_nullable] = STATE(224), + [sym_preproc_error] = STATE(224), + [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), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [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_true] = ACTIONS(77), [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1979), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72486,7 +73798,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(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), @@ -72498,7 +73814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -72514,152 +73830,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [224] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5410), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(224), - [sym_preproc_endregion] = STATE(224), - [sym_preproc_line] = STATE(224), - [sym_preproc_pragma] = STATE(224), - [sym_preproc_nullable] = STATE(224), - [sym_preproc_error] = STATE(224), - [sym_preproc_warning] = STATE(224), - [sym_preproc_define] = STATE(224), - [sym_preproc_undef] = STATE(224), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(225), + [sym_preproc_endregion] = STATE(225), + [sym_preproc_line] = STATE(225), + [sym_preproc_pragma] = STATE(225), + [sym_preproc_nullable] = STATE(225), + [sym_preproc_error] = STATE(225), + [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_SEMI] = ACTIONS(2003), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1637), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1969), + [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), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1969), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72672,23 +73990,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(1969), - [anon_sym_is] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1969), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -72699,161 +74017,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [225] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6812), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(225), - [sym_preproc_endregion] = STATE(225), - [sym_preproc_line] = STATE(225), - [sym_preproc_pragma] = STATE(225), - [sym_preproc_nullable] = STATE(225), - [sym_preproc_error] = STATE(225), - [sym_preproc_warning] = STATE(225), - [sym_preproc_define] = STATE(225), - [sym_preproc_undef] = STATE(225), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(226), + [sym_preproc_endregion] = STATE(226), + [sym_preproc_line] = STATE(226), + [sym_preproc_pragma] = STATE(226), + [sym_preproc_nullable] = STATE(226), + [sym_preproc_error] = STATE(226), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -72878,7 +74198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -72894,152 +74214,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), }, - [226] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5384), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(226), - [sym_preproc_endregion] = STATE(226), - [sym_preproc_line] = STATE(226), - [sym_preproc_pragma] = STATE(226), - [sym_preproc_nullable] = STATE(226), - [sym_preproc_error] = STATE(226), - [sym_preproc_warning] = STATE(226), - [sym_preproc_define] = STATE(226), - [sym_preproc_undef] = STATE(226), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(227), + [sym_preproc_endregion] = STATE(227), + [sym_preproc_line] = STATE(227), + [sym_preproc_pragma] = STATE(227), + [sym_preproc_nullable] = STATE(227), + [sym_preproc_error] = STATE(227), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_in] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2013), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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), @@ -73052,11 +74378,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -73068,7 +74390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -73084,273 +74406,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), }, - [227] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3939), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(227), - [sym_preproc_endregion] = STATE(227), - [sym_preproc_line] = STATE(227), - [sym_preproc_pragma] = STATE(227), - [sym_preproc_nullable] = STATE(227), - [sym_preproc_error] = STATE(227), - [sym_preproc_warning] = STATE(227), - [sym_preproc_define] = STATE(227), - [sym_preproc_undef] = STATE(227), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1949), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, [228] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3737), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(228), [sym_preproc_endregion] = STATE(228), [sym_preproc_line] = STATE(228), @@ -73360,66 +74494,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(2003), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_COMMA] = ACTIONS(1209), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1977), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_DOT] = ACTIONS(1211), + [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(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_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1979), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_switch] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73432,23 +74566,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -73459,88 +74593,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [229] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5056), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(229), [sym_preproc_endregion] = STATE(229), [sym_preproc_line] = STATE(229), @@ -73550,66 +74686,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(229), [sym_preproc_define] = STATE(229), [sym_preproc_undef] = STATE(229), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1979), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), + [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(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_this] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(1979), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_switch] = ACTIONS(1979), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73622,23 +74758,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -73649,88 +74785,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [230] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5076), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(230), [sym_preproc_endregion] = STATE(230), [sym_preproc_line] = STATE(230), @@ -73740,66 +74893,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(230), [sym_preproc_define] = STATE(230), [sym_preproc_undef] = STATE(230), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(1991), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_EQ_GT] = ACTIONS(1209), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -73812,23 +74954,19 @@ static const uint16_t ts_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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -73839,103 +74977,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [231] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6684), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(231), [sym_preproc_endregion] = STATE(231), [sym_preproc_line] = STATE(231), @@ -73945,55 +75085,55 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -74018,7 +75158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -74035,97 +75175,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [232] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6638), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -74135,55 +75262,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(232), [sym_preproc_define] = STATE(232), [sym_preproc_undef] = STATE(232), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74196,7 +75334,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_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74208,7 +75350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -74225,97 +75367,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [233] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6684), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -74325,55 +75469,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(233), [sym_preproc_define] = STATE(233), [sym_preproc_undef] = STATE(233), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74398,7 +75542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -74415,82 +75559,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [234] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5294), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -74500,66 +75661,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(234), [sym_preproc_define] = STATE(234), [sym_preproc_undef] = STATE(234), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2053), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(1991), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1969), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), + [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_DOT] = ACTIONS(1969), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1969), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74572,11 +75722,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(1969), - [anon_sym_is] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1971), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1969), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -74588,7 +75734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -74605,97 +75751,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [235] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6520), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(235), [sym_preproc_endregion] = STATE(235), [sym_preproc_line] = STATE(235), @@ -74705,55 +75838,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1251), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74766,19 +75910,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -74789,103 +75937,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [236] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6684), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(236), [sym_preproc_endregion] = STATE(236), [sym_preproc_line] = STATE(236), @@ -74895,55 +76030,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1083), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -74956,19 +76102,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(1085), + [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), @@ -74979,88 +76129,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [237] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5383), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(237), [sym_preproc_endregion] = STATE(237), [sym_preproc_line] = STATE(237), @@ -75070,66 +76222,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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(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(1153), + [anon_sym_DOT] = ACTIONS(1165), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1139), + [anon_sym_EQ_GT] = ACTIONS(1151), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75142,11 +76294,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75158,7 +76310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -75175,82 +76327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [238] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5423), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(238), [sym_preproc_endregion] = STATE(238), [sym_preproc_line] = STATE(238), @@ -75260,66 +76414,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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(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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_LT] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1979), + [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_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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1979), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_EQ_GT] = ACTIONS(1209), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1979), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75332,11 +76486,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1979), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75348,7 +76502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -75365,82 +76519,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [239] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5309), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(239), [sym_preproc_endregion] = STATE(239), [sym_preproc_line] = STATE(239), @@ -75450,66 +76606,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1223), [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75522,11 +76678,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75538,7 +76694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -75555,82 +76711,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [240] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5251), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(240), [sym_preproc_endregion] = STATE(240), [sym_preproc_line] = STATE(240), @@ -75640,66 +76813,55 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COLON] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1991), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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(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_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_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75712,11 +76874,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75728,7 +76886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -75745,82 +76903,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [241] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5470), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(241), [sym_preproc_endregion] = STATE(241), [sym_preproc_line] = STATE(241), @@ -75830,66 +77005,435 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2079), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1969), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), + [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), + }, + [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_preproc_region] = STATE(242), + [sym_preproc_endregion] = STATE(242), + [sym_preproc_line] = STATE(242), + [sym_preproc_pragma] = STATE(242), + [sym_preproc_nullable] = STATE(242), + [sym_preproc_error] = STATE(242), + [sym_preproc_warning] = STATE(242), + [sym_preproc_define] = STATE(242), + [sym_preproc_undef] = STATE(242), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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_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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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_preproc_region] = STATE(243), + [sym_preproc_endregion] = STATE(243), + [sym_preproc_line] = STATE(243), + [sym_preproc_pragma] = STATE(243), + [sym_preproc_nullable] = STATE(243), + [sym_preproc_error] = STATE(243), + [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), + [sym__identifier_token] = 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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1969), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1969), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -75902,11 +77446,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(1969), - [anon_sym_is] = ACTIONS(1969), - [anon_sym_DASH_GT] = ACTIONS(1971), + [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(1969), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -75918,387 +77462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [242] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6642), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(242), - [sym_preproc_endregion] = STATE(242), - [sym_preproc_line] = STATE(242), - [sym_preproc_pragma] = STATE(242), - [sym_preproc_nullable] = STATE(242), - [sym_preproc_error] = STATE(242), - [sym_preproc_warning] = STATE(242), - [sym_preproc_define] = STATE(242), - [sym_preproc_undef] = STATE(242), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [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), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [243] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2162), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6684), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(243), - [sym_preproc_endregion] = STATE(243), - [sym_preproc_line] = STATE(243), - [sym_preproc_pragma] = STATE(243), - [sym_preproc_nullable] = STATE(243), - [sym_preproc_error] = STATE(243), - [sym_preproc_warning] = STATE(243), - [sym_preproc_define] = STATE(243), - [sym_preproc_undef] = STATE(243), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_COMMA] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1117), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -76315,82 +77479,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [244] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(244), [sym_preproc_endregion] = STATE(244), [sym_preproc_line] = STATE(244), @@ -76400,66 +77566,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(244), [sym_preproc_define] = STATE(244), [sym_preproc_undef] = STATE(244), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_SEMI] = ACTIONS(2089), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(2091), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(2091), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(79), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2091), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(2091), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_QMARK_QMARK] = ACTIONS(2089), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76472,23 +77638,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(2091), - [anon_sym_is] = ACTIONS(2091), - [anon_sym_DASH_GT] = ACTIONS(2089), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(2091), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76499,88 +77665,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [245] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4064), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(245), [sym_preproc_endregion] = STATE(245), [sym_preproc_line] = STATE(245), @@ -76590,65 +77758,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76661,23 +77830,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -76688,103 +77857,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [246] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(246), [sym_preproc_endregion] = STATE(246), [sym_preproc_line] = STATE(246), @@ -76794,54 +77950,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -76854,7 +78022,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_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -76866,7 +78038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -76883,82 +78055,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [247] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5000), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(247), [sym_preproc_endregion] = STATE(247), [sym_preproc_line] = STATE(247), @@ -76968,65 +78142,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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_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(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(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_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(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77039,23 +78214,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77066,103 +78241,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [248] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(248), [sym_preproc_endregion] = STATE(248), [sym_preproc_line] = STATE(248), @@ -77172,54 +78349,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -77244,7 +78422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -77261,82 +78439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [249] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5018), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(249), [sym_preproc_endregion] = STATE(249), [sym_preproc_line] = STATE(249), @@ -77346,65 +78526,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), + [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_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(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_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(2121), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2123), [anon_sym_DOT_DOT] = ACTIONS(2125), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_QMARK_QMARK] = ACTIONS(1151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77417,23 +78598,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77444,103 +78625,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [250] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(250), [sym_preproc_endregion] = STATE(250), [sym_preproc_line] = STATE(250), @@ -77550,54 +78718,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1251), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [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_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(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77610,19 +78790,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(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -77633,88 +78817,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [251] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5371), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(251), [sym_preproc_endregion] = STATE(251), [sym_preproc_line] = STATE(251), @@ -77724,65 +78925,55 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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(2129), + [anon_sym_LPAREN] = ACTIONS(1985), + [anon_sym_ref] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_RBRACE] = ACTIONS(2131), + [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_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -77795,11 +78986,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -77811,7 +78998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -77828,82 +79015,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [252] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5122), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -77913,65 +79117,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(252), [sym_preproc_define] = STATE(252), [sym_preproc_undef] = STATE(252), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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), @@ -77984,23 +79177,19 @@ static const uint16_t ts_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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -78011,103 +79200,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [253] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(253), [sym_preproc_endregion] = STATE(253), [sym_preproc_line] = STATE(253), @@ -78117,54 +79308,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78189,7 +79380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -78206,97 +79397,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [254] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(254), [sym_preproc_endregion] = STATE(254), [sym_preproc_line] = STATE(254), @@ -78306,54 +79499,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2169), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78378,7 +79571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -78395,82 +79588,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [255] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4138), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(255), [sym_preproc_endregion] = STATE(255), [sym_preproc_line] = STATE(255), @@ -78480,65 +79690,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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(2139), + [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_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78551,23 +79750,19 @@ static const uint16_t ts_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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -78578,103 +79773,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [256] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(256), [sym_preproc_endregion] = STATE(256), [sym_preproc_line] = STATE(256), @@ -78684,54 +79866,65 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2185), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2145), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78744,19 +79937,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -78767,103 +79964,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [257] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(257), [sym_preproc_endregion] = STATE(257), [sym_preproc_line] = STATE(257), @@ -78873,54 +80057,65 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(2145), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -78933,19 +80128,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(1085), + [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), @@ -78956,103 +80155,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [258] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(258), [sym_preproc_endregion] = STATE(258), [sym_preproc_line] = STATE(258), @@ -79062,54 +80248,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2189), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(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(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(1165), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(2167), + [anon_sym_PIPE] = ACTIONS(1165), + [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_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1165), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79122,7 +80319,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_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -79134,7 +80335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -79151,82 +80352,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [259] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5205), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(259), [sym_preproc_endregion] = STATE(259), [sym_preproc_line] = STATE(259), @@ -79236,65 +80439,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79307,11 +80510,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -79323,7 +80526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -79340,97 +80543,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [260] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(260), [sym_preproc_endregion] = STATE(260), [sym_preproc_line] = STATE(260), @@ -79440,54 +80630,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2209), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1845), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [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_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79500,19 +80701,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -79523,103 +80728,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [261] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(261), [sym_preproc_endregion] = STATE(261), [sym_preproc_line] = STATE(261), @@ -79629,54 +80836,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79701,7 +80908,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -79718,82 +80925,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [262] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5081), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(262), [sym_preproc_endregion] = STATE(262), [sym_preproc_line] = STATE(262), @@ -79803,65 +81027,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(1991), + [anon_sym_GT] = ACTIONS(1991), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -79874,23 +81087,19 @@ static const uint16_t ts_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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -79901,88 +81110,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [263] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5116), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(263), [sym_preproc_endregion] = STATE(263), [sym_preproc_line] = STATE(263), @@ -79992,65 +81203,65 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1241), [anon_sym_LPAREN] = ACTIONS(2213), [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_delegate] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), + [anon_sym_LT] = ACTIONS(1165), + [anon_sym_GT] = ACTIONS(1165), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), + [anon_sym_QMARK] = ACTIONS(1165), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), + [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(1255), - [anon_sym_false] = ACTIONS(1255), + [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(1153), - [anon_sym_PERCENT] = ACTIONS(1139), + [anon_sym_SLASH] = ACTIONS(1165), + [anon_sym_PERCENT] = ACTIONS(1151), [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1165), [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), + [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(2225), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2227), [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [anon_sym_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_QMARK_QMARK] = ACTIONS(1151), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80063,23 +81274,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -80090,88 +81301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [264] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5103), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(264), [sym_preproc_endregion] = STATE(264), [sym_preproc_line] = STATE(264), @@ -80181,65 +81394,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(264), [sym_preproc_define] = STATE(264), [sym_preproc_undef] = STATE(264), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1241), [anon_sym_LPAREN] = ACTIONS(2213), [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_delegate] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), [anon_sym_new] = ACTIONS(2217), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(1223), + [anon_sym_GT] = ACTIONS(1223), [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_QMARK] = ACTIONS(1223), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), + [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(1255), - [anon_sym_false] = ACTIONS(1255), + [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(1211), - [anon_sym_PERCENT] = ACTIONS(1209), + [anon_sym_SLASH] = ACTIONS(1223), + [anon_sym_PERCENT] = ACTIONS(1221), [anon_sym_CARET] = ACTIONS(2221), - [anon_sym_PIPE] = ACTIONS(1211), + [anon_sym_PIPE] = ACTIONS(1223), [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), + [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(2225), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(2227), [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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), @@ -80252,23 +81465,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -80279,88 +81492,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [265] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5467), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(265), [sym_preproc_endregion] = STATE(265), [sym_preproc_line] = STATE(265), @@ -80370,65 +81585,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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(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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1211), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), + [anon_sym_switch] = ACTIONS(1165), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80441,11 +81656,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), + [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(1211), + [anon_sym_with] = ACTIONS(1165), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -80457,7 +81672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -80474,97 +81689,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [266] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(266), [sym_preproc_endregion] = STATE(266), [sym_preproc_line] = STATE(266), @@ -80574,54 +81776,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1845), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [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_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(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -80634,19 +81847,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(1085), + [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), @@ -80657,103 +81874,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [267] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(267), [sym_preproc_endregion] = STATE(267), [sym_preproc_line] = STATE(267), @@ -80763,54 +81982,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -80835,7 +82054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -80852,97 +82071,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [268] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(268), [sym_preproc_endregion] = STATE(268), [sym_preproc_line] = STATE(268), @@ -80952,54 +82158,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(1223), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81012,7 +82229,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_stackalloc] = ACTIONS(127), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -81024,7 +82245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -81041,82 +82262,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [269] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4090), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(269), [sym_preproc_endregion] = STATE(269), [sym_preproc_line] = STATE(269), @@ -81126,65 +82349,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2097), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81197,23 +82420,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_with] = ACTIONS(1211), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -81224,88 +82447,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [270] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5280), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(270), [sym_preproc_endregion] = STATE(270), [sym_preproc_line] = STATE(270), @@ -81315,65 +82540,65 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2197), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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(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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), + [anon_sym_switch] = ACTIONS(1223), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81386,11 +82611,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), + [anon_sym_with] = ACTIONS(1223), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -81402,7 +82627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -81419,97 +82644,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [271] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(271), [sym_preproc_endregion] = STATE(271), [sym_preproc_line] = STATE(271), @@ -81519,54 +82731,260 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_switch] = ACTIONS(1165), + [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_AMP_AMP] = ACTIONS(1151), + [anon_sym_PIPE_PIPE] = ACTIONS(1151), + [anon_sym_QMARK_QMARK] = ACTIONS(1151), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = 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(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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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_preproc_region] = STATE(272), + [sym_preproc_endregion] = STATE(272), + [sym_preproc_line] = STATE(272), + [sym_preproc_pragma] = STATE(272), + [sym_preproc_nullable] = STATE(272), + [sym_preproc_error] = STATE(272), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81591,7 +83009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -81607,151 +83025,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [272] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4099), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(272), - [sym_preproc_endregion] = STATE(272), - [sym_preproc_line] = STATE(272), - [sym_preproc_pragma] = STATE(272), - [sym_preproc_nullable] = STATE(272), - [sym_preproc_error] = STATE(272), - [sym_preproc_warning] = STATE(272), - [sym_preproc_define] = STATE(272), - [sym_preproc_undef] = STATE(272), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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_preproc_region] = STATE(273), + [sym_preproc_endregion] = STATE(273), + [sym_preproc_line] = STATE(273), + [sym_preproc_pragma] = STATE(273), + [sym_preproc_nullable] = STATE(273), + [sym_preproc_error] = STATE(273), + [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), + [sym__identifier_token] = ACTIONS(25), + [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_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(1153), + [anon_sym_DOT] = ACTIONS(1223), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_switch] = ACTIONS(1223), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -81764,23 +83184,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), + [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(1153), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_with] = ACTIONS(1223), + [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(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -81791,292 +83211,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [273] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(273), - [sym_preproc_endregion] = STATE(273), - [sym_preproc_line] = STATE(273), - [sym_preproc_pragma] = STATE(273), - [sym_preproc_nullable] = STATE(273), - [sym_preproc_error] = STATE(273), - [sym_preproc_warning] = STATE(273), - [sym_preproc_define] = STATE(273), - [sym_preproc_undef] = STATE(273), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [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), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [274] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(274), [sym_preproc_endregion] = STATE(274), [sym_preproc_line] = STATE(274), @@ -82086,54 +83319,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82158,7 +83391,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -82175,82 +83408,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [275] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5297), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(275), [sym_preproc_endregion] = STATE(275), [sym_preproc_line] = STATE(275), @@ -82260,65 +83510,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(1211), - [anon_sym_GT] = ACTIONS(1211), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1211), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(1211), - [anon_sym_PERCENT] = ACTIONS(1209), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(1211), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(1209), - [anon_sym_GT_GT] = ACTIONS(1211), - [anon_sym_GT_GT_GT] = ACTIONS(1209), - [anon_sym_EQ_EQ] = ACTIONS(1209), - [anon_sym_BANG_EQ] = ACTIONS(1209), - [anon_sym_GT_EQ] = ACTIONS(1209), - [anon_sym_LT_EQ] = ACTIONS(1209), + [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_DOT] = ACTIONS(1211), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1211), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(1209), - [anon_sym_PIPE_PIPE] = ACTIONS(1209), - [anon_sym_QMARK_QMARK] = ACTIONS(1209), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82331,11 +83570,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(1211), - [anon_sym_is] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(1209), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1211), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82347,7 +83582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -82364,82 +83599,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [276] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5481), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(276), [sym_preproc_endregion] = STATE(276), [sym_preproc_line] = STATE(276), @@ -82449,65 +83701,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(276), [sym_preproc_define] = STATE(276), [sym_preproc_undef] = STATE(276), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2249), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), + [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(2271), + [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_DOT] = ACTIONS(1153), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_switch] = ACTIONS(1153), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), + [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), @@ -82520,11 +83761,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(1153), - [anon_sym_is] = ACTIONS(1153), - [anon_sym_DASH_GT] = ACTIONS(1139), [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_with] = ACTIONS(1153), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), @@ -82536,7 +83773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -82553,84 +83790,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [277] = { - [sym_attribute_list] = STATE(5525), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7152), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(277), [sym_preproc_endregion] = STATE(277), [sym_preproc_line] = STATE(277), @@ -82640,66 +83892,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(3051), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2461), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [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_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2263), - [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_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_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(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [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(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82724,7 +83964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -82741,96 +83981,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [278] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(278), [sym_preproc_endregion] = STATE(278), [sym_preproc_line] = STATE(278), @@ -82840,54 +84083,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -82912,7 +84155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -82929,96 +84172,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [279] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(279), [sym_preproc_endregion] = STATE(279), [sym_preproc_line] = STATE(279), @@ -83028,54 +84274,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [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), @@ -83100,7 +84346,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -83117,96 +84363,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [280] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(280), [sym_preproc_endregion] = STATE(280), [sym_preproc_line] = STATE(280), @@ -83216,54 +84465,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83288,7 +84537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -83305,96 +84554,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [281] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(281), [sym_preproc_endregion] = STATE(281), [sym_preproc_line] = STATE(281), @@ -83404,54 +84641,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(2285), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1165), + [anon_sym_PERCENT] = ACTIONS(1151), + [anon_sym_CARET] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(1165), + [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_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_switch] = ACTIONS(1165), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [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_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83464,19 +84712,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -83487,90 +84739,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [282] = { - [sym_attribute_list] = STATE(5525), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7361), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(282), [sym_preproc_endregion] = STATE(282), [sym_preproc_line] = STATE(282), @@ -83580,66 +84832,260 @@ 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(3051), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2453), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__lambda_expression_init_repeat1] = STATE(3440), [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(647), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2279), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2263), - [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_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(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [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(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83664,7 +85110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -83680,154 +85126,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), }, - [283] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(284), + [sym_preproc_endregion] = STATE(284), + [sym_preproc_line] = STATE(284), + [sym_preproc_pragma] = STATE(284), + [sym_preproc_nullable] = STATE(284), + [sym_preproc_error] = STATE(284), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -83852,195 +85300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [284] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(284), - [sym_preproc_endregion] = STATE(284), - [sym_preproc_line] = STATE(284), - [sym_preproc_pragma] = STATE(284), - [sym_preproc_nullable] = STATE(284), - [sym_preproc_error] = STATE(284), - [sym_preproc_warning] = STATE(284), - [sym_preproc_define] = STATE(284), - [sym_preproc_undef] = STATE(284), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -84057,97 +85317,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [285] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6368), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_switch_expression_arm] = STATE(6815), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(285), [sym_preproc_endregion] = STATE(285), [sym_preproc_line] = STATE(285), @@ -84157,53 +85419,53 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [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), @@ -84228,7 +85490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -84245,96 +85507,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [286] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(286), [sym_preproc_endregion] = STATE(286), [sym_preproc_line] = STATE(286), @@ -84344,54 +85609,53 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2285), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1235), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(1127), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84416,7 +85680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -84433,96 +85697,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [287] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(287), [sym_preproc_endregion] = STATE(287), [sym_preproc_line] = STATE(287), @@ -84532,54 +85798,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(287), [sym_preproc_define] = STATE(287), [sym_preproc_undef] = STATE(287), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84604,7 +85870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -84621,84 +85887,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [288] = { - [sym_attribute_list] = STATE(5525), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7477), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(288), [sym_preproc_endregion] = STATE(288), [sym_preproc_line] = STATE(288), @@ -84708,66 +85989,53 @@ 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(3051), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2455), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [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_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2263), - [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_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(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [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(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1995), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84792,7 +86060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -84809,84 +86077,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [289] = { - [sym_attribute_list] = STATE(5525), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7271), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(289), [sym_preproc_endregion] = STATE(289), [sym_preproc_line] = STATE(289), @@ -84896,66 +86178,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(3051), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2476), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [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_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2291), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(673), - [anon_sym_fixed] = ACTIONS(647), - [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2263), - [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_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_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(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [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(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -84980,7 +86250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -84997,97 +86267,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [290] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6402), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5172), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(290), [sym_preproc_endregion] = STATE(290), [sym_preproc_line] = STATE(290), @@ -85097,53 +86368,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85168,7 +86440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -85185,84 +86457,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [291] = { - [sym_attribute_list] = STATE(5525), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7361), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(291), [sym_preproc_endregion] = STATE(291), [sym_preproc_line] = STATE(291), @@ -85272,28 +86546,28 @@ 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(3051), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2453), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2534), + [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_global] = ACTIONS(29), - [anon_sym_using] = ACTIONS(2279), + [anon_sym_using] = ACTIONS(2317), [anon_sym_unsafe] = ACTIONS(647), [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), + [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(673), + [anon_sym_file] = ACTIONS(669), [anon_sym_fixed] = ACTIONS(647), [anon_sym_internal] = ACTIONS(647), - [anon_sym_new] = ACTIONS(2263), + [anon_sym_new] = ACTIONS(2319), [anon_sym_override] = ACTIONS(647), [anon_sym_partial] = ACTIONS(647), [anon_sym_private] = ACTIONS(647), @@ -85307,31 +86581,31 @@ 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(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_foreach] = ACTIONS(2265), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1507), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85356,7 +86630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -85373,96 +86647,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [292] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(292), [sym_preproc_endregion] = STATE(292), [sym_preproc_line] = STATE(292), @@ -85472,54 +86736,256 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2534), + [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_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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2293), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85544,195 +87010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_RBRACK] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -85749,97 +87027,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [294] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6487), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_subpattern] = STATE(6712), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5211), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(294), [sym_preproc_endregion] = STATE(294), [sym_preproc_line] = STATE(294), @@ -85849,53 +87116,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2530), + [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_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1213), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1507), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -85920,7 +87200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -85937,96 +87217,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [295] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2785), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2397), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(295), [sym_preproc_endregion] = STATE(295), [sym_preproc_line] = STATE(295), @@ -86036,53 +87318,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2301), + [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(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_delegate] = ACTIONS(667), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2313), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86107,7 +87390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -86124,96 +87407,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [296] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2804), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2448), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5095), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2513), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(296), [sym_preproc_endregion] = STATE(296), [sym_preproc_line] = STATE(296), @@ -86223,53 +87496,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(296), [sym_preproc_define] = STATE(296), [sym_preproc_undef] = STATE(296), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2537), + [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_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), + [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(1063), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), + [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(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(2323), - [anon_sym_LT_EQ] = ACTIONS(2323), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2331), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1507), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86283,18 +87569,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -86305,102 +87591,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [297] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2802), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2273), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2421), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5197), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2505), - [sym_property_pattern_clause] = STATE(2656), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(297), [sym_preproc_endregion] = STATE(297), [sym_preproc_line] = STATE(297), @@ -86410,53 +87698,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), + [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(1063), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2337), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86481,7 +87770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -86498,96 +87787,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [298] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2802), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2273), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2421), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5209), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2505), - [sym_property_pattern_clause] = STATE(2656), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(298), [sym_preproc_endregion] = STATE(298), [sym_preproc_line] = STATE(298), @@ -86597,53 +87888,54 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), + [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(1063), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2337), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2341), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86668,7 +87960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -86685,96 +87977,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [299] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2798), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2423), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4105), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2508), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(299), [sym_preproc_endregion] = STATE(299), [sym_preproc_line] = STATE(299), @@ -86784,53 +88066,66 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym__class_declaration_initializer_repeat2] = STATE(2542), + [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_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), + [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(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), + [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(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2351), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(89), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2357), + [anon_sym_await] = ACTIONS(1505), + [anon_sym_foreach] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(1507), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -86844,18 +88139,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -86866,102 +88161,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [300] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2661), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2198), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2331), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4489), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2431), - [sym_property_pattern_clause] = STATE(2488), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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(300), [sym_preproc_endregion] = STATE(300), [sym_preproc_line] = STATE(300), @@ -86971,78 +88268,79 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), + [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(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_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(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [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(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [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(1589), + [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_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -87053,102 +88351,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [301] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2789), - [sym_alias_qualified_name] = STATE(2315), + [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(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2393), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3680), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2493), - [sym_property_pattern_clause] = STATE(2557), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(301), [sym_preproc_endregion] = STATE(301), [sym_preproc_line] = STATE(301), @@ -87158,53 +88458,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), + [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(1063), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [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(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT_EQ] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2389), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1077), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87218,18 +88519,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -87240,102 +88541,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [302] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2168), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(302), [sym_preproc_endregion] = STATE(302), [sym_preproc_line] = STATE(302), @@ -87345,78 +88648,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2353), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [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(2401), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(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_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -87427,102 +88730,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(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [303] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2746), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2180), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2327), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4973), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2418), - [sym_property_pattern_clause] = STATE(2489), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(303), [sym_preproc_endregion] = STATE(303), [sym_preproc_line] = STATE(303), @@ -87532,78 +88837,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), + [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(2367), + [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(2373), + [anon_sym_GT] = ACTIONS(2373), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2385), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87614,102 +88919,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [304] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2259), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2444), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5002), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2526), - [sym_property_pattern_clause] = STATE(2634), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(304), [sym_preproc_endregion] = STATE(304), [sym_preproc_line] = STATE(304), @@ -87719,53 +89026,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_GT] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_GT] = ACTIONS(2391), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2415), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_GT_EQ] = ACTIONS(2393), + [anon_sym_LT_EQ] = ACTIONS(2393), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2397), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87779,18 +89086,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -87801,102 +89108,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [305] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2175), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4306), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(305), [sym_preproc_endregion] = STATE(305), [sym_preproc_line] = STATE(305), @@ -87906,53 +89215,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1049), [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_ref] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_delegate] = ACTIONS(667), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2409), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2411), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2413), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -87977,7 +89286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -87994,96 +89303,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [306] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2157), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3944), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(306), [sym_preproc_endregion] = STATE(306), [sym_preproc_line] = STATE(306), @@ -88093,53 +89404,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_GT] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2409), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2411), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2413), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88153,18 +89464,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -88175,102 +89486,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [307] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5546), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5043), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6394), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5048), - [sym_prefix_unary_expression] = STATE(5048), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(5048), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3319), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(5048), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3319), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(307), [sym_preproc_endregion] = STATE(307), [sym_preproc_line] = STATE(307), @@ -88280,53 +89593,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_ref] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [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(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2437), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2439), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2429), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88340,18 +89653,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -88362,102 +89675,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [308] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5546), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5043), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5048), - [sym_prefix_unary_expression] = STATE(5048), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(5048), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3319), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(5048), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3319), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(308), [sym_preproc_endregion] = STATE(308), [sym_preproc_line] = STATE(308), @@ -88467,53 +89782,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_ref] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [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(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [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(2437), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2439), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2437), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88538,7 +89853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -88555,96 +89870,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [309] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6391), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(309), [sym_preproc_endregion] = STATE(309), [sym_preproc_line] = STATE(309), @@ -88654,53 +89971,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_not] = ACTIONS(2445), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88725,7 +90042,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -88742,96 +90059,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [310] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5546), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2234), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5043), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6504), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5048), - [sym_prefix_unary_expression] = STATE(5048), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(5048), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3319), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(5048), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3319), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(310), [sym_preproc_endregion] = STATE(310), [sym_preproc_line] = STATE(310), @@ -88841,53 +90160,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_ref] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2437), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2439), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2441), + [anon_sym_not] = ACTIONS(2445), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -88912,7 +90231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -88929,96 +90248,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [311] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4260), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(311), [sym_preproc_endregion] = STATE(311), [sym_preproc_line] = STATE(311), @@ -89028,53 +90349,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2445), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89099,7 +90420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -89116,96 +90437,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [312] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(312), [sym_preproc_endregion] = STATE(312), [sym_preproc_line] = STATE(312), @@ -89215,53 +90538,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(2445), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89286,7 +90609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -89303,96 +90626,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [313] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2402), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5012), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(313), [sym_preproc_endregion] = STATE(313), [sym_preproc_line] = STATE(313), @@ -89402,53 +90727,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), + [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(1063), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2451), + [anon_sym_not] = ACTIONS(2457), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89462,18 +90787,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89484,102 +90809,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [314] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6438), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(314), [sym_preproc_endregion] = STATE(314), [sym_preproc_line] = STATE(314), @@ -89589,53 +90916,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_GT] = ACTIONS(2461), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(2465), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -89649,18 +90976,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -89671,102 +90998,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [315] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2804), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2435), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5102), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2513), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(315), [sym_preproc_endregion] = STATE(315), [sym_preproc_line] = STATE(315), @@ -89776,614 +91105,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(2323), - [anon_sym_LT_EQ] = ACTIONS(2323), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [316] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2804), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2435), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2513), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(316), - [sym_preproc_endregion] = STATE(316), - [sym_preproc_line] = STATE(316), - [sym_preproc_pragma] = STATE(316), - [sym_preproc_nullable] = STATE(316), - [sym_preproc_error] = STATE(316), - [sym_preproc_warning] = STATE(316), - [sym_preproc_define] = STATE(316), - [sym_preproc_undef] = STATE(316), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(2323), - [anon_sym_LT_EQ] = ACTIONS(2323), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [317] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2804), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2435), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5146), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2513), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(317), - [sym_preproc_endregion] = STATE(317), - [sym_preproc_line] = STATE(317), - [sym_preproc_pragma] = STATE(317), - [sym_preproc_nullable] = STATE(317), - [sym_preproc_error] = STATE(317), - [sym_preproc_warning] = STATE(317), - [sym_preproc_define] = STATE(317), - [sym_preproc_undef] = STATE(317), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(2323), - [anon_sym_LT_EQ] = ACTIONS(2323), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2331), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [318] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6489), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(318), - [sym_preproc_endregion] = STATE(318), - [sym_preproc_line] = STATE(318), - [sym_preproc_pragma] = STATE(318), - [sym_preproc_nullable] = STATE(318), - [sym_preproc_error] = STATE(318), - [sym_preproc_warning] = STATE(318), - [sym_preproc_define] = STATE(318), - [sym_preproc_undef] = STATE(318), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(2299), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), + [anon_sym_var] = ACTIONS(1077), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90408,7 +91176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -90424,153 +91192,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), }, - [319] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4268), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(319), - [sym_preproc_endregion] = STATE(319), - [sym_preproc_line] = STATE(319), - [sym_preproc_pragma] = STATE(319), - [sym_preproc_nullable] = STATE(319), - [sym_preproc_error] = STATE(319), - [sym_preproc_warning] = STATE(319), - [sym_preproc_define] = STATE(319), - [sym_preproc_undef] = STATE(319), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(316), + [sym_preproc_endregion] = STATE(316), + [sym_preproc_line] = STATE(316), + [sym_preproc_pragma] = STATE(316), + [sym_preproc_nullable] = STATE(316), + [sym_preproc_error] = STATE(316), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2399), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2401), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90595,7 +91365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -90611,153 +91381,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), }, - [320] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2384), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(320), - [sym_preproc_endregion] = STATE(320), - [sym_preproc_line] = STATE(320), - [sym_preproc_pragma] = STATE(320), - [sym_preproc_nullable] = STATE(320), - [sym_preproc_error] = STATE(320), - [sym_preproc_warning] = STATE(320), - [sym_preproc_define] = STATE(320), - [sym_preproc_undef] = STATE(320), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(317), + [sym_preproc_endregion] = STATE(317), + [sym_preproc_line] = STATE(317), + [sym_preproc_pragma] = STATE(317), + [sym_preproc_nullable] = STATE(317), + [sym_preproc_error] = STATE(317), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_GT] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2461), + [anon_sym_not] = ACTIONS(2473), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90771,18 +91543,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90793,102 +91565,671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), + }, + [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_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_preproc_region] = STATE(318), + [sym_preproc_endregion] = STATE(318), + [sym_preproc_line] = STATE(318), + [sym_preproc_pragma] = STATE(318), + [sym_preproc_nullable] = STATE(318), + [sym_preproc_error] = STATE(318), + [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), + [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), + [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_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_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_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), + }, + [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_preproc_region] = STATE(319), + [sym_preproc_endregion] = STATE(319), + [sym_preproc_line] = STATE(319), + [sym_preproc_pragma] = STATE(319), + [sym_preproc_nullable] = STATE(319), + [sym_preproc_error] = STATE(319), + [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), + [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_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_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_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), + }, + [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_preproc_region] = STATE(320), + [sym_preproc_endregion] = STATE(320), + [sym_preproc_line] = STATE(320), + [sym_preproc_pragma] = STATE(320), + [sym_preproc_nullable] = STATE(320), + [sym_preproc_error] = STATE(320), + [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), + [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), + [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_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_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_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), }, [321] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2785), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2401), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(321), [sym_preproc_endregion] = STATE(321), [sym_preproc_line] = STATE(321), @@ -90898,53 +92239,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2493), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(2495), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2497), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -90958,18 +92299,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -90980,102 +92321,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [322] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2797), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2274), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2434), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5354), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2495), - [sym_property_pattern_clause] = STATE(2687), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(322), [sym_preproc_endregion] = STATE(322), [sym_preproc_line] = STATE(322), @@ -91085,53 +92428,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2493), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(2495), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2497), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91145,18 +92488,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91167,102 +92510,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [323] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2387), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), + [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_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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(323), [sym_preproc_endregion] = STATE(323), [sym_preproc_line] = STATE(323), @@ -91272,53 +92617,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2493), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(2495), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2497), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91332,18 +92677,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91354,102 +92699,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [324] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2789), - [sym_alias_qualified_name] = STATE(2315), + [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(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2390), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3703), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2493), - [sym_property_pattern_clause] = STATE(2557), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(324), [sym_preproc_endregion] = STATE(324), [sym_preproc_line] = STATE(324), @@ -91459,53 +92806,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), + [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(1063), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [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(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT_EQ] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2389), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1077), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91519,18 +92866,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -91541,102 +92888,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [325] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2789), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2390), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3733), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2493), - [sym_property_pattern_clause] = STATE(2557), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(325), [sym_preproc_endregion] = STATE(325), [sym_preproc_line] = STATE(325), @@ -91646,53 +92995,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), + [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(1063), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT_EQ] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2389), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2429), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91706,18 +93055,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [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(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -91728,102 +93077,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [326] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2789), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2390), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3628), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2493), - [sym_property_pattern_clause] = STATE(2557), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(326), [sym_preproc_endregion] = STATE(326), [sym_preproc_line] = STATE(326), @@ -91833,53 +93184,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2387), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_GT] = ACTIONS(2461), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT_EQ] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2389), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), + [anon_sym_not] = ACTIONS(2465), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -91893,18 +93244,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -91915,102 +93266,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [327] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2797), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2274), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2434), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2495), - [sym_property_pattern_clause] = STATE(2687), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(327), [sym_preproc_endregion] = STATE(327), [sym_preproc_line] = STATE(327), @@ -92020,53 +93373,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), + [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(1063), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92091,7 +93444,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -92108,96 +93461,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [328] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2797), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2274), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2434), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5322), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2495), - [sym_property_pattern_clause] = STATE(2687), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(328), [sym_preproc_endregion] = STATE(328), [sym_preproc_line] = STATE(328), @@ -92207,53 +93562,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_GT] = ACTIONS(2461), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2465), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92267,18 +93622,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -92289,102 +93644,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [329] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4596), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(329), [sym_preproc_endregion] = STATE(329), [sym_preproc_line] = STATE(329), @@ -92394,53 +93751,53 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [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(1063), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2429), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92454,18 +93811,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -92476,102 +93833,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [330] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2806), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5042), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2500), - [sym_property_pattern_clause] = STATE(2750), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(330), [sym_preproc_endregion] = STATE(330), [sym_preproc_line] = STATE(330), @@ -92581,53 +93940,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92641,18 +94000,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -92663,102 +94022,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [331] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2794), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2438), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2522), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(331), [sym_preproc_endregion] = STATE(331), [sym_preproc_line] = STATE(331), @@ -92768,53 +94129,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2501), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -92839,7 +94200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -92856,96 +94217,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [332] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2806), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2500), - [sym_property_pattern_clause] = STATE(2750), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(332), [sym_preproc_endregion] = STATE(332), [sym_preproc_line] = STATE(332), @@ -92955,53 +94318,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93015,18 +94378,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -93037,102 +94400,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [333] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2175), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4672), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(333), [sym_preproc_endregion] = STATE(333), [sym_preproc_line] = STATE(333), @@ -93142,53 +94507,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_GT] = ACTIONS(2461), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2465), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93202,18 +94567,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93224,102 +94589,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [334] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2806), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2425), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5106), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2500), - [sym_property_pattern_clause] = STATE(2750), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(334), [sym_preproc_endregion] = STATE(334), [sym_preproc_line] = STATE(334), @@ -93329,53 +94696,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [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(1063), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2429), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93389,18 +94756,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [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(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -93411,102 +94778,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [335] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2389), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5484), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2485), - [sym_property_pattern_clause] = STATE(2528), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(335), [sym_preproc_endregion] = STATE(335), [sym_preproc_line] = STATE(335), @@ -93516,53 +94885,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2509), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93576,18 +94945,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -93598,102 +94967,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [336] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2540), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4309), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(336), [sym_preproc_endregion] = STATE(336), [sym_preproc_line] = STATE(336), @@ -93703,53 +95074,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1643), + [anon_sym_AMP] = ACTIONS(1643), + [anon_sym_GT_EQ] = ACTIONS(2421), + [anon_sym_LT_EQ] = ACTIONS(2421), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2429), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93763,18 +95134,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [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(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -93785,102 +95156,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [337] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2540), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(337), [sym_preproc_endregion] = STATE(337), [sym_preproc_line] = STATE(337), @@ -93890,53 +95263,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), + [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_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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [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(2521), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1077), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2523), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -93950,18 +95323,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -93972,102 +95345,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [338] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2540), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4365), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(338), [sym_preproc_endregion] = STATE(338), [sym_preproc_line] = STATE(338), @@ -94077,53 +95452,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(2365), [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), + [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(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94137,18 +95512,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94159,102 +95534,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [339] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2175), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5317), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(339), [sym_preproc_endregion] = STATE(339), [sym_preproc_line] = STATE(339), @@ -94264,53 +95641,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_GT] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), + [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(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2529), - [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94324,18 +95701,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94346,102 +95723,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [340] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2804), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2433), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2513), - [sym_property_pattern_clause] = STATE(2765), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5488), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(340), [sym_preproc_endregion] = STATE(340), [sym_preproc_line] = STATE(340), @@ -94451,53 +95830,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), + [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(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_GT_EQ] = ACTIONS(2323), - [anon_sym_LT_EQ] = ACTIONS(2323), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2331), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -94511,18 +95890,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94533,102 +95912,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [341] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2661), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2198), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2301), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4493), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2431), - [sym_property_pattern_clause] = STATE(2488), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(341), [sym_preproc_endregion] = STATE(341), [sym_preproc_line] = STATE(341), @@ -94638,78 +96019,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), + [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(2521), + [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(2523), + [anon_sym_GT] = ACTIONS(2523), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [anon_sym_scoped] = ACTIONS(2395), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2527), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94720,102 +96101,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [342] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2661), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2198), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2301), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4722), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2431), - [sym_property_pattern_clause] = STATE(2488), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(342), [sym_preproc_endregion] = STATE(342), [sym_preproc_line] = STATE(342), @@ -94825,78 +96208,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), + [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(2513), + [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(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2519), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -94907,102 +96290,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [343] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2167), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(343), [sym_preproc_endregion] = STATE(343), [sym_preproc_line] = STATE(343), @@ -95012,53 +96397,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_GT] = ACTIONS(2421), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95072,18 +96457,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -95094,102 +96479,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [344] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2661), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2198), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2301), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4701), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2431), - [sym_property_pattern_clause] = STATE(2488), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(344), [sym_preproc_endregion] = STATE(344), [sym_preproc_line] = STATE(344), @@ -95199,78 +96586,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2353), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [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(2381), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [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_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), + [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(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -95281,102 +96668,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [345] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2410), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5308), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(345), [sym_preproc_endregion] = STATE(345), [sym_preproc_line] = STATE(345), @@ -95386,78 +96775,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2353), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [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(2477), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_not] = ACTIONS(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_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), + [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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -95468,102 +96857,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(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [346] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2410), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(346), [sym_preproc_endregion] = STATE(346), [sym_preproc_line] = STATE(346), @@ -95573,53 +96964,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(346), [sym_preproc_define] = STATE(346), [sym_preproc_undef] = STATE(346), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [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(1063), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1109), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95644,7 +97035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -95661,96 +97052,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [347] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2410), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5449), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(347), [sym_preproc_endregion] = STATE(347), [sym_preproc_line] = STATE(347), @@ -95760,53 +97153,242 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), + [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_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(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_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), + }, + [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_preproc_region] = STATE(348), + [sym_preproc_endregion] = STATE(348), + [sym_preproc_line] = STATE(348), + [sym_preproc_pragma] = STATE(348), + [sym_preproc_nullable] = STATE(348), + [sym_preproc_error] = STATE(348), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [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(1063), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -95831,7 +97413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -95847,153 +97429,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), }, - [348] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6448), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(348), - [sym_preproc_endregion] = STATE(348), - [sym_preproc_line] = STATE(348), - [sym_preproc_pragma] = STATE(348), - [sym_preproc_nullable] = STATE(348), - [sym_preproc_error] = STATE(348), - [sym_preproc_warning] = STATE(348), - [sym_preproc_define] = STATE(348), - [sym_preproc_undef] = STATE(348), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96018,7 +97602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -96034,284 +97618,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [349] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5058), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2451), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, [350] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(350), [sym_preproc_endregion] = STATE(350), [sym_preproc_line] = STATE(350), @@ -96321,53 +97720,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(350), [sym_preproc_define] = STATE(350), [sym_preproc_undef] = STATE(350), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), + [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(1063), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), + [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(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2451), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96381,18 +97780,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -96403,102 +97802,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [351] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2395), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5153), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(351), [sym_preproc_endregion] = STATE(351), [sym_preproc_line] = STATE(351), @@ -96508,53 +97909,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), + [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(1063), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), + [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(81), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2483), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2451), + [anon_sym_not] = ACTIONS(2489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96568,18 +97969,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [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(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -96590,102 +97991,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [352] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2797), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2274), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2417), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2495), - [sym_property_pattern_clause] = STATE(2687), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(352), [sym_preproc_endregion] = STATE(352), [sym_preproc_line] = STATE(352), @@ -96695,53 +98098,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), + [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(1063), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96766,7 +98169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -96783,96 +98186,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [353] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2806), - [sym_alias_qualified_name] = STATE(2315), + [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(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2436), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2500), - [sym_property_pattern_clause] = STATE(2750), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(353), [sym_preproc_endregion] = STATE(353), [sym_preproc_line] = STATE(353), @@ -96882,53 +98287,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [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(1063), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), + [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(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(2503), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -96942,18 +98347,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -96964,102 +98369,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [354] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2661), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2198), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2336), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4694), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2431), - [sym_property_pattern_clause] = STATE(2488), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5514), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(354), [sym_preproc_endregion] = STATE(354), [sym_preproc_line] = STATE(354), @@ -97069,78 +98476,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2369), - [anon_sym_GT] = ACTIONS(2369), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), + [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(2499), + [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(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(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_GT_EQ] = ACTIONS(2371), - [anon_sym_LT_EQ] = ACTIONS(2371), + [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(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2381), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2503), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -97151,102 +98558,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [355] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2802), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2273), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2432), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2505), - [sym_property_pattern_clause] = STATE(2656), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(355), [sym_preproc_endregion] = STATE(355), [sym_preproc_line] = STATE(355), @@ -97256,53 +98665,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2551), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2553), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97316,18 +98725,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -97338,102 +98747,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [356] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2259), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2451), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2526), - [sym_property_pattern_clause] = STATE(2634), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(356), [sym_preproc_endregion] = STATE(356), [sym_preproc_line] = STATE(356), @@ -97443,53 +98854,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_GT] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2415), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2551), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2553), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97503,18 +98914,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [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(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -97525,102 +98936,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [357] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2404), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5306), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(357), [sym_preproc_endregion] = STATE(357), [sym_preproc_line] = STATE(357), @@ -97630,53 +99043,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2473), - [anon_sym_GT] = ACTIONS(2473), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_GT_EQ] = ACTIONS(2475), - [anon_sym_LT_EQ] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2551), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2477), + [anon_sym_not] = ACTIONS(2553), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97690,18 +99103,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -97712,102 +99125,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [358] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2449), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4073), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2503), - [sym_property_pattern_clause] = STATE(2749), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(358), [sym_preproc_endregion] = STATE(358), [sym_preproc_line] = STATE(358), @@ -97817,53 +99232,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(2537), - [anon_sym_LT_EQ] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2539), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2473), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -97877,18 +99292,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -97899,102 +99314,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [359] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2794), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2430), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5403), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2522), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(359), [sym_preproc_endregion] = STATE(359), [sym_preproc_line] = STATE(359), @@ -98004,53 +99421,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2501), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98075,7 +99492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -98092,96 +99509,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [360] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2168), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(360), [sym_preproc_endregion] = STATE(360), [sym_preproc_line] = STATE(360), @@ -98191,53 +99610,242 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_GT] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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_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_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_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2473), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1193), + [anon_sym_typeof] = ACTIONS(1195), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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_preproc_region] = STATE(361), + [sym_preproc_endregion] = STATE(361), + [sym_preproc_line] = STATE(361), + [sym_preproc_pragma] = STATE(361), + [sym_preproc_nullable] = STATE(361), + [sym_preproc_error] = STATE(361), + [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), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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(1755), - [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2529), - [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2557), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98262,7 +99870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -98278,284 +99886,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [361] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2789), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2230), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2391), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3631), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2493), - [sym_property_pattern_clause] = STATE(2557), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(361), - [sym_preproc_endregion] = STATE(361), - [sym_preproc_line] = STATE(361), - [sym_preproc_pragma] = STATE(361), - [sym_preproc_nullable] = STATE(361), - [sym_preproc_error] = STATE(361), - [sym_preproc_warning] = STATE(361), - [sym_preproc_define] = STATE(361), - [sym_preproc_undef] = STATE(361), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [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(1063), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_GT_EQ] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2389), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2397), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, [362] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2783), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2400), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4969), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(362), [sym_preproc_endregion] = STATE(362), [sym_preproc_line] = STATE(362), @@ -98565,53 +99988,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_GT] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2557), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98625,18 +100048,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -98647,102 +100070,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [363] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2783), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2403), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(363), [sym_preproc_endregion] = STATE(363), [sym_preproc_line] = STATE(363), @@ -98752,53 +100177,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_GT] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2557), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98812,18 +100237,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -98834,102 +100259,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [364] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2783), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2400), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(364), [sym_preproc_endregion] = STATE(364), [sym_preproc_line] = STATE(364), @@ -98939,53 +100366,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_GT] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_GT] = ACTIONS(2391), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + [anon_sym_GT_EQ] = ACTIONS(2393), + [anon_sym_LT_EQ] = ACTIONS(2393), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2549), + [anon_sym_not] = ACTIONS(2397), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -98999,18 +100426,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99021,102 +100448,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [365] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2422), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4044), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2503), - [sym_property_pattern_clause] = STATE(2749), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(365), [sym_preproc_endregion] = STATE(365), [sym_preproc_line] = STATE(365), @@ -99126,53 +100555,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_GT] = ACTIONS(2469), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(2537), - [anon_sym_LT_EQ] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + [anon_sym_GT_EQ] = ACTIONS(2471), + [anon_sym_LT_EQ] = ACTIONS(2471), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2539), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2473), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99186,18 +100615,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -99208,102 +100637,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [366] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2783), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2400), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5496), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(366), [sym_preproc_endregion] = STATE(366), [sym_preproc_line] = STATE(366), @@ -99313,53 +100744,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2545), - [anon_sym_GT] = ACTIONS(2545), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_GT_EQ] = ACTIONS(2547), - [anon_sym_LT_EQ] = ACTIONS(2547), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2409), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2411), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2549), + [anon_sym_await] = ACTIONS(1235), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_not] = ACTIONS(2413), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99373,18 +100804,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -99395,102 +100826,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [367] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2396), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2485), - [sym_property_pattern_clause] = STATE(2528), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(367), [sym_preproc_endregion] = STATE(367), [sym_preproc_line] = STATE(367), @@ -99500,53 +100933,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2509), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99571,7 +101004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -99588,96 +101021,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [368] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2802), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2273), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2421), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2505), - [sym_property_pattern_clause] = STATE(2656), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(368), [sym_preproc_endregion] = STATE(368), [sym_preproc_line] = STATE(368), @@ -99687,53 +101122,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99758,7 +101193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -99775,96 +101210,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [369] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2168), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(369), [sym_preproc_endregion] = STATE(369), [sym_preproc_line] = STATE(369), @@ -99874,53 +101311,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_LT_EQ] = ACTIONS(2555), + [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(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -99945,7 +101382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -99962,96 +101399,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [370] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2794), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5444), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2522), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(370), [sym_preproc_endregion] = STATE(370), [sym_preproc_line] = STATE(370), @@ -100061,53 +101500,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2501), + [anon_sym_not] = ACTIONS(2385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100121,18 +101560,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -100143,102 +101582,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [371] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2259), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2440), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5008), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2526), - [sym_property_pattern_clause] = STATE(2634), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(371), [sym_preproc_endregion] = STATE(371), [sym_preproc_line] = STATE(371), @@ -100248,240 +101689,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_GT] = ACTIONS(2413), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2415), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2417), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [372] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2794), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2522), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(372), - [sym_preproc_endregion] = STATE(372), - [sym_preproc_line] = STATE(372), - [sym_preproc_pragma] = STATE(372), - [sym_preproc_nullable] = STATE(372), - [sym_preproc_error] = STATE(372), - [sym_preproc_warning] = STATE(372), - [sym_preproc_define] = STATE(372), - [sym_preproc_undef] = STATE(372), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(2405), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), + [anon_sym_GT_EQ] = ACTIONS(2407), + [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2501), + [anon_sym_not] = ACTIONS(2557), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100506,7 +101760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -100522,153 +101776,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), }, - [373] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2794), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2266), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5436), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2522), - [sym_property_pattern_clause] = STATE(2631), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5535), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(373), - [sym_preproc_endregion] = STATE(373), - [sym_preproc_line] = STATE(373), - [sym_preproc_pragma] = STATE(373), - [sym_preproc_nullable] = STATE(373), - [sym_preproc_error] = STATE(373), - [sym_preproc_warning] = STATE(373), - [sym_preproc_define] = STATE(373), - [sym_preproc_undef] = STATE(373), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(372), + [sym_preproc_endregion] = STATE(372), + [sym_preproc_line] = STATE(372), + [sym_preproc_pragma] = STATE(372), + [sym_preproc_nullable] = STATE(372), + [sym_preproc_error] = STATE(372), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2497), - [anon_sym_GT] = ACTIONS(2497), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_GT_EQ] = ACTIONS(2499), - [anon_sym_LT_EQ] = ACTIONS(2499), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2573), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2575), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2501), + [anon_sym_not] = ACTIONS(2577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100693,7 +101949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -100709,97 +101965,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), }, + [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_preproc_region] = STATE(373), + [sym_preproc_endregion] = STATE(373), + [sym_preproc_line] = STATE(373), + [sym_preproc_pragma] = STATE(373), + [sym_preproc_nullable] = STATE(373), + [sym_preproc_error] = STATE(373), + [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), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2493), + [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_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_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2497), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1193), + [anon_sym_typeof] = ACTIONS(1195), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [374] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5431), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(374), [sym_preproc_endregion] = STATE(374), [sym_preproc_line] = STATE(374), @@ -100809,53 +102256,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_GT] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2581), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2529), - [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2585), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -100880,7 +102327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -100897,96 +102344,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [375] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5538), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5047), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4106), - [sym_postfix_unary_expression] = STATE(4108), - [sym_prefix_unary_expression] = STATE(4108), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4106), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4108), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4106), - [sym_member_access_expression] = STATE(3039), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4108), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4106), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4106), - [sym_typeof_expression] = STATE(4106), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3039), - [sym_literal] = STATE(4106), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(375), [sym_preproc_endregion] = STATE(375), [sym_preproc_line] = STATE(375), @@ -100996,53 +102445,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), + [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(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(2481), + [anon_sym_LT_EQ] = ACTIONS(2481), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1941), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2483), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1943), + [anon_sym_not] = ACTIONS(2489), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101056,18 +102505,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -101078,102 +102527,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [376] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5546), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2217), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5043), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6302), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5511), - [sym_property_pattern_clause] = STATE(5567), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5359), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(5092), - [sym_postfix_unary_expression] = STATE(5161), - [sym_prefix_unary_expression] = STATE(5161), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(5092), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(5161), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(5092), - [sym_member_access_expression] = STATE(3299), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(5161), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(5092), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(5092), - [sym_typeof_expression] = STATE(5092), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3299), - [sym_literal] = STATE(5092), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(376), [sym_preproc_endregion] = STATE(376), [sym_preproc_line] = STATE(376), @@ -101183,53 +102634,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_ref] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2437), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2439), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2575), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_not] = ACTIONS(2441), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101254,7 +102705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -101271,96 +102722,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [377] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2798), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2416), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4073), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2508), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(377), [sym_preproc_endregion] = STATE(377), [sym_preproc_line] = STATE(377), @@ -101370,78 +102823,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(2353), + [anon_sym_LT_EQ] = ACTIONS(2353), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2351), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [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(2357), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(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_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), + [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(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -101452,102 +102905,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [378] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4669), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(378), [sym_preproc_endregion] = STATE(378), [sym_preproc_line] = STATE(378), @@ -101557,53 +103012,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2523), + [anon_sym_GT] = ACTIONS(2523), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), + [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(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_GT_EQ] = ACTIONS(2525), + [anon_sym_LT_EQ] = ACTIONS(2525), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2527), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101617,18 +103072,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -101639,102 +103094,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [379] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(379), [sym_preproc_endregion] = STATE(379), [sym_preproc_line] = STATE(379), @@ -101744,53 +103201,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2581), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2585), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101815,7 +103272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -101832,96 +103289,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [380] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4540), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(380), [sym_preproc_endregion] = STATE(380), [sym_preproc_line] = STATE(380), @@ -101931,53 +103390,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2557), + [anon_sym_not] = ACTIONS(2385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -101991,18 +103450,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102013,102 +103472,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [381] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(381), [sym_preproc_endregion] = STATE(381), [sym_preproc_line] = STATE(381), @@ -102118,53 +103579,242 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2545), + [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(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(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(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_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2551), + [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_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2553), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, + [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_preproc_region] = STATE(382), + [sym_preproc_endregion] = STATE(382), + [sym_preproc_line] = STATE(382), + [sym_preproc_pragma] = STATE(382), + [sym_preproc_nullable] = STATE(382), + [sym_preproc_error] = STATE(382), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_GT] = ACTIONS(2527), + [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(1063), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2529), - [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(2591), + [anon_sym_LT_EQ] = ACTIONS(2591), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2593), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102189,7 +103839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -102205,153 +103855,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), }, - [382] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4411), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(382), - [sym_preproc_endregion] = STATE(382), - [sym_preproc_line] = STATE(382), - [sym_preproc_pragma] = STATE(382), - [sym_preproc_nullable] = STATE(382), - [sym_preproc_error] = STATE(382), - [sym_preproc_warning] = STATE(382), - [sym_preproc_define] = STATE(382), - [sym_preproc_undef] = STATE(382), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(383), + [sym_preproc_endregion] = STATE(383), + [sym_preproc_line] = STATE(383), + [sym_preproc_pragma] = STATE(383), + [sym_preproc_nullable] = STATE(383), + [sym_preproc_error] = STATE(383), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [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(1063), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102376,194 +104028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [383] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6422), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(383), - [sym_preproc_endregion] = STATE(383), - [sym_preproc_line] = STATE(383), - [sym_preproc_pragma] = STATE(383), - [sym_preproc_nullable] = STATE(383), - [sym_preproc_error] = STATE(383), - [sym_preproc_warning] = STATE(383), - [sym_preproc_define] = STATE(383), - [sym_preproc_undef] = STATE(383), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2299), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = 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(1085), + [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), @@ -102580,96 +104045,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [384] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(384), [sym_preproc_endregion] = STATE(384), [sym_preproc_line] = STATE(384), @@ -102679,53 +104146,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_GT] = ACTIONS(2461), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(2463), + [anon_sym_LT_EQ] = ACTIONS(2463), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2299), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(2465), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102739,18 +104206,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -102761,102 +104228,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [385] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6486), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(385), [sym_preproc_endregion] = STATE(385), [sym_preproc_line] = STATE(385), @@ -102866,53 +104335,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2441), + [anon_sym_GT] = ACTIONS(2441), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_GT_EQ] = ACTIONS(2443), + [anon_sym_LT_EQ] = ACTIONS(2443), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2299), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1119), + [anon_sym_not] = ACTIONS(2445), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -102937,7 +104406,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -102954,96 +104423,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [386] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5239), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5515), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(386), [sym_preproc_endregion] = STATE(386), [sym_preproc_line] = STATE(386), @@ -103053,53 +104524,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_GT] = ACTIONS(2527), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_GT_EQ] = ACTIONS(2529), - [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2531), + [anon_sym_not] = ACTIONS(2385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103113,18 +104584,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103135,102 +104606,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [387] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2414), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4967), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(387), [sym_preproc_endregion] = STATE(387), [sym_preproc_line] = STATE(387), @@ -103240,53 +104713,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_GT] = ACTIONS(2457), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(2509), + [anon_sym_LT_EQ] = ACTIONS(2509), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2461), + [anon_sym_not] = ACTIONS(2511), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103300,18 +104773,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -103322,102 +104795,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [388] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2414), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(388), [sym_preproc_endregion] = STATE(388), [sym_preproc_line] = STATE(388), @@ -103427,53 +104902,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(388), [sym_preproc_define] = STATE(388), [sym_preproc_undef] = STATE(388), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_GT] = ACTIONS(2457), + [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(1063), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), + [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(81), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2461), + [anon_sym_not] = ACTIONS(2437), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103487,18 +104962,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -103509,102 +104984,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [389] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2802), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2273), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2428), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5195), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2505), - [sym_property_pattern_clause] = STATE(2656), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5495), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(389), [sym_preproc_endregion] = STATE(389), [sym_preproc_line] = STATE(389), @@ -103614,53 +105091,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2333), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2335), - [anon_sym_GT] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_GT] = ACTIONS(2493), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_GT_EQ] = ACTIONS(2337), - [anon_sym_LT_EQ] = ACTIONS(2337), + [anon_sym_CARET] = ACTIONS(1831), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(2495), + [anon_sym_LT_EQ] = ACTIONS(2495), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2341), + [anon_sym_not] = ACTIONS(2497), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103674,18 +105151,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -103696,102 +105173,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [390] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2169), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(390), [sym_preproc_endregion] = STATE(390), [sym_preproc_line] = STATE(390), @@ -103801,53 +105280,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [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(1063), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2543), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -103872,7 +105351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -103889,96 +105368,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [391] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2209), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2414), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4814), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2474), - [sym_property_pattern_clause] = STATE(2515), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5486), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(391), [sym_preproc_endregion] = STATE(391), [sym_preproc_line] = STATE(391), @@ -103988,53 +105469,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(391), [sym_preproc_define] = STATE(391), [sym_preproc_undef] = STATE(391), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2457), - [anon_sym_GT] = ACTIONS(2457), + [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(1063), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_GT_EQ] = ACTIONS(2459), - [anon_sym_LT_EQ] = ACTIONS(2459), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_GT_EQ] = ACTIONS(2591), + [anon_sym_LT_EQ] = ACTIONS(2591), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2501), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2461), + [anon_sym_not] = ACTIONS(2593), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104048,18 +105529,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -104070,102 +105551,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [392] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2426), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4088), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2503), - [sym_property_pattern_clause] = STATE(2749), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(392), [sym_preproc_endregion] = STATE(392), [sym_preproc_line] = STATE(392), @@ -104175,53 +105658,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2581), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(2537), - [anon_sym_LT_EQ] = ACTIONS(2537), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2539), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2585), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104235,18 +105718,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -104257,102 +105740,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [393] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2790), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2237), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2413), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3892), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2492), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5500), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(393), [sym_preproc_endregion] = STATE(393), [sym_preproc_line] = STATE(393), @@ -104362,53 +105847,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [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(1063), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), + [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(81), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2437), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104422,18 +105907,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -104444,102 +105929,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [394] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2426), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4051), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2503), - [sym_property_pattern_clause] = STATE(2749), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(394), [sym_preproc_endregion] = STATE(394), [sym_preproc_line] = STATE(394), @@ -104549,53 +106036,53 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2535), + [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(1063), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), + [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(81), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(2537), - [anon_sym_LT_EQ] = ACTIONS(2537), + [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(2307), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2539), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1077), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(1127), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104609,18 +106096,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -104631,102 +106118,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [395] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2799), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2255), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2426), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4048), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2503), - [sym_property_pattern_clause] = STATE(2749), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5509), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(395), [sym_preproc_endregion] = STATE(395), [sym_preproc_line] = STATE(395), @@ -104736,53 +106225,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_GT] = ACTIONS(2535), + [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(1063), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), + [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(81), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_GT_EQ] = ACTIONS(2537), - [anon_sym_LT_EQ] = ACTIONS(2537), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2539), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2437), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104796,18 +106285,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -104818,102 +106307,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [396] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2785), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2397), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5023), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(396), [sym_preproc_endregion] = STATE(396), [sym_preproc_line] = STATE(396), @@ -104923,53 +106414,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(2437), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -104994,7 +106485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -105011,96 +106502,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [397] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2785), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2397), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5060), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5499), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(397), [sym_preproc_endregion] = STATE(397), [sym_preproc_line] = STATE(397), @@ -105110,53 +106603,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2301), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_GT] = ACTIONS(1937), + [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(1063), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_GT_EQ] = ACTIONS(1939), - [anon_sym_LT_EQ] = ACTIONS(1939), + [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(2307), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2309), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2313), + [anon_sym_not] = ACTIONS(1127), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105181,7 +106674,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -105198,96 +106691,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [398] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2787), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2394), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(398), [sym_preproc_endregion] = STATE(398), [sym_preproc_line] = STATE(398), @@ -105297,53 +106792,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [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(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [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(2521), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(1127), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105368,7 +106863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -105385,96 +106880,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [399] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2406), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5443), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2485), - [sym_property_pattern_clause] = STATE(2528), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(399), [sym_preproc_endregion] = STATE(399), [sym_preproc_line] = STATE(399), @@ -105484,53 +106981,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), + [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(1063), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1071), + [anon_sym_DASH] = ACTIONS(1071), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), + [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(2307), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2509), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(1127), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -105555,7 +107052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -105572,96 +107069,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [400] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2746), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2180), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2319), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4775), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2418), - [sym_property_pattern_clause] = STATE(2489), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(400), [sym_preproc_endregion] = STATE(400), [sym_preproc_line] = STATE(400), @@ -105671,78 +107170,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), + [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(2399), + [anon_sym_ref] = ACTIONS(2401), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_delegate] = ACTIONS(667), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), [anon_sym_LT] = ACTIONS(2405), [anon_sym_GT] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), + [anon_sym_CARET] = ACTIONS(1717), + [anon_sym_AMP] = ACTIONS(1717), [anon_sym_GT_EQ] = ACTIONS(2407), [anon_sym_LT_EQ] = ACTIONS(2407), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [anon_sym_scoped] = ACTIONS(2409), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2411), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2413), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -105753,102 +107252,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [401] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2746), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2180), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2319), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4722), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2418), - [sym_property_pattern_clause] = STATE(2489), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(401), [sym_preproc_endregion] = STATE(401), [sym_preproc_line] = STATE(401), @@ -105858,240 +107359,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [402] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2168), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3388), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5492), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(402), - [sym_preproc_endregion] = STATE(402), - [sym_preproc_line] = STATE(402), - [sym_preproc_pragma] = STATE(402), - [sym_preproc_nullable] = STATE(402), - [sym_preproc_error] = STATE(402), - [sym_preproc_warning] = STATE(402), - [sym_preproc_define] = STATE(402), - [sym_preproc_undef] = STATE(402), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2481), - [anon_sym_GT] = ACTIONS(2481), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2581), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_PLUS] = ACTIONS(1793), + [anon_sym_DASH] = ACTIONS(1793), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_EQ] = ACTIONS(2483), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2585), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106116,7 +107430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -106132,340 +107446,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), }, - [403] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2746), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2180), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2319), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4896), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2418), - [sym_property_pattern_clause] = STATE(2489), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(403), - [sym_preproc_endregion] = STATE(403), - [sym_preproc_line] = STATE(403), - [sym_preproc_pragma] = STATE(403), - [sym_preproc_nullable] = STATE(403), - [sym_preproc_error] = STATE(403), - [sym_preproc_warning] = STATE(403), - [sym_preproc_define] = STATE(403), - [sym_preproc_undef] = STATE(403), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [404] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3960), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(404), - [sym_preproc_endregion] = STATE(404), - [sym_preproc_line] = STATE(404), - [sym_preproc_pragma] = STATE(404), - [sym_preproc_nullable] = STATE(404), - [sym_preproc_error] = STATE(404), - [sym_preproc_warning] = STATE(404), - [sym_preproc_define] = STATE(404), - [sym_preproc_undef] = STATE(404), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(402), + [sym_preproc_endregion] = STATE(402), + [sym_preproc_line] = STATE(402), + [sym_preproc_pragma] = STATE(402), + [sym_preproc_nullable] = STATE(402), + [sym_preproc_error] = STATE(402), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_GT] = ACTIONS(2421), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2581), + [anon_sym_GT] = ACTIONS(2581), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(1795), + [anon_sym_AMP] = ACTIONS(1795), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2585), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106479,18 +107608,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -106501,158 +107630,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(405), - [sym_preproc_endregion] = STATE(405), - [sym_preproc_line] = STATE(405), - [sym_preproc_pragma] = STATE(405), - [sym_preproc_nullable] = STATE(405), - [sym_preproc_error] = STATE(405), - [sym_preproc_warning] = STATE(405), - [sym_preproc_define] = STATE(405), - [sym_preproc_undef] = STATE(405), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(403), + [sym_preproc_endregion] = STATE(403), + [sym_preproc_line] = STATE(403), + [sym_preproc_pragma] = STATE(403), + [sym_preproc_nullable] = STATE(403), + [sym_preproc_error] = STATE(403), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_GT] = ACTIONS(2421), + [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(1063), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), + [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(81), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2433), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106666,18 +107797,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -106688,158 +107819,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [406] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2158), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3913), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5519), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(406), - [sym_preproc_endregion] = STATE(406), - [sym_preproc_line] = STATE(406), - [sym_preproc_pragma] = STATE(406), - [sym_preproc_nullable] = STATE(406), - [sym_preproc_error] = STATE(406), - [sym_preproc_warning] = STATE(406), - [sym_preproc_define] = STATE(406), - [sym_preproc_undef] = STATE(406), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(404), + [sym_preproc_endregion] = STATE(404), + [sym_preproc_line] = STATE(404), + [sym_preproc_pragma] = STATE(404), + [sym_preproc_nullable] = STATE(404), + [sym_preproc_error] = STATE(404), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2421), - [anon_sym_GT] = ACTIONS(2421), + [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(1063), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_GT_EQ] = ACTIONS(2423), - [anon_sym_LT_EQ] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2425), + [anon_sym_not] = ACTIONS(2457), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -106853,18 +107986,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -106875,158 +108008,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [407] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6308), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(407), - [sym_preproc_endregion] = STATE(407), - [sym_preproc_line] = STATE(407), - [sym_preproc_pragma] = STATE(407), - [sym_preproc_nullable] = STATE(407), - [sym_preproc_error] = STATE(407), - [sym_preproc_warning] = STATE(407), - [sym_preproc_define] = STATE(407), - [sym_preproc_undef] = STATE(407), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(405), + [sym_preproc_endregion] = STATE(405), + [sym_preproc_line] = STATE(405), + [sym_preproc_pragma] = STATE(405), + [sym_preproc_nullable] = STATE(405), + [sym_preproc_error] = STATE(405), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [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(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), + [anon_sym_PLUS] = ACTIONS(1109), + [anon_sym_DASH] = ACTIONS(1109), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1107), + [anon_sym_AMP] = ACTIONS(1107), + [anon_sym_GT_EQ] = ACTIONS(2533), + [anon_sym_LT_EQ] = ACTIONS(2533), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_not] = ACTIONS(2535), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107051,7 +108186,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), + }, + [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_preproc_region] = STATE(406), + [sym_preproc_endregion] = STATE(406), + [sym_preproc_line] = STATE(406), + [sym_preproc_pragma] = STATE(406), + [sym_preproc_nullable] = STATE(406), + [sym_preproc_error] = STATE(406), + [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), + [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), + [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_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_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_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), + }, + [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_preproc_region] = STATE(407), + [sym_preproc_endregion] = STATE(407), + [sym_preproc_line] = STATE(407), + [sym_preproc_pragma] = STATE(407), + [sym_preproc_nullable] = STATE(407), + [sym_preproc_error] = STATE(407), + [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), + [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), + [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_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_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_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -107068,96 +108581,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [408] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2406), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2485), - [sym_property_pattern_clause] = STATE(2528), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(408), [sym_preproc_endregion] = STATE(408), [sym_preproc_line] = STATE(408), @@ -107167,53 +108682,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2573), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2509), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2575), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107238,7 +108753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -107255,96 +108770,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [409] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2362), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2406), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5182), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2485), - [sym_property_pattern_clause] = STATE(2528), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(409), [sym_preproc_endregion] = STATE(409), [sym_preproc_line] = STATE(409), @@ -107354,53 +108871,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_GT] = ACTIONS(2505), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), + [anon_sym_PLUS] = ACTIONS(1699), + [anon_sym_DASH] = ACTIONS(1699), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2573), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2509), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2575), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2511), + [anon_sym_not] = ACTIONS(2577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107425,7 +108942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -107442,96 +108959,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [410] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2790), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2237), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3949), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2492), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5500), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(410), [sym_preproc_endregion] = STATE(410), [sym_preproc_line] = STATE(410), @@ -107541,53 +109060,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1849), + [anon_sym_GT_EQ] = ACTIONS(2549), + [anon_sym_LT_EQ] = ACTIONS(2549), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2551), + [sym_predefined_type] = ACTIONS(2485), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2487), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2553), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107601,18 +109120,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [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(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -107623,102 +109142,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [411] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2790), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2237), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3733), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2492), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5500), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(411), [sym_preproc_endregion] = STATE(411), [sym_preproc_line] = STATE(411), @@ -107728,53 +109249,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(411), [sym_preproc_define] = STATE(411), [sym_preproc_undef] = STATE(411), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2563), - [anon_sym_GT] = ACTIONS(2563), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1701), + [anon_sym_GT_EQ] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2573), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2575), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2577), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107788,18 +109309,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -107810,102 +109331,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [412] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2790), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2237), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3955), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2492), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5500), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -107915,53 +109438,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(412), [sym_preproc_define] = STATE(412), [sym_preproc_undef] = STATE(412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [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(1063), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2515), + [anon_sym_GT] = ACTIONS(2515), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [anon_sym_checked] = ACTIONS(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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [anon_sym_CARET] = ACTIONS(1171), + [anon_sym_AMP] = ACTIONS(1171), + [anon_sym_GT_EQ] = ACTIONS(2517), + [anon_sym_LT_EQ] = ACTIONS(2517), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2519), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -107975,18 +109498,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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -107997,102 +109520,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [413] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2797), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2274), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2424), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5332), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2495), - [sym_property_pattern_clause] = STATE(2687), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5526), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -108102,53 +109627,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(413), [sym_preproc_define] = STATE(413), [sym_preproc_undef] = STATE(413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_GT_EQ] = ACTIONS(2467), - [anon_sym_LT_EQ] = ACTIONS(2467), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2469), + [anon_sym_not] = ACTIONS(2603), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108162,18 +109687,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -108184,102 +109709,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [414] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2787), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2386), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5152), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -108289,78 +109816,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(414), [sym_preproc_define] = STATE(414), [sym_preproc_undef] = STATE(414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), + [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(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [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(2521), + [anon_sym_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [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(2571), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_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(129), - [anon_sym_typeof] = ACTIONS(131), + [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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -108371,102 +109898,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(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [415] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6386), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(415), [sym_preproc_endregion] = STATE(415), [sym_preproc_line] = STATE(415), @@ -108476,53 +110005,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2603), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108536,18 +110065,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -108558,102 +110087,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [416] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2787), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2386), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(416), [sym_preproc_endregion] = STATE(416), [sym_preproc_line] = STATE(416), @@ -108663,53 +110194,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108734,7 +110265,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -108751,96 +110282,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [417] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2540), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2157), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4341), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(417), [sym_preproc_endregion] = STATE(417), [sym_preproc_line] = STATE(417), @@ -108850,53 +110383,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), + [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_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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [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(2521), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1077), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(1087), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -108910,18 +110443,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -108932,102 +110465,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [418] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2790), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2237), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2412), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3631), - [sym_constant_pattern] = STATE(3634), - [sym_parenthesized_pattern] = STATE(3634), - [sym_var_pattern] = STATE(3634), - [sym_type_pattern] = STATE(3634), - [sym_list_pattern] = STATE(3634), - [sym_recursive_pattern] = STATE(3634), - [sym_positional_pattern_clause] = STATE(2492), - [sym_property_pattern_clause] = STATE(2563), - [sym_relational_pattern] = STATE(3634), - [sym_negated_pattern] = STATE(3634), - [sym_and_pattern] = STATE(3634), - [sym_or_pattern] = STATE(3634), - [sym_declaration_pattern] = STATE(3634), - [sym_expression] = STATE(5500), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3726), - [sym_postfix_unary_expression] = STATE(3729), - [sym_prefix_unary_expression] = STATE(3729), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3726), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3729), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3726), - [sym_member_access_expression] = STATE(2822), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3729), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3726), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3726), - [sym_typeof_expression] = STATE(3726), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2822), - [sym_literal] = STATE(3726), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(418), [sym_preproc_endregion] = STATE(418), [sym_preproc_line] = STATE(418), @@ -109037,78 +110572,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2561), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [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(1063), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), + [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(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_GT_EQ] = ACTIONS(2565), - [anon_sym_LT_EQ] = ACTIONS(2565), + [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(2307), + [anon_sym_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2391), - [sym_predefined_type] = ACTIONS(2393), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2395), + [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(2567), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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(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(1633), - [anon_sym_typeof] = ACTIONS(1635), + [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(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -109119,102 +110654,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1455), + [sym_interpolation_verbatim_start] = ACTIONS(1457), + [sym_interpolation_raw_start] = ACTIONS(1459), + [sym_raw_string_start] = ACTIONS(1461), }, [419] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2806), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2277), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2446), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5041), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2500), - [sym_property_pattern_clause] = STATE(2750), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(419), [sym_preproc_endregion] = STATE(419), [sym_preproc_line] = STATE(419), @@ -109224,53 +110761,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2489), - [anon_sym_GT] = ACTIONS(2489), + [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(1063), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), + [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(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_GT_EQ] = ACTIONS(2491), - [anon_sym_LT_EQ] = ACTIONS(2491), + [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(2307), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2493), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109284,18 +110821,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -109306,102 +110843,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [420] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2787), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2207), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2386), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5148), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2470), - [sym_property_pattern_clause] = STATE(2497), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5521), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(420), [sym_preproc_endregion] = STATE(420), [sym_preproc_line] = STATE(420), @@ -109411,53 +110950,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2569), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_LT] = ACTIONS(2433), - [anon_sym_GT] = ACTIONS(2433), + [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(1063), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_PLUS] = ACTIONS(1615), + [anon_sym_DASH] = ACTIONS(1615), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_GT_EQ] = ACTIONS(2435), - [anon_sym_LT_EQ] = ACTIONS(2435), + [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(2521), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(1995), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(1997), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109482,7 +111021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -109499,96 +111038,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [421] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2746), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2180), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2306), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_pattern] = STATE(4694), - [sym_constant_pattern] = STATE(4450), - [sym_parenthesized_pattern] = STATE(4450), - [sym_var_pattern] = STATE(4450), - [sym_type_pattern] = STATE(4450), - [sym_list_pattern] = STATE(4450), - [sym_recursive_pattern] = STATE(4450), - [sym_positional_pattern_clause] = STATE(2418), - [sym_property_pattern_clause] = STATE(2489), - [sym_relational_pattern] = STATE(4450), - [sym_negated_pattern] = STATE(4450), - [sym_and_pattern] = STATE(4450), - [sym_or_pattern] = STATE(4450), - [sym_declaration_pattern] = STATE(4450), - [sym_expression] = STATE(5534), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4523), - [sym_postfix_unary_expression] = STATE(4470), - [sym_prefix_unary_expression] = STATE(4470), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4523), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4470), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4523), - [sym_member_access_expression] = STATE(3097), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4470), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4523), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4523), - [sym_typeof_expression] = STATE(4523), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3097), - [sym_literal] = STATE(4523), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(421), [sym_preproc_endregion] = STATE(421), [sym_preproc_line] = STATE(421), @@ -109598,78 +111139,78 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(2365), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2405), - [anon_sym_GT] = ACTIONS(2405), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), + [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(2613), + [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(2615), + [anon_sym_GT] = ACTIONS(2615), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_GT_EQ] = ACTIONS(2407), - [anon_sym_LT_EQ] = ACTIONS(2407), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2373), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2375), - [sym_predefined_type] = ACTIONS(2377), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2379), + [anon_sym_scoped] = ACTIONS(2377), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2379), + [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_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2409), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [anon_sym_not] = ACTIONS(2619), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1431), - [anon_sym_typeof] = ACTIONS(1433), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109680,102 +111221,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [422] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2353), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2398), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), + [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(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [sym__reserved_identifier] = STATE(2175), + [sym_preproc_if_in_expression] = STATE(3080), + [sym_preproc_if_in_attribute_list] = STATE(5576), [sym_preproc_region] = STATE(422), [sym_preproc_endregion] = STATE(422), [sym_preproc_line] = STATE(422), @@ -109785,53 +111328,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2445), - [anon_sym_GT] = ACTIONS(2445), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(2447), - [anon_sym_LT_EQ] = ACTIONS(2447), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2449), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2451), + [anon_sym_not] = ACTIONS(2619), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -109845,18 +111388,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -109867,102 +111410,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [423] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(3292), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(423), [sym_preproc_endregion] = STATE(423), [sym_preproc_line] = STATE(423), @@ -109972,53 +111517,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_not] = ACTIONS(2619), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110032,18 +111577,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110054,102 +111599,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [424] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2164), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(4354), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_pattern] = STATE(6332), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(5068), - [sym_property_pattern_clause] = STATE(5518), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4400), - [sym_postfix_unary_expression] = STATE(4402), - [sym_prefix_unary_expression] = STATE(4402), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4400), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4402), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4400), - [sym_member_access_expression] = STATE(3057), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4402), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4400), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4400), - [sym_typeof_expression] = STATE(4400), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3057), - [sym_literal] = STATE(4400), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(424), [sym_preproc_endregion] = STATE(424), [sym_preproc_line] = STATE(424), @@ -110159,53 +111706,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1055), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1059), - [anon_sym_GT] = ACTIONS(1059), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_GT_EQ] = ACTIONS(1069), - [anon_sym_LT_EQ] = ACTIONS(1069), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1073), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(1083), + [anon_sym_not] = ACTIONS(2619), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110219,18 +111766,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110241,102 +111788,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [425] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2540), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2118), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2167), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3213), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2195), - [sym_property_pattern_clause] = STATE(2231), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5489), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(425), [sym_preproc_endregion] = STATE(425), [sym_preproc_line] = STATE(425), @@ -110346,53 +111895,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_GT] = ACTIONS(2517), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), + [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), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(2519), - [anon_sym_LT_EQ] = ACTIONS(2519), + [anon_sym_CARET] = ACTIONS(1599), + [anon_sym_AMP] = ACTIONS(1599), + [anon_sym_GT_EQ] = ACTIONS(2453), + [anon_sym_LT_EQ] = ACTIONS(2453), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2523), + [anon_sym_not] = ACTIONS(2457), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110406,18 +111955,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110428,102 +111977,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [426] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2564), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2120), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2175), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4491), - [sym_constant_pattern] = STATE(3376), - [sym_parenthesized_pattern] = STATE(3376), - [sym_var_pattern] = STATE(3376), - [sym_type_pattern] = STATE(3376), - [sym_list_pattern] = STATE(3376), - [sym_recursive_pattern] = STATE(3376), - [sym_positional_pattern_clause] = STATE(2218), - [sym_property_pattern_clause] = STATE(2262), - [sym_relational_pattern] = STATE(3376), - [sym_negated_pattern] = STATE(3376), - [sym_and_pattern] = STATE(3376), - [sym_or_pattern] = STATE(3376), - [sym_declaration_pattern] = STATE(3376), - [sym_expression] = STATE(5497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3338), - [sym_postfix_unary_expression] = STATE(3377), - [sym_prefix_unary_expression] = STATE(3377), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3338), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3377), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3338), - [sym_member_access_expression] = STATE(2682), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3377), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3338), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3338), - [sym_typeof_expression] = STATE(3338), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2682), - [sym_literal] = STATE(3338), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(426), [sym_preproc_endregion] = STATE(426), [sym_preproc_line] = STATE(426), @@ -110533,53 +112084,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1045), - [anon_sym_LPAREN] = ACTIONS(2551), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_GT_EQ] = ACTIONS(2555), - [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(1349), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_GT_EQ] = ACTIONS(2565), + [anon_sym_LT_EQ] = ACTIONS(2565), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2521), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2339), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(1079), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), [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), @@ -110604,7 +112155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -110621,96 +112172,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [427] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2798), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2442), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4137), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2508), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(427), [sym_preproc_endregion] = STATE(427), [sym_preproc_line] = STATE(427), @@ -110720,53 +112273,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2351), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2603), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110780,18 +112333,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [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(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -110802,102 +112355,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [428] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2798), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2442), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4051), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2508), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(428), [sym_preproc_endregion] = STATE(428), [sym_preproc_line] = STATE(428), @@ -110907,53 +112462,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_GT] = ACTIONS(2615), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1765), + [anon_sym_GT_EQ] = ACTIONS(2617), + [anon_sym_LT_EQ] = ACTIONS(2617), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2351), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2619), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -110967,18 +112522,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -110989,102 +112544,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [429] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2798), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2442), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(4151), - [sym_constant_pattern] = STATE(4086), - [sym_parenthesized_pattern] = STATE(4086), - [sym_var_pattern] = STATE(4086), - [sym_type_pattern] = STATE(4086), - [sym_list_pattern] = STATE(4086), - [sym_recursive_pattern] = STATE(4086), - [sym_positional_pattern_clause] = STATE(2508), - [sym_property_pattern_clause] = STATE(2598), - [sym_relational_pattern] = STATE(4086), - [sym_negated_pattern] = STATE(4086), - [sym_and_pattern] = STATE(4086), - [sym_or_pattern] = STATE(4086), - [sym_declaration_pattern] = STATE(4086), - [sym_expression] = STATE(5512), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(4067), - [sym_postfix_unary_expression] = STATE(4069), - [sym_prefix_unary_expression] = STATE(4069), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(4067), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(4069), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(4067), - [sym_member_access_expression] = STATE(3030), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(4069), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(4067), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(4067), - [sym_typeof_expression] = STATE(4067), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3030), - [sym_literal] = STATE(4067), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(429), [sym_preproc_endregion] = STATE(429), [sym_preproc_line] = STATE(429), @@ -111094,53 +112651,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(2347), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_GT_EQ] = ACTIONS(2349), - [anon_sym_LT_EQ] = ACTIONS(2349), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2351), - [sym_predefined_type] = ACTIONS(2353), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2355), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2357), + [anon_sym_not] = ACTIONS(2603), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111154,18 +112711,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [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(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -111176,102 +112733,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [430] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2259), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2440), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(5111), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2526), - [sym_property_pattern_clause] = STATE(2634), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(430), [sym_preproc_endregion] = STATE(430), [sym_preproc_line] = STATE(430), @@ -111281,53 +112840,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_GT] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2599), + [anon_sym_GT] = ACTIONS(2599), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2415), + [anon_sym_CARET] = ACTIONS(1735), + [anon_sym_AMP] = ACTIONS(1735), + [anon_sym_GT_EQ] = ACTIONS(2601), + [anon_sym_LT_EQ] = ACTIONS(2601), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2423), + [sym_predefined_type] = ACTIONS(2425), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2427), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2603), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111341,18 +112900,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [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(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -111363,102 +112922,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [431] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2807), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2259), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2440), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_pattern] = STATE(3234), - [sym_constant_pattern] = STATE(3184), - [sym_parenthesized_pattern] = STATE(3184), - [sym_var_pattern] = STATE(3184), - [sym_type_pattern] = STATE(3184), - [sym_list_pattern] = STATE(3184), - [sym_recursive_pattern] = STATE(3184), - [sym_positional_pattern_clause] = STATE(2526), - [sym_property_pattern_clause] = STATE(2634), - [sym_relational_pattern] = STATE(3184), - [sym_negated_pattern] = STATE(3184), - [sym_and_pattern] = STATE(3184), - [sym_or_pattern] = STATE(3184), - [sym_declaration_pattern] = STATE(3184), - [sym_expression] = STATE(5524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3270), - [sym_postfix_unary_expression] = STATE(3269), - [sym_prefix_unary_expression] = STATE(3269), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3270), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3269), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3270), - [sym_member_access_expression] = STATE(2534), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3269), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3270), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3270), - [sym_typeof_expression] = STATE(3270), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2534), - [sym_literal] = STATE(3270), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(431), [sym_preproc_endregion] = STATE(431), [sym_preproc_line] = STATE(431), @@ -111468,53 +113029,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(2315), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(2305), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(2413), - [anon_sym_GT] = ACTIONS(2413), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_GT] = ACTIONS(2373), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), + [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_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_GT_EQ] = ACTIONS(2415), - [anon_sym_LT_EQ] = ACTIONS(2415), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(2375), + [anon_sym_LT_EQ] = ACTIONS(2375), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2325), - [sym_predefined_type] = ACTIONS(2327), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [sym_discard] = ACTIONS(2329), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_not] = ACTIONS(2417), + [anon_sym_not] = ACTIONS(2385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111528,18 +113089,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(1181), - [anon_sym_typeof] = ACTIONS(1183), + [anon_sym_sizeof] = ACTIONS(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111550,92 +113111,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [432] = { - [sym_attribute] = STATE(6625), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5613), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(432), [sym_preproc_endregion] = STATE(432), [sym_preproc_line] = STATE(432), @@ -111645,58 +113218,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_assembly] = ACTIONS(2573), - [anon_sym_module] = ACTIONS(2573), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(2387), + [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(2391), + [anon_sym_GT] = ACTIONS(2391), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2397), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111710,18 +113278,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111732,92 +113300,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [433] = { - [sym_attribute] = STATE(6625), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5613), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(433), [sym_preproc_endregion] = STATE(433), [sym_preproc_line] = STATE(433), @@ -111827,58 +113407,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_assembly] = ACTIONS(2577), - [anon_sym_module] = ACTIONS(2577), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(2387), + [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(2391), + [anon_sym_GT] = ACTIONS(2391), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2397), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -111892,18 +113467,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -111914,92 +113489,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [434] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(434), [sym_preproc_endregion] = STATE(434), [sym_preproc_line] = STATE(434), @@ -112009,56 +113596,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(2391), + [anon_sym_GT] = ACTIONS(2391), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2379), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2397), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -112072,18 +113656,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112094,92 +113678,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [435] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6580), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(435), [sym_preproc_endregion] = STATE(435), [sym_preproc_line] = STATE(435), @@ -112189,56 +113785,620 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), + }, + [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_preproc_region] = STATE(436), + [sym_preproc_endregion] = STATE(436), + [sym_preproc_line] = STATE(436), + [sym_preproc_pragma] = STATE(436), + [sym_preproc_nullable] = STATE(436), + [sym_preproc_error] = STATE(436), + [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), + [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), + }, + [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_preproc_region] = STATE(437), + [sym_preproc_endregion] = STATE(437), + [sym_preproc_line] = STATE(437), + [sym_preproc_pragma] = STATE(437), + [sym_preproc_nullable] = STATE(437), + [sym_preproc_error] = STATE(437), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), + [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), @@ -112252,18 +114412,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112274,151 +114434,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [436] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6682), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(436), - [sym_preproc_endregion] = STATE(436), - [sym_preproc_line] = STATE(436), - [sym_preproc_pragma] = STATE(436), - [sym_preproc_nullable] = STATE(436), - [sym_preproc_error] = STATE(436), - [sym_preproc_warning] = STATE(436), - [sym_preproc_define] = STATE(436), - [sym_preproc_undef] = STATE(436), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [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), @@ -112443,7 +114612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -112459,146 +114628,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), }, - [437] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6606), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(437), - [sym_preproc_endregion] = STATE(437), - [sym_preproc_line] = STATE(437), - [sym_preproc_pragma] = STATE(437), - [sym_preproc_nullable] = STATE(437), - [sym_preproc_error] = STATE(437), - [sym_preproc_warning] = STATE(437), - [sym_preproc_define] = STATE(437), - [sym_preproc_undef] = STATE(437), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(440), + [sym_preproc_endregion] = STATE(440), + [sym_preproc_line] = STATE(440), + [sym_preproc_pragma] = STATE(440), + [sym_preproc_nullable] = STATE(440), + [sym_preproc_error] = STATE(440), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [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), @@ -112623,7 +114801,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -112639,146 +114817,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), }, - [438] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6809), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(441), + [sym_preproc_endregion] = STATE(441), + [sym_preproc_line] = STATE(441), + [sym_preproc_pragma] = STATE(441), + [sym_preproc_nullable] = STATE(441), + [sym_preproc_error] = STATE(441), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [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), @@ -112803,7 +114990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -112819,146 +115006,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), }, - [439] = { - [sym_attribute] = STATE(6578), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5618), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6689), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(442), + [sym_preproc_endregion] = STATE(442), + [sym_preproc_line] = STATE(442), + [sym_preproc_pragma] = STATE(442), + [sym_preproc_nullable] = STATE(442), + [sym_preproc_error] = STATE(442), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2455), + [sym_predefined_type] = ACTIONS(2381), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(2383), + [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), @@ -112972,18 +115168,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(1193), + [anon_sym_typeof] = ACTIONS(1195), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1203), + [anon_sym_SQUOTE] = ACTIONS(1205), + [sym_integer_literal] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -112994,151 +115190,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(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [440] = { - [sym_attribute] = STATE(6688), - [sym_attribute_list] = STATE(5525), - [sym_attribute_target_specifier] = STATE(5617), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5601), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(440), - [sym_preproc_endregion] = STATE(440), - [sym_preproc_line] = STATE(440), - [sym_preproc_pragma] = STATE(440), - [sym_preproc_nullable] = STATE(440), - [sym_preproc_error] = STATE(440), - [sym_preproc_warning] = STATE(440), - [sym_preproc_define] = STATE(440), - [sym_preproc_undef] = STATE(440), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(443), + [sym_preproc_endregion] = STATE(443), + [sym_preproc_line] = STATE(443), + [sym_preproc_pragma] = STATE(443), + [sym_preproc_nullable] = STATE(443), + [sym_preproc_error] = STATE(443), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_field] = ACTIONS(1051), - [anon_sym_event] = ACTIONS(1051), - [anon_sym_method] = ACTIONS(1051), - [anon_sym_param] = ACTIONS(1051), - [anon_sym_property] = ACTIONS(1051), - [anon_sym_return] = ACTIONS(1051), - [anon_sym_type] = ACTIONS(1051), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [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_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1591), + [sym_discard] = ACTIONS(1083), + [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_not] = ACTIONS(2567), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -113163,7 +115368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -113179,144 +115384,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [441] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5633), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(441), - [sym_preproc_endregion] = STATE(441), - [sym_preproc_line] = STATE(441), - [sym_preproc_pragma] = STATE(441), - [sym_preproc_nullable] = STATE(441), - [sym_preproc_error] = STATE(441), - [sym_preproc_warning] = STATE(441), - [sym_preproc_define] = STATE(441), - [sym_preproc_undef] = STATE(441), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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_preproc_region] = STATE(444), + [sym_preproc_endregion] = STATE(444), + [sym_preproc_line] = STATE(444), + [sym_preproc_pragma] = STATE(444), + [sym_preproc_nullable] = STATE(444), + [sym_preproc_error] = STATE(444), + [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), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -113341,7 +115552,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -113357,144 +115568,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [442] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(442), - [sym_preproc_endregion] = STATE(442), - [sym_preproc_line] = STATE(442), - [sym_preproc_pragma] = STATE(442), - [sym_preproc_nullable] = STATE(442), - [sym_preproc_error] = STATE(442), - [sym_preproc_warning] = STATE(442), - [sym_preproc_define] = STATE(442), - [sym_preproc_undef] = STATE(442), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [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_preproc_region] = STATE(445), + [sym_preproc_endregion] = STATE(445), + [sym_preproc_line] = STATE(445), + [sym_preproc_pragma] = STATE(445), + [sym_preproc_nullable] = STATE(445), + [sym_preproc_error] = STATE(445), + [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), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -113519,7 +115736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -113535,144 +115752,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [443] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5647), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(443), - [sym_preproc_endregion] = STATE(443), - [sym_preproc_line] = STATE(443), - [sym_preproc_pragma] = STATE(443), - [sym_preproc_nullable] = STATE(443), - [sym_preproc_error] = STATE(443), - [sym_preproc_warning] = STATE(443), - [sym_preproc_define] = STATE(443), - [sym_preproc_undef] = STATE(443), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(446), + [sym_preproc_endregion] = STATE(446), + [sym_preproc_line] = STATE(446), + [sym_preproc_pragma] = STATE(446), + [sym_preproc_nullable] = STATE(446), + [sym_preproc_error] = STATE(446), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -113697,7 +115918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -113713,144 +115934,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [444] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(444), - [sym_preproc_endregion] = STATE(444), - [sym_preproc_line] = STATE(444), - [sym_preproc_pragma] = STATE(444), - [sym_preproc_nullable] = STATE(444), - [sym_preproc_error] = STATE(444), - [sym_preproc_warning] = STATE(444), - [sym_preproc_define] = STATE(444), - [sym_preproc_undef] = STATE(444), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(447), + [sym_preproc_endregion] = STATE(447), + [sym_preproc_line] = STATE(447), + [sym_preproc_pragma] = STATE(447), + [sym_preproc_nullable] = STATE(447), + [sym_preproc_error] = STATE(447), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -113875,7 +116100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -113891,144 +116116,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [445] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5623), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(445), - [sym_preproc_endregion] = STATE(445), - [sym_preproc_line] = STATE(445), - [sym_preproc_pragma] = STATE(445), - [sym_preproc_nullable] = STATE(445), - [sym_preproc_error] = STATE(445), - [sym_preproc_warning] = STATE(445), - [sym_preproc_define] = STATE(445), - [sym_preproc_undef] = STATE(445), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(448), + [sym_preproc_endregion] = STATE(448), + [sym_preproc_line] = STATE(448), + [sym_preproc_pragma] = STATE(448), + [sym_preproc_nullable] = STATE(448), + [sym_preproc_error] = STATE(448), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114053,7 +116282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114069,144 +116298,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [446] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5630), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(446), - [sym_preproc_endregion] = STATE(446), - [sym_preproc_line] = STATE(446), - [sym_preproc_pragma] = STATE(446), - [sym_preproc_nullable] = STATE(446), - [sym_preproc_error] = STATE(446), - [sym_preproc_warning] = STATE(446), - [sym_preproc_define] = STATE(446), - [sym_preproc_undef] = STATE(446), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(449), + [sym_preproc_endregion] = STATE(449), + [sym_preproc_line] = STATE(449), + [sym_preproc_pragma] = STATE(449), + [sym_preproc_nullable] = STATE(449), + [sym_preproc_error] = STATE(449), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114231,7 +116464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114247,144 +116480,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [447] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7064), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(447), - [sym_preproc_endregion] = STATE(447), - [sym_preproc_line] = STATE(447), - [sym_preproc_pragma] = STATE(447), - [sym_preproc_nullable] = STATE(447), - [sym_preproc_error] = STATE(447), - [sym_preproc_warning] = STATE(447), - [sym_preproc_define] = STATE(447), - [sym_preproc_undef] = STATE(447), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(450), + [sym_preproc_endregion] = STATE(450), + [sym_preproc_line] = STATE(450), + [sym_preproc_pragma] = STATE(450), + [sym_preproc_nullable] = STATE(450), + [sym_preproc_error] = STATE(450), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114409,7 +116646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114425,144 +116662,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [448] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5682), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(448), - [sym_preproc_endregion] = STATE(448), - [sym_preproc_line] = STATE(448), - [sym_preproc_pragma] = STATE(448), - [sym_preproc_nullable] = STATE(448), - [sym_preproc_error] = STATE(448), - [sym_preproc_warning] = STATE(448), - [sym_preproc_define] = STATE(448), - [sym_preproc_undef] = STATE(448), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(451), + [sym_preproc_endregion] = STATE(451), + [sym_preproc_line] = STATE(451), + [sym_preproc_pragma] = STATE(451), + [sym_preproc_nullable] = STATE(451), + [sym_preproc_error] = STATE(451), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114587,7 +116828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114603,144 +116844,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [449] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5656), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(449), - [sym_preproc_endregion] = STATE(449), - [sym_preproc_line] = STATE(449), - [sym_preproc_pragma] = STATE(449), - [sym_preproc_nullable] = STATE(449), - [sym_preproc_error] = STATE(449), - [sym_preproc_warning] = STATE(449), - [sym_preproc_define] = STATE(449), - [sym_preproc_undef] = STATE(449), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(452), + [sym_preproc_endregion] = STATE(452), + [sym_preproc_line] = STATE(452), + [sym_preproc_pragma] = STATE(452), + [sym_preproc_nullable] = STATE(452), + [sym_preproc_error] = STATE(452), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114765,7 +117010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114781,144 +117026,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [450] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5670), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(450), - [sym_preproc_endregion] = STATE(450), - [sym_preproc_line] = STATE(450), - [sym_preproc_pragma] = STATE(450), - [sym_preproc_nullable] = STATE(450), - [sym_preproc_error] = STATE(450), - [sym_preproc_warning] = STATE(450), - [sym_preproc_define] = STATE(450), - [sym_preproc_undef] = STATE(450), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(453), + [sym_preproc_endregion] = STATE(453), + [sym_preproc_line] = STATE(453), + [sym_preproc_pragma] = STATE(453), + [sym_preproc_nullable] = STATE(453), + [sym_preproc_error] = STATE(453), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -114943,7 +117190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -114959,144 +117206,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [451] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5668), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(451), - [sym_preproc_endregion] = STATE(451), - [sym_preproc_line] = STATE(451), - [sym_preproc_pragma] = STATE(451), - [sym_preproc_nullable] = STATE(451), - [sym_preproc_error] = STATE(451), - [sym_preproc_warning] = STATE(451), - [sym_preproc_define] = STATE(451), - [sym_preproc_undef] = STATE(451), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(454), + [sym_preproc_endregion] = STATE(454), + [sym_preproc_line] = STATE(454), + [sym_preproc_pragma] = STATE(454), + [sym_preproc_nullable] = STATE(454), + [sym_preproc_error] = STATE(454), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -115121,7 +117370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -115137,144 +117386,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [452] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5653), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(452), - [sym_preproc_endregion] = STATE(452), - [sym_preproc_line] = STATE(452), - [sym_preproc_pragma] = STATE(452), - [sym_preproc_nullable] = STATE(452), - [sym_preproc_error] = STATE(452), - [sym_preproc_warning] = STATE(452), - [sym_preproc_define] = STATE(452), - [sym_preproc_undef] = STATE(452), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(455), + [sym_preproc_endregion] = STATE(455), + [sym_preproc_line] = STATE(455), + [sym_preproc_pragma] = STATE(455), + [sym_preproc_nullable] = STATE(455), + [sym_preproc_error] = STATE(455), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -115299,7 +117550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -115315,144 +117566,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [453] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5671), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3479), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(453), - [sym_preproc_endregion] = STATE(453), - [sym_preproc_line] = STATE(453), - [sym_preproc_pragma] = STATE(453), - [sym_preproc_nullable] = STATE(453), - [sym_preproc_error] = STATE(453), - [sym_preproc_warning] = STATE(453), - [sym_preproc_define] = STATE(453), - [sym_preproc_undef] = STATE(453), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(456), + [sym_preproc_endregion] = STATE(456), + [sym_preproc_line] = STATE(456), + [sym_preproc_pragma] = STATE(456), + [sym_preproc_nullable] = STATE(456), + [sym_preproc_error] = STATE(456), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -115477,7 +117730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -115493,144 +117746,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [454] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5643), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(454), - [sym_preproc_endregion] = STATE(454), - [sym_preproc_line] = STATE(454), - [sym_preproc_pragma] = STATE(454), - [sym_preproc_nullable] = STATE(454), - [sym_preproc_error] = STATE(454), - [sym_preproc_warning] = STATE(454), - [sym_preproc_define] = STATE(454), - [sym_preproc_undef] = STATE(454), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(457), + [sym_preproc_endregion] = STATE(457), + [sym_preproc_line] = STATE(457), + [sym_preproc_pragma] = STATE(457), + [sym_preproc_nullable] = STATE(457), + [sym_preproc_error] = STATE(457), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -115655,7 +117910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -115671,144 +117926,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [455] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5679), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(455), - [sym_preproc_endregion] = STATE(455), - [sym_preproc_line] = STATE(455), - [sym_preproc_pragma] = STATE(455), - [sym_preproc_nullable] = STATE(455), - [sym_preproc_error] = STATE(455), - [sym_preproc_warning] = STATE(455), - [sym_preproc_define] = STATE(455), - [sym_preproc_undef] = STATE(455), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(458), + [sym_preproc_endregion] = STATE(458), + [sym_preproc_line] = STATE(458), + [sym_preproc_pragma] = STATE(458), + [sym_preproc_nullable] = STATE(458), + [sym_preproc_error] = STATE(458), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -115833,7 +118090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -115849,144 +118106,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [sym_raw_string_start] = ACTIONS(157), }, - [456] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(456), - [sym_preproc_endregion] = STATE(456), - [sym_preproc_line] = STATE(456), - [sym_preproc_pragma] = STATE(456), - [sym_preproc_nullable] = STATE(456), - [sym_preproc_error] = STATE(456), - [sym_preproc_warning] = STATE(456), - [sym_preproc_define] = STATE(456), - [sym_preproc_undef] = STATE(456), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(459), + [sym_preproc_endregion] = STATE(459), + [sym_preproc_line] = STATE(459), + [sym_preproc_pragma] = STATE(459), + [sym_preproc_nullable] = STATE(459), + [sym_preproc_error] = STATE(459), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -116011,541 +118270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [457] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5660), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3479), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(457), - [sym_preproc_endregion] = STATE(457), - [sym_preproc_line] = STATE(457), - [sym_preproc_pragma] = STATE(457), - [sym_preproc_nullable] = STATE(457), - [sym_preproc_error] = STATE(457), - [sym_preproc_warning] = STATE(457), - [sym_preproc_define] = STATE(457), - [sym_preproc_undef] = STATE(457), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [458] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5635), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(458), - [sym_preproc_endregion] = STATE(458), - [sym_preproc_line] = STATE(458), - [sym_preproc_pragma] = STATE(458), - [sym_preproc_nullable] = STATE(458), - [sym_preproc_error] = STATE(458), - [sym_preproc_warning] = STATE(458), - [sym_preproc_define] = STATE(458), - [sym_preproc_undef] = STATE(458), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [459] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(459), - [sym_preproc_endregion] = STATE(459), - [sym_preproc_line] = STATE(459), - [sym_preproc_pragma] = STATE(459), - [sym_preproc_nullable] = STATE(459), - [sym_preproc_error] = STATE(459), - [sym_preproc_warning] = STATE(459), - [sym_preproc_define] = STATE(459), - [sym_preproc_undef] = STATE(459), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -116562,87 +118287,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [460] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(460), [sym_preproc_endregion] = STATE(460), [sym_preproc_line] = STATE(460), @@ -116652,53 +118379,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -116723,7 +118450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -116740,87 +118467,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [461] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5667), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(461), [sym_preproc_endregion] = STATE(461), [sym_preproc_line] = STATE(461), @@ -116830,53 +118559,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -116901,7 +118630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -116918,87 +118647,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [462] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5661), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(462), [sym_preproc_endregion] = STATE(462), [sym_preproc_line] = STATE(462), @@ -117008,53 +118739,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117079,7 +118810,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117096,87 +118827,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [463] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5631), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(463), [sym_preproc_endregion] = STATE(463), [sym_preproc_line] = STATE(463), @@ -117186,53 +118919,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117257,7 +118990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117274,87 +119007,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [464] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5625), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(464), [sym_preproc_endregion] = STATE(464), [sym_preproc_line] = STATE(464), @@ -117364,53 +119099,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117435,7 +119170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117452,87 +119187,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [465] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(465), [sym_preproc_endregion] = STATE(465), [sym_preproc_line] = STATE(465), @@ -117542,53 +119279,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117613,7 +119350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117630,87 +119367,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [466] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5632), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(466), [sym_preproc_endregion] = STATE(466), [sym_preproc_line] = STATE(466), @@ -117720,53 +119459,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117791,7 +119530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117808,87 +119547,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [467] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5672), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(467), [sym_preproc_endregion] = STATE(467), [sym_preproc_line] = STATE(467), @@ -117898,53 +119639,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -117969,7 +119710,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -117986,87 +119727,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [468] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5654), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(468), [sym_preproc_endregion] = STATE(468), [sym_preproc_line] = STATE(468), @@ -118076,53 +119819,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -118147,7 +119890,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -118164,87 +119907,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [469] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5634), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(469), [sym_preproc_endregion] = STATE(469), [sym_preproc_line] = STATE(469), @@ -118254,53 +119999,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -118325,7 +120070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -118342,87 +120087,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [470] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5636), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(470), [sym_preproc_endregion] = STATE(470), [sym_preproc_line] = STATE(470), @@ -118432,53 +120179,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -118503,7 +120250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -118520,87 +120267,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [471] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5664), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(471), [sym_preproc_endregion] = STATE(471), [sym_preproc_line] = STATE(471), @@ -118610,53 +120359,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -118681,7 +120430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -118698,87 +120447,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [472] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5674), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(472), [sym_preproc_endregion] = STATE(472), [sym_preproc_line] = STATE(472), @@ -118788,53 +120539,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -118859,7 +120610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -118876,87 +120627,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [473] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5673), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3479), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(473), [sym_preproc_endregion] = STATE(473), [sym_preproc_line] = STATE(473), @@ -118966,53 +120719,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119037,7 +120790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119054,87 +120807,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [474] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5640), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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_preproc_region] = STATE(474), [sym_preproc_endregion] = STATE(474), [sym_preproc_line] = STATE(474), @@ -119144,53 +120899,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119215,7 +120970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119232,87 +120987,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [475] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5622), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5345), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(475), [sym_preproc_endregion] = STATE(475), [sym_preproc_line] = STATE(475), @@ -119322,53 +121079,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119393,7 +121150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119410,87 +121167,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [476] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5651), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5382), - [sym_lvalue_expression] = STATE(3479), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(476), [sym_preproc_endregion] = STATE(476), [sym_preproc_line] = STATE(476), @@ -119500,53 +121259,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119571,7 +121330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119588,87 +121347,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [477] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5663), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(477), [sym_preproc_endregion] = STATE(477), [sym_preproc_line] = STATE(477), @@ -119678,53 +121439,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119749,7 +121510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119766,87 +121527,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [478] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5681), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(478), [sym_preproc_endregion] = STATE(478), [sym_preproc_line] = STATE(478), @@ -119856,53 +121619,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -119927,7 +121690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -119944,87 +121707,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [479] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5680), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(479), [sym_preproc_endregion] = STATE(479), [sym_preproc_line] = STATE(479), @@ -120034,53 +121799,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120105,7 +121870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -120122,87 +121887,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [480] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5637), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(480), [sym_preproc_endregion] = STATE(480), [sym_preproc_line] = STATE(480), @@ -120212,53 +121979,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120283,7 +122050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -120300,87 +122067,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [481] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5646), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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_preproc_region] = STATE(481), [sym_preproc_endregion] = STATE(481), [sym_preproc_line] = STATE(481), @@ -120390,53 +122159,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120461,7 +122230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -120478,87 +122247,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [482] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5657), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(482), [sym_preproc_endregion] = STATE(482), [sym_preproc_line] = STATE(482), @@ -120568,53 +122339,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120639,7 +122410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -120656,87 +122427,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [483] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5686), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(483), [sym_preproc_endregion] = STATE(483), [sym_preproc_line] = STATE(483), @@ -120746,53 +122519,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120817,7 +122590,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -120834,87 +122607,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [484] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5685), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(484), [sym_preproc_endregion] = STATE(484), [sym_preproc_line] = STATE(484), @@ -120924,53 +122699,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -120995,7 +122770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121012,87 +122787,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [485] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5639), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(485), [sym_preproc_endregion] = STATE(485), [sym_preproc_line] = STATE(485), @@ -121102,53 +122879,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -121173,7 +122950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121190,87 +122967,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [486] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5659), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3499), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(486), [sym_preproc_endregion] = STATE(486), [sym_preproc_line] = STATE(486), @@ -121280,53 +123059,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -121351,7 +123130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121368,87 +123147,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [487] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6994), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3479), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(487), [sym_preproc_endregion] = STATE(487), [sym_preproc_line] = STATE(487), @@ -121458,53 +123239,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -121529,7 +123310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121546,87 +123327,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [488] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(488), [sym_preproc_endregion] = STATE(488), [sym_preproc_line] = STATE(488), @@ -121636,53 +123419,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -121707,7 +123490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121724,87 +123507,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [489] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5652), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(489), [sym_preproc_endregion] = STATE(489), [sym_preproc_line] = STATE(489), @@ -121814,53 +123599,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -121885,7 +123670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -121902,87 +123687,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [490] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5645), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(490), [sym_preproc_endregion] = STATE(490), [sym_preproc_line] = STATE(490), @@ -121992,53 +123779,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122063,7 +123850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122080,87 +123867,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [491] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5627), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(491), [sym_preproc_endregion] = STATE(491), [sym_preproc_line] = STATE(491), @@ -122170,53 +123959,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122241,7 +124030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122258,87 +124047,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [492] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5644), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(492), [sym_preproc_endregion] = STATE(492), [sym_preproc_line] = STATE(492), @@ -122348,53 +124139,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122419,7 +124210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122436,87 +124227,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [493] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6864), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5658), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3527), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(493), [sym_preproc_endregion] = STATE(493), [sym_preproc_line] = STATE(493), @@ -122526,53 +124319,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122597,7 +124390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122614,87 +124407,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [494] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6869), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5648), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5177), - [sym_lvalue_expression] = STATE(3477), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(494), [sym_preproc_endregion] = STATE(494), [sym_preproc_line] = STATE(494), @@ -122704,53 +124499,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122775,7 +124570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122792,87 +124587,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [495] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5641), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5374), - [sym_lvalue_expression] = STATE(3506), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(495), [sym_preproc_endregion] = STATE(495), [sym_preproc_line] = STATE(495), @@ -122882,53 +124679,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -122953,7 +124750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -122970,87 +124767,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [496] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5687), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(496), [sym_preproc_endregion] = STATE(496), [sym_preproc_line] = STATE(496), @@ -123060,53 +124859,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -123131,7 +124930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -123148,87 +124947,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [497] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_argument] = STATE(6959), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5669), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(5342), - [sym_lvalue_expression] = STATE(3480), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2150), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(497), [sym_preproc_endregion] = STATE(497), [sym_preproc_line] = STATE(497), @@ -123238,53 +125039,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(2818), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1097), - [anon_sym_out] = ACTIONS(1097), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(1105), - [anon_sym_scoped] = ACTIONS(1107), - [anon_sym_params] = ACTIONS(1109), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -123309,7 +125110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -123326,85 +125127,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [498] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6710), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(498), [sym_preproc_endregion] = STATE(498), [sym_preproc_line] = STATE(498), @@ -123414,50 +125219,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -123482,7 +125290,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -123499,85 +125307,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [499] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6615), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7019), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(499), [sym_preproc_endregion] = STATE(499), [sym_preproc_line] = STATE(499), @@ -123587,50 +125399,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -123655,7 +125470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -123672,85 +125487,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [500] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6610), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6867), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(500), [sym_preproc_endregion] = STATE(500), [sym_preproc_line] = STATE(500), @@ -123760,50 +125579,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -123828,7 +125650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -123845,85 +125667,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [501] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6785), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6961), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(501), [sym_preproc_endregion] = STATE(501), [sym_preproc_line] = STATE(501), @@ -123933,50 +125759,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -124001,7 +125830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -124018,85 +125847,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [502] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6610), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6866), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(502), [sym_preproc_endregion] = STATE(502), [sym_preproc_line] = STATE(502), @@ -124106,50 +125939,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -124174,7 +126010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -124191,85 +126027,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [503] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6556), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7054), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(503), [sym_preproc_endregion] = STATE(503), [sym_preproc_line] = STATE(503), @@ -124279,50 +126119,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -124347,7 +126190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -124364,85 +126207,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [504] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6615), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5696), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6867), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(504), [sym_preproc_endregion] = STATE(504), [sym_preproc_line] = STATE(504), @@ -124452,50 +126299,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_ref] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2589), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -124520,7 +126370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -124537,84 +126387,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [505] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4274), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7433), - [sym_preproc_elif_in_expression] = STATE(7433), + [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_preproc_region] = STATE(505), [sym_preproc_endregion] = STATE(505), [sym_preproc_line] = STATE(505), @@ -124624,47 +126479,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -124689,10 +126550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2599), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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), @@ -124709,84 +126567,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [506] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(506), [sym_preproc_endregion] = STATE(506), [sym_preproc_line] = STATE(506), @@ -124796,50 +126659,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2605), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -124864,7 +126730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -124881,84 +126747,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [507] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(507), [sym_preproc_endregion] = STATE(507), [sym_preproc_line] = STATE(507), @@ -124968,50 +126839,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2607), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -125036,7 +126910,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -125053,84 +126927,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [508] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4271), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7230), - [sym_preproc_elif_in_expression] = STATE(7230), + [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_preproc_region] = STATE(508), [sym_preproc_endregion] = STATE(508), [sym_preproc_line] = STATE(508), @@ -125140,47 +127019,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -125205,10 +127090,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2609), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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), @@ -125225,84 +127107,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [509] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(509), [sym_preproc_endregion] = STATE(509), [sym_preproc_line] = STATE(509), @@ -125312,50 +127199,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2611), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -125380,7 +127270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -125397,84 +127287,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [510] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(510), [sym_preproc_endregion] = STATE(510), [sym_preproc_line] = STATE(510), @@ -125484,50 +127379,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2613), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -125552,7 +127450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -125569,84 +127467,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [511] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(511), [sym_preproc_endregion] = STATE(511), [sym_preproc_line] = STATE(511), @@ -125656,50 +127559,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2615), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(1103), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_PLUS] = 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_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -125724,7 +127630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -125741,84 +127647,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [512] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6710), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(512), [sym_preproc_endregion] = STATE(512), [sym_preproc_line] = STATE(512), @@ -125828,50 +127738,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2585), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -125896,7 +127803,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -125913,84 +127823,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [513] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6785), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(513), [sym_preproc_endregion] = STATE(513), [sym_preproc_line] = STATE(513), @@ -126000,50 +127914,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2595), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -126068,7 +127979,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126085,84 +127999,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [514] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(514), [sym_preproc_endregion] = STATE(514), [sym_preproc_line] = STATE(514), @@ -126172,50 +128090,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2619), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -126240,7 +128155,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126257,84 +128175,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [515] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7216), - [sym_preproc_elif_in_expression] = STATE(7216), + [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_preproc_region] = STATE(515), [sym_preproc_endregion] = STATE(515), [sym_preproc_line] = STATE(515), @@ -126344,46 +128266,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -126409,10 +128331,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(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2621), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126429,84 +128351,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [516] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4358), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7227), - [sym_preproc_elif_in_expression] = STATE(7227), + [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_preproc_region] = STATE(516), [sym_preproc_endregion] = STATE(516), [sym_preproc_line] = STATE(516), @@ -126516,46 +128442,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -126581,10 +128507,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(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2623), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126601,84 +128527,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [517] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(517), [sym_preproc_endregion] = STATE(517), [sym_preproc_line] = STATE(517), @@ -126688,50 +128618,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2625), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -126756,7 +128683,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126773,84 +128703,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [518] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4308), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7451), - [sym_preproc_elif_in_expression] = STATE(7451), + [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_preproc_region] = STATE(518), [sym_preproc_endregion] = STATE(518), [sym_preproc_line] = STATE(518), @@ -126860,46 +128794,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -126925,10 +128859,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(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2627), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -126945,84 +128879,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [519] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6556), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(519), [sym_preproc_endregion] = STATE(519), [sym_preproc_line] = STATE(519), @@ -127032,50 +128970,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2597), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -127100,7 +129035,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127117,84 +129055,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [520] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(520), [sym_preproc_endregion] = STATE(520), [sym_preproc_line] = STATE(520), @@ -127204,50 +129146,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2629), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -127272,7 +129211,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127289,84 +129231,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [521] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(521), [sym_preproc_endregion] = STATE(521), [sym_preproc_line] = STATE(521), @@ -127376,50 +129322,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2631), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -127444,7 +129387,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127461,84 +129407,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [522] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(522), [sym_preproc_endregion] = STATE(522), [sym_preproc_line] = STATE(522), @@ -127548,50 +129498,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -127616,7 +129563,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -127633,84 +129583,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [523] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(523), [sym_preproc_endregion] = STATE(523), [sym_preproc_line] = STATE(523), @@ -127720,50 +129673,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -127788,7 +129741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -127805,84 +129758,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [524] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4312), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7469), - [sym_preproc_elif_in_expression] = STATE(7469), + [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_preproc_region] = STATE(524), [sym_preproc_endregion] = STATE(524), [sym_preproc_line] = STATE(524), @@ -127892,47 +129848,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -127957,10 +129916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2637), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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), @@ -127977,84 +129933,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [525] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6610), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(525), [sym_preproc_endregion] = STATE(525), [sym_preproc_line] = STATE(525), @@ -128064,50 +130023,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2593), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -128132,7 +130091,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -128149,84 +130108,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [526] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6615), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(526), [sym_preproc_endregion] = STATE(526), [sym_preproc_line] = STATE(526), @@ -128236,50 +130198,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(895), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -128304,7 +130266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -128321,84 +130283,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [527] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4349), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_else_in_expression] = STATE(7263), - [sym_preproc_elif_in_expression] = STATE(7263), + [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_preproc_region] = STATE(527), [sym_preproc_endregion] = STATE(527), [sym_preproc_line] = STATE(527), @@ -128408,47 +130373,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -128473,10 +130441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2639), - [aux_sym_preproc_else_token1] = ACTIONS(2601), - [aux_sym_preproc_elif_token1] = ACTIONS(2603), + [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), @@ -128493,84 +130458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [528] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(528), [sym_preproc_endregion] = STATE(528), [sym_preproc_line] = STATE(528), @@ -128580,50 +130548,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(2641), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(895), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -128648,7 +130616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -128665,84 +130633,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [529] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5004), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(529), [sym_preproc_endregion] = STATE(529), [sym_preproc_line] = STATE(529), @@ -128752,49 +130723,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2649), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -128819,7 +130791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -128836,84 +130808,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [530] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6689), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(530), [sym_preproc_endregion] = STATE(530), [sym_preproc_line] = STATE(530), @@ -128923,49 +130897,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -128990,7 +130965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129007,84 +130982,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [531] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6606), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(531), [sym_preproc_endregion] = STATE(531), [sym_preproc_line] = STATE(531), @@ -129094,49 +131071,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -129161,7 +131139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129178,84 +131156,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [532] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6809), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(532), [sym_preproc_endregion] = STATE(532), [sym_preproc_line] = STATE(532), @@ -129265,49 +131245,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -129332,7 +131313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129349,84 +131330,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [533] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5162), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(533), [sym_preproc_endregion] = STATE(533), [sym_preproc_line] = STATE(533), @@ -129436,49 +131419,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -129503,7 +131487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129520,84 +131504,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [534] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4997), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(534), [sym_preproc_endregion] = STATE(534), [sym_preproc_line] = STATE(534), @@ -129607,49 +131593,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -129674,7 +131661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129691,84 +131678,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [535] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6682), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(535), [sym_preproc_endregion] = STATE(535), [sym_preproc_line] = STATE(535), @@ -129778,49 +131767,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -129845,7 +131835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -129862,84 +131852,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [536] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(536), [sym_preproc_endregion] = STATE(536), [sym_preproc_line] = STATE(536), @@ -129949,49 +131941,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -130016,7 +132009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -130033,83 +132026,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [537] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4960), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(537), [sym_preproc_endregion] = STATE(537), [sym_preproc_line] = STATE(537), @@ -130119,50 +132115,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -130187,7 +132180,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(1085), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -130204,84 +132200,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [538] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6580), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(538), [sym_preproc_endregion] = STATE(538), [sym_preproc_line] = STATE(538), @@ -130291,49 +132289,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -130358,7 +132357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -130375,84 +132374,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [539] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6999), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5079), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(539), [sym_preproc_endregion] = STATE(539), [sym_preproc_line] = STATE(539), @@ -130462,49 +132463,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -130529,7 +132531,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -130546,83 +132548,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [540] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5510), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4878), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(540), [sym_preproc_endregion] = STATE(540), [sym_preproc_line] = STATE(540), @@ -130632,50 +132637,50 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), + [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(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_checked] = ACTIONS(1067), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PLUS] = 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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -130700,7 +132705,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -130717,84 +132722,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [541] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6526), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(541), [sym_preproc_endregion] = STATE(541), [sym_preproc_line] = STATE(541), @@ -130804,49 +132811,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -130871,7 +132879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -130888,84 +132896,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [542] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_argument] = STATE(6631), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4926), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6632), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2138), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(542), [sym_preproc_endregion] = STATE(542), [sym_preproc_line] = STATE(542), @@ -130975,49 +132985,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2575), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(1061), - [anon_sym_out] = ACTIONS(1061), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -131042,7 +133053,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131059,83 +133070,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [543] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4966), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(543), [sym_preproc_endregion] = STATE(543), [sym_preproc_line] = STATE(543), @@ -131145,50 +133159,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -131213,7 +133227,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131230,82 +133244,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [544] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5491), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(544), [sym_preproc_endregion] = STATE(544), [sym_preproc_line] = STATE(544), @@ -131315,62 +133333,62 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(2645), - [anon_sym_alias] = ACTIONS(2645), - [anon_sym_global] = ACTIONS(2645), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2645), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(2645), - [anon_sym_notnull] = ACTIONS(2645), - [anon_sym_unmanaged] = ACTIONS(2645), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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_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_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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_scoped] = ACTIONS(2645), + [anon_sym_PLUS] = 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(2645), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(2645), + [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(1231), - [anon_sym_when] = ACTIONS(2645), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), - [anon_sym_from] = ACTIONS(2645), - [anon_sym_into] = ACTIONS(2645), - [anon_sym_join] = ACTIONS(2645), - [anon_sym_on] = ACTIONS(2645), - [anon_sym_equals] = ACTIONS(2645), - [anon_sym_let] = ACTIONS(2645), - [anon_sym_orderby] = ACTIONS(2645), - [anon_sym_ascending] = ACTIONS(2645), - [anon_sym_descending] = ACTIONS(2645), - [anon_sym_group] = ACTIONS(2645), - [anon_sym_by] = ACTIONS(2645), - [anon_sym_select] = ACTIONS(2645), + [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), @@ -131383,7 +133401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131400,83 +133418,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [545] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6758), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(545), [sym_preproc_endregion] = STATE(545), [sym_preproc_line] = STATE(545), @@ -131486,49 +133507,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2651), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2653), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -131553,7 +133575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131570,82 +133592,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [546] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4904), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(546), [sym_preproc_endregion] = STATE(546), [sym_preproc_line] = STATE(546), @@ -131655,50 +133681,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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6714), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2657), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -131723,7 +133749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131740,82 +133766,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [547] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4912), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(547), [sym_preproc_endregion] = STATE(547), [sym_preproc_line] = STATE(547), @@ -131825,50 +133855,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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6616), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -131893,7 +133923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -131910,82 +133940,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [548] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4956), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(548), [sym_preproc_endregion] = STATE(548), [sym_preproc_line] = STATE(548), @@ -131995,50 +134029,49 @@ 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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6765), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2661), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -132063,7 +134096,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132080,83 +134113,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [549] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6611), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(549), [sym_preproc_endregion] = STATE(549), [sym_preproc_line] = STATE(549), @@ -132166,49 +134202,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2663), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2665), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -132233,7 +134269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132250,83 +134286,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [550] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6711), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(550), [sym_preproc_endregion] = STATE(550), [sym_preproc_line] = STATE(550), @@ -132336,49 +134375,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -132403,7 +134442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132420,82 +134459,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [551] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4805), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(551), [sym_preproc_endregion] = STATE(551), [sym_preproc_line] = STATE(551), @@ -132505,50 +134548,49 @@ 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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6664), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -132573,7 +134615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132590,83 +134632,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [552] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6630), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(552), [sym_preproc_endregion] = STATE(552), [sym_preproc_line] = STATE(552), @@ -132676,49 +134720,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2673), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2675), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(2693), + [anon_sym_out] = ACTIONS(2693), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(85), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -132743,7 +134788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132760,83 +134805,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [553] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6554), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(553), [sym_preproc_endregion] = STATE(553), [sym_preproc_line] = STATE(553), @@ -132846,49 +134894,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2677), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -132913,7 +134961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -132930,82 +134978,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [554] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4836), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(554), [sym_preproc_endregion] = STATE(554), [sym_preproc_line] = STATE(554), @@ -133015,50 +135067,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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6674), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133083,7 +135134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133100,82 +135151,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [555] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4965), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(555), [sym_preproc_endregion] = STATE(555), [sym_preproc_line] = STATE(555), @@ -133185,50 +135240,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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6542), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2683), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133253,7 +135307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133270,83 +135324,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [556] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4765), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6538), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(556), [sym_preproc_endregion] = STATE(556), [sym_preproc_line] = STATE(556), @@ -133356,49 +135413,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_in] = ACTIONS(2687), - [anon_sym_out] = ACTIONS(2687), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133423,7 +135480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133440,82 +135497,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [557] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4730), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(557), [sym_preproc_endregion] = STATE(557), [sym_preproc_line] = STATE(557), @@ -133525,50 +135586,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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6773), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2689), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133593,7 +135653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133610,82 +135670,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [558] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4799), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(558), [sym_preproc_endregion] = STATE(558), [sym_preproc_line] = STATE(558), @@ -133695,50 +135758,50 @@ 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(3051), - [aux_sym_array_rank_specifier_repeat1] = STATE(6691), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2655), - [anon_sym_RBRACK] = ACTIONS(2691), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(2693), + [anon_sym_out] = ACTIONS(2693), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133763,7 +135826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133780,83 +135843,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [559] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6783), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(559), [sym_preproc_endregion] = STATE(559), [sym_preproc_line] = STATE(559), @@ -133866,49 +135932,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2693), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2695), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -133933,7 +135999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -133950,83 +136016,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [560] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2805), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5221), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3721), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(560), [sym_preproc_endregion] = STATE(560), [sym_preproc_line] = STATE(560), @@ -134036,48 +136105,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [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(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2697), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -134102,7 +136172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134119,83 +136189,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [561] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3121), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5434), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(4664), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(561), [sym_preproc_endregion] = STATE(561), [sym_preproc_line] = STATE(561), @@ -134205,48 +136277,50 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(2693), + [anon_sym_out] = ACTIONS(2693), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2699), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -134271,7 +136345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134288,83 +136362,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [562] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3121), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5270), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(4664), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(562), [sym_preproc_endregion] = STATE(562), [sym_preproc_line] = STATE(562), @@ -134374,48 +136451,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [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(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2699), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -134440,7 +136518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134457,84 +136535,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [563] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7236), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5238), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(563), [sym_preproc_endregion] = STATE(563), [sym_preproc_line] = STATE(563), @@ -134544,47 +136622,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6979), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -134609,7 +136690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134626,83 +136707,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [564] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5419), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(564), [sym_preproc_endregion] = STATE(564), [sym_preproc_line] = STATE(564), @@ -134712,48 +136794,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(564), [sym_preproc_define] = STATE(564), [sym_preproc_undef] = STATE(564), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6739), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2705), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -134778,7 +136862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134795,83 +136879,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [565] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5340), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(565), [sym_preproc_endregion] = STATE(565), [sym_preproc_line] = STATE(565), @@ -134881,48 +136967,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2705), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -134947,7 +137034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -134964,83 +137051,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [566] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5244), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(566), [sym_preproc_endregion] = STATE(566), [sym_preproc_line] = STATE(566), @@ -135050,48 +137138,50 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6840), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -135116,7 +137206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135133,82 +137223,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [567] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(567), [sym_preproc_endregion] = STATE(567), [sym_preproc_line] = STATE(567), @@ -135218,49 +137311,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_ref] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_delegate] = ACTIONS(667), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -135285,7 +137378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135302,83 +137395,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [568] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5466), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(568), [sym_preproc_endregion] = STATE(568), [sym_preproc_line] = STATE(568), @@ -135388,48 +137483,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2713), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -135454,7 +137550,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135471,84 +137567,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [569] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7256), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5204), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(569), [sym_preproc_endregion] = STATE(569), [sym_preproc_line] = STATE(569), @@ -135558,47 +137654,50 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6978), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -135623,7 +137722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135640,83 +137739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [570] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5069), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(570), [sym_preproc_endregion] = STATE(570), [sym_preproc_line] = STATE(570), @@ -135726,48 +137826,50 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6750), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -135792,7 +137894,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135809,84 +137911,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [571] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7300), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5207), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(571), [sym_preproc_endregion] = STATE(571), [sym_preproc_line] = STATE(571), @@ -135896,47 +137999,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -135961,7 +138066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -135978,84 +138083,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [572] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7482), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5398), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(572), [sym_preproc_endregion] = STATE(572), [sym_preproc_line] = STATE(572), @@ -136065,47 +138170,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6835), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -136130,7 +138238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -136147,82 +138255,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [573] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4949), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(573), [sym_preproc_endregion] = STATE(573), [sym_preproc_line] = STATE(573), @@ -136232,49 +138343,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2719), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_in] = ACTIONS(2729), + [anon_sym_out] = ACTIONS(2729), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -136299,7 +138410,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -136316,83 +138427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [574] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5400), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(574), [sym_preproc_endregion] = STATE(574), [sym_preproc_line] = STATE(574), @@ -136402,48 +138514,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6862), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(2697), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -136468,7 +138582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -136485,83 +138599,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [575] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5331), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(575), [sym_preproc_endregion] = STATE(575), [sym_preproc_line] = STATE(575), @@ -136571,48 +138686,222 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), + [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_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_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_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_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), + }, + [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_preproc_region] = STATE(576), + [sym_preproc_endregion] = STATE(576), + [sym_preproc_line] = STATE(576), + [sym_preproc_pragma] = STATE(576), + [sym_preproc_nullable] = STATE(576), + [sym_preproc_error] = STATE(576), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(895), + [anon_sym_ref] = ACTIONS(897), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_delegate] = ACTIONS(667), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2721), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -136637,176 +138926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [576] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2805), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5432), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3721), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(576), - [sym_preproc_endregion] = STATE(576), - [sym_preproc_line] = STATE(576), - [sym_preproc_pragma] = STATE(576), - [sym_preproc_nullable] = STATE(576), - [sym_preproc_error] = STATE(576), - [sym_preproc_warning] = STATE(576), - [sym_preproc_define] = STATE(576), - [sym_preproc_undef] = STATE(576), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(2697), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [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(1085), + [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), @@ -136823,83 +138943,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [577] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5292), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(577), [sym_preproc_endregion] = STATE(577), [sym_preproc_line] = STATE(577), @@ -136909,48 +139030,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3067), + [aux_sym_array_rank_specifier_repeat1] = STATE(6824), + [aux_sym__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(2697), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -136975,7 +139098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -136992,84 +139115,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [578] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7209), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5198), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(578), [sym_preproc_endregion] = STATE(578), [sym_preproc_line] = STATE(578), @@ -137079,47 +139203,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -137144,7 +139270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -137161,82 +139287,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [579] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4835), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(579), [sym_preproc_endregion] = STATE(579), [sym_preproc_line] = STATE(579), @@ -137246,49 +139375,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2723), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -137313,7 +139441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -137330,83 +139458,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [580] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5069), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(580), [sym_preproc_endregion] = STATE(580), [sym_preproc_line] = STATE(580), @@ -137416,48 +139545,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -137482,7 +139612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -137499,83 +139629,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [581] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(581), [sym_preproc_endregion] = STATE(581), [sym_preproc_line] = STATE(581), @@ -137585,48 +139717,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2725), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -137651,7 +139783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -137668,83 +139800,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [582] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5313), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(582), [sym_preproc_endregion] = STATE(582), [sym_preproc_line] = STATE(582), @@ -137754,48 +139889,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -137820,7 +139954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -137837,84 +139971,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [583] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7174), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5447), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(583), [sym_preproc_endregion] = STATE(583), [sym_preproc_line] = STATE(583), @@ -137924,47 +140059,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -137989,7 +140125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138006,83 +140142,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [584] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -138092,48 +140229,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(584), [sym_preproc_define] = STATE(584), [sym_preproc_undef] = STATE(584), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2761), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2727), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(2763), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -138158,7 +140296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138175,83 +140313,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [585] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5346), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(585), [sym_preproc_endregion] = STATE(585), [sym_preproc_line] = STATE(585), @@ -138261,48 +140400,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2729), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -138327,7 +140467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138344,83 +140484,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [586] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4960), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(586), [sym_preproc_endregion] = STATE(586), [sym_preproc_line] = STATE(586), @@ -138430,48 +140572,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(1071), + [anon_sym_DOT] = ACTIONS(2769), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -138496,7 +140638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138513,83 +140655,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [587] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(587), [sym_preproc_endregion] = STATE(587), [sym_preproc_line] = STATE(587), @@ -138599,48 +140744,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2731), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -138665,7 +140809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138682,83 +140826,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [588] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5442), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(588), [sym_preproc_endregion] = STATE(588), [sym_preproc_line] = STATE(588), @@ -138768,48 +140914,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2713), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -138834,7 +140980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -138851,83 +140997,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [589] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5421), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(589), [sym_preproc_endregion] = STATE(589), [sym_preproc_line] = STATE(589), @@ -138937,48 +141085,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2729), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -139003,7 +141151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139020,82 +141168,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [590] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5193), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(590), [sym_preproc_endregion] = STATE(590), [sym_preproc_line] = STATE(590), @@ -139105,49 +141256,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2733), + [anon_sym_SEMI] = ACTIONS(2775), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2735), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -139172,7 +141322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139189,83 +141339,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [591] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5395), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(591), [sym_preproc_endregion] = STATE(591), [sym_preproc_line] = STATE(591), @@ -139275,48 +141426,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2729), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -139341,7 +141493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139358,83 +141510,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [592] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5165), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(592), [sym_preproc_endregion] = STATE(592), [sym_preproc_line] = STATE(592), @@ -139444,48 +141597,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(592), [sym_preproc_define] = STATE(592), [sym_preproc_undef] = STATE(592), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2779), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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(2705), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2783), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -139510,7 +141664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139527,83 +141681,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [593] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(593), [sym_preproc_endregion] = STATE(593), [sym_preproc_line] = STATE(593), @@ -139613,48 +141768,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2785), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(2787), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -139679,7 +141835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139696,83 +141852,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [594] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5433), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(594), [sym_preproc_endregion] = STATE(594), [sym_preproc_line] = STATE(594), @@ -139782,48 +141939,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2713), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -139848,7 +142006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -139865,82 +142023,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [595] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4888), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(595), [sym_preproc_endregion] = STATE(595), [sym_preproc_line] = STATE(595), @@ -139950,49 +142111,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -140017,7 +142177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140034,83 +142194,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [596] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4960), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(596), [sym_preproc_endregion] = STATE(596), [sym_preproc_line] = STATE(596), @@ -140120,48 +142282,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -140186,7 +142348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140203,84 +142365,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [597] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7283), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5344), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(597), [sym_preproc_endregion] = STATE(597), [sym_preproc_line] = STATE(597), @@ -140290,47 +142453,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -140355,7 +142519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140372,82 +142536,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [598] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5362), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(598), [sym_preproc_endregion] = STATE(598), [sym_preproc_line] = STATE(598), @@ -140457,49 +142624,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2743), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2745), - [anon_sym_default] = ACTIONS(2747), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -140524,7 +142690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140541,83 +142707,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [599] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5389), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(599), [sym_preproc_endregion] = STATE(599), [sym_preproc_line] = STATE(599), @@ -140627,48 +142795,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -140693,7 +142861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140710,83 +142878,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [600] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(600), [sym_preproc_endregion] = STATE(600), [sym_preproc_line] = STATE(600), @@ -140796,48 +142966,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -140862,7 +143032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -140879,83 +143049,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [601] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(601), [sym_preproc_endregion] = STATE(601), [sym_preproc_line] = STATE(601), @@ -140965,48 +143136,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -141031,7 +143203,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141048,83 +143220,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [602] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5164), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(602), [sym_preproc_endregion] = STATE(602), [sym_preproc_line] = STATE(602), @@ -141134,48 +143308,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2729), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141200,7 +143374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141217,83 +143391,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [603] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5448), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(603), [sym_preproc_endregion] = STATE(603), [sym_preproc_line] = STATE(603), @@ -141303,48 +143479,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2705), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -141369,7 +143545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141386,84 +143562,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [604] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_using_variable_declaration] = STATE(7073), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5655), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_expression] = STATE(5324), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(604), [sym_preproc_endregion] = STATE(604), [sym_preproc_line] = STATE(604), @@ -141473,47 +143650,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -141538,7 +143716,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141555,82 +143733,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [605] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4824), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(605), [sym_preproc_endregion] = STATE(605), [sym_preproc_line] = STATE(605), @@ -141640,49 +143820,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(745), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2753), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -141707,7 +143887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141724,83 +143904,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [606] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5426), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(606), [sym_preproc_endregion] = STATE(606), [sym_preproc_line] = STATE(606), @@ -141810,48 +143992,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2713), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -141876,7 +144058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -141893,83 +144075,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [607] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2805), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5376), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3721), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(607), [sym_preproc_endregion] = STATE(607), [sym_preproc_line] = STATE(607), @@ -141979,48 +144162,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2697), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -142045,7 +144229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142062,83 +144246,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [608] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5409), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(608), [sym_preproc_endregion] = STATE(608), [sym_preproc_line] = STATE(608), @@ -142148,48 +144334,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2713), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -142214,7 +144400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142231,83 +144417,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [609] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_variable_declaration] = STATE(7202), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5626), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4742), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(609), [sym_preproc_endregion] = STATE(609), [sym_preproc_line] = STATE(609), @@ -142317,48 +144505,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2755), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_checked] = ACTIONS(1067), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -142383,7 +144571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142400,83 +144588,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [610] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5199), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(610), [sym_preproc_endregion] = STATE(610), [sym_preproc_line] = STATE(610), @@ -142486,48 +144676,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2713), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142552,7 +144742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142569,83 +144759,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [611] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5223), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(611), [sym_preproc_endregion] = STATE(611), [sym_preproc_line] = STATE(611), @@ -142655,48 +144847,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142721,7 +144913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142738,83 +144930,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [612] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5482), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(612), [sym_preproc_endregion] = STATE(612), [sym_preproc_line] = STATE(612), @@ -142824,48 +145018,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -142890,7 +145084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -142907,83 +145101,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [613] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(613), [sym_preproc_endregion] = STATE(613), [sym_preproc_line] = STATE(613), @@ -142993,48 +145189,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143059,7 +145255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143076,82 +145272,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [614] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5063), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(614), [sym_preproc_endregion] = STATE(614), [sym_preproc_line] = STATE(614), @@ -143161,49 +145360,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [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(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -143228,7 +145426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143245,83 +145443,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [615] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5471), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(615), [sym_preproc_endregion] = STATE(615), [sym_preproc_line] = STATE(615), @@ -143331,48 +145531,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143397,7 +145597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143414,83 +145614,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [616] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3121), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5315), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(4664), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(616), [sym_preproc_endregion] = STATE(616), [sym_preproc_line] = STATE(616), @@ -143500,48 +145703,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2699), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -143566,7 +145768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143583,82 +145785,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [617] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4886), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(617), [sym_preproc_endregion] = STATE(617), [sym_preproc_line] = STATE(617), @@ -143668,49 +145873,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -143735,7 +145939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143752,83 +145956,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [618] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5522), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4762), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6751), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(618), [sym_preproc_endregion] = STATE(618), [sym_preproc_line] = STATE(618), @@ -143838,48 +146045,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -143904,7 +146110,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -143921,83 +146127,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [619] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5194), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(619), [sym_preproc_endregion] = STATE(619), [sym_preproc_line] = STATE(619), @@ -144007,48 +146215,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2721), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144073,7 +146281,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144090,83 +146298,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [620] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5326), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(620), [sym_preproc_endregion] = STATE(620), [sym_preproc_line] = STATE(620), @@ -144176,48 +146386,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2763), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144242,7 +146452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144259,83 +146469,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [621] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(621), [sym_preproc_endregion] = STATE(621), [sym_preproc_line] = STATE(621), @@ -144345,48 +146557,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2765), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144411,7 +146623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144428,83 +146640,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [622] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3121), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5414), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(4664), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(622), [sym_preproc_endregion] = STATE(622), [sym_preproc_line] = STATE(622), @@ -144514,48 +146728,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2699), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144580,7 +146794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144597,83 +146811,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [623] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5271), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(623), [sym_preproc_endregion] = STATE(623), [sym_preproc_line] = STATE(623), @@ -144683,48 +146899,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144749,7 +146965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144766,83 +146982,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [624] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2677), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5459), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(624), [sym_preproc_endregion] = STATE(624), [sym_preproc_line] = STATE(624), @@ -144852,48 +147070,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -144918,7 +147136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -144935,83 +147153,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [625] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5185), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(625), [sym_preproc_endregion] = STATE(625), [sym_preproc_line] = STATE(625), @@ -145021,48 +147241,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2763), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145087,7 +147307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145104,83 +147324,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [626] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2805), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5435), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3721), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(626), [sym_preproc_endregion] = STATE(626), [sym_preproc_line] = STATE(626), @@ -145190,48 +147413,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2697), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -145256,7 +147478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145273,83 +147495,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [627] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5232), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(627), [sym_preproc_endregion] = STATE(627), [sym_preproc_line] = STATE(627), @@ -145359,48 +147583,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2713), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145425,7 +147649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145442,83 +147666,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [628] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5393), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(628), [sym_preproc_endregion] = STATE(628), [sym_preproc_line] = STATE(628), @@ -145528,48 +147755,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2729), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -145594,7 +147820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145611,83 +147837,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [629] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5479), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(629), [sym_preproc_endregion] = STATE(629), [sym_preproc_line] = STATE(629), @@ -145697,48 +147925,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2707), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145763,7 +147991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145780,83 +148008,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [630] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3048), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5461), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3321), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(630), [sym_preproc_endregion] = STATE(630), [sym_preproc_line] = STATE(630), @@ -145866,48 +148096,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2705), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -145932,7 +148162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -145949,83 +148179,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [631] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(631), [sym_preproc_endregion] = STATE(631), [sym_preproc_line] = STATE(631), @@ -146035,48 +148267,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2767), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146101,7 +148333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146118,83 +148350,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [632] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2381), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5469), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2944), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(632), [sym_preproc_endregion] = STATE(632), [sym_preproc_line] = STATE(632), @@ -146204,48 +148438,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2729), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146270,7 +148504,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146287,83 +148521,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [633] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5320), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(633), [sym_preproc_endregion] = STATE(633), [sym_preproc_line] = STATE(633), @@ -146373,48 +148609,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2707), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146439,7 +148675,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146456,83 +148692,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [634] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(634), [sym_preproc_endregion] = STATE(634), [sym_preproc_line] = STATE(634), @@ -146542,48 +148780,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2769), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -146608,7 +148846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146625,83 +148863,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [635] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5210), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(635), [sym_preproc_endregion] = STATE(635), [sym_preproc_line] = STATE(635), @@ -146711,48 +148952,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -146777,7 +149017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146794,83 +149034,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [636] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5392), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(636), [sym_preproc_endregion] = STATE(636), [sym_preproc_line] = STATE(636), @@ -146880,48 +149123,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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_DOT] = ACTIONS(2707), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -146946,7 +149188,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -146963,83 +149205,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [637] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(637), [sym_preproc_endregion] = STATE(637), [sym_preproc_line] = STATE(637), @@ -147049,48 +149293,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2771), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147115,7 +149359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147132,82 +149376,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [638] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5176), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(638), [sym_preproc_endregion] = STATE(638), [sym_preproc_line] = STATE(638), @@ -147217,49 +149464,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2773), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2775), - [anon_sym_default] = ACTIONS(2777), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147284,7 +149530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147301,82 +149547,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [639] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4898), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(639), [sym_preproc_endregion] = STATE(639), [sym_preproc_line] = STATE(639), @@ -147386,49 +149635,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2779), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147453,7 +149701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147470,83 +149718,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [640] = { - [sym_attribute_argument] = STATE(6535), - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2216), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(640), [sym_preproc_endregion] = STATE(640), [sym_preproc_line] = STATE(640), @@ -147556,48 +149806,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2781), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147622,7 +149872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147639,82 +149889,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [641] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5357), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(641), [sym_preproc_endregion] = STATE(641), [sym_preproc_line] = STATE(641), @@ -147724,49 +149977,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2783), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_case] = ACTIONS(2785), - [anon_sym_default] = ACTIONS(2787), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147791,7 +150043,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147808,83 +150060,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [642] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5465), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(642), [sym_preproc_endregion] = STATE(642), [sym_preproc_line] = STATE(642), @@ -147894,48 +150148,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2707), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -147960,7 +150214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -147977,83 +150231,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [643] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2411), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5422), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(2985), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(643), [sym_preproc_endregion] = STATE(643), [sym_preproc_line] = STATE(643), @@ -148063,48 +150319,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2707), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148129,7 +150385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -148146,83 +150402,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [644] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(644), [sym_preproc_endregion] = STATE(644), [sym_preproc_line] = STATE(644), @@ -148232,48 +150490,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2789), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148298,7 +150556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -148315,83 +150573,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [645] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2530), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5474), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_member_binding_expression] = STATE(3277), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(645), [sym_preproc_endregion] = STATE(645), [sym_preproc_line] = STATE(645), @@ -148401,48 +150661,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_DOT] = ACTIONS(2713), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148467,7 +150727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -148484,83 +150744,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [646] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(646), [sym_preproc_endregion] = STATE(646), [sym_preproc_line] = STATE(646), @@ -148570,48 +150832,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2791), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148636,7 +150898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -148653,83 +150915,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [647] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(647), [sym_preproc_endregion] = STATE(647), [sym_preproc_line] = STATE(647), @@ -148739,47 +151003,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_DOT] = ACTIONS(2811), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -148792,19 +151057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -148815,88 +151080,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [648] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4710), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(648), [sym_preproc_endregion] = STATE(648), [sym_preproc_line] = STATE(648), @@ -148906,48 +151174,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -148972,7 +151240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -148989,82 +151257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [649] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(649), [sym_preproc_endregion] = STATE(649), [sym_preproc_line] = STATE(649), @@ -149074,48 +151344,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2827), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2797), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2831), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -149140,7 +151411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -149157,83 +151428,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [650] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4142), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(650), [sym_preproc_endregion] = STATE(650), [sym_preproc_line] = STATE(650), @@ -149243,47 +151516,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_checked] = ACTIONS(1067), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -149297,18 +151571,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -149319,88 +151593,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [651] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5536), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(651), [sym_preproc_endregion] = STATE(651), [sym_preproc_line] = STATE(651), @@ -149410,48 +151686,49 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [anon_sym_checked] = ACTIONS(1067), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -149476,7 +151753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -149493,83 +151770,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [652] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5119), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(652), [sym_preproc_endregion] = STATE(652), [sym_preproc_line] = STATE(652), @@ -149579,47 +151858,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_DOT] = ACTIONS(2835), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149632,19 +151912,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -149655,88 +151935,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [653] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5104), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(653), [sym_preproc_endregion] = STATE(653), [sym_preproc_line] = STATE(653), @@ -149746,48 +152029,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149800,19 +152083,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -149823,89 +152106,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [654] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4418), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(654), [sym_preproc_endregion] = STATE(654), [sym_preproc_line] = STATE(654), @@ -149915,47 +152200,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_DOT] = ACTIONS(2835), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -149968,19 +152254,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -149997,82 +152283,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [655] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5294), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(655), [sym_preproc_endregion] = STATE(655), [sym_preproc_line] = STATE(655), @@ -150082,48 +152371,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2053), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150148,7 +152437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -150165,83 +152454,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [656] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4648), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(656), [sym_preproc_endregion] = STATE(656), [sym_preproc_line] = STATE(656), @@ -150251,47 +152542,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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_DOT] = ACTIONS(2803), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150304,19 +152596,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -150327,88 +152619,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [657] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(657), [sym_preproc_endregion] = STATE(657), [sym_preproc_line] = STATE(657), @@ -150418,48 +152713,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2805), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150484,7 +152779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -150501,82 +152796,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [658] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4412), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(658), [sym_preproc_endregion] = STATE(658), [sym_preproc_line] = STATE(658), @@ -150586,48 +152884,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150640,19 +152938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -150669,82 +152967,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [659] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4666), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(659), [sym_preproc_endregion] = STATE(659), [sym_preproc_line] = STATE(659), @@ -150754,48 +153055,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -150808,19 +153109,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -150831,88 +153132,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [660] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5203), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(660), [sym_preproc_endregion] = STATE(660), [sym_preproc_line] = STATE(660), @@ -150922,48 +153226,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -150988,7 +153292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151005,82 +153309,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [661] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(661), [sym_preproc_endregion] = STATE(661), [sym_preproc_line] = STATE(661), @@ -151090,48 +153397,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2807), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151156,7 +153463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151173,83 +153480,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [662] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5290), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(662), [sym_preproc_endregion] = STATE(662), [sym_preproc_line] = STATE(662), @@ -151259,47 +153568,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151324,7 +153634,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151341,82 +153651,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [663] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(663), [sym_preproc_endregion] = STATE(663), [sym_preproc_line] = STATE(663), @@ -151426,48 +153739,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151492,7 +153805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151509,82 +153822,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [664] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(664), [sym_preproc_endregion] = STATE(664), [sym_preproc_line] = STATE(664), @@ -151594,48 +153910,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -151660,7 +153976,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151677,82 +153993,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [665] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5553), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2226), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(665), [sym_preproc_endregion] = STATE(665), [sym_preproc_line] = STATE(665), @@ -151762,48 +154081,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(2559), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_scoped] = ACTIONS(2437), + [anon_sym_DOT] = ACTIONS(2793), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151828,7 +154147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -151845,83 +154164,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [666] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4587), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(666), [sym_preproc_endregion] = STATE(666), [sym_preproc_line] = STATE(666), @@ -151931,47 +154252,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -151996,7 +154318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -152013,83 +154335,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [667] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5037), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(667), [sym_preproc_endregion] = STATE(667), [sym_preproc_line] = STATE(667), @@ -152099,47 +154423,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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_DOT] = ACTIONS(2745), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152152,19 +154477,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -152175,88 +154500,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [668] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4594), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(668), [sym_preproc_endregion] = STATE(668), [sym_preproc_line] = STATE(668), @@ -152266,48 +154593,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -152332,7 +154659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -152349,82 +154676,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [669] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5337), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(669), [sym_preproc_endregion] = STATE(669), [sym_preproc_line] = STATE(669), @@ -152434,48 +154764,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2815), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -152488,19 +154817,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -152511,88 +154840,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [670] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4950), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(670), [sym_preproc_endregion] = STATE(670), [sym_preproc_line] = STATE(670), @@ -152602,48 +154933,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -152656,19 +154987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -152685,82 +155016,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [671] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4952), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(671), [sym_preproc_endregion] = STATE(671), [sym_preproc_line] = STATE(671), @@ -152770,48 +155103,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2819), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -152824,19 +155157,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -152847,88 +155180,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [672] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4710), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(672), [sym_preproc_endregion] = STATE(672), [sym_preproc_line] = STATE(672), @@ -152938,48 +155274,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -152992,19 +155327,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -153015,88 +155350,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [673] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2569), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2122), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2141), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(673), [sym_preproc_endregion] = STATE(673), [sym_preproc_line] = STATE(673), @@ -153106,48 +155443,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_ref] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2823), + [anon_sym_new] = ACTIONS(2181), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(2521), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2825), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(1713), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -153172,7 +155509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -153189,82 +155526,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [674] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5019), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(674), [sym_preproc_endregion] = STATE(674), [sym_preproc_line] = STATE(674), @@ -153274,48 +155614,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -153328,19 +155667,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -153351,89 +155690,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [675] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3654), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(675), [sym_preproc_endregion] = STATE(675), [sym_preproc_line] = STATE(675), @@ -153443,47 +155784,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -153496,19 +155837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -153519,89 +155860,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [676] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4833), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(676), [sym_preproc_endregion] = STATE(676), [sym_preproc_line] = STATE(676), @@ -153611,47 +155953,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_checked] = ACTIONS(1067), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -153664,19 +156007,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -153693,83 +156036,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [677] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3654), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3514), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(677), [sym_preproc_endregion] = STATE(677), [sym_preproc_line] = STATE(677), @@ -153779,47 +156123,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -153832,19 +156177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -153855,88 +156200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [678] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5520), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2199), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(678), [sym_preproc_endregion] = STATE(678), [sym_preproc_line] = STATE(678), @@ -153946,48 +156293,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -154012,7 +156359,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -154029,82 +156376,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [679] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(679), [sym_preproc_endregion] = STATE(679), [sym_preproc_line] = STATE(679), @@ -154114,48 +156463,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -154180,7 +156529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -154197,83 +156546,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [680] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5241), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(680), [sym_preproc_endregion] = STATE(680), [sym_preproc_line] = STATE(680), @@ -154283,47 +156634,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -154337,18 +156688,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -154359,89 +156710,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [681] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym__anonymous_object_member_declarator] = STATE(6878), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2232), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(681), [sym_preproc_endregion] = STATE(681), [sym_preproc_line] = STATE(681), @@ -154451,47 +156804,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -154504,19 +156857,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -154527,89 +156880,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [682] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4367), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(682), [sym_preproc_endregion] = STATE(682), [sym_preproc_line] = STATE(682), @@ -154619,383 +156973,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [683] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(683), - [sym_preproc_endregion] = STATE(683), - [sym_preproc_line] = STATE(683), - [sym_preproc_pragma] = STATE(683), - [sym_preproc_nullable] = STATE(683), - [sym_preproc_error] = STATE(683), - [sym_preproc_warning] = STATE(683), - [sym_preproc_define] = STATE(683), - [sym_preproc_undef] = STATE(683), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1915), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [684] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(684), - [sym_preproc_endregion] = STATE(684), - [sym_preproc_line] = STATE(684), - [sym_preproc_pragma] = STATE(684), - [sym_preproc_nullable] = STATE(684), - [sym_preproc_error] = STATE(684), - [sym_preproc_warning] = STATE(684), - [sym_preproc_define] = STATE(684), - [sym_preproc_undef] = STATE(684), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2855), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2409), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155020,7 +157039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -155036,134 +157055,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), }, - [685] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3751), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(685), - [sym_preproc_endregion] = STATE(685), - [sym_preproc_line] = STATE(685), - [sym_preproc_pragma] = STATE(685), - [sym_preproc_nullable] = STATE(685), - [sym_preproc_error] = STATE(685), - [sym_preproc_warning] = STATE(685), - [sym_preproc_define] = STATE(685), - [sym_preproc_undef] = STATE(685), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_preproc_region] = STATE(683), + [sym_preproc_endregion] = STATE(683), + [sym_preproc_line] = STATE(683), + [sym_preproc_pragma] = STATE(683), + [sym_preproc_nullable] = STATE(683), + [sym_preproc_error] = STATE(683), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155176,19 +157197,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -155199,139 +157220,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [686] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5555), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2172), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(686), - [sym_preproc_endregion] = STATE(686), - [sym_preproc_line] = STATE(686), - [sym_preproc_pragma] = STATE(686), - [sym_preproc_nullable] = STATE(686), - [sym_preproc_error] = STATE(686), - [sym_preproc_warning] = STATE(686), - [sym_preproc_define] = STATE(686), - [sym_preproc_undef] = STATE(686), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(684), + [sym_preproc_endregion] = STATE(684), + [sym_preproc_line] = STATE(684), + [sym_preproc_pragma] = STATE(684), + [sym_preproc_nullable] = STATE(684), + [sym_preproc_error] = STATE(684), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2429), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2217), + [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(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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(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), + }, + [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_preproc_region] = STATE(685), + [sym_preproc_endregion] = STATE(685), + [sym_preproc_line] = STATE(685), + [sym_preproc_pragma] = STATE(685), + [sym_preproc_nullable] = STATE(685), + [sym_preproc_error] = STATE(685), + [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), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2437), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -155344,19 +157537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -155372,83 +157565,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), }, + [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_preproc_region] = STATE(686), + [sym_preproc_endregion] = STATE(686), + [sym_preproc_line] = STATE(686), + [sym_preproc_pragma] = STATE(686), + [sym_preproc_nullable] = STATE(686), + [sym_preproc_error] = STATE(686), + [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), + [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_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), + }, [687] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5227), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(687), [sym_preproc_endregion] = STATE(687), [sym_preproc_line] = STATE(687), @@ -155458,48 +157823,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1965), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -155512,19 +157877,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -155541,82 +157906,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [688] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4976), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(688), [sym_preproc_endregion] = STATE(688), [sym_preproc_line] = STATE(688), @@ -155626,48 +157993,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2831), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -155680,19 +158047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -155703,88 +158070,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [689] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4984), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(689), [sym_preproc_endregion] = STATE(689), [sym_preproc_line] = STATE(689), @@ -155794,48 +158163,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -155860,7 +158229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -155877,83 +158246,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [690] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(4601), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4652), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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(690), [sym_preproc_endregion] = STATE(690), [sym_preproc_line] = STATE(690), @@ -155963,72 +158333,73 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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_RBRACE] = ACTIONS(2859), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -156039,88 +158410,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(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [691] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(691), [sym_preproc_endregion] = STATE(691), [sym_preproc_line] = STATE(691), @@ -156130,48 +158504,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2837), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156196,7 +158569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -156213,82 +158586,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [692] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4369), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(692), [sym_preproc_endregion] = STATE(692), [sym_preproc_line] = STATE(692), @@ -156298,48 +158673,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(2711), + [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(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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(2755), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -156352,19 +158727,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -156375,88 +158750,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [693] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4811), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(693), [sym_preproc_endregion] = STATE(693), [sym_preproc_line] = STATE(693), @@ -156466,48 +158844,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -156520,19 +158897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -156543,88 +158920,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [694] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(694), [sym_preproc_endregion] = STATE(694), [sym_preproc_line] = STATE(694), @@ -156634,48 +159013,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(694), [sym_preproc_define] = STATE(694), [sym_preproc_undef] = STATE(694), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -156688,19 +159067,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -156711,88 +159090,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [695] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4942), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(695), [sym_preproc_endregion] = STATE(695), [sym_preproc_line] = STATE(695), @@ -156802,48 +159184,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -156856,19 +159237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -156885,83 +159266,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [696] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4094), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(696), [sym_preproc_endregion] = STATE(696), [sym_preproc_line] = STATE(696), @@ -156971,47 +159354,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157024,19 +159407,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -157047,89 +159430,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [697] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4856), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(697), [sym_preproc_endregion] = STATE(697), [sym_preproc_line] = STATE(697), @@ -157139,47 +159523,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1809), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157192,19 +159577,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -157221,82 +159606,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [698] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4466), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(698), [sym_preproc_endregion] = STATE(698), [sym_preproc_line] = STATE(698), @@ -157306,216 +159693,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [699] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4275), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(699), - [sym_preproc_endregion] = STATE(699), - [sym_preproc_line] = STATE(699), - [sym_preproc_pragma] = STATE(699), - [sym_preproc_nullable] = STATE(699), - [sym_preproc_error] = STATE(699), - [sym_preproc_warning] = STATE(699), - [sym_preproc_define] = STATE(699), - [sym_preproc_undef] = STATE(699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -157528,19 +159747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -157551,139 +159770,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [700] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(699), + [sym_preproc_endregion] = STATE(699), + [sym_preproc_line] = STATE(699), + [sym_preproc_pragma] = STATE(699), + [sym_preproc_nullable] = STATE(699), + [sym_preproc_error] = STATE(699), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -157708,7 +159929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -157724,134 +159945,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), }, - [701] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -157876,7 +160099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -157892,83 +160115,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), }, + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4241), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(702), [sym_preproc_endregion] = STATE(702), [sym_preproc_line] = STATE(702), @@ -157978,48 +160374,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -158032,19 +160427,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -158061,83 +160456,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [703] = { - [sym_attribute_argument] = STATE(6914), - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5151), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2216), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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(703), [sym_preproc_endregion] = STATE(703), [sym_preproc_line] = STATE(703), @@ -158147,47 +160543,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(703), [sym_preproc_define] = STATE(703), [sym_preproc_undef] = STATE(703), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(85), + [anon_sym_scoped] = ACTIONS(2309), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158212,7 +160609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -158229,82 +160626,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [704] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4100), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(704), [sym_preproc_endregion] = STATE(704), [sym_preproc_line] = STATE(704), @@ -158314,48 +160714,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -158368,19 +160767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -158397,82 +160796,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [705] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5170), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(705), [sym_preproc_endregion] = STATE(705), [sym_preproc_line] = STATE(705), @@ -158482,48 +160884,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2839), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1153), + [anon_sym_LPAREN] = ACTIONS(1593), + [anon_sym_ref] = ACTIONS(1595), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_delegate] = ACTIONS(1161), + [anon_sym_async] = ACTIONS(1047), [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158536,19 +160937,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -158559,89 +160960,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [706] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(706), [sym_preproc_endregion] = STATE(706), [sym_preproc_line] = STATE(706), @@ -158651,47 +161053,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -158704,19 +161107,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -158727,89 +161130,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [707] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3864), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym__ordering] = STATE(6128), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(707), [sym_preproc_endregion] = STATE(707), [sym_preproc_line] = STATE(707), @@ -158819,47 +161223,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -158872,19 +161277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -158895,88 +161300,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [708] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5338), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(708), [sym_preproc_endregion] = STATE(708), [sym_preproc_line] = STATE(708), @@ -158986,47 +161393,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159051,8 +161459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_if_token3] = ACTIONS(2841), + [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), @@ -159069,83 +161476,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [709] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4966), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6592), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(709), [sym_preproc_endregion] = STATE(709), [sym_preproc_line] = STATE(709), @@ -159155,47 +161563,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -159208,19 +161617,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -159231,89 +161640,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [710] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4234), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(710), [sym_preproc_endregion] = STATE(710), [sym_preproc_line] = STATE(710), @@ -159323,215 +161734,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [711] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4675), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(711), - [sym_preproc_endregion] = STATE(711), - [sym_preproc_line] = STATE(711), - [sym_preproc_pragma] = STATE(711), - [sym_preproc_nullable] = STATE(711), - [sym_preproc_error] = STATE(711), - [sym_preproc_warning] = STATE(711), - [sym_preproc_define] = STATE(711), - [sym_preproc_undef] = STATE(711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159556,7 +161799,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), + }, + [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_preproc_region] = STATE(711), + [sym_preproc_endregion] = STATE(711), + [sym_preproc_line] = STATE(711), + [sym_preproc_pragma] = STATE(711), + [sym_preproc_nullable] = STATE(711), + [sym_preproc_error] = STATE(711), + [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), + [sym__identifier_token] = ACTIONS(25), + [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_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(1061), + [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_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), + [anon_sym_PLUS] = 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(2309), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2631), + [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), @@ -159573,82 +161986,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [712] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -159658,48 +162074,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(712), [sym_preproc_define] = STATE(712), [sym_preproc_undef] = STATE(712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159712,19 +162127,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -159735,89 +162150,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [713] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4866), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -159827,47 +162243,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(713), [sym_preproc_define] = STATE(713), [sym_preproc_undef] = STATE(713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -159880,19 +162297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -159909,82 +162326,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [714] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4858), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -159994,48 +162413,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(714), [sym_preproc_define] = STATE(714), [sym_preproc_undef] = STATE(714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_SEMI] = ACTIONS(2843), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [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(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -160048,19 +162467,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -160071,88 +162490,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5173), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(715), [sym_preproc_endregion] = STATE(715), [sym_preproc_line] = STATE(715), @@ -160162,48 +162583,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2845), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160228,7 +162649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -160245,83 +162666,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [716] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5245), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(716), [sym_preproc_endregion] = STATE(716), [sym_preproc_line] = STATE(716), @@ -160331,47 +162754,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -160384,19 +162807,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -160413,82 +162836,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [717] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(717), [sym_preproc_endregion] = STATE(717), [sym_preproc_line] = STATE(717), @@ -160498,48 +162924,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2269), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1071), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -160564,7 +162989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -160581,82 +163006,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [718] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5080), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(718), [sym_preproc_endregion] = STATE(718), [sym_preproc_line] = STATE(718), @@ -160666,216 +163093,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [719] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5491), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5411), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(719), - [sym_preproc_endregion] = STATE(719), - [sym_preproc_line] = STATE(719), - [sym_preproc_pragma] = STATE(719), - [sym_preproc_nullable] = STATE(719), - [sym_preproc_error] = STATE(719), - [sym_preproc_warning] = STATE(719), - [sym_preproc_define] = STATE(719), - [sym_preproc_undef] = STATE(719), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(2717), + [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(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_checked] = ACTIONS(1067), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = 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(1071), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -160900,7 +163159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -160916,134 +163175,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), }, - [720] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5358), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(720), - [sym_preproc_endregion] = STATE(720), - [sym_preproc_line] = STATE(720), - [sym_preproc_pragma] = STATE(720), - [sym_preproc_nullable] = STATE(720), - [sym_preproc_error] = STATE(720), - [sym_preproc_warning] = STATE(720), - [sym_preproc_define] = STATE(720), - [sym_preproc_undef] = STATE(720), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(719), + [sym_preproc_endregion] = STATE(719), + [sym_preproc_line] = STATE(719), + [sym_preproc_pragma] = STATE(719), + [sym_preproc_nullable] = STATE(719), + [sym_preproc_error] = STATE(719), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2631), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161068,7 +163329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -161084,134 +163345,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), }, - [721] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5380), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(721), - [sym_preproc_endregion] = STATE(721), - [sym_preproc_line] = STATE(721), - [sym_preproc_pragma] = STATE(721), - [sym_preproc_nullable] = STATE(721), - [sym_preproc_error] = STATE(721), - [sym_preproc_warning] = STATE(721), - [sym_preproc_define] = STATE(721), - [sym_preproc_undef] = STATE(721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(720), + [sym_preproc_endregion] = STATE(720), + [sym_preproc_line] = STATE(720), + [sym_preproc_pragma] = STATE(720), + [sym_preproc_nullable] = STATE(720), + [sym_preproc_error] = STATE(720), + [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_SEMI] = ACTIONS(2847), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -161224,19 +163487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -161252,134 +163515,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), }, - [722] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5028), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(722), - [sym_preproc_endregion] = STATE(722), - [sym_preproc_line] = STATE(722), - [sym_preproc_pragma] = STATE(722), - [sym_preproc_nullable] = STATE(722), - [sym_preproc_error] = STATE(722), - [sym_preproc_warning] = STATE(722), - [sym_preproc_define] = STATE(722), - [sym_preproc_undef] = STATE(722), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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__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_preproc_region] = STATE(721), + [sym_preproc_endregion] = STATE(721), + [sym_preproc_line] = STATE(721), + [sym_preproc_pragma] = STATE(721), + [sym_preproc_nullable] = STATE(721), + [sym_preproc_error] = STATE(721), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -161392,19 +163657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -161415,139 +163680,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [723] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3864), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym__ordering] = STATE(6138), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(723), - [sym_preproc_endregion] = STATE(723), - [sym_preproc_line] = STATE(723), - [sym_preproc_pragma] = STATE(723), - [sym_preproc_nullable] = STATE(723), - [sym_preproc_error] = STATE(723), - [sym_preproc_warning] = STATE(723), - [sym_preproc_define] = STATE(723), - [sym_preproc_undef] = STATE(723), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_preproc_region] = STATE(722), + [sym_preproc_endregion] = STATE(722), + [sym_preproc_line] = STATE(722), + [sym_preproc_pragma] = STATE(722), + [sym_preproc_nullable] = STATE(722), + [sym_preproc_error] = STATE(722), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2855), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [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(2409), + [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(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -161560,19 +163827,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -161583,139 +163850,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [724] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4996), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(724), - [sym_preproc_endregion] = STATE(724), - [sym_preproc_line] = STATE(724), - [sym_preproc_pragma] = STATE(724), - [sym_preproc_nullable] = STATE(724), - [sym_preproc_error] = STATE(724), - [sym_preproc_warning] = STATE(724), - [sym_preproc_define] = STATE(724), - [sym_preproc_undef] = STATE(724), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(723), + [sym_preproc_endregion] = STATE(723), + [sym_preproc_line] = STATE(723), + [sym_preproc_pragma] = STATE(723), + [sym_preproc_nullable] = STATE(723), + [sym_preproc_error] = STATE(723), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2841), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [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_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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -161728,19 +163997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -161751,88 +164020,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [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_preproc_region] = STATE(724), + [sym_preproc_endregion] = STATE(724), + [sym_preproc_line] = STATE(724), + [sym_preproc_pragma] = STATE(724), + [sym_preproc_nullable] = STATE(724), + [sym_preproc_error] = STATE(724), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5367), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -161842,48 +164283,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(725), [sym_preproc_define] = STATE(725), [sym_preproc_undef] = STATE(725), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2849), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2865), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), + [anon_sym_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2867), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -161908,7 +164349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -161925,83 +164366,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [726] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4025), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(726), [sym_preproc_endregion] = STATE(726), [sym_preproc_line] = STATE(726), @@ -162011,47 +164453,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162064,19 +164507,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -162087,89 +164530,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [727] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5360), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(727), [sym_preproc_endregion] = STATE(727), [sym_preproc_line] = STATE(727), @@ -162179,47 +164623,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_checked] = ACTIONS(1067), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -162244,7 +164689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -162261,82 +164706,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [728] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2377), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2122), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2117), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(728), [sym_preproc_endregion] = STATE(728), [sym_preproc_line] = STATE(728), @@ -162346,48 +164794,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_ref] = ACTIONS(2319), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2825), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -162400,19 +164847,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -162423,89 +164870,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [729] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3844), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3080), + [sym_conditional_access_expression] = STATE(3080), + [sym_as_expression] = STATE(3080), + [sym_is_expression] = STATE(3080), + [sym_is_pattern_expression] = STATE(3080), + [sym_cast_expression] = STATE(3080), + [sym_checked_expression] = STATE(3080), + [sym_invocation_expression] = STATE(3111), + [sym_switch_expression] = STATE(3080), + [sym_await_expression] = STATE(3111), + [sym_throw_expression] = STATE(3080), + [sym_element_access_expression] = STATE(2484), + [sym_interpolated_string_expression] = STATE(3080), + [sym_member_access_expression] = STATE(2484), + [sym_object_creation_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(729), [sym_preproc_endregion] = STATE(729), [sym_preproc_line] = STATE(729), @@ -162515,47 +164963,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(729), [sym_preproc_define] = STATE(729), [sym_preproc_undef] = STATE(729), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(2871), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [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), @@ -162568,19 +165017,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -162591,89 +165040,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [730] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3654), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3821), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(730), [sym_preproc_endregion] = STATE(730), [sym_preproc_line] = STATE(730), @@ -162683,47 +165134,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162736,19 +165187,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -162759,88 +165210,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [731] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3557), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(731), [sym_preproc_endregion] = STATE(731), [sym_preproc_line] = STATE(731), @@ -162850,48 +165304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(731), [sym_preproc_define] = STATE(731), [sym_preproc_undef] = STATE(731), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -162904,19 +165357,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -162927,88 +165380,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [732] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4710), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(732), [sym_preproc_endregion] = STATE(732), [sym_preproc_line] = STATE(732), @@ -163018,48 +165474,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(732), [sym_preproc_define] = STATE(732), [sym_preproc_undef] = STATE(732), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -163072,19 +165527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -163095,88 +165550,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [733] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2630), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2191), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2456), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2143), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(733), [sym_preproc_endregion] = STATE(733), [sym_preproc_line] = STATE(733), @@ -163186,73 +165643,73 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(2363), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(2367), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2855), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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_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(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_scoped] = ACTIONS(2373), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2857), - [sym_predefined_type] = ACTIONS(2859), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), + [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(1945), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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_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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -163263,88 +165720,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [734] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5123), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(734), [sym_preproc_endregion] = STATE(734), [sym_preproc_line] = STATE(734), @@ -163354,48 +165813,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), - [anon_sym_readonly] = ACTIONS(2711), + [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(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -163408,19 +165867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -163431,88 +165890,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [735] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4217), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(735), [sym_preproc_endregion] = STATE(735), [sym_preproc_line] = STATE(735), @@ -163522,165 +165984,167 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3862), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -163690,216 +166154,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(736), [sym_preproc_define] = STATE(736), [sym_preproc_undef] = STATE(736), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [737] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4951), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(737), - [sym_preproc_endregion] = STATE(737), - [sym_preproc_line] = STATE(737), - [sym_preproc_pragma] = STATE(737), - [sym_preproc_nullable] = STATE(737), - [sym_preproc_error] = STATE(737), - [sym_preproc_warning] = STATE(737), - [sym_preproc_define] = STATE(737), - [sym_preproc_undef] = STATE(737), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -163912,19 +166207,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163940,83 +166235,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), }, + [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_preproc_region] = STATE(737), + [sym_preproc_endregion] = STATE(737), + [sym_preproc_line] = STATE(737), + [sym_preproc_pragma] = STATE(737), + [sym_preproc_nullable] = STATE(737), + [sym_preproc_error] = STATE(737), + [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), + }, [738] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5147), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2152), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(738), [sym_preproc_endregion] = STATE(738), [sym_preproc_line] = STATE(738), @@ -164026,48 +166493,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1697), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2861), + [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_scoped] = ACTIONS(85), + [anon_sym_base] = ACTIONS(1325), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164080,19 +166547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -164109,83 +166576,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [739] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5744), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4766), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_declaration_expression] = STATE(6751), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(739), [sym_preproc_endregion] = STATE(739), [sym_preproc_line] = STATE(739), @@ -164195,47 +166664,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -164248,19 +166717,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -164271,88 +166740,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [740] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5410), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(740), [sym_preproc_endregion] = STATE(740), [sym_preproc_line] = STATE(740), @@ -164362,48 +166834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(740), [sym_preproc_define] = STATE(740), [sym_preproc_undef] = STATE(740), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_SEMI] = ACTIONS(2003), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164416,19 +166887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -164439,89 +166910,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [741] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3600), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(741), [sym_preproc_endregion] = STATE(741), [sym_preproc_line] = STATE(741), @@ -164531,47 +167003,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1731), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -164584,19 +167057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -164607,89 +167080,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [742] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3654), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3610), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(742), [sym_preproc_endregion] = STATE(742), [sym_preproc_line] = STATE(742), @@ -164699,165 +167173,168 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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), }, [743] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4416), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(743), [sym_preproc_endregion] = STATE(743), [sym_preproc_line] = STATE(743), @@ -164867,164 +167344,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_when] = ACTIONS(29), - [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), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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), }, [744] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4907), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(744), [sym_preproc_endregion] = STATE(744), [sym_preproc_line] = STATE(744), @@ -165034,165 +167513,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [745] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4414), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(745), [sym_preproc_endregion] = STATE(745), [sym_preproc_line] = STATE(745), @@ -165202,48 +167683,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), - [anon_sym_readonly] = ACTIONS(2711), + [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(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -165256,19 +167737,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -165279,88 +167760,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [746] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(746), [sym_preproc_endregion] = STATE(746), [sym_preproc_line] = STATE(746), @@ -165370,48 +167854,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -165424,19 +167907,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -165453,82 +167936,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [747] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4033), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(747), [sym_preproc_endregion] = STATE(747), [sym_preproc_line] = STATE(747), @@ -165538,48 +168024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(747), [sym_preproc_define] = STATE(747), [sym_preproc_undef] = STATE(747), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -165592,19 +168077,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -165615,88 +168100,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [748] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4927), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(748), [sym_preproc_endregion] = STATE(748), [sym_preproc_line] = STATE(748), @@ -165706,165 +168193,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [749] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4170), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(749), [sym_preproc_endregion] = STATE(749), [sym_preproc_line] = STATE(749), @@ -165874,216 +168363,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [750] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(750), - [sym_preproc_endregion] = STATE(750), - [sym_preproc_line] = STATE(750), - [sym_preproc_pragma] = STATE(750), - [sym_preproc_nullable] = STATE(750), - [sym_preproc_error] = STATE(750), - [sym_preproc_warning] = STATE(750), - [sym_preproc_define] = STATE(750), - [sym_preproc_undef] = STATE(750), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -166096,19 +168417,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -166124,83 +168445,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), }, + [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_preproc_region] = STATE(750), + [sym_preproc_endregion] = STATE(750), + [sym_preproc_line] = STATE(750), + [sym_preproc_pragma] = STATE(750), + [sym_preproc_nullable] = STATE(750), + [sym_preproc_error] = STATE(750), + [sym_preproc_warning] = STATE(750), + [sym_preproc_define] = STATE(750), + [sym_preproc_undef] = STATE(750), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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_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(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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, [751] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5424), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(751), [sym_preproc_endregion] = STATE(751), [sym_preproc_line] = STATE(751), @@ -166210,48 +168703,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(751), [sym_preproc_define] = STATE(751), [sym_preproc_undef] = STATE(751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2875), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -166276,7 +168769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -166293,82 +168786,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [752] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5391), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(752), [sym_preproc_endregion] = STATE(752), [sym_preproc_line] = STATE(752), @@ -166378,48 +168873,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2877), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), + [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_scoped] = ACTIONS(2395), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2879), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -166444,7 +168939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -166461,82 +168956,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [753] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(753), [sym_preproc_endregion] = STATE(753), [sym_preproc_line] = STATE(753), @@ -166546,48 +169044,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -166600,19 +169097,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -166623,88 +169120,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [754] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(754), [sym_preproc_endregion] = STATE(754), [sym_preproc_line] = STATE(754), @@ -166714,48 +169213,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -166768,19 +169267,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -166797,82 +169296,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [755] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(755), [sym_preproc_endregion] = STATE(755), [sym_preproc_line] = STATE(755), @@ -166882,48 +169383,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -166948,7 +169449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -166965,83 +169466,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [756] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4753), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(756), [sym_preproc_endregion] = STATE(756), [sym_preproc_line] = STATE(756), @@ -167051,47 +169553,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2865), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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_scoped] = ACTIONS(2377), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_var] = ACTIONS(2879), + [sym_predefined_type] = ACTIONS(2435), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -167116,7 +169619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -167133,83 +169636,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [757] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(4601), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4203), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(757), [sym_preproc_endregion] = STATE(757), [sym_preproc_line] = STATE(757), @@ -167219,164 +169723,167 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(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_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), }, [758] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3536), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(758), [sym_preproc_endregion] = STATE(758), [sym_preproc_line] = STATE(758), @@ -167386,48 +169893,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(758), [sym_preproc_define] = STATE(758), [sym_preproc_undef] = STATE(758), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -167440,19 +169947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -167463,88 +169970,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [759] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4781), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(759), [sym_preproc_endregion] = STATE(759), [sym_preproc_line] = STATE(759), @@ -167554,48 +170064,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -167608,19 +170117,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -167637,82 +170146,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [760] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5470), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(760), [sym_preproc_endregion] = STATE(760), [sym_preproc_line] = STATE(760), @@ -167722,48 +170233,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2079), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -167788,7 +170299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -167805,83 +170316,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [761] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5468), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(761), [sym_preproc_endregion] = STATE(761), [sym_preproc_line] = STATE(761), @@ -167891,47 +170404,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -167944,19 +170457,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -167967,89 +170480,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [762] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4787), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(762), [sym_preproc_endregion] = STATE(762), [sym_preproc_line] = STATE(762), @@ -168059,47 +170573,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -168112,19 +170627,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -168141,82 +170656,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [763] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3619), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(763), [sym_preproc_endregion] = STATE(763), [sym_preproc_line] = STATE(763), @@ -168226,48 +170743,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), - [anon_sym_readonly] = ACTIONS(2711), + [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(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -168280,19 +170797,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -168303,89 +170820,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [764] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4191), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(764), [sym_preproc_endregion] = STATE(764), [sym_preproc_line] = STATE(764), @@ -168395,47 +170913,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_checked] = ACTIONS(1067), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -168448,19 +170967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -168477,83 +170996,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [765] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4487), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(765), [sym_preproc_endregion] = STATE(765), [sym_preproc_line] = STATE(765), @@ -168563,47 +171083,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -168628,7 +171149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -168645,83 +171166,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [766] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(4601), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4320), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(766), [sym_preproc_endregion] = STATE(766), [sym_preproc_line] = STATE(766), @@ -168731,215 +171254,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [767] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3910), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(767), - [sym_preproc_endregion] = STATE(767), - [sym_preproc_line] = STATE(767), - [sym_preproc_pragma] = STATE(767), - [sym_preproc_nullable] = STATE(767), - [sym_preproc_error] = STATE(767), - [sym_preproc_warning] = STATE(767), - [sym_preproc_define] = STATE(767), - [sym_preproc_undef] = STATE(767), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -168952,19 +171307,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -168975,139 +171330,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [768] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4962), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(768), - [sym_preproc_endregion] = STATE(768), - [sym_preproc_line] = STATE(768), - [sym_preproc_pragma] = STATE(768), - [sym_preproc_nullable] = STATE(768), - [sym_preproc_error] = STATE(768), - [sym_preproc_warning] = STATE(768), - [sym_preproc_define] = STATE(768), - [sym_preproc_undef] = STATE(768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(767), + [sym_preproc_endregion] = STATE(767), + [sym_preproc_line] = STATE(767), + [sym_preproc_pragma] = STATE(767), + [sym_preproc_nullable] = STATE(767), + [sym_preproc_error] = STATE(767), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -169132,7 +171488,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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1089), + [aux_sym_preproc_if_token3] = ACTIONS(2889), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [768] = { + [sym_attribute_list] = STATE(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_preproc_region] = STATE(768), + [sym_preproc_endregion] = STATE(768), + [sym_preproc_line] = STATE(768), + [sym_preproc_pragma] = STATE(768), + [sym_preproc_nullable] = STATE(768), + [sym_preproc_error] = STATE(768), + [sym_preproc_warning] = STATE(768), + [sym_preproc_define] = STATE(768), + [sym_preproc_undef] = STATE(768), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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_readonly] = ACTIONS(2749), + [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_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(1353), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(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), @@ -169149,83 +171676,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [769] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4994), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(769), [sym_preproc_endregion] = STATE(769), [sym_preproc_line] = STATE(769), @@ -169235,47 +171763,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(769), [sym_preproc_define] = STATE(769), [sym_preproc_undef] = STATE(769), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(2891), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -169288,19 +171817,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -169317,83 +171846,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [770] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4126), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(770), [sym_preproc_endregion] = STATE(770), [sym_preproc_line] = STATE(770), @@ -169403,47 +171933,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [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(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -169456,19 +171987,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -169479,88 +172010,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [771] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5510), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2197), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(771), [sym_preproc_endregion] = STATE(771), [sym_preproc_line] = STATE(771), @@ -169570,48 +172103,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2895), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), - [anon_sym_readonly] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), + [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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -169636,7 +172169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -169653,82 +172186,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [772] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5202), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(772), [sym_preproc_endregion] = STATE(772), [sym_preproc_line] = STATE(772), @@ -169738,48 +172274,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2873), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -169804,7 +172339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -169821,82 +172356,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [773] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5307), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(773), [sym_preproc_endregion] = STATE(773), [sym_preproc_line] = STATE(773), @@ -169906,48 +172444,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2843), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -169960,19 +172497,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -169983,88 +172520,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [774] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4891), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(774), [sym_preproc_endregion] = STATE(774), [sym_preproc_line] = STATE(774), @@ -170074,48 +172613,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -170128,19 +172667,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -170151,88 +172690,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [775] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5527), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2199), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(775), [sym_preproc_endregion] = STATE(775), [sym_preproc_line] = STATE(775), @@ -170242,48 +172784,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(2453), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2795), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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(2299), + [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2583), + [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -170308,7 +172849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -170325,82 +172866,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [776] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(776), [sym_preproc_endregion] = STATE(776), [sym_preproc_line] = STATE(776), @@ -170410,60 +172953,60 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(2355), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), + [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(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), + [anon_sym_throw] = ACTIONS(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), @@ -170476,7 +173019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -170493,82 +173036,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [777] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4083), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(777), [sym_preproc_endregion] = STATE(777), [sym_preproc_line] = STATE(777), @@ -170578,216 +173124,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [778] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2982), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5379), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(778), - [sym_preproc_endregion] = STATE(778), - [sym_preproc_line] = STATE(778), - [sym_preproc_pragma] = STATE(778), - [sym_preproc_nullable] = STATE(778), - [sym_preproc_error] = STATE(778), - [sym_preproc_warning] = STATE(778), - [sym_preproc_define] = STATE(778), - [sym_preproc_undef] = STATE(778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(2799), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -170800,19 +173177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -170828,84 +173205,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), }, + [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_preproc_region] = STATE(778), + [sym_preproc_endregion] = STATE(778), + [sym_preproc_line] = STATE(778), + [sym_preproc_pragma] = STATE(778), + [sym_preproc_nullable] = STATE(778), + [sym_preproc_error] = STATE(778), + [sym_preproc_warning] = STATE(778), + [sym_preproc_define] = STATE(778), + [sym_preproc_undef] = STATE(778), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(2843), + [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), + }, [779] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4061), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(779), [sym_preproc_endregion] = STATE(779), [sym_preproc_line] = STATE(779), @@ -170915,47 +173463,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -170968,19 +173517,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -170991,89 +173540,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [780] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(4601), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4838), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(780), [sym_preproc_endregion] = STATE(780), [sym_preproc_line] = STATE(780), @@ -171083,215 +173633,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [781] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5351), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(781), - [sym_preproc_endregion] = STATE(781), - [sym_preproc_line] = STATE(781), - [sym_preproc_pragma] = STATE(781), - [sym_preproc_nullable] = STATE(781), - [sym_preproc_error] = STATE(781), - [sym_preproc_warning] = STATE(781), - [sym_preproc_define] = STATE(781), - [sym_preproc_undef] = STATE(781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2879), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -171316,7 +173699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -171332,83 +173715,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), }, + [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_preproc_region] = STATE(781), + [sym_preproc_endregion] = STATE(781), + [sym_preproc_line] = STATE(781), + [sym_preproc_pragma] = STATE(781), + [sym_preproc_nullable] = STATE(781), + [sym_preproc_error] = STATE(781), + [sym_preproc_warning] = STATE(781), + [sym_preproc_define] = STATE(781), + [sym_preproc_undef] = STATE(781), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(1155), + [anon_sym_ref] = ACTIONS(1157), + [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_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(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_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(1185), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, [782] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4136), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(782), [sym_preproc_endregion] = STATE(782), [sym_preproc_line] = STATE(782), @@ -171418,48 +173973,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -171472,19 +174027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -171495,88 +174050,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [783] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5478), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(783), [sym_preproc_endregion] = STATE(783), [sym_preproc_line] = STATE(783), @@ -171586,48 +174143,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2911), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -171652,7 +174209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -171669,82 +174226,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [784] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3850), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(784), [sym_preproc_endregion] = STATE(784), [sym_preproc_line] = STATE(784), @@ -171754,48 +174313,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(2913), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -171808,19 +174367,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -171831,88 +174390,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [785] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4525), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(785), [sym_preproc_endregion] = STATE(785), [sym_preproc_line] = STATE(785), @@ -171922,48 +174483,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -171976,19 +174537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -172005,82 +174566,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [786] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4307), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(786), [sym_preproc_endregion] = STATE(786), [sym_preproc_line] = STATE(786), @@ -172090,165 +174653,167 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(1359), + [anon_sym_ref] = ACTIONS(1361), + [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_readonly] = ACTIONS(2749), + [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_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(1365), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [787] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4522), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(787), [sym_preproc_endregion] = STATE(787), [sym_preproc_line] = STATE(787), @@ -172258,48 +174823,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), - [anon_sym_readonly] = ACTIONS(2711), + [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(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -172312,19 +174877,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -172335,88 +174900,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4749), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -172426,48 +174993,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(788), [sym_preproc_define] = STATE(788), [sym_preproc_undef] = STATE(788), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(2917), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -172480,19 +175047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -172509,83 +175076,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [789] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3263), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4703), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -172595,47 +175163,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(789), [sym_preproc_define] = STATE(789), [sym_preproc_undef] = STATE(789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(2793), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -172648,19 +175216,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(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -172671,88 +175240,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [790] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4991), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(790), [sym_preproc_endregion] = STATE(790), [sym_preproc_line] = STATE(790), @@ -172762,48 +175333,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -172816,19 +175387,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -172845,83 +175416,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [791] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4519), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(791), [sym_preproc_endregion] = STATE(791), [sym_preproc_line] = STATE(791), @@ -172931,47 +175503,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(2063), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -172984,19 +175557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -173013,82 +175586,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [792] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4916), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(792), [sym_preproc_endregion] = STATE(792), [sym_preproc_line] = STATE(792), @@ -173098,48 +175673,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(792), [sym_preproc_define] = STATE(792), [sym_preproc_undef] = STATE(792), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2921), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -173164,7 +175739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -173181,82 +175756,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [793] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5378), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(793), [sym_preproc_endregion] = STATE(793), [sym_preproc_line] = STATE(793), @@ -173266,48 +175843,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2883), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [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(1063), - [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(1067), + [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(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(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_scoped] = ACTIONS(1075), [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), + [anon_sym_var] = ACTIONS(2755), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -173332,7 +175909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -173349,82 +175926,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [794] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5365), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(794), [sym_preproc_endregion] = STATE(794), [sym_preproc_line] = STATE(794), @@ -173434,48 +176014,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(2885), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -173500,7 +176079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -173517,82 +176096,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [795] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(2377), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2122), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_expression] = STATE(4890), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2186), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(795), [sym_preproc_endregion] = STATE(795), [sym_preproc_line] = STATE(795), @@ -173602,48 +176184,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(795), [sym_preproc_define] = STATE(795), [sym_preproc_undef] = STATE(795), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_ref] = ACTIONS(2303), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_readonly] = ACTIONS(2851), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(2307), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2887), - [sym_predefined_type] = ACTIONS(2311), - [anon_sym_unchecked] = ACTIONS(1063), + [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(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -173656,19 +176237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -173679,88 +176260,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [796] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4157), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(796), [sym_preproc_endregion] = STATE(796), [sym_preproc_line] = STATE(796), @@ -173770,48 +176353,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), - [anon_sym_readonly] = ACTIONS(2711), + [anon_sym_new] = ACTIONS(1251), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -173824,19 +176407,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -173847,89 +176430,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [797] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(2907), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3918), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(797), [sym_preproc_endregion] = STATE(797), [sym_preproc_line] = STATE(797), @@ -173939,47 +176524,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -173992,19 +176577,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174015,89 +176600,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [798] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_block] = STATE(3393), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4895), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(798), [sym_preproc_endregion] = STATE(798), [sym_preproc_line] = STATE(798), @@ -174107,47 +176694,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(2803), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1841), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_checked] = ACTIONS(1067), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -174160,19 +176747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -174189,82 +176776,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [799] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5490), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2159), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(2205), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4710), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(799), [sym_preproc_endregion] = STATE(799), [sym_preproc_line] = STATE(799), @@ -174274,48 +176863,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(2715), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), - [anon_sym_readonly] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(1163), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(1071), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(2703), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [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_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(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -174328,19 +176917,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174351,88 +176940,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [800] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4452), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(800), [sym_preproc_endregion] = STATE(800), [sym_preproc_line] = STATE(800), @@ -174442,47 +177033,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174495,19 +177087,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -174524,82 +177116,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [801] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(801), [sym_preproc_endregion] = STATE(801), [sym_preproc_line] = STATE(801), @@ -174609,47 +177203,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -174674,7 +177269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -174691,82 +177286,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [802] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5347), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(802), [sym_preproc_endregion] = STATE(802), [sym_preproc_line] = STATE(802), @@ -174776,47 +177373,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -174841,7 +177439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -174858,82 +177456,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [803] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5343), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(803), [sym_preproc_endregion] = STATE(803), [sym_preproc_line] = STATE(803), @@ -174943,47 +177544,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -174996,19 +177597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -175019,88 +177620,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [804] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4851), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(804), [sym_preproc_endregion] = STATE(804), [sym_preproc_line] = STATE(804), @@ -175110,47 +177714,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -175163,19 +177767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -175186,88 +177790,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [805] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5335), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(805), [sym_preproc_endregion] = STATE(805), [sym_preproc_line] = STATE(805), @@ -175277,47 +177883,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [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(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -175330,19 +177937,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -175353,88 +177960,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [806] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4844), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -175444,47 +178054,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(806), [sym_preproc_define] = STATE(806), [sym_preproc_undef] = STATE(806), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -175497,19 +178107,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -175526,82 +178136,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [807] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4846), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(807), [sym_preproc_endregion] = STATE(807), [sym_preproc_line] = STATE(807), @@ -175611,47 +178223,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_checked] = ACTIONS(1067), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -175664,19 +178277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -175693,82 +178306,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [808] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(808), [sym_preproc_endregion] = STATE(808), [sym_preproc_line] = STATE(808), @@ -175778,47 +178394,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -175843,7 +178459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -175860,82 +178476,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [809] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5366), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(809), [sym_preproc_endregion] = STATE(809), [sym_preproc_line] = STATE(809), @@ -175945,47 +178563,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -176010,7 +178629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -176027,82 +178646,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [810] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5108), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(810), [sym_preproc_endregion] = STATE(810), [sym_preproc_line] = STATE(810), @@ -176112,47 +178733,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -176165,19 +178787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -176188,88 +178810,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [811] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(811), [sym_preproc_endregion] = STATE(811), [sym_preproc_line] = STATE(811), @@ -176279,47 +178903,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -176344,7 +178969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -176361,82 +178986,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [812] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(812), [sym_preproc_endregion] = STATE(812), [sym_preproc_line] = STATE(812), @@ -176446,214 +179073,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [813] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5385), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(813), - [sym_preproc_endregion] = STATE(813), - [sym_preproc_line] = STATE(813), - [sym_preproc_pragma] = STATE(813), - [sym_preproc_nullable] = STATE(813), - [sym_preproc_error] = STATE(813), - [sym_preproc_warning] = STATE(813), - [sym_preproc_define] = STATE(813), - [sym_preproc_undef] = STATE(813), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -176678,7 +179139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -176694,133 +179155,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), }, - [814] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4802), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(814), - [sym_preproc_endregion] = STATE(814), - [sym_preproc_line] = STATE(814), - [sym_preproc_pragma] = STATE(814), - [sym_preproc_nullable] = STATE(814), - [sym_preproc_error] = STATE(814), - [sym_preproc_warning] = STATE(814), - [sym_preproc_define] = STATE(814), - [sym_preproc_undef] = STATE(814), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(813), + [sym_preproc_endregion] = STATE(813), + [sym_preproc_line] = STATE(813), + [sym_preproc_pragma] = STATE(813), + [sym_preproc_nullable] = STATE(813), + [sym_preproc_error] = STATE(813), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(2935), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -176833,19 +179297,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -176861,83 +179325,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), }, + [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_preproc_region] = STATE(814), + [sym_preproc_endregion] = STATE(814), + [sym_preproc_line] = STATE(814), + [sym_preproc_pragma] = STATE(814), + [sym_preproc_nullable] = STATE(814), + [sym_preproc_error] = STATE(814), + [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), + [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), + }, [815] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4847), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(815), [sym_preproc_endregion] = STATE(815), [sym_preproc_line] = STATE(815), @@ -176947,47 +179583,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_checked] = ACTIONS(1067), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -177000,19 +179637,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -177029,82 +179666,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [816] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(816), [sym_preproc_endregion] = STATE(816), [sym_preproc_line] = STATE(816), @@ -177114,47 +179753,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1061), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -177179,7 +179819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -177196,82 +179836,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [817] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4702), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(817), [sym_preproc_endregion] = STATE(817), [sym_preproc_line] = STATE(817), @@ -177281,47 +179923,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1975), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -177334,19 +179977,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -177357,88 +180000,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [818] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(818), [sym_preproc_endregion] = STATE(818), [sym_preproc_line] = STATE(818), @@ -177448,47 +180093,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [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(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -177501,19 +180147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -177524,88 +180170,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4761), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -177615,47 +180264,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(819), [sym_preproc_define] = STATE(819), [sym_preproc_undef] = STATE(819), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -177668,19 +180317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -177697,82 +180346,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [820] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4704), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -177782,47 +180433,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(820), [sym_preproc_define] = STATE(820), [sym_preproc_undef] = STATE(820), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1101), + [anon_sym_readonly] = ACTIONS(2759), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [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(1075), + [anon_sym_base] = ACTIONS(87), + [anon_sym_var] = ACTIONS(2631), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -177835,19 +180487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -177858,88 +180510,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5131), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -177949,47 +180603,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(821), [sym_preproc_define] = STATE(821), [sym_preproc_undef] = STATE(821), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(1501), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -178002,19 +180657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -178025,88 +180680,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [822] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4707), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(822), [sym_preproc_endregion] = STATE(822), [sym_preproc_line] = STATE(822), @@ -178116,47 +180774,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178169,19 +180827,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -178192,88 +180850,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [823] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5045), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(823), [sym_preproc_endregion] = STATE(823), [sym_preproc_line] = STATE(823), @@ -178283,47 +180943,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2749), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178336,19 +180997,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -178359,88 +181020,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [824] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4714), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(824), [sym_preproc_endregion] = STATE(824), [sym_preproc_line] = STATE(824), @@ -178450,47 +181114,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -178503,19 +181167,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -178526,88 +181190,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [825] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4724), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(825), [sym_preproc_endregion] = STATE(825), [sym_preproc_line] = STATE(825), @@ -178617,47 +181283,48 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -178670,19 +181337,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -178693,88 +181360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [826] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5368), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(826), [sym_preproc_endregion] = STATE(826), [sym_preproc_line] = STATE(826), @@ -178784,47 +181453,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -178837,19 +181506,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -178866,82 +181535,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [827] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5417), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(827), [sym_preproc_endregion] = STATE(827), [sym_preproc_line] = STATE(827), @@ -178951,47 +181622,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179004,19 +181675,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -179027,88 +181698,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [828] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5235), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(828), [sym_preproc_endregion] = STATE(828), [sym_preproc_line] = STATE(828), @@ -179118,47 +181791,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -179171,19 +181844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -179194,88 +181867,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [829] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5375), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(829), [sym_preproc_endregion] = STATE(829), [sym_preproc_line] = STATE(829), @@ -179285,47 +181960,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -179338,19 +182013,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -179361,88 +182036,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [830] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5373), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(830), [sym_preproc_endregion] = STATE(830), [sym_preproc_line] = STATE(830), @@ -179452,47 +182129,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -179505,19 +182182,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -179528,88 +182205,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [831] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5040), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(831), [sym_preproc_endregion] = STATE(831), [sym_preproc_line] = STATE(831), @@ -179619,47 +182298,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -179684,7 +182363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -179701,82 +182380,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [832] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4726), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -179786,164 +182467,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(832), [sym_preproc_define] = STATE(832), [sym_preproc_undef] = STATE(832), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5372), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(833), [sym_preproc_endregion] = STATE(833), [sym_preproc_line] = STATE(833), @@ -179953,164 +182636,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [834] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5217), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(834), [sym_preproc_endregion] = STATE(834), [sym_preproc_line] = STATE(834), @@ -180120,47 +182805,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180173,19 +182858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -180202,82 +182887,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [835] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4481), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(835), [sym_preproc_endregion] = STATE(835), [sym_preproc_line] = STATE(835), @@ -180287,47 +182974,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -180340,19 +183027,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -180363,88 +183050,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [836] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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(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_preproc_region] = STATE(836), [sym_preproc_endregion] = STATE(836), [sym_preproc_line] = STATE(836), @@ -180454,47 +183143,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1647), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1649), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -180507,19 +183196,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -180530,88 +183219,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [837] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4850), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(837), [sym_preproc_endregion] = STATE(837), [sym_preproc_line] = STATE(837), @@ -180621,47 +183312,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -180674,19 +183365,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -180703,82 +183394,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [838] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4727), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(838), [sym_preproc_endregion] = STATE(838), [sym_preproc_line] = STATE(838), @@ -180788,47 +183481,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -180841,19 +183534,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -180864,88 +183557,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [839] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4695), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(839), [sym_preproc_endregion] = STATE(839), [sym_preproc_line] = STATE(839), @@ -180955,47 +183650,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -181008,19 +183703,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -181031,88 +183726,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [840] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4712), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(840), [sym_preproc_endregion] = STATE(840), [sym_preproc_line] = STATE(840), @@ -181122,47 +183819,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -181175,19 +183872,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -181198,88 +183895,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [841] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4561), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(841), [sym_preproc_endregion] = STATE(841), [sym_preproc_line] = STATE(841), @@ -181289,47 +183988,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -181342,19 +184041,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -181365,88 +184064,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [842] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4480), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(842), [sym_preproc_endregion] = STATE(842), [sym_preproc_line] = STATE(842), @@ -181456,47 +184157,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -181509,19 +184210,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -181532,88 +184233,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [843] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4473), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(843), [sym_preproc_endregion] = STATE(843), [sym_preproc_line] = STATE(843), @@ -181623,47 +184326,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -181676,19 +184379,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -181699,88 +184402,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [844] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3922), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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(844), [sym_preproc_endregion] = STATE(844), [sym_preproc_line] = STATE(844), @@ -181790,47 +184495,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -181843,19 +184548,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -181866,88 +184571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [845] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(845), [sym_preproc_endregion] = STATE(845), [sym_preproc_line] = STATE(845), @@ -181957,47 +184664,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -182010,19 +184717,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -182033,88 +184740,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [846] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4713), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(846), [sym_preproc_endregion] = STATE(846), [sym_preproc_line] = STATE(846), @@ -182124,47 +184833,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -182177,19 +184886,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -182200,88 +184909,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [847] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5178), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(847), [sym_preproc_endregion] = STATE(847), [sym_preproc_line] = STATE(847), @@ -182291,47 +185002,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -182344,19 +185055,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -182367,88 +185078,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [848] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3931), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(848), [sym_preproc_endregion] = STATE(848), [sym_preproc_line] = STATE(848), @@ -182458,47 +185171,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -182511,19 +185224,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -182534,88 +185247,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [849] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3934), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(849), [sym_preproc_endregion] = STATE(849), [sym_preproc_line] = STATE(849), @@ -182625,47 +185340,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -182678,19 +185393,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -182701,88 +185416,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [850] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5370), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(850), [sym_preproc_endregion] = STATE(850), [sym_preproc_line] = STATE(850), @@ -182792,47 +185509,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -182857,7 +185574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -182874,82 +185591,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [851] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4881), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(851), [sym_preproc_endregion] = STATE(851), [sym_preproc_line] = STATE(851), @@ -182959,47 +185678,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -183012,19 +185731,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -183035,88 +185754,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [852] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5356), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(852), [sym_preproc_endregion] = STATE(852), [sym_preproc_line] = STATE(852), @@ -183126,47 +185847,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -183191,7 +185912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -183208,82 +185929,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [853] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4911), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(853), [sym_preproc_endregion] = STATE(853), [sym_preproc_line] = STATE(853), @@ -183293,47 +186016,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -183346,19 +186069,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -183375,82 +186098,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [854] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5355), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(854), [sym_preproc_endregion] = STATE(854), [sym_preproc_line] = STATE(854), @@ -183460,47 +186185,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -183525,7 +186250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -183542,82 +186267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [855] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(855), [sym_preproc_endregion] = STATE(855), [sym_preproc_line] = STATE(855), @@ -183627,47 +186354,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -183680,19 +186407,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -183709,82 +186436,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [856] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4928), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(856), [sym_preproc_endregion] = STATE(856), [sym_preproc_line] = STATE(856), @@ -183794,47 +186523,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -183847,19 +186576,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -183876,82 +186605,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [857] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5341), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(857), [sym_preproc_endregion] = STATE(857), [sym_preproc_line] = STATE(857), @@ -183961,47 +186692,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -184026,7 +186757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -184043,82 +186774,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [858] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3935), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(858), [sym_preproc_endregion] = STATE(858), [sym_preproc_line] = STATE(858), @@ -184128,214 +186861,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, - [859] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5353), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(859), - [sym_preproc_endregion] = STATE(859), - [sym_preproc_line] = STATE(859), - [sym_preproc_pragma] = STATE(859), - [sym_preproc_nullable] = STATE(859), - [sym_preproc_error] = STATE(859), - [sym_preproc_warning] = STATE(859), - [sym_preproc_define] = STATE(859), - [sym_preproc_undef] = STATE(859), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -184360,7 +186926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -184376,83 +186942,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), }, + [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_preproc_region] = STATE(859), + [sym_preproc_endregion] = STATE(859), + [sym_preproc_line] = STATE(859), + [sym_preproc_pragma] = STATE(859), + [sym_preproc_nullable] = STATE(859), + [sym_preproc_error] = STATE(859), + [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), + [sym__identifier_token] = ACTIONS(25), + [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), + }, [860] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4842), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(860), [sym_preproc_endregion] = STATE(860), [sym_preproc_line] = STATE(860), @@ -184462,47 +187199,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(860), [sym_preproc_define] = STATE(860), [sym_preproc_undef] = STATE(860), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -184515,19 +187252,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -184544,82 +187281,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [861] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4718), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -184629,47 +187368,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(861), [sym_preproc_define] = STATE(861), [sym_preproc_undef] = STATE(861), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -184682,19 +187421,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -184705,88 +187444,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [862] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4158), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -184796,47 +187537,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(862), [sym_preproc_define] = STATE(862), [sym_preproc_undef] = STATE(862), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -184850,18 +187591,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -184872,88 +187613,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [863] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -184963,47 +187706,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(863), [sym_preproc_define] = STATE(863), [sym_preproc_undef] = STATE(863), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -185016,19 +187759,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185039,88 +187782,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4897), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -185130,47 +187875,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(864), [sym_preproc_define] = STATE(864), [sym_preproc_undef] = STATE(864), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -185183,19 +187928,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185212,82 +187957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [865] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4975), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -185297,47 +188044,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(865), [sym_preproc_define] = STATE(865), [sym_preproc_undef] = STATE(865), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -185350,19 +188097,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185373,88 +188120,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4977), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(866), [sym_preproc_endregion] = STATE(866), [sym_preproc_line] = STATE(866), @@ -185464,47 +188213,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -185517,19 +188266,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185540,88 +188289,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [867] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4990), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(867), [sym_preproc_endregion] = STATE(867), [sym_preproc_line] = STATE(867), @@ -185631,47 +188382,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -185684,19 +188435,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185707,88 +188458,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [868] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4982), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(868), [sym_preproc_endregion] = STATE(868), [sym_preproc_line] = STATE(868), @@ -185798,47 +188551,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -185851,19 +188604,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -185880,82 +188633,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [869] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4981), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(869), [sym_preproc_endregion] = STATE(869), [sym_preproc_line] = STATE(869), @@ -185965,47 +188720,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186018,19 +188773,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186041,88 +188796,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [870] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4961), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(870), [sym_preproc_endregion] = STATE(870), [sym_preproc_line] = STATE(870), @@ -186132,47 +188889,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186185,19 +188942,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186208,88 +188965,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [871] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4959), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(871), [sym_preproc_endregion] = STATE(871), [sym_preproc_line] = STATE(871), @@ -186299,47 +189058,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186352,19 +189111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186375,88 +189134,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [872] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4945), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(872), [sym_preproc_endregion] = STATE(872), [sym_preproc_line] = STATE(872), @@ -186466,47 +189227,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186519,19 +189280,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186542,88 +189303,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [873] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4810), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(873), [sym_preproc_endregion] = STATE(873), [sym_preproc_line] = STATE(873), @@ -186633,47 +189396,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_checked] = ACTIONS(1067), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186686,19 +189449,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186715,82 +189478,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [874] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4925), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(874), [sym_preproc_endregion] = STATE(874), [sym_preproc_line] = STATE(874), @@ -186800,47 +189565,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -186853,19 +189618,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -186876,88 +189641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [875] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3951), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(875), [sym_preproc_endregion] = STATE(875), [sym_preproc_line] = STATE(875), @@ -186967,47 +189734,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -187020,19 +189787,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -187043,88 +189810,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [876] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4840), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(876), [sym_preproc_endregion] = STATE(876), [sym_preproc_line] = STATE(876), @@ -187134,47 +189903,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -187187,19 +189956,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -187210,88 +189979,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [877] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4909), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(877), [sym_preproc_endregion] = STATE(877), [sym_preproc_line] = STATE(877), @@ -187301,47 +190072,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -187354,19 +190125,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -187377,88 +190148,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [878] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3956), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(878), [sym_preproc_endregion] = STATE(878), [sym_preproc_line] = STATE(878), @@ -187468,47 +190241,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(878), [sym_preproc_define] = STATE(878), [sym_preproc_undef] = STATE(878), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -187521,19 +190294,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -187544,88 +190317,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [879] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4839), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(879), [sym_preproc_endregion] = STATE(879), [sym_preproc_line] = STATE(879), @@ -187635,47 +190410,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -187688,19 +190463,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -187711,88 +190486,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [880] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3959), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(880), [sym_preproc_endregion] = STATE(880), [sym_preproc_line] = STATE(880), @@ -187802,47 +190579,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -187855,19 +190632,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -187878,88 +190655,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [881] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4149), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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(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_preproc_region] = STATE(881), [sym_preproc_endregion] = STATE(881), [sym_preproc_line] = STATE(881), @@ -187969,47 +190748,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -188022,19 +190801,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -188045,88 +190824,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [882] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4837), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(882), [sym_preproc_endregion] = STATE(882), [sym_preproc_line] = STATE(882), @@ -188136,47 +190917,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -188189,19 +190970,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -188218,82 +190999,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [883] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4829), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(883), [sym_preproc_endregion] = STATE(883), [sym_preproc_line] = STATE(883), @@ -188303,47 +191086,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_checked] = ACTIONS(1067), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -188356,19 +191139,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -188385,82 +191168,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [884] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(884), [sym_preproc_endregion] = STATE(884), [sym_preproc_line] = STATE(884), @@ -188470,47 +191255,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -188523,19 +191308,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -188546,88 +191331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [885] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(885), [sym_preproc_endregion] = STATE(885), [sym_preproc_line] = STATE(885), @@ -188637,47 +191424,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), + [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(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -188691,18 +191647,187 @@ 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(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), + }, + [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), + [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(1085), + [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), @@ -188718,133 +191843,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), }, - [886] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4798), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(888), + [sym_preproc_endregion] = STATE(888), + [sym_preproc_line] = STATE(888), + [sym_preproc_pragma] = STATE(888), + [sym_preproc_nullable] = STATE(888), + [sym_preproc_error] = STATE(888), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -188857,19 +191984,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -188885,133 +192012,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), }, - [887] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4759), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(889), + [sym_preproc_endregion] = STATE(889), + [sym_preproc_line] = STATE(889), + [sym_preproc_pragma] = STATE(889), + [sym_preproc_nullable] = STATE(889), + [sym_preproc_error] = STATE(889), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1841), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), + [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(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189024,19 +192153,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -189052,133 +192181,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), }, - [888] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(888), - [sym_preproc_endregion] = STATE(888), - [sym_preproc_line] = STATE(888), - [sym_preproc_pragma] = STATE(888), - [sym_preproc_nullable] = STATE(888), - [sym_preproc_error] = STATE(888), - [sym_preproc_warning] = STATE(888), - [sym_preproc_define] = STATE(888), - [sym_preproc_undef] = STATE(888), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(890), + [sym_preproc_endregion] = STATE(890), + [sym_preproc_line] = STATE(890), + [sym_preproc_pragma] = STATE(890), + [sym_preproc_nullable] = STATE(890), + [sym_preproc_error] = STATE(890), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189191,19 +192322,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -189219,133 +192350,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), }, - [889] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(889), - [sym_preproc_endregion] = STATE(889), - [sym_preproc_line] = STATE(889), - [sym_preproc_pragma] = STATE(889), - [sym_preproc_nullable] = STATE(889), - [sym_preproc_error] = STATE(889), - [sym_preproc_warning] = STATE(889), - [sym_preproc_define] = STATE(889), - [sym_preproc_undef] = STATE(889), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(891), + [sym_preproc_endregion] = STATE(891), + [sym_preproc_line] = STATE(891), + [sym_preproc_pragma] = STATE(891), + [sym_preproc_nullable] = STATE(891), + [sym_preproc_error] = STATE(891), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189358,19 +192491,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -189386,133 +192519,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), }, - [890] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4789), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(890), - [sym_preproc_endregion] = STATE(890), - [sym_preproc_line] = STATE(890), - [sym_preproc_pragma] = STATE(890), - [sym_preproc_nullable] = STATE(890), - [sym_preproc_error] = STATE(890), - [sym_preproc_warning] = STATE(890), - [sym_preproc_define] = STATE(890), - [sym_preproc_undef] = STATE(890), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [892] = { + [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(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_preproc_region] = STATE(892), + [sym_preproc_endregion] = STATE(892), + [sym_preproc_line] = STATE(892), + [sym_preproc_pragma] = STATE(892), + [sym_preproc_nullable] = STATE(892), + [sym_preproc_error] = STATE(892), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), + [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(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189525,19 +192660,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -189553,133 +192688,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), }, - [891] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4145), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(891), - [sym_preproc_endregion] = STATE(891), - [sym_preproc_line] = STATE(891), - [sym_preproc_pragma] = STATE(891), - [sym_preproc_nullable] = STATE(891), - [sym_preproc_error] = STATE(891), - [sym_preproc_warning] = STATE(891), - [sym_preproc_define] = STATE(891), - [sym_preproc_undef] = STATE(891), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [893] = { + [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(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_preproc_region] = STATE(893), + [sym_preproc_endregion] = STATE(893), + [sym_preproc_line] = STATE(893), + [sym_preproc_pragma] = STATE(893), + [sym_preproc_nullable] = STATE(893), + [sym_preproc_error] = STATE(893), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189692,19 +192829,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -189715,138 +192852,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [892] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5242), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(892), - [sym_preproc_endregion] = STATE(892), - [sym_preproc_line] = STATE(892), - [sym_preproc_pragma] = STATE(892), - [sym_preproc_nullable] = STATE(892), - [sym_preproc_error] = STATE(892), - [sym_preproc_warning] = STATE(892), - [sym_preproc_define] = STATE(892), - [sym_preproc_undef] = STATE(892), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(894), + [sym_preproc_endregion] = STATE(894), + [sym_preproc_line] = STATE(894), + [sym_preproc_pragma] = STATE(894), + [sym_preproc_nullable] = STATE(894), + [sym_preproc_error] = STATE(894), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -189859,19 +192998,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -189887,133 +193026,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), }, - [893] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3961), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(893), - [sym_preproc_endregion] = STATE(893), - [sym_preproc_line] = STATE(893), - [sym_preproc_pragma] = STATE(893), - [sym_preproc_nullable] = STATE(893), - [sym_preproc_error] = STATE(893), - [sym_preproc_warning] = STATE(893), - [sym_preproc_define] = STATE(893), - [sym_preproc_undef] = STATE(893), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [895] = { + [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(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_preproc_region] = STATE(895), + [sym_preproc_endregion] = STATE(895), + [sym_preproc_line] = STATE(895), + [sym_preproc_pragma] = STATE(895), + [sym_preproc_nullable] = STATE(895), + [sym_preproc_error] = STATE(895), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190026,19 +193167,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -190049,138 +193190,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [894] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5475), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(894), - [sym_preproc_endregion] = STATE(894), - [sym_preproc_line] = STATE(894), - [sym_preproc_pragma] = STATE(894), - [sym_preproc_nullable] = STATE(894), - [sym_preproc_error] = STATE(894), - [sym_preproc_warning] = STATE(894), - [sym_preproc_define] = STATE(894), - [sym_preproc_undef] = STATE(894), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [896] = { + [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(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_preproc_region] = STATE(896), + [sym_preproc_endregion] = STATE(896), + [sym_preproc_line] = STATE(896), + [sym_preproc_pragma] = STATE(896), + [sym_preproc_nullable] = STATE(896), + [sym_preproc_error] = STATE(896), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190193,19 +193336,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -190221,133 +193364,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), }, - [895] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5476), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(895), - [sym_preproc_endregion] = STATE(895), - [sym_preproc_line] = STATE(895), - [sym_preproc_pragma] = STATE(895), - [sym_preproc_nullable] = STATE(895), - [sym_preproc_error] = STATE(895), - [sym_preproc_warning] = STATE(895), - [sym_preproc_define] = STATE(895), - [sym_preproc_undef] = STATE(895), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [897] = { + [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(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_preproc_region] = STATE(897), + [sym_preproc_endregion] = STATE(897), + [sym_preproc_line] = STATE(897), + [sym_preproc_pragma] = STATE(897), + [sym_preproc_nullable] = STATE(897), + [sym_preproc_error] = STATE(897), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190360,19 +193505,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -190388,133 +193533,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), }, - [896] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5477), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(896), - [sym_preproc_endregion] = STATE(896), - [sym_preproc_line] = STATE(896), - [sym_preproc_pragma] = STATE(896), - [sym_preproc_nullable] = STATE(896), - [sym_preproc_error] = STATE(896), - [sym_preproc_warning] = STATE(896), - [sym_preproc_define] = STATE(896), - [sym_preproc_undef] = STATE(896), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(898), + [sym_preproc_endregion] = STATE(898), + [sym_preproc_line] = STATE(898), + [sym_preproc_pragma] = STATE(898), + [sym_preproc_nullable] = STATE(898), + [sym_preproc_error] = STATE(898), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -190527,353 +193674,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [897] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4728), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(897), - [sym_preproc_endregion] = STATE(897), - [sym_preproc_line] = STATE(897), - [sym_preproc_pragma] = STATE(897), - [sym_preproc_nullable] = STATE(897), - [sym_preproc_error] = STATE(897), - [sym_preproc_warning] = STATE(897), - [sym_preproc_define] = STATE(897), - [sym_preproc_undef] = STATE(897), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1895), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [898] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5446), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(898), - [sym_preproc_endregion] = STATE(898), - [sym_preproc_line] = STATE(898), - [sym_preproc_pragma] = STATE(898), - [sym_preproc_nullable] = STATE(898), - [sym_preproc_error] = STATE(898), - [sym_preproc_warning] = STATE(898), - [sym_preproc_define] = STATE(898), - [sym_preproc_undef] = STATE(898), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -190890,82 +193703,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [899] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5445), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(899), [sym_preproc_endregion] = STATE(899), [sym_preproc_line] = STATE(899), @@ -190975,47 +193790,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -191028,19 +193843,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -191057,82 +193872,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [900] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5440), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(900), [sym_preproc_endregion] = STATE(900), [sym_preproc_line] = STATE(900), @@ -191142,47 +193959,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -191195,19 +194012,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -191218,88 +194035,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [901] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5439), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(901), [sym_preproc_endregion] = STATE(901), [sym_preproc_line] = STATE(901), @@ -191309,47 +194128,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -191362,19 +194181,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -191385,88 +194204,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [902] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5438), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(902), [sym_preproc_endregion] = STATE(902), [sym_preproc_line] = STATE(902), @@ -191476,47 +194297,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -191529,19 +194350,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -191552,88 +194373,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [903] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5430), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(903), [sym_preproc_endregion] = STATE(903), [sym_preproc_line] = STATE(903), @@ -191643,47 +194466,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -191696,19 +194519,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -191719,88 +194542,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [904] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5427), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(904), [sym_preproc_endregion] = STATE(904), [sym_preproc_line] = STATE(904), @@ -191810,47 +194635,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -191863,19 +194688,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -191886,88 +194711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [905] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4772), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(905), [sym_preproc_endregion] = STATE(905), [sym_preproc_line] = STATE(905), @@ -191977,164 +194804,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [906] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5406), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(906), [sym_preproc_endregion] = STATE(906), [sym_preproc_line] = STATE(906), @@ -192144,47 +194973,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -192197,19 +195026,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -192220,88 +195049,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [907] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(907), [sym_preproc_endregion] = STATE(907), [sym_preproc_line] = STATE(907), @@ -192311,47 +195142,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -192364,19 +195195,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -192387,88 +195218,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [908] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3964), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(908), [sym_preproc_endregion] = STATE(908), [sym_preproc_line] = STATE(908), @@ -192478,47 +195311,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -192531,19 +195364,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -192554,88 +195387,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [909] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(909), [sym_preproc_endregion] = STATE(909), [sym_preproc_line] = STATE(909), @@ -192645,47 +195480,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [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), @@ -192698,19 +195533,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -192721,88 +195556,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [910] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3966), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(910), [sym_preproc_endregion] = STATE(910), [sym_preproc_line] = STATE(910), @@ -192812,47 +195649,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -192865,19 +195702,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -192888,88 +195725,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [911] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5253), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(911), [sym_preproc_endregion] = STATE(911), [sym_preproc_line] = STATE(911), @@ -192979,47 +195818,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -193032,19 +195871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193055,88 +195894,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [912] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(912), [sym_preproc_endregion] = STATE(912), [sym_preproc_line] = STATE(912), @@ -193146,47 +195987,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -193199,19 +196040,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193222,88 +196063,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [913] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5300), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(913), [sym_preproc_endregion] = STATE(913), [sym_preproc_line] = STATE(913), @@ -193313,47 +196156,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -193366,19 +196209,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193389,88 +196232,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [914] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(914), [sym_preproc_endregion] = STATE(914), [sym_preproc_line] = STATE(914), @@ -193480,47 +196325,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -193533,19 +196378,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193556,88 +196401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [915] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4771), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(915), [sym_preproc_endregion] = STATE(915), [sym_preproc_line] = STATE(915), @@ -193647,47 +196494,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -193700,19 +196547,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193723,88 +196570,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [916] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(916), [sym_preproc_endregion] = STATE(916), [sym_preproc_line] = STATE(916), @@ -193814,47 +196663,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [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), @@ -193867,19 +196716,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -193890,88 +196739,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [917] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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_preproc_region] = STATE(917), [sym_preproc_endregion] = STATE(917), [sym_preproc_line] = STATE(917), @@ -193981,47 +196832,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(917), [sym_preproc_define] = STATE(917), [sym_preproc_undef] = STATE(917), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -194034,19 +196885,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -194057,88 +196908,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [918] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5464), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(918), [sym_preproc_endregion] = STATE(918), [sym_preproc_line] = STATE(918), @@ -194148,47 +197001,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(918), [sym_preproc_define] = STATE(918), [sym_preproc_undef] = STATE(918), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -194201,19 +197054,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -194224,88 +197077,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [919] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5458), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(919), [sym_preproc_endregion] = STATE(919), [sym_preproc_line] = STATE(919), @@ -194315,47 +197170,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -194368,19 +197223,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -194391,88 +197246,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [920] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5090), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(920), [sym_preproc_endregion] = STATE(920), [sym_preproc_line] = STATE(920), @@ -194482,47 +197339,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194535,19 +197392,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -194564,82 +197421,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [921] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5456), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(921), [sym_preproc_endregion] = STATE(921), [sym_preproc_line] = STATE(921), @@ -194649,47 +197508,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -194702,19 +197561,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -194731,82 +197590,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [922] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4415), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(922), [sym_preproc_endregion] = STATE(922), [sym_preproc_line] = STATE(922), @@ -194816,164 +197677,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), - [anon_sym_when] = ACTIONS(29), - [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), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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), }, [923] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(923), [sym_preproc_endregion] = STATE(923), [sym_preproc_line] = STATE(923), @@ -194983,47 +197846,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195036,19 +197899,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -195059,88 +197922,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [924] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5450), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(924), [sym_preproc_endregion] = STATE(924), [sym_preproc_line] = STATE(924), @@ -195150,47 +198015,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -195203,19 +198068,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -195232,82 +198097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [925] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5091), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(925), [sym_preproc_endregion] = STATE(925), [sym_preproc_line] = STATE(925), @@ -195317,47 +198184,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -195370,19 +198237,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -195399,82 +198266,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [926] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(926), [sym_preproc_endregion] = STATE(926), [sym_preproc_line] = STATE(926), @@ -195484,47 +198353,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -195537,19 +198406,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -195560,88 +198429,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [927] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4420), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(927), [sym_preproc_endregion] = STATE(927), [sym_preproc_line] = STATE(927), @@ -195651,47 +198522,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -195704,19 +198575,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -195727,88 +198598,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [928] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(928), [sym_preproc_endregion] = STATE(928), [sym_preproc_line] = STATE(928), @@ -195818,47 +198691,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -195871,19 +198744,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -195894,88 +198767,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [929] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4422), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(929), [sym_preproc_endregion] = STATE(929), [sym_preproc_line] = STATE(929), @@ -195985,47 +198860,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -196038,19 +198913,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -196061,88 +198936,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [930] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5437), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(930), [sym_preproc_endregion] = STATE(930), [sym_preproc_line] = STATE(930), @@ -196152,47 +199029,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -196205,19 +199082,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -196228,88 +199105,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4859), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -196319,47 +199198,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(931), [sym_preproc_define] = STATE(931), [sym_preproc_undef] = STATE(931), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -196372,19 +199251,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -196395,88 +199274,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [932] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4423), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(932), [sym_preproc_endregion] = STATE(932), [sym_preproc_line] = STATE(932), @@ -196486,47 +199367,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -196539,19 +199420,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -196562,88 +199443,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [933] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(933), [sym_preproc_endregion] = STATE(933), [sym_preproc_line] = STATE(933), @@ -196653,47 +199536,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -196706,19 +199589,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -196729,88 +199612,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [934] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4424), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(934), [sym_preproc_endregion] = STATE(934), [sym_preproc_line] = STATE(934), @@ -196820,47 +199705,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -196873,19 +199758,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -196896,88 +199781,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [935] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4426), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(935), [sym_preproc_endregion] = STATE(935), [sym_preproc_line] = STATE(935), @@ -196987,47 +199874,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -197040,19 +199927,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -197063,88 +199950,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [936] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4427), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(936), [sym_preproc_endregion] = STATE(936), [sym_preproc_line] = STATE(936), @@ -197154,47 +200043,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -197207,19 +200096,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -197230,88 +200119,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [937] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4469), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(937), [sym_preproc_endregion] = STATE(937), [sym_preproc_line] = STATE(937), @@ -197321,47 +200212,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -197374,19 +200265,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -197397,88 +200288,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [938] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5402), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(938), [sym_preproc_endregion] = STATE(938), [sym_preproc_line] = STATE(938), @@ -197488,47 +200381,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -197541,19 +200434,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -197564,88 +200457,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [939] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4485), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(939), [sym_preproc_endregion] = STATE(939), [sym_preproc_line] = STATE(939), @@ -197655,47 +200550,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(939), [sym_preproc_define] = STATE(939), [sym_preproc_undef] = STATE(939), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -197708,19 +200603,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -197731,88 +200626,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [940] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4488), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(940), [sym_preproc_endregion] = STATE(940), [sym_preproc_line] = STATE(940), @@ -197822,47 +200719,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(940), [sym_preproc_define] = STATE(940), [sym_preproc_undef] = STATE(940), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -197875,19 +200772,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -197898,88 +200795,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [941] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3973), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(941), [sym_preproc_endregion] = STATE(941), [sym_preproc_line] = STATE(941), @@ -197989,47 +200888,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(941), [sym_preproc_define] = STATE(941), [sym_preproc_undef] = STATE(941), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -198042,19 +200941,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -198065,88 +200964,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [942] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(942), [sym_preproc_endregion] = STATE(942), [sym_preproc_line] = STATE(942), @@ -198156,47 +201057,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(942), [sym_preproc_define] = STATE(942), [sym_preproc_undef] = STATE(942), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -198209,19 +201110,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -198232,88 +201133,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [943] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4428), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -198323,47 +201226,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(943), [sym_preproc_define] = STATE(943), [sym_preproc_undef] = STATE(943), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [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), @@ -198376,19 +201279,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -198399,88 +201302,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [944] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5390), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -198490,47 +201395,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(944), [sym_preproc_define] = STATE(944), [sym_preproc_undef] = STATE(944), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_checked] = ACTIONS(1067), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -198555,7 +201460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -198572,82 +201477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [945] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4930), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -198657,47 +201564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(945), [sym_preproc_define] = STATE(945), [sym_preproc_undef] = STATE(945), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1877), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [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), @@ -198710,19 +201617,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -198739,82 +201646,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [946] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5388), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -198824,47 +201733,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(946), [sym_preproc_define] = STATE(946), [sym_preproc_undef] = STATE(946), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_checked] = ACTIONS(1067), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -198889,7 +202136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -198905,133 +202152,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), }, - [947] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3974), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -199044,19 +202293,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -199067,138 +202316,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [948] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4954), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1877), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [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), @@ -199211,353 +202462,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [949] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5333), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [950] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5377), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -199574,82 +202491,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [951] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -199659,164 +202578,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(951), [sym_preproc_define] = STATE(951), [sym_preproc_undef] = STATE(951), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [952] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4988), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -199826,47 +202747,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(952), [sym_preproc_define] = STATE(952), [sym_preproc_undef] = STATE(952), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1877), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [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), @@ -199879,19 +202800,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -199902,88 +202823,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5369), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -199993,164 +202916,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(953), [sym_preproc_define] = STATE(953), [sym_preproc_undef] = STATE(953), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -200160,164 +203085,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(954), [sym_preproc_define] = STATE(954), [sym_preproc_undef] = STATE(954), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [955] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5057), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -200327,47 +203254,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(955), [sym_preproc_define] = STATE(955), [sym_preproc_undef] = STATE(955), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200380,19 +203307,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -200403,88 +203330,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [956] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5087), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -200494,214 +203423,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(956), [sym_preproc_define] = STATE(956), [sym_preproc_undef] = STATE(956), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [957] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5361), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -200726,7 +203488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -200742,83 +203504,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), }, + [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), + }, [958] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3572), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(958), [sym_preproc_endregion] = STATE(958), [sym_preproc_line] = STATE(958), @@ -200828,47 +203761,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [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), @@ -200881,19 +203814,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -200904,88 +203837,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [959] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(959), [sym_preproc_endregion] = STATE(959), [sym_preproc_line] = STATE(959), @@ -200995,47 +203930,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -201048,19 +203983,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -201071,88 +204006,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [960] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3953), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(960), [sym_preproc_endregion] = STATE(960), [sym_preproc_line] = STATE(960), @@ -201162,47 +204099,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201215,19 +204152,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -201238,88 +204175,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [961] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5088), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(961), [sym_preproc_endregion] = STATE(961), [sym_preproc_line] = STATE(961), @@ -201329,164 +204268,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5110), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -201496,47 +204437,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(962), [sym_preproc_define] = STATE(962), [sym_preproc_undef] = STATE(962), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201549,19 +204490,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -201572,88 +204513,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [963] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5289), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(963), [sym_preproc_endregion] = STATE(963), [sym_preproc_line] = STATE(963), @@ -201663,47 +204606,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201728,7 +204671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -201745,82 +204688,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [964] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5149), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(964), [sym_preproc_endregion] = STATE(964), [sym_preproc_line] = STATE(964), @@ -201830,47 +204775,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -201883,19 +204828,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -201906,88 +204851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [965] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5386), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(965), [sym_preproc_endregion] = STATE(965), [sym_preproc_line] = STATE(965), @@ -201997,47 +204944,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202062,7 +205009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -202079,82 +205026,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [966] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5009), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(966), [sym_preproc_endregion] = STATE(966), [sym_preproc_line] = STATE(966), @@ -202164,47 +205113,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202217,19 +205166,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -202240,88 +205189,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [967] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5120), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(967), [sym_preproc_endregion] = STATE(967), [sym_preproc_line] = STATE(967), @@ -202331,47 +205282,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202384,19 +205335,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -202407,88 +205358,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [968] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5127), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(968), [sym_preproc_endregion] = STATE(968), [sym_preproc_line] = STATE(968), @@ -202498,47 +205451,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202551,19 +205504,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -202574,88 +205527,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [969] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5128), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(969), [sym_preproc_endregion] = STATE(969), [sym_preproc_line] = STATE(969), @@ -202665,47 +205620,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202718,19 +205673,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -202741,88 +205696,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [970] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5010), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(970), [sym_preproc_endregion] = STATE(970), [sym_preproc_line] = STATE(970), @@ -202832,47 +205789,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -202885,19 +205842,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -202908,88 +205865,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [971] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5016), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(971), [sym_preproc_endregion] = STATE(971), [sym_preproc_line] = STATE(971), @@ -202999,47 +205958,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203052,19 +206011,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -203075,88 +206034,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [972] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5171), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(972), [sym_preproc_endregion] = STATE(972), [sym_preproc_line] = STATE(972), @@ -203166,47 +206127,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [anon_sym_checked] = ACTIONS(1067), + [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(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -203231,7 +206192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -203248,82 +206209,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [973] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5017), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(973), [sym_preproc_endregion] = STATE(973), [sym_preproc_line] = STATE(973), @@ -203333,214 +206296,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [974] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5167), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(974), - [sym_preproc_endregion] = STATE(974), - [sym_preproc_line] = STATE(974), - [sym_preproc_pragma] = STATE(974), - [sym_preproc_nullable] = STATE(974), - [sym_preproc_error] = STATE(974), - [sym_preproc_warning] = STATE(974), - [sym_preproc_define] = STATE(974), - [sym_preproc_undef] = STATE(974), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2135), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203565,7 +206361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -203581,133 +206377,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), }, - [975] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(975), - [sym_preproc_endregion] = STATE(975), - [sym_preproc_line] = STATE(975), - [sym_preproc_pragma] = STATE(975), - [sym_preproc_nullable] = STATE(975), - [sym_preproc_error] = STATE(975), - [sym_preproc_warning] = STATE(975), - [sym_preproc_define] = STATE(975), - [sym_preproc_undef] = STATE(975), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(974), + [sym_preproc_endregion] = STATE(974), + [sym_preproc_line] = STATE(974), + [sym_preproc_pragma] = STATE(974), + [sym_preproc_nullable] = STATE(974), + [sym_preproc_error] = STATE(974), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -203720,19 +206518,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -203743,88 +206541,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), + }, + [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_preproc_region] = STATE(975), + [sym_preproc_endregion] = STATE(975), + [sym_preproc_line] = STATE(975), + [sym_preproc_pragma] = STATE(975), + [sym_preproc_nullable] = STATE(975), + [sym_preproc_error] = STATE(975), + [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), }, [976] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5024), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(976), [sym_preproc_endregion] = STATE(976), [sym_preproc_line] = STATE(976), @@ -203834,47 +206803,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -203887,19 +206856,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -203910,88 +206879,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [977] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(977), [sym_preproc_endregion] = STATE(977), [sym_preproc_line] = STATE(977), @@ -204001,47 +206972,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -204066,7 +207037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -204083,82 +207054,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [978] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4286), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(978), [sym_preproc_endregion] = STATE(978), [sym_preproc_line] = STATE(978), @@ -204168,47 +207141,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -204221,19 +207194,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -204244,88 +207217,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [979] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3822), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(979), [sym_preproc_endregion] = STATE(979), [sym_preproc_line] = STATE(979), @@ -204335,164 +207310,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [980] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4823), - [sym_non_lvalue_expression] = STATE(3395), + [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(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(980), [sym_preproc_endregion] = STATE(980), [sym_preproc_line] = STATE(980), @@ -204502,47 +207479,385 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -204555,19 +207870,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -204583,300 +207898,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), }, - [981] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5031), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [982] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5387), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -204901,7 +208051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -204917,133 +208067,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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(984), + [sym_preproc_endregion] = STATE(984), + [sym_preproc_line] = STATE(984), + [sym_preproc_pragma] = STATE(984), + [sym_preproc_nullable] = STATE(984), + [sym_preproc_error] = STATE(984), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205056,19 +208208,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -205079,255 +208231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [984] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5394), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(984), - [sym_preproc_endregion] = STATE(984), - [sym_preproc_line] = STATE(984), - [sym_preproc_pragma] = STATE(984), - [sym_preproc_nullable] = STATE(984), - [sym_preproc_error] = STATE(984), - [sym_preproc_warning] = STATE(984), - [sym_preproc_define] = STATE(984), - [sym_preproc_undef] = STATE(984), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [985] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5130), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(985), [sym_preproc_endregion] = STATE(985), [sym_preproc_line] = STATE(985), @@ -205337,47 +208324,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -205390,19 +208377,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -205413,88 +208400,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [986] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5334), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(986), [sym_preproc_endregion] = STATE(986), [sym_preproc_line] = STATE(986), @@ -205504,47 +208493,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -205557,19 +208546,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -205580,88 +208569,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [987] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(987), [sym_preproc_endregion] = STATE(987), [sym_preproc_line] = STATE(987), @@ -205671,47 +208662,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + }, + [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_preproc_region] = STATE(988), + [sym_preproc_endregion] = STATE(988), + [sym_preproc_line] = STATE(988), + [sym_preproc_pragma] = STATE(988), + [sym_preproc_nullable] = STATE(988), + [sym_preproc_error] = STATE(988), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1877), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [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), @@ -205724,19 +208884,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -205752,250 +208912,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), }, - [988] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5030), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(988), - [sym_preproc_endregion] = STATE(988), - [sym_preproc_line] = STATE(988), - [sym_preproc_pragma] = STATE(988), - [sym_preproc_nullable] = STATE(988), - [sym_preproc_error] = STATE(988), - [sym_preproc_warning] = STATE(988), - [sym_preproc_define] = STATE(988), - [sym_preproc_undef] = STATE(988), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [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(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, [989] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4828), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(989), [sym_preproc_endregion] = STATE(989), [sym_preproc_line] = STATE(989), @@ -206005,47 +209000,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206058,19 +209053,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206087,82 +209082,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [990] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4822), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(990), [sym_preproc_endregion] = STATE(990), [sym_preproc_line] = STATE(990), @@ -206172,47 +209169,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206225,19 +209222,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206254,82 +209251,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [991] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4821), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(991), [sym_preproc_endregion] = STATE(991), [sym_preproc_line] = STATE(991), @@ -206339,47 +209338,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206392,19 +209391,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206421,82 +209420,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [992] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4820), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(992), [sym_preproc_endregion] = STATE(992), [sym_preproc_line] = STATE(992), @@ -206506,47 +209507,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206559,19 +209560,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206588,82 +209589,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [993] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4819), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(993), [sym_preproc_endregion] = STATE(993), [sym_preproc_line] = STATE(993), @@ -206673,47 +209676,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206726,19 +209729,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206755,82 +209758,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [994] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4817), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(994), [sym_preproc_endregion] = STATE(994), [sym_preproc_line] = STATE(994), @@ -206840,47 +209845,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -206893,19 +209898,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -206922,82 +209927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [995] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4816), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(995), [sym_preproc_endregion] = STATE(995), [sym_preproc_line] = STATE(995), @@ -207007,47 +210014,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207060,19 +210067,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -207089,82 +210096,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [996] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4815), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(996), [sym_preproc_endregion] = STATE(996), [sym_preproc_line] = STATE(996), @@ -207174,47 +210183,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207227,19 +210236,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -207256,82 +210265,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [997] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4882), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(997), [sym_preproc_endregion] = STATE(997), [sym_preproc_line] = STATE(997), @@ -207341,47 +210352,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207394,19 +210405,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -207423,82 +210434,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [998] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4813), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(998), [sym_preproc_endregion] = STATE(998), [sym_preproc_line] = STATE(998), @@ -207508,47 +210521,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207561,19 +210574,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -207590,82 +210603,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [999] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4812), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(999), [sym_preproc_endregion] = STATE(999), [sym_preproc_line] = STATE(999), @@ -207675,47 +210690,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207728,19 +210743,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -207757,82 +210772,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1000] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4556), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1000), [sym_preproc_endregion] = STATE(1000), [sym_preproc_line] = STATE(1000), @@ -207842,47 +210859,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -207895,19 +210912,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -207918,88 +210935,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1001] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4280), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1001), [sym_preproc_endregion] = STATE(1001), [sym_preproc_line] = STATE(1001), @@ -208009,47 +211028,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208062,19 +211081,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -208085,88 +211104,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1002] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4893), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1002), [sym_preproc_endregion] = STATE(1002), [sym_preproc_line] = STATE(1002), @@ -208176,47 +211197,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208229,19 +211250,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -208252,88 +211273,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1003] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4803), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1003), [sym_preproc_endregion] = STATE(1003), [sym_preproc_line] = STATE(1003), @@ -208343,47 +211366,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -208396,19 +211419,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -208425,82 +211448,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1004] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4667), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1004), [sym_preproc_endregion] = STATE(1004), [sym_preproc_line] = STATE(1004), @@ -208510,47 +211535,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -208563,19 +211588,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -208586,88 +211611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1005] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4884), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1005), [sym_preproc_endregion] = STATE(1005), [sym_preproc_line] = STATE(1005), @@ -208677,47 +211704,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), + [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(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -208730,19 +211757,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -208759,82 +211786,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1006] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4187), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1006), [sym_preproc_endregion] = STATE(1006), [sym_preproc_line] = STATE(1006), @@ -208844,47 +211873,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -208897,19 +211926,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -208920,88 +211949,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1007] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5397), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1007), [sym_preproc_endregion] = STATE(1007), [sym_preproc_line] = STATE(1007), @@ -209011,47 +212042,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209064,19 +212095,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -209087,88 +212118,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1008] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1008), [sym_preproc_endregion] = STATE(1008), [sym_preproc_line] = STATE(1008), @@ -209178,47 +212211,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209231,19 +212264,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -209254,88 +212287,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1009] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4876), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1009), [sym_preproc_endregion] = STATE(1009), [sym_preproc_line] = STATE(1009), @@ -209345,47 +212380,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209398,19 +212433,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -209421,88 +212456,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1010] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4324), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1010), [sym_preproc_endregion] = STATE(1010), [sym_preproc_line] = STATE(1010), @@ -209512,47 +212549,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209565,19 +212602,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -209588,88 +212625,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1011] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1011), [sym_preproc_endregion] = STATE(1011), [sym_preproc_line] = STATE(1011), @@ -209679,47 +212718,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209732,19 +212771,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -209755,88 +212794,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1012] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3857), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1012), [sym_preproc_endregion] = STATE(1012), [sym_preproc_line] = STATE(1012), @@ -209846,47 +212887,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -209899,19 +212940,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -209922,88 +212963,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1013] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4681), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1013), [sym_preproc_endregion] = STATE(1013), [sym_preproc_line] = STATE(1013), @@ -210013,47 +213056,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210066,19 +213109,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -210089,88 +213132,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1014] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4682), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1014), [sym_preproc_endregion] = STATE(1014), [sym_preproc_line] = STATE(1014), @@ -210180,47 +213225,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210233,19 +213278,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -210256,88 +213301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1015] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5073), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1015), [sym_preproc_endregion] = STATE(1015), [sym_preproc_line] = STATE(1015), @@ -210347,164 +213394,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(2141), + [anon_sym_ref] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(1247), + [anon_sym_delegate] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1047), + [anon_sym_file] = ACTIONS(29), + [anon_sym_new] = ACTIONS(2145), + [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_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(2153), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(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), }, [1016] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4683), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1016), [sym_preproc_endregion] = STATE(1016), [sym_preproc_line] = STATE(1016), @@ -210514,47 +213563,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210567,19 +213616,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -210590,88 +213639,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1017] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4875), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1017), [sym_preproc_endregion] = STATE(1017), [sym_preproc_line] = STATE(1017), @@ -210681,47 +213732,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210734,19 +213785,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -210757,88 +213808,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1018] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4685), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1018), [sym_preproc_endregion] = STATE(1018), [sym_preproc_line] = STATE(1018), @@ -210848,47 +213901,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -210901,19 +213954,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -210924,88 +213977,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4686), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1019), [sym_preproc_endregion] = STATE(1019), [sym_preproc_line] = STATE(1019), @@ -211015,47 +214070,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211068,19 +214123,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -211091,88 +214146,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1020] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5399), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1020), [sym_preproc_endregion] = STATE(1020), [sym_preproc_line] = STATE(1020), @@ -211182,47 +214239,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211235,19 +214292,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -211264,82 +214321,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1021] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5179), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1021), [sym_preproc_endregion] = STATE(1021), [sym_preproc_line] = STATE(1021), @@ -211349,47 +214408,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211402,19 +214461,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -211431,82 +214490,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1022] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4687), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1022), [sym_preproc_endregion] = STATE(1022), [sym_preproc_line] = STATE(1022), @@ -211516,47 +214577,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -211569,19 +214630,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -211598,82 +214659,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1023] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4688), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1023), [sym_preproc_endregion] = STATE(1023), [sym_preproc_line] = STATE(1023), @@ -211683,47 +214746,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), + [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(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211736,19 +214799,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -211765,82 +214828,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1024] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5044), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1024), [sym_preproc_endregion] = STATE(1024), [sym_preproc_line] = STATE(1024), @@ -211850,47 +214915,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -211903,19 +214968,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -211932,82 +214997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1025] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5405), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1025), [sym_preproc_endregion] = STATE(1025), [sym_preproc_line] = STATE(1025), @@ -212017,47 +215084,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -212070,19 +215137,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -212093,88 +215160,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1026] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4689), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1026), [sym_preproc_endregion] = STATE(1026), [sym_preproc_line] = STATE(1026), @@ -212184,47 +215253,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -212237,19 +215306,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -212260,88 +215329,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1027] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5407), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1027), [sym_preproc_endregion] = STATE(1027), [sym_preproc_line] = STATE(1027), @@ -212351,47 +215422,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -212404,19 +215475,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -212427,88 +215498,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1028] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4690), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1028), [sym_preproc_endregion] = STATE(1028), [sym_preproc_line] = STATE(1028), @@ -212518,47 +215591,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -212571,19 +215644,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -212594,88 +215667,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1029] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4692), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1029), [sym_preproc_endregion] = STATE(1029), [sym_preproc_line] = STATE(1029), @@ -212685,47 +215760,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -212738,19 +215813,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -212761,88 +215836,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1030] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4873), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1030), [sym_preproc_endregion] = STATE(1030), [sym_preproc_line] = STATE(1030), @@ -212852,47 +215929,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -212905,19 +215982,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -212928,88 +216005,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1031] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4869), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1031), [sym_preproc_endregion] = STATE(1031), [sym_preproc_line] = STATE(1031), @@ -213019,47 +216098,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -213072,19 +216151,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -213095,88 +216174,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1032] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4693), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1032), [sym_preproc_endregion] = STATE(1032), [sym_preproc_line] = STATE(1032), @@ -213186,47 +216267,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -213239,19 +216320,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -213262,88 +216343,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1033] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4860), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1033), [sym_preproc_endregion] = STATE(1033), [sym_preproc_line] = STATE(1033), @@ -213353,47 +216436,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -213406,19 +216489,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -213429,88 +216512,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1034] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4852), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1034), [sym_preproc_endregion] = STATE(1034), [sym_preproc_line] = STATE(1034), @@ -213520,47 +216605,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -213573,19 +216658,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -213596,88 +216681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1035] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4921), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1035), [sym_preproc_endregion] = STATE(1035), [sym_preproc_line] = STATE(1035), @@ -213687,164 +216774,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1036] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4843), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1036), [sym_preproc_endregion] = STATE(1036), [sym_preproc_line] = STATE(1036), @@ -213854,47 +216943,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -213907,19 +216996,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -213930,88 +217019,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1037] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1037), [sym_preproc_endregion] = STATE(1037), [sym_preproc_line] = STATE(1037), @@ -214021,47 +217112,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -214074,19 +217165,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -214097,88 +217188,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1038] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1038), [sym_preproc_endregion] = STATE(1038), [sym_preproc_line] = STATE(1038), @@ -214188,47 +217281,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -214241,19 +217334,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -214264,88 +217357,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1039] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5029), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1039), [sym_preproc_endregion] = STATE(1039), [sym_preproc_line] = STATE(1039), @@ -214355,47 +217450,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1039), [sym_preproc_define] = STATE(1039), [sym_preproc_undef] = STATE(1039), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -214420,7 +217515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -214437,82 +217532,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1040] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -214522,47 +217619,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1040), [sym_preproc_define] = STATE(1040), [sym_preproc_undef] = STATE(1040), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [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), @@ -214575,19 +217672,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -214598,88 +217695,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4760), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -214689,47 +217788,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1041), [sym_preproc_define] = STATE(1041), [sym_preproc_undef] = STATE(1041), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -214742,19 +217841,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -214765,88 +217864,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1042), [sym_preproc_endregion] = STATE(1042), [sym_preproc_line] = STATE(1042), @@ -214856,47 +217957,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -214909,19 +218010,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -214932,88 +218033,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1043] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1043), [sym_preproc_endregion] = STATE(1043), [sym_preproc_line] = STATE(1043), @@ -215023,47 +218126,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -215076,19 +218179,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -215099,88 +218202,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1044] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1044), [sym_preproc_endregion] = STATE(1044), [sym_preproc_line] = STATE(1044), @@ -215190,47 +218295,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -215243,19 +218348,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -215266,88 +218371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1045] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4936), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1045), [sym_preproc_endregion] = STATE(1045), [sym_preproc_line] = STATE(1045), @@ -215357,47 +218464,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1263), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -215422,7 +218529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -215439,82 +218546,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1046] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4920), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1046), [sym_preproc_endregion] = STATE(1046), [sym_preproc_line] = STATE(1046), @@ -215524,47 +218633,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -215577,19 +218686,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -215600,88 +218709,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1047] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4804), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1047), [sym_preproc_endregion] = STATE(1047), [sym_preproc_line] = STATE(1047), @@ -215691,47 +218802,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [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), @@ -215744,19 +218855,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -215767,88 +218878,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1048] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1048), [sym_preproc_endregion] = STATE(1048), [sym_preproc_line] = STATE(1048), @@ -215858,47 +218971,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -215911,19 +219024,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -215934,88 +219047,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1049] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1049), [sym_preproc_endregion] = STATE(1049), [sym_preproc_line] = STATE(1049), @@ -216025,47 +219140,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -216090,7 +219205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -216107,82 +219222,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1050] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4289), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1050), [sym_preproc_endregion] = STATE(1050), [sym_preproc_line] = STATE(1050), @@ -216192,47 +219309,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -216245,19 +219362,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -216268,88 +219385,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1051] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1051), [sym_preproc_endregion] = STATE(1051), [sym_preproc_line] = STATE(1051), @@ -216359,47 +219478,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -216412,19 +219531,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -216435,88 +219554,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1052] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4288), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1052), [sym_preproc_endregion] = STATE(1052), [sym_preproc_line] = STATE(1052), @@ -216526,47 +219647,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -216579,19 +219700,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -216602,88 +219723,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1053] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1053), [sym_preproc_endregion] = STATE(1053), [sym_preproc_line] = STATE(1053), @@ -216693,47 +219816,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -216746,19 +219869,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -216769,88 +219892,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1054] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1054), [sym_preproc_endregion] = STATE(1054), [sym_preproc_line] = STATE(1054), @@ -216860,47 +219985,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -216913,19 +220038,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -216936,88 +220061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1055] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4617), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1055), [sym_preproc_endregion] = STATE(1055), [sym_preproc_line] = STATE(1055), @@ -217027,47 +220154,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -217080,19 +220207,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -217103,88 +220230,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1056] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1056), [sym_preproc_endregion] = STATE(1056), [sym_preproc_line] = STATE(1056), @@ -217194,47 +220323,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -217247,19 +220376,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -217270,88 +220399,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1057] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1057), [sym_preproc_endregion] = STATE(1057), [sym_preproc_line] = STATE(1057), @@ -217361,47 +220492,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -217414,19 +220545,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -217437,88 +220568,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1058] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1058), [sym_preproc_endregion] = STATE(1058), [sym_preproc_line] = STATE(1058), @@ -217528,47 +220661,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -217581,19 +220714,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -217604,88 +220737,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1059] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1059), [sym_preproc_endregion] = STATE(1059), [sym_preproc_line] = STATE(1059), @@ -217695,47 +220830,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -217760,7 +220895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -217777,82 +220912,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1060] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1060), [sym_preproc_endregion] = STATE(1060), [sym_preproc_line] = STATE(1060), @@ -217862,47 +220999,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -217915,19 +221052,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -217938,88 +221075,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1061] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4691), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1061), [sym_preproc_endregion] = STATE(1061), [sym_preproc_line] = STATE(1061), @@ -218029,47 +221168,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -218082,19 +221221,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -218105,88 +221244,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1062] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5011), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1062), [sym_preproc_endregion] = STATE(1062), [sym_preproc_line] = STATE(1062), @@ -218196,47 +221337,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -218261,7 +221402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -218278,82 +221419,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1063] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4625), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1063), [sym_preproc_endregion] = STATE(1063), [sym_preproc_line] = STATE(1063), @@ -218363,47 +221506,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -218416,19 +221559,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -218439,88 +221582,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1064] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -218530,164 +221675,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1064), [sym_preproc_define] = STATE(1064), [sym_preproc_undef] = STATE(1064), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1065] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4626), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -218697,47 +221844,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1065), [sym_preproc_define] = STATE(1065), [sym_preproc_undef] = STATE(1065), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -218750,19 +221897,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -218773,88 +221920,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1066), [sym_preproc_endregion] = STATE(1066), [sym_preproc_line] = STATE(1066), @@ -218864,47 +222013,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -218917,19 +222066,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -218940,88 +222089,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1067] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4444), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1067), [sym_preproc_endregion] = STATE(1067), [sym_preproc_line] = STATE(1067), @@ -219031,47 +222182,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -219084,19 +222235,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -219107,88 +222258,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1068] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4678), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1068), [sym_preproc_endregion] = STATE(1068), [sym_preproc_line] = STATE(1068), @@ -219198,47 +222351,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -219251,19 +222404,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -219274,88 +222427,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1069] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4674), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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(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_preproc_region] = STATE(1069), [sym_preproc_endregion] = STATE(1069), [sym_preproc_line] = STATE(1069), @@ -219365,47 +222520,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -219418,19 +222573,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -219441,88 +222596,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1070] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1070), [sym_preproc_endregion] = STATE(1070), [sym_preproc_line] = STATE(1070), @@ -219532,47 +222689,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -219585,19 +222742,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -219608,88 +222765,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1071] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1071), [sym_preproc_endregion] = STATE(1071), [sym_preproc_line] = STATE(1071), @@ -219699,47 +222858,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219752,19 +222911,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -219775,88 +222934,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1072] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5013), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1072), [sym_preproc_endregion] = STATE(1072), [sym_preproc_line] = STATE(1072), @@ -219866,47 +223027,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -219919,19 +223080,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -219942,88 +223103,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1073] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5457), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1073), [sym_preproc_endregion] = STATE(1073), [sym_preproc_line] = STATE(1073), @@ -220033,47 +223196,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -220098,7 +223261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -220115,82 +223278,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1074] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4831), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1074), [sym_preproc_endregion] = STATE(1074), [sym_preproc_line] = STATE(1074), @@ -220200,47 +223365,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -220253,19 +223418,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -220282,82 +223447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1075] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5075), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1075), [sym_preproc_endregion] = STATE(1075), [sym_preproc_line] = STATE(1075), @@ -220367,47 +223534,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220420,19 +223587,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -220443,88 +223610,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1076] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4834), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(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_preproc_region] = STATE(1076), [sym_preproc_endregion] = STATE(1076), [sym_preproc_line] = STATE(1076), @@ -220534,47 +223703,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -220587,19 +223756,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -220610,88 +223779,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1077] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(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_preproc_region] = STATE(1077), [sym_preproc_endregion] = STATE(1077), [sym_preproc_line] = STATE(1077), @@ -220701,47 +223872,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -220754,19 +223925,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -220777,88 +223948,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1078] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(1078), [sym_preproc_endregion] = STATE(1078), [sym_preproc_line] = STATE(1078), @@ -220868,47 +224041,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -220921,19 +224094,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -220950,82 +224123,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1079] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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(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_preproc_region] = STATE(1079), [sym_preproc_endregion] = STATE(1079), [sym_preproc_line] = STATE(1079), @@ -221035,47 +224210,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -221088,19 +224263,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -221111,88 +224286,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1080] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4848), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1080), [sym_preproc_endregion] = STATE(1080), [sym_preproc_line] = STATE(1080), @@ -221202,47 +224379,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221255,19 +224432,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -221278,88 +224455,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1081] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3874), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1081), [sym_preproc_endregion] = STATE(1081), [sym_preproc_line] = STATE(1081), @@ -221369,47 +224548,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221422,19 +224601,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -221445,88 +224624,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1082] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1082), [sym_preproc_endregion] = STATE(1082), [sym_preproc_line] = STATE(1082), @@ -221536,47 +224717,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221589,19 +224770,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -221612,88 +224793,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1083] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5085), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1083), [sym_preproc_endregion] = STATE(1083), [sym_preproc_line] = STATE(1083), @@ -221703,47 +224886,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -221756,19 +224939,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -221779,88 +224962,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1084] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5084), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1084), [sym_preproc_endregion] = STATE(1084), [sym_preproc_line] = STATE(1084), @@ -221870,47 +225055,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -221923,19 +225108,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -221946,88 +225131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1085] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5083), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1085), [sym_preproc_endregion] = STATE(1085), [sym_preproc_line] = STATE(1085), @@ -222037,47 +225224,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222090,19 +225277,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222113,88 +225300,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1086] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5082), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1086), [sym_preproc_endregion] = STATE(1086), [sym_preproc_line] = STATE(1086), @@ -222204,47 +225393,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222257,19 +225446,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222280,88 +225469,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1087] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3875), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1087), [sym_preproc_endregion] = STATE(1087), [sym_preproc_line] = STATE(1087), @@ -222371,47 +225562,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -222424,19 +225615,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222447,88 +225638,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1088] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5074), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1088), [sym_preproc_endregion] = STATE(1088), [sym_preproc_line] = STATE(1088), @@ -222538,47 +225731,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -222591,19 +225784,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222614,88 +225807,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1089] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5071), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1089), [sym_preproc_endregion] = STATE(1089), [sym_preproc_line] = STATE(1089), @@ -222705,47 +225900,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -222758,19 +225953,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222781,88 +225976,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1090] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5066), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1090), [sym_preproc_endregion] = STATE(1090), [sym_preproc_line] = STATE(1090), @@ -222872,47 +226069,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -222925,19 +226122,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -222948,88 +226145,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1091] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5065), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1091), [sym_preproc_endregion] = STATE(1091), [sym_preproc_line] = STATE(1091), @@ -223039,47 +226238,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -223092,19 +226291,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223115,88 +226314,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1092] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3876), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1092), [sym_preproc_endregion] = STATE(1092), [sym_preproc_line] = STATE(1092), @@ -223206,47 +226407,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -223259,19 +226460,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223282,88 +226483,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1093] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5064), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1093), [sym_preproc_endregion] = STATE(1093), [sym_preproc_line] = STATE(1093), @@ -223373,47 +226576,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -223426,19 +226629,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223449,88 +226652,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1094] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5062), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1094), [sym_preproc_endregion] = STATE(1094), [sym_preproc_line] = STATE(1094), @@ -223540,47 +226745,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -223593,19 +226798,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223616,88 +226821,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1095] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5061), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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_preproc_region] = STATE(1095), [sym_preproc_endregion] = STATE(1095), [sym_preproc_line] = STATE(1095), @@ -223707,47 +226914,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -223760,19 +226967,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223783,88 +226990,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1096] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3877), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1096), [sym_preproc_endregion] = STATE(1096), [sym_preproc_line] = STATE(1096), @@ -223874,47 +227083,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -223927,19 +227136,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -223950,88 +227159,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1097] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3878), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1097), [sym_preproc_endregion] = STATE(1097), [sym_preproc_line] = STATE(1097), @@ -224041,47 +227252,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -224094,19 +227305,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -224117,88 +227328,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1098] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5038), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1098), [sym_preproc_endregion] = STATE(1098), [sym_preproc_line] = STATE(1098), @@ -224208,47 +227421,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [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), @@ -224261,19 +227474,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -224284,88 +227497,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1099] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4477), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1099), [sym_preproc_endregion] = STATE(1099), [sym_preproc_line] = STATE(1099), @@ -224375,47 +227590,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -224428,19 +227643,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -224451,88 +227666,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1100] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4474), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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(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(1100), [sym_preproc_endregion] = STATE(1100), [sym_preproc_line] = STATE(1100), @@ -224542,47 +227759,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1969), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -224595,19 +227812,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -224618,88 +227835,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1101] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4463), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1101), [sym_preproc_endregion] = STATE(1101), [sym_preproc_line] = STATE(1101), @@ -224709,47 +227928,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224762,19 +227981,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -224785,88 +228004,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1102] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1102), [sym_preproc_endregion] = STATE(1102), [sym_preproc_line] = STATE(1102), @@ -224876,47 +228097,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -224929,19 +228150,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -224952,88 +228173,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1103] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3879), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1103), [sym_preproc_endregion] = STATE(1103), [sym_preproc_line] = STATE(1103), @@ -225043,47 +228266,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225096,19 +228319,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -225119,88 +228342,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1104] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3883), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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_preproc_region] = STATE(1104), [sym_preproc_endregion] = STATE(1104), [sym_preproc_line] = STATE(1104), @@ -225210,47 +228435,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225263,19 +228488,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -225286,88 +228511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1105] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1105), [sym_preproc_endregion] = STATE(1105), [sym_preproc_line] = STATE(1105), @@ -225377,47 +228604,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225430,19 +228657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -225453,88 +228680,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1106] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5036), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1106), [sym_preproc_endregion] = STATE(1106), [sym_preproc_line] = STATE(1106), @@ -225544,47 +228773,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225597,19 +228826,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -225620,88 +228849,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1107] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4462), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1107), [sym_preproc_endregion] = STATE(1107), [sym_preproc_line] = STATE(1107), @@ -225711,47 +228942,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225764,19 +228995,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -225787,88 +229018,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1108] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3887), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1108), [sym_preproc_endregion] = STATE(1108), [sym_preproc_line] = STATE(1108), @@ -225878,47 +229111,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -225931,19 +229164,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -225954,88 +229187,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1109] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4464), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1109), [sym_preproc_endregion] = STATE(1109), [sym_preproc_line] = STATE(1109), @@ -226045,47 +229280,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226098,19 +229333,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -226121,88 +229356,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1110] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1110), [sym_preproc_endregion] = STATE(1110), [sym_preproc_line] = STATE(1110), @@ -226212,47 +229449,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226265,19 +229502,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -226288,88 +229525,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1111] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5348), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1111), [sym_preproc_endregion] = STATE(1111), [sym_preproc_line] = STATE(1111), @@ -226379,47 +229618,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226432,19 +229671,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -226455,88 +229694,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1112] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5420), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1112), [sym_preproc_endregion] = STATE(1112), [sym_preproc_line] = STATE(1112), @@ -226546,47 +229787,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226599,19 +229840,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -226622,88 +229863,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1113] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5033), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1113), [sym_preproc_endregion] = STATE(1113), [sym_preproc_line] = STATE(1113), @@ -226713,47 +229956,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226766,19 +230009,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -226789,88 +230032,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1114] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3322), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7071), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1114), [sym_preproc_endregion] = STATE(1114), [sym_preproc_line] = STATE(1114), @@ -226880,47 +230125,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_ref] = ACTIONS(1499), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_TILDE] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1503), - [anon_sym_DASH_DASH] = ACTIONS(1503), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_STAR] = ACTIONS(1103), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1111), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1113), - [anon_sym_DOT_DOT] = ACTIONS(1117), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -226933,19 +230178,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -226956,88 +230201,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1115] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3888), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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(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_preproc_region] = STATE(1115), [sym_preproc_endregion] = STATE(1115), [sym_preproc_line] = STATE(1115), @@ -227047,47 +230294,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227100,19 +230347,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -227123,88 +230370,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1116] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1116), [sym_preproc_endregion] = STATE(1116), [sym_preproc_line] = STATE(1116), @@ -227214,47 +230463,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227267,19 +230516,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -227290,88 +230539,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1117] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1117), [sym_preproc_endregion] = STATE(1117), [sym_preproc_line] = STATE(1117), @@ -227381,47 +230632,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227434,19 +230685,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -227457,88 +230708,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1118] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5363), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1118), [sym_preproc_endregion] = STATE(1118), [sym_preproc_line] = STATE(1118), @@ -227548,47 +230801,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -227601,19 +230854,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -227624,88 +230877,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1119] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5364), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1119), [sym_preproc_endregion] = STATE(1119), [sym_preproc_line] = STATE(1119), @@ -227715,47 +230970,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1119), [sym_preproc_define] = STATE(1119), [sym_preproc_undef] = STATE(1119), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -227768,19 +231023,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -227797,82 +231052,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1120] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3889), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1120), [sym_preproc_endregion] = STATE(1120), [sym_preproc_line] = STATE(1120), @@ -227882,47 +231139,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -227935,19 +231192,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -227958,88 +231215,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1121] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4557), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1121), [sym_preproc_endregion] = STATE(1121), [sym_preproc_line] = STATE(1121), @@ -228049,47 +231308,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -228102,19 +231361,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -228125,88 +231384,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1122] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3894), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1122), [sym_preproc_endregion] = STATE(1122), [sym_preproc_line] = STATE(1122), @@ -228216,47 +231477,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -228269,19 +231530,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -228292,88 +231553,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1123] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4931), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1123), [sym_preproc_endregion] = STATE(1123), [sym_preproc_line] = STATE(1123), @@ -228383,47 +231646,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + }, + [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_preproc_region] = STATE(1124), + [sym_preproc_endregion] = STATE(1124), + [sym_preproc_line] = STATE(1124), + [sym_preproc_pragma] = STATE(1124), + [sym_preproc_nullable] = STATE(1124), + [sym_preproc_error] = STATE(1124), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), + [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(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -228436,186 +231868,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1124] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4932), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1124), - [sym_preproc_endregion] = STATE(1124), - [sym_preproc_line] = STATE(1124), - [sym_preproc_pragma] = STATE(1124), - [sym_preproc_nullable] = STATE(1124), - [sym_preproc_error] = STATE(1124), - [sym_preproc_warning] = STATE(1124), - [sym_preproc_define] = STATE(1124), - [sym_preproc_undef] = STATE(1124), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -228632,82 +231897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1125] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4933), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1125), [sym_preproc_endregion] = STATE(1125), [sym_preproc_line] = STATE(1125), @@ -228717,47 +231984,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -228770,19 +232037,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -228793,88 +232060,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1126] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1126), [sym_preproc_endregion] = STATE(1126), [sym_preproc_line] = STATE(1126), @@ -228884,47 +232153,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -228937,19 +232206,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -228960,88 +232229,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1127] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4934), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1127), [sym_preproc_endregion] = STATE(1127), [sym_preproc_line] = STATE(1127), @@ -229051,47 +232322,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -229104,19 +232375,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -229127,88 +232398,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1128] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4935), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1128), [sym_preproc_endregion] = STATE(1128), [sym_preproc_line] = STATE(1128), @@ -229218,47 +232491,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -229271,19 +232544,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -229294,88 +232567,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1129] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4937), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1129), [sym_preproc_endregion] = STATE(1129), [sym_preproc_line] = STATE(1129), @@ -229385,47 +232660,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -229438,19 +232713,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -229461,88 +232736,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1130] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1130), [sym_preproc_endregion] = STATE(1130), [sym_preproc_line] = STATE(1130), @@ -229552,47 +232829,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -229605,19 +232882,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -229628,88 +232905,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1131] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4939), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1131), [sym_preproc_endregion] = STATE(1131), [sym_preproc_line] = STATE(1131), @@ -229719,47 +232998,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -229772,19 +233051,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -229795,88 +233074,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1132] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4855), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1132), [sym_preproc_endregion] = STATE(1132), [sym_preproc_line] = STATE(1132), @@ -229886,164 +233167,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1133] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5516), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2819), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1133), [sym_preproc_endregion] = STATE(1133), [sym_preproc_line] = STATE(1133), @@ -230053,47 +233336,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1617), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -230106,19 +233389,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -230129,88 +233412,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1134] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4940), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1134), [sym_preproc_endregion] = STATE(1134), [sym_preproc_line] = STATE(1134), @@ -230220,47 +233505,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -230273,19 +233558,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -230296,88 +233581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1135] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4892), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1135), [sym_preproc_endregion] = STATE(1135), [sym_preproc_line] = STATE(1135), @@ -230387,47 +233674,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -230440,19 +233727,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -230463,88 +233750,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1136] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1136), [sym_preproc_endregion] = STATE(1136), [sym_preproc_line] = STATE(1136), @@ -230554,47 +233843,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1136), [sym_preproc_define] = STATE(1136), [sym_preproc_undef] = STATE(1136), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -230607,19 +233896,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -230630,88 +233919,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1137] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4941), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1137), [sym_preproc_endregion] = STATE(1137), [sym_preproc_line] = STATE(1137), @@ -230721,47 +234012,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -230774,19 +234065,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -230797,88 +234088,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1138] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4943), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1138), [sym_preproc_endregion] = STATE(1138), [sym_preproc_line] = STATE(1138), @@ -230888,47 +234181,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [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), @@ -230941,19 +234234,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -230964,88 +234257,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1139] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1139), [sym_preproc_endregion] = STATE(1139), [sym_preproc_line] = STATE(1139), @@ -231055,164 +234350,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1140] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4752), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1140), [sym_preproc_endregion] = STATE(1140), [sym_preproc_line] = STATE(1140), @@ -231222,164 +234519,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1141] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5463), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1141), [sym_preproc_endregion] = STATE(1141), [sym_preproc_line] = STATE(1141), @@ -231389,47 +234688,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -231442,19 +234741,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -231465,88 +234764,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1142] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4651), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1142), [sym_preproc_endregion] = STATE(1142), [sym_preproc_line] = STATE(1142), @@ -231556,47 +234857,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -231609,19 +234910,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -231632,88 +234933,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1143] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3579), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1143), [sym_preproc_endregion] = STATE(1143), [sym_preproc_line] = STATE(1143), @@ -231723,47 +235026,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [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), @@ -231776,19 +235079,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -231799,88 +235102,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1144] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5452), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1144), [sym_preproc_endregion] = STATE(1144), [sym_preproc_line] = STATE(1144), @@ -231890,47 +235195,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -231955,7 +235260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -231972,82 +235277,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1145] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4202), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1145), [sym_preproc_endregion] = STATE(1145), [sym_preproc_line] = STATE(1145), @@ -232057,47 +235364,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -232110,19 +235417,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -232139,82 +235446,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1146] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4179), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1146), [sym_preproc_endregion] = STATE(1146), [sym_preproc_line] = STATE(1146), @@ -232224,47 +235533,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232277,19 +235586,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -232306,82 +235615,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1147] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5319), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1147), [sym_preproc_endregion] = STATE(1147), [sym_preproc_line] = STATE(1147), @@ -232391,47 +235702,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232456,7 +235767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -232473,82 +235784,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1148] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4656), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1148), [sym_preproc_endregion] = STATE(1148), [sym_preproc_line] = STATE(1148), @@ -232558,47 +235871,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [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), @@ -232611,19 +235924,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -232634,88 +235947,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1149] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3581), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5993), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7099), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1149), [sym_preproc_endregion] = STATE(1149), [sym_preproc_line] = STATE(1149), @@ -232725,47 +236040,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_ref] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232778,19 +236093,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -232801,88 +236116,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1150] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1150), [sym_preproc_endregion] = STATE(1150), [sym_preproc_line] = STATE(1150), @@ -232892,47 +236209,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -232957,7 +236274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -232974,82 +236291,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1151] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1151), [sym_preproc_endregion] = STATE(1151), [sym_preproc_line] = STATE(1151), @@ -233059,47 +236378,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -233124,7 +236443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -233141,82 +236460,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1152] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1152), [sym_preproc_endregion] = STATE(1152), [sym_preproc_line] = STATE(1152), @@ -233226,47 +236547,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233291,7 +236612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -233308,82 +236629,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1153] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5336), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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__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(1153), [sym_preproc_endregion] = STATE(1153), [sym_preproc_line] = STATE(1153), @@ -233393,47 +236716,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233458,7 +236781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -233475,82 +236798,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1154] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4902), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1154), [sym_preproc_endregion] = STATE(1154), [sym_preproc_line] = STATE(1154), @@ -233560,47 +236885,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233613,19 +236938,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -233642,82 +236967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1155] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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__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(1155), [sym_preproc_endregion] = STATE(1155), [sym_preproc_line] = STATE(1155), @@ -233727,47 +237054,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233780,19 +237107,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -233803,88 +237130,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1156] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1156), [sym_preproc_endregion] = STATE(1156), [sym_preproc_line] = STATE(1156), @@ -233894,47 +237223,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -233959,7 +237288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -233976,82 +237305,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1157] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3461), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5986), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7170), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1157), [sym_preproc_endregion] = STATE(1157), [sym_preproc_line] = STATE(1157), @@ -234061,47 +237392,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_ref] = ACTIONS(1875), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1877), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_TILDE] = ACTIONS(1881), - [anon_sym_PLUS_PLUS] = ACTIONS(1881), - [anon_sym_DASH_DASH] = ACTIONS(1881), + [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(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_this] = ACTIONS(1319), + [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(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1885), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1889), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234114,19 +237445,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -234143,82 +237474,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1158] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1158), [sym_preproc_endregion] = STATE(1158), [sym_preproc_line] = STATE(1158), @@ -234228,47 +237561,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234293,7 +237626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -234310,82 +237643,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1159] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1159), [sym_preproc_endregion] = STATE(1159), [sym_preproc_line] = STATE(1159), @@ -234395,47 +237730,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234460,7 +237795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -234477,82 +237812,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1160] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1160), [sym_preproc_endregion] = STATE(1160), [sym_preproc_line] = STATE(1160), @@ -234562,47 +237899,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234615,19 +237952,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -234638,88 +237975,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1161] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3594), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1161), [sym_preproc_endregion] = STATE(1161), [sym_preproc_line] = STATE(1161), @@ -234729,47 +238068,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234782,19 +238121,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -234805,88 +238144,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1162] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5460), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1162), [sym_preproc_endregion] = STATE(1162), [sym_preproc_line] = STATE(1162), @@ -234896,47 +238237,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -234961,7 +238302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -234978,82 +238319,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1163] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1163), [sym_preproc_endregion] = STATE(1163), [sym_preproc_line] = STATE(1163), @@ -235063,47 +238406,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -235116,19 +238459,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -235139,88 +238482,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1164] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5283), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1164), [sym_preproc_endregion] = STATE(1164), [sym_preproc_line] = STATE(1164), @@ -235230,47 +238575,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235295,7 +238640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -235312,82 +238657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1165] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5282), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1165), [sym_preproc_endregion] = STATE(1165), [sym_preproc_line] = STATE(1165), @@ -235397,47 +238744,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_checked] = ACTIONS(1067), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -235462,7 +238809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -235479,82 +238826,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1166] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5281), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1166), [sym_preproc_endregion] = STATE(1166), [sym_preproc_line] = STATE(1166), @@ -235564,47 +238913,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235617,19 +238966,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -235646,82 +238995,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1167] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1167), [sym_preproc_endregion] = STATE(1167), [sym_preproc_line] = STATE(1167), @@ -235731,47 +239082,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -235784,19 +239135,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -235807,88 +239158,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1168] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5278), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1168), [sym_preproc_endregion] = STATE(1168), [sym_preproc_line] = STATE(1168), @@ -235898,47 +239251,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [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(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -235952,18 +239305,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -235974,88 +239327,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1169] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5277), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1169), [sym_preproc_endregion] = STATE(1169), [sym_preproc_line] = STATE(1169), @@ -236065,47 +239420,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -236118,19 +239473,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -236141,88 +239496,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5276), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -236232,47 +239589,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1170), [sym_preproc_define] = STATE(1170), [sym_preproc_undef] = STATE(1170), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -236285,19 +239642,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -236308,88 +239665,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5275), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -236399,47 +239758,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1171), [sym_preproc_define] = STATE(1171), [sym_preproc_undef] = STATE(1171), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236452,19 +239811,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -236481,82 +239840,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1172] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5274), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(1172), [sym_preproc_endregion] = STATE(1172), [sym_preproc_line] = STATE(1172), @@ -236566,47 +239927,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236619,19 +239980,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -236648,82 +240009,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1173] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5273), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1173), [sym_preproc_endregion] = STATE(1173), [sym_preproc_line] = STATE(1173), @@ -236733,47 +240096,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236786,19 +240149,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -236815,82 +240178,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1174] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5272), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(1174), [sym_preproc_endregion] = STATE(1174), [sym_preproc_line] = STATE(1174), @@ -236900,47 +240265,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -236953,19 +240318,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -236982,82 +240347,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1175] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1175), [sym_preproc_endregion] = STATE(1175), [sym_preproc_line] = STATE(1175), @@ -237067,47 +240434,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1883), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237120,19 +240487,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -237149,82 +240516,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1176] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5269), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1176), [sym_preproc_endregion] = STATE(1176), [sym_preproc_line] = STATE(1176), @@ -237234,47 +240603,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237287,19 +240656,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -237316,82 +240685,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1177] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1177), [sym_preproc_endregion] = STATE(1177), [sym_preproc_line] = STATE(1177), @@ -237401,47 +240772,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237454,19 +240825,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -237483,82 +240854,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1178] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_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(1178), [sym_preproc_endregion] = STATE(1178), [sym_preproc_line] = STATE(1178), @@ -237568,47 +240941,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), + [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(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237621,19 +240994,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -237650,82 +241023,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1179] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1179), [sym_preproc_endregion] = STATE(1179), [sym_preproc_line] = STATE(1179), @@ -237735,47 +241110,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237788,19 +241163,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -237817,82 +241192,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1180] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5214), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1180), [sym_preproc_endregion] = STATE(1180), [sym_preproc_line] = STATE(1180), @@ -237902,47 +241279,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -237955,19 +241332,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -237984,82 +241361,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1181] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4747), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1181), [sym_preproc_endregion] = STATE(1181), [sym_preproc_line] = STATE(1181), @@ -238069,214 +241448,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1182] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1182), - [sym_preproc_endregion] = STATE(1182), - [sym_preproc_line] = STATE(1182), - [sym_preproc_pragma] = STATE(1182), - [sym_preproc_nullable] = STATE(1182), - [sym_preproc_error] = STATE(1182), - [sym_preproc_warning] = STATE(1182), - [sym_preproc_define] = STATE(1182), - [sym_preproc_undef] = STATE(1182), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238289,19 +241501,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -238317,133 +241529,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), }, - [1183] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5404), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1183), - [sym_preproc_endregion] = STATE(1183), - [sym_preproc_line] = STATE(1183), - [sym_preproc_pragma] = STATE(1183), - [sym_preproc_nullable] = STATE(1183), - [sym_preproc_error] = STATE(1183), - [sym_preproc_warning] = STATE(1183), - [sym_preproc_define] = STATE(1183), - [sym_preproc_undef] = STATE(1183), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1182), + [sym_preproc_endregion] = STATE(1182), + [sym_preproc_line] = STATE(1182), + [sym_preproc_pragma] = STATE(1182), + [sym_preproc_nullable] = STATE(1182), + [sym_preproc_error] = STATE(1182), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -238456,19 +241670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -238484,83 +241698,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), }, + [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_preproc_region] = STATE(1183), + [sym_preproc_endregion] = STATE(1183), + [sym_preproc_line] = STATE(1183), + [sym_preproc_pragma] = STATE(1183), + [sym_preproc_nullable] = STATE(1183), + [sym_preproc_error] = STATE(1183), + [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), + }, [1184] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1184), [sym_preproc_endregion] = STATE(1184), [sym_preproc_line] = STATE(1184), @@ -238570,47 +241955,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -238623,19 +242008,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -238646,88 +242031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1185] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1185), [sym_preproc_endregion] = STATE(1185), [sym_preproc_line] = STATE(1185), @@ -238737,47 +242124,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -238790,19 +242177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -238813,88 +242200,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1186] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1186), [sym_preproc_endregion] = STATE(1186), [sym_preproc_line] = STATE(1186), @@ -238904,47 +242293,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -238957,19 +242346,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -238980,88 +242369,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1187] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1187), [sym_preproc_endregion] = STATE(1187), [sym_preproc_line] = STATE(1187), @@ -239071,47 +242462,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -239124,19 +242515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -239147,88 +242538,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1188] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1188), [sym_preproc_endregion] = STATE(1188), [sym_preproc_line] = STATE(1188), @@ -239238,47 +242631,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -239291,19 +242684,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -239314,88 +242707,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1189] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1189), [sym_preproc_endregion] = STATE(1189), [sym_preproc_line] = STATE(1189), @@ -239405,47 +242800,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -239458,19 +242853,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -239481,88 +242876,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1190] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3432), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5983), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7076), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1190), [sym_preproc_endregion] = STATE(1190), [sym_preproc_line] = STATE(1190), @@ -239572,47 +242969,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_ref] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1841), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_TILDE] = ACTIONS(1845), - [anon_sym_PLUS_PLUS] = ACTIONS(1845), - [anon_sym_DASH_DASH] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1843), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1849), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1853), + [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), @@ -239625,19 +243022,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -239648,88 +243045,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1191] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1191), [sym_preproc_endregion] = STATE(1191), [sym_preproc_line] = STATE(1191), @@ -239739,47 +243138,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -239792,19 +243191,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -239815,88 +243214,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1192] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1192), [sym_preproc_endregion] = STATE(1192), [sym_preproc_line] = STATE(1192), @@ -239906,47 +243307,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -239959,19 +243360,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -239982,88 +243383,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1193] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5143), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1193), [sym_preproc_endregion] = STATE(1193), [sym_preproc_line] = STATE(1193), @@ -240073,47 +243476,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -240126,19 +243529,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -240149,88 +243552,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1194] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5416), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3624), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5982), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7142), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1194), [sym_preproc_endregion] = STATE(1194), [sym_preproc_line] = STATE(1194), @@ -240240,47 +243645,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_ref] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2069), - [anon_sym_PLUS_PLUS] = ACTIONS(2069), - [anon_sym_DASH_DASH] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2077), + [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), @@ -240293,19 +243698,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -240316,88 +243721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1195] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5077), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1195), [sym_preproc_endregion] = STATE(1195), [sym_preproc_line] = STATE(1195), @@ -240407,47 +243814,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -240460,19 +243867,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -240483,88 +243890,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1196] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1196), [sym_preproc_endregion] = STATE(1196), [sym_preproc_line] = STATE(1196), @@ -240574,47 +243983,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -240627,19 +244036,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -240650,88 +244059,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1197] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4650), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1197), [sym_preproc_endregion] = STATE(1197), [sym_preproc_line] = STATE(1197), @@ -240741,47 +244152,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -240794,19 +244205,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -240817,88 +244228,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1198] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3456), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5978), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7093), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1198), [sym_preproc_endregion] = STATE(1198), [sym_preproc_line] = STATE(1198), @@ -240908,47 +244321,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1891), - [anon_sym_ref] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1895), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1899), - [anon_sym_TILDE] = ACTIONS(1899), - [anon_sym_PLUS_PLUS] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1899), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1899), - [anon_sym_AMP] = ACTIONS(1899), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1905), - [anon_sym_DOT_DOT] = ACTIONS(1907), + [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), @@ -240961,19 +244374,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -240984,88 +244397,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1199] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5528), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2350), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1199), [sym_preproc_endregion] = STATE(1199), [sym_preproc_line] = STATE(1199), @@ -241075,47 +244490,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1259), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -241128,19 +244543,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -241151,88 +244566,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1200] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1200), [sym_preproc_endregion] = STATE(1200), [sym_preproc_line] = STATE(1200), @@ -241242,47 +244659,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241295,19 +244712,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -241318,88 +244735,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1201] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5097), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1201), [sym_preproc_endregion] = STATE(1201), [sym_preproc_line] = STATE(1201), @@ -241409,47 +244828,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241462,19 +244881,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -241491,82 +244910,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1202] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4647), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1202), [sym_preproc_endregion] = STATE(1202), [sym_preproc_line] = STATE(1202), @@ -241576,47 +244997,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -241629,19 +245050,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -241652,88 +245073,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1203] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4378), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1203), [sym_preproc_endregion] = STATE(1203), [sym_preproc_line] = STATE(1203), @@ -241743,47 +245166,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241796,19 +245219,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -241819,88 +245242,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1204] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5704), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3547), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5981), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7109), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1204), [sym_preproc_endregion] = STATE(1204), [sym_preproc_line] = STATE(1204), @@ -241910,47 +245335,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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), + }, + [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_preproc_region] = STATE(1205), + [sym_preproc_endregion] = STATE(1205), + [sym_preproc_line] = STATE(1205), + [sym_preproc_pragma] = STATE(1205), + [sym_preproc_nullable] = STATE(1205), + [sym_preproc_error] = STATE(1205), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_ref] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2113), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2115), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2117), - [anon_sym_AMP] = ACTIONS(2117), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -241963,19 +245557,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -241986,138 +245580,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1205] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4373), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1205), - [sym_preproc_endregion] = STATE(1205), - [sym_preproc_line] = STATE(1205), - [sym_preproc_pragma] = STATE(1205), - [sym_preproc_nullable] = STATE(1205), - [sym_preproc_error] = STATE(1205), - [sym_preproc_warning] = STATE(1205), - [sym_preproc_define] = STATE(1205), - [sym_preproc_undef] = STATE(1205), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1206), + [sym_preproc_endregion] = STATE(1206), + [sym_preproc_line] = STATE(1206), + [sym_preproc_pragma] = STATE(1206), + [sym_preproc_nullable] = STATE(1206), + [sym_preproc_error] = STATE(1206), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242130,19 +245726,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -242153,138 +245749,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [1206] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5690), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2343), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1206), - [sym_preproc_endregion] = STATE(1206), - [sym_preproc_line] = STATE(1206), - [sym_preproc_pragma] = STATE(1206), - [sym_preproc_nullable] = STATE(1206), - [sym_preproc_error] = STATE(1206), - [sym_preproc_warning] = STATE(1206), - [sym_preproc_define] = STATE(1206), - [sym_preproc_undef] = STATE(1206), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1207), + [sym_preproc_endregion] = STATE(1207), + [sym_preproc_line] = STATE(1207), + [sym_preproc_pragma] = STATE(1207), + [sym_preproc_nullable] = STATE(1207), + [sym_preproc_error] = STATE(1207), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242297,19 +245895,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -242320,255 +245918,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1207] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4807), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1207), - [sym_preproc_endregion] = STATE(1207), - [sym_preproc_line] = STATE(1207), - [sym_preproc_pragma] = STATE(1207), - [sym_preproc_nullable] = STATE(1207), - [sym_preproc_error] = STATE(1207), - [sym_preproc_warning] = STATE(1207), - [sym_preproc_define] = STATE(1207), - [sym_preproc_undef] = STATE(1207), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1208] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1208), [sym_preproc_endregion] = STATE(1208), [sym_preproc_line] = STATE(1208), @@ -242578,47 +246011,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242631,19 +246064,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -242654,88 +246087,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1209] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4867), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1209), [sym_preproc_endregion] = STATE(1209), [sym_preproc_line] = STATE(1209), @@ -242745,164 +246180,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1210] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1210), [sym_preproc_endregion] = STATE(1210), [sym_preproc_line] = STATE(1210), @@ -242912,47 +246349,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -242965,19 +246402,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -242988,88 +246425,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1211] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1211), [sym_preproc_endregion] = STATE(1211), [sym_preproc_line] = STATE(1211), @@ -243079,47 +246518,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243132,19 +246571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -243155,88 +246594,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1212] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4335), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1212), [sym_preproc_endregion] = STATE(1212), [sym_preproc_line] = STATE(1212), @@ -243246,47 +246687,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243299,19 +246740,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -243322,88 +246763,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1213] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4906), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1213), [sym_preproc_endregion] = STATE(1213), [sym_preproc_line] = STATE(1213), @@ -243413,164 +246856,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1214] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4987), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1214), [sym_preproc_endregion] = STATE(1214), [sym_preproc_line] = STATE(1214), @@ -243580,164 +247025,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1215] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4992), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1215), [sym_preproc_endregion] = STATE(1215), [sym_preproc_line] = STATE(1215), @@ -243747,164 +247194,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1216] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4356), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1216), [sym_preproc_endregion] = STATE(1216), [sym_preproc_line] = STATE(1216), @@ -243914,47 +247363,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -243967,19 +247416,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -243990,88 +247439,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1217] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4334), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1217), [sym_preproc_endregion] = STATE(1217), [sym_preproc_line] = STATE(1217), @@ -244081,47 +247532,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244134,19 +247585,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -244157,88 +247608,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1218] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4332), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1218), [sym_preproc_endregion] = STATE(1218), [sym_preproc_line] = STATE(1218), @@ -244248,47 +247701,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244301,19 +247754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -244324,88 +247777,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1219] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4989), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1219), [sym_preproc_endregion] = STATE(1219), [sym_preproc_line] = STATE(1219), @@ -244415,214 +247870,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1220] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4329), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1220), - [sym_preproc_endregion] = STATE(1220), - [sym_preproc_line] = STATE(1220), - [sym_preproc_pragma] = STATE(1220), - [sym_preproc_nullable] = STATE(1220), - [sym_preproc_error] = STATE(1220), - [sym_preproc_warning] = STATE(1220), - [sym_preproc_define] = STATE(1220), - [sym_preproc_undef] = STATE(1220), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244635,19 +247923,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -244658,88 +247946,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), + }, + [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_preproc_region] = STATE(1220), + [sym_preproc_endregion] = STATE(1220), + [sym_preproc_line] = STATE(1220), + [sym_preproc_pragma] = STATE(1220), + [sym_preproc_nullable] = STATE(1220), + [sym_preproc_error] = STATE(1220), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1221] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4947), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1221), [sym_preproc_endregion] = STATE(1221), [sym_preproc_line] = STATE(1221), @@ -244749,164 +248208,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1222] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5196), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1222), [sym_preproc_endregion] = STATE(1222), [sym_preproc_line] = STATE(1222), @@ -244916,47 +248377,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -244969,19 +248430,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -244992,88 +248453,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1223] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4283), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1223), [sym_preproc_endregion] = STATE(1223), [sym_preproc_line] = STATE(1223), @@ -245083,47 +248546,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -245136,19 +248599,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -245159,88 +248622,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1224] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4357), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1224), [sym_preproc_endregion] = STATE(1224), [sym_preproc_line] = STATE(1224), @@ -245250,47 +248715,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -245303,19 +248768,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -245326,88 +248791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1225] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4363), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1225), [sym_preproc_endregion] = STATE(1225), [sym_preproc_line] = STATE(1225), @@ -245417,47 +248884,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -245470,19 +248937,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -245493,88 +248960,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1226] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1226), [sym_preproc_endregion] = STATE(1226), [sym_preproc_line] = STATE(1226), @@ -245584,47 +249053,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -245637,19 +249106,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -245660,88 +249129,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1227] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1227), [sym_preproc_endregion] = STATE(1227), [sym_preproc_line] = STATE(1227), @@ -245751,47 +249222,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -245804,19 +249275,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -245827,88 +249298,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1228] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4734), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1228), [sym_preproc_endregion] = STATE(1228), [sym_preproc_line] = STATE(1228), @@ -245918,214 +249391,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1229] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4417), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1229), - [sym_preproc_endregion] = STATE(1229), - [sym_preproc_line] = STATE(1229), - [sym_preproc_pragma] = STATE(1229), - [sym_preproc_nullable] = STATE(1229), - [sym_preproc_error] = STATE(1229), - [sym_preproc_warning] = STATE(1229), - [sym_preproc_define] = STATE(1229), - [sym_preproc_undef] = STATE(1229), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -246138,19 +249444,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -246166,83 +249472,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), }, + [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_preproc_region] = STATE(1229), + [sym_preproc_endregion] = STATE(1229), + [sym_preproc_line] = STATE(1229), + [sym_preproc_pragma] = STATE(1229), + [sym_preproc_nullable] = STATE(1229), + [sym_preproc_error] = STATE(1229), + [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), + [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_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(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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, [1230] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1230), [sym_preproc_endregion] = STATE(1230), [sym_preproc_line] = STATE(1230), @@ -246252,47 +249729,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -246305,19 +249782,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -246328,88 +249805,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1231] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5160), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1231), [sym_preproc_endregion] = STATE(1231), [sym_preproc_line] = STATE(1231), @@ -246419,47 +249898,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -246472,19 +249951,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -246501,82 +249980,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1232] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5462), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1232), [sym_preproc_endregion] = STATE(1232), [sym_preproc_line] = STATE(1232), @@ -246586,47 +250067,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -246651,7 +250132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -246668,82 +250149,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1233] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4425), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1233), [sym_preproc_endregion] = STATE(1233), [sym_preproc_line] = STATE(1233), @@ -246753,47 +250236,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -246806,19 +250289,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -246835,82 +250318,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1234] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3863), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1234), [sym_preproc_endregion] = STATE(1234), [sym_preproc_line] = STATE(1234), @@ -246920,47 +250405,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -246973,19 +250458,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -246996,88 +250481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1235] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1235), [sym_preproc_endregion] = STATE(1235), [sym_preproc_line] = STATE(1235), @@ -247087,47 +250574,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [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), @@ -247152,7 +250639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -247169,82 +250656,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1236] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1236), [sym_preproc_endregion] = STATE(1236), [sym_preproc_line] = STATE(1236), @@ -247254,47 +250743,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -247307,19 +250796,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -247336,82 +250825,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1237] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4446), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1237), [sym_preproc_endregion] = STATE(1237), [sym_preproc_line] = STATE(1237), @@ -247421,47 +250912,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -247474,19 +250965,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -247503,82 +250994,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1238] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4756), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1238), [sym_preproc_endregion] = STATE(1238), [sym_preproc_line] = STATE(1238), @@ -247588,164 +251081,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_scoped] = 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(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(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), }, [1239] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1239), [sym_preproc_endregion] = STATE(1239), [sym_preproc_line] = STATE(1239), @@ -247755,47 +251250,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -247808,19 +251303,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -247831,88 +251326,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1240] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5142), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1240), [sym_preproc_endregion] = STATE(1240), [sym_preproc_line] = STATE(1240), @@ -247922,47 +251419,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -247975,19 +251472,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -247998,88 +251495,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1241] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5141), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1241), [sym_preproc_endregion] = STATE(1241), [sym_preproc_line] = STATE(1241), @@ -248089,47 +251588,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -248142,19 +251641,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -248165,88 +251664,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1242] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5140), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1242), [sym_preproc_endregion] = STATE(1242), [sym_preproc_line] = STATE(1242), @@ -248256,47 +251757,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -248309,19 +251810,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -248332,88 +251833,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1243] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5139), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1243), [sym_preproc_endregion] = STATE(1243), [sym_preproc_line] = STATE(1243), @@ -248423,47 +251926,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -248476,19 +251979,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -248499,88 +252002,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1244] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4758), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1244), [sym_preproc_endregion] = STATE(1244), [sym_preproc_line] = STATE(1244), @@ -248590,164 +252095,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1245] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5138), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1245), [sym_preproc_endregion] = STATE(1245), [sym_preproc_line] = STATE(1245), @@ -248757,47 +252264,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -248810,19 +252317,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -248833,88 +252340,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1246] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5137), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1246), [sym_preproc_endregion] = STATE(1246), [sym_preproc_line] = STATE(1246), @@ -248924,47 +252433,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -248977,19 +252486,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -249000,88 +252509,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1247] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5136), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1247), [sym_preproc_endregion] = STATE(1247), [sym_preproc_line] = STATE(1247), @@ -249091,47 +252602,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -249144,19 +252655,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -249167,88 +252678,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1248] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5135), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1248), [sym_preproc_endregion] = STATE(1248), [sym_preproc_line] = STATE(1248), @@ -249258,47 +252771,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -249311,19 +252824,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -249334,88 +252847,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1249] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5134), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1249), [sym_preproc_endregion] = STATE(1249), [sym_preproc_line] = STATE(1249), @@ -249425,47 +252940,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2217), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -249478,19 +252993,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -249501,88 +253016,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1250] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4190), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1250), [sym_preproc_endregion] = STATE(1250), [sym_preproc_line] = STATE(1250), @@ -249592,47 +253109,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -249645,19 +253162,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -249674,82 +253191,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1251] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5133), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1251), [sym_preproc_endregion] = STATE(1251), [sym_preproc_line] = STATE(1251), @@ -249759,47 +253278,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -249812,19 +253331,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -249835,88 +253354,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1252] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5132), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1252), [sym_preproc_endregion] = STATE(1252), [sym_preproc_line] = STATE(1252), @@ -249926,47 +253447,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -249979,19 +253500,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -250002,88 +253523,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1253] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5121), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1253), [sym_preproc_endregion] = STATE(1253), [sym_preproc_line] = STATE(1253), @@ -250093,47 +253616,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -250146,19 +253669,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -250169,88 +253692,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1254] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4475), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1254), [sym_preproc_endregion] = STATE(1254), [sym_preproc_line] = STATE(1254), @@ -250260,47 +253785,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [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), @@ -250313,19 +253838,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -250336,88 +253861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1255] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4809), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1255), [sym_preproc_endregion] = STATE(1255), [sym_preproc_line] = STATE(1255), @@ -250427,47 +253954,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -250480,19 +254007,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -250509,82 +254036,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1256] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5118), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1256), [sym_preproc_endregion] = STATE(1256), [sym_preproc_line] = STATE(1256), @@ -250594,47 +254123,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -250647,19 +254176,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -250670,88 +254199,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1257] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5228), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1257), [sym_preproc_endregion] = STATE(1257), [sym_preproc_line] = STATE(1257), @@ -250761,47 +254292,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -250814,19 +254345,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -250843,82 +254374,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1258] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1258), [sym_preproc_endregion] = STATE(1258), [sym_preproc_line] = STATE(1258), @@ -250928,47 +254461,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -250981,19 +254514,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -251004,88 +254537,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1259] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5703), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5115), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3512), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5992), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7121), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1259), [sym_preproc_endregion] = STATE(1259), [sym_preproc_line] = STATE(1259), @@ -251095,47 +254630,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_ref] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_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(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [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(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2229), + [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), @@ -251148,19 +254683,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -251171,88 +254706,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1260] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1260), [sym_preproc_endregion] = STATE(1260), [sym_preproc_line] = STATE(1260), @@ -251262,214 +254799,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1261] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1261), - [sym_preproc_endregion] = STATE(1261), - [sym_preproc_line] = STATE(1261), - [sym_preproc_pragma] = STATE(1261), - [sym_preproc_nullable] = STATE(1261), - [sym_preproc_error] = STATE(1261), - [sym_preproc_warning] = STATE(1261), - [sym_preproc_define] = STATE(1261), - [sym_preproc_undef] = STATE(1261), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -251482,19 +254852,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(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), + }, + [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_preproc_region] = STATE(1261), + [sym_preproc_endregion] = STATE(1261), + [sym_preproc_line] = STATE(1261), + [sym_preproc_pragma] = STATE(1261), + [sym_preproc_nullable] = STATE(1261), + [sym_preproc_error] = STATE(1261), + [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), + [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_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_STAR] = ACTIONS(1905), + [anon_sym_CARET] = ACTIONS(1903), + [anon_sym_AMP] = ACTIONS(1903), + [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(1907), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -251511,82 +255050,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1262] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3969), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1262), [sym_preproc_endregion] = STATE(1262), [sym_preproc_line] = STATE(1262), @@ -251596,47 +255137,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -251649,19 +255190,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -251672,88 +255213,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1263] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4451), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1263), [sym_preproc_endregion] = STATE(1263), [sym_preproc_line] = STATE(1263), @@ -251763,47 +255306,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -251816,19 +255359,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -251845,82 +255388,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1264] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5314), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1264), [sym_preproc_endregion] = STATE(1264), [sym_preproc_line] = STATE(1264), @@ -251930,47 +255475,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2195), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [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), @@ -251983,19 +255528,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -252012,82 +255557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1265] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4453), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1265), [sym_preproc_endregion] = STATE(1265), [sym_preproc_line] = STATE(1265), @@ -252097,47 +255644,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -252150,19 +255697,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -252179,82 +255726,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1266] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4454), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1266), [sym_preproc_endregion] = STATE(1266), [sym_preproc_line] = STATE(1266), @@ -252264,47 +255813,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -252317,19 +255866,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -252346,82 +255895,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1267] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4455), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1267), [sym_preproc_endregion] = STATE(1267), [sym_preproc_line] = STATE(1267), @@ -252431,47 +255982,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -252484,19 +256035,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -252507,88 +256058,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1268] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1268), [sym_preproc_endregion] = STATE(1268), [sym_preproc_line] = STATE(1268), @@ -252598,47 +256151,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), + [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(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -252651,19 +256204,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -252680,82 +256233,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1269] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4458), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1269), [sym_preproc_endregion] = STATE(1269), [sym_preproc_line] = STATE(1269), @@ -252765,47 +256320,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252818,19 +256373,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -252841,88 +256396,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1270] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4459), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1270), [sym_preproc_endregion] = STATE(1270), [sym_preproc_line] = STATE(1270), @@ -252932,47 +256489,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -252985,19 +256542,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -253008,88 +256565,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1271] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4457), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1271), [sym_preproc_endregion] = STATE(1271), [sym_preproc_line] = STATE(1271), @@ -253099,47 +256658,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253152,19 +256711,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -253175,88 +256734,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1272] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4460), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1272), [sym_preproc_endregion] = STATE(1272), [sym_preproc_line] = STATE(1272), @@ -253266,47 +256827,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253319,19 +256880,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -253342,88 +256903,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1273] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4461), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1273), [sym_preproc_endregion] = STATE(1273), [sym_preproc_line] = STATE(1273), @@ -253433,47 +256996,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253486,19 +257049,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -253509,88 +257072,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1274] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3439), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5975), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7243), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1274), [sym_preproc_endregion] = STATE(1274), [sym_preproc_line] = STATE(1274), @@ -253600,47 +257165,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1537), - [anon_sym_ref] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1543), - [anon_sym_TILDE] = ACTIONS(1543), - [anon_sym_PLUS_PLUS] = ACTIONS(1543), - [anon_sym_DASH_DASH] = ACTIONS(1543), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1543), - [anon_sym_AMP] = ACTIONS(1543), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1547), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253653,19 +257218,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -253676,88 +257241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1275] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2771), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1275), [sym_preproc_endregion] = STATE(1275), [sym_preproc_line] = STATE(1275), @@ -253767,47 +257334,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1545), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1319), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253820,19 +257387,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -253843,88 +257410,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1276] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3494), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5964), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7092), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1276), [sym_preproc_endregion] = STATE(1276), [sym_preproc_line] = STATE(1276), @@ -253934,47 +257503,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_ref] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_CARET] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2033), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -253987,19 +257556,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -254010,88 +257579,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1277] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1277), [sym_preproc_endregion] = STATE(1277), [sym_preproc_line] = STATE(1277), @@ -254101,47 +257672,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254154,19 +257725,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -254177,88 +257748,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1278] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5706), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2326), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3372), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5967), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7281), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1278), [sym_preproc_endregion] = STATE(1278), [sym_preproc_line] = STATE(1278), @@ -254268,47 +257841,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1911), - [anon_sym_ref] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1915), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_CARET] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1925), - [anon_sym_DOT_DOT] = ACTIONS(1927), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254321,19 +257894,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -254344,88 +257917,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1279] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1279), [sym_preproc_endregion] = STATE(1279), [sym_preproc_line] = STATE(1279), @@ -254435,47 +258010,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254488,19 +258063,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -254511,88 +258086,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1280] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5050), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1280), [sym_preproc_endregion] = STATE(1280), [sym_preproc_line] = STATE(1280), @@ -254602,47 +258179,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254655,19 +258232,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -254678,88 +258255,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1281] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5707), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3366), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5969), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7344), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1281), [sym_preproc_endregion] = STATE(1281), [sym_preproc_line] = STATE(1281), @@ -254769,47 +258348,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_ref] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1787), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1791), - [anon_sym_PLUS_PLUS] = ACTIONS(1791), - [anon_sym_DASH_DASH] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1789), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_CARET] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1795), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1797), - [anon_sym_DOT_DOT] = ACTIONS(1799), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254822,19 +258401,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -254845,88 +258424,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1282] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2539), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1282), [sym_preproc_endregion] = STATE(1282), [sym_preproc_line] = STATE(1282), @@ -254936,47 +258517,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1165), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -254989,19 +258570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -255012,88 +258593,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1283] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4195), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1283), [sym_preproc_endregion] = STATE(1283), [sym_preproc_line] = STATE(1283), @@ -255103,47 +258686,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -255156,19 +258739,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -255185,82 +258768,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1284] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5213), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1284), [sym_preproc_endregion] = STATE(1284), [sym_preproc_line] = STATE(1284), @@ -255270,47 +258855,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255323,19 +258908,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -255346,88 +258931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1285] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3060), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3392), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5972), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7378), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1285), [sym_preproc_endregion] = STATE(1285), [sym_preproc_line] = STATE(1285), @@ -255437,47 +259024,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_ref] = ACTIONS(1663), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1667), - [anon_sym_TILDE] = ACTIONS(1667), - [anon_sym_PLUS_PLUS] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1665), - [anon_sym_DASH] = ACTIONS(1665), - [anon_sym_STAR] = ACTIONS(1669), - [anon_sym_CARET] = ACTIONS(1667), - [anon_sym_AMP] = ACTIONS(1667), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1671), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1673), - [anon_sym_DOT_DOT] = ACTIONS(1675), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -255490,19 +259077,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -255513,88 +259100,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1286] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5428), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1286), [sym_preproc_endregion] = STATE(1286), [sym_preproc_line] = STATE(1286), @@ -255604,47 +259193,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -255669,7 +259258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -255686,82 +259275,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1287] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1287), [sym_preproc_endregion] = STATE(1287), [sym_preproc_line] = STATE(1287), @@ -255771,46 +259362,384 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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), + }, + [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_preproc_region] = STATE(1288), + [sym_preproc_endregion] = STATE(1288), + [sym_preproc_line] = STATE(1288), + [sym_preproc_pragma] = STATE(1288), + [sym_preproc_nullable] = STATE(1288), + [sym_preproc_error] = STATE(1288), + [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), + [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), + }, + [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_preproc_region] = STATE(1289), + [sym_preproc_endregion] = STATE(1289), + [sym_preproc_line] = STATE(1289), + [sym_preproc_pragma] = STATE(1289), + [sym_preproc_nullable] = STATE(1289), + [sym_preproc_error] = STATE(1289), + [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), + [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_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(1321), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1323), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -255836,7 +259765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -255852,133 +259781,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), }, - [1288] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5473), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1288), - [sym_preproc_endregion] = STATE(1288), - [sym_preproc_line] = STATE(1288), - [sym_preproc_pragma] = STATE(1288), - [sym_preproc_nullable] = STATE(1288), - [sym_preproc_error] = STATE(1288), - [sym_preproc_warning] = STATE(1288), - [sym_preproc_define] = STATE(1288), - [sym_preproc_undef] = STATE(1288), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1290), + [sym_preproc_endregion] = STATE(1290), + [sym_preproc_line] = STATE(1290), + [sym_preproc_pragma] = STATE(1290), + [sym_preproc_nullable] = STATE(1290), + [sym_preproc_error] = STATE(1290), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256003,7 +259934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -256019,133 +259950,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), }, - [1289] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1289), - [sym_preproc_endregion] = STATE(1289), - [sym_preproc_line] = STATE(1289), - [sym_preproc_pragma] = STATE(1289), - [sym_preproc_nullable] = STATE(1289), - [sym_preproc_error] = STATE(1289), - [sym_preproc_warning] = STATE(1289), - [sym_preproc_define] = STATE(1289), - [sym_preproc_undef] = STATE(1289), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1291), + [sym_preproc_endregion] = STATE(1291), + [sym_preproc_line] = STATE(1291), + [sym_preproc_pragma] = STATE(1291), + [sym_preproc_nullable] = STATE(1291), + [sym_preproc_error] = STATE(1291), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256170,7 +260103,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -256186,417 +260119,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), }, - [1290] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3590), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1290), - [sym_preproc_endregion] = STATE(1290), - [sym_preproc_line] = STATE(1290), - [sym_preproc_pragma] = STATE(1290), - [sym_preproc_nullable] = STATE(1290), - [sym_preproc_error] = STATE(1290), - [sym_preproc_warning] = STATE(1290), - [sym_preproc_define] = STATE(1290), - [sym_preproc_undef] = STATE(1290), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1291] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1291), - [sym_preproc_endregion] = STATE(1291), - [sym_preproc_line] = STATE(1291), - [sym_preproc_pragma] = STATE(1291), - [sym_preproc_nullable] = STATE(1291), - [sym_preproc_error] = STATE(1291), - [sym_preproc_warning] = STATE(1291), - [sym_preproc_define] = STATE(1291), - [sym_preproc_undef] = STATE(1291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, [1292] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4924), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3442), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7267), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1292), [sym_preproc_endregion] = STATE(1292), [sym_preproc_line] = STATE(1292), @@ -256606,47 +260207,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_ref] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1765), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256659,19 +260260,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -256682,88 +260283,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1293] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1293), [sym_preproc_endregion] = STATE(1293), [sym_preproc_line] = STATE(1293), @@ -256773,47 +260376,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -256826,19 +260429,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -256849,88 +260452,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1294] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3592), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1294), [sym_preproc_endregion] = STATE(1294), [sym_preproc_line] = STATE(1294), @@ -256940,47 +260545,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [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), @@ -256993,19 +260598,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -257016,88 +260621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1295] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3555), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1295), [sym_preproc_endregion] = STATE(1295), [sym_preproc_line] = STATE(1295), @@ -257107,47 +260714,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257160,19 +260767,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -257183,88 +260790,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1296] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3604), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1296), [sym_preproc_endregion] = STATE(1296), [sym_preproc_line] = STATE(1296), @@ -257274,47 +260883,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257327,19 +260936,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -257350,88 +260959,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1297] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4883), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1297), [sym_preproc_endregion] = STATE(1297), [sym_preproc_line] = STATE(1297), @@ -257441,47 +261052,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257506,7 +261117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -257523,82 +261134,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1298] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1298), [sym_preproc_endregion] = STATE(1298), [sym_preproc_line] = STATE(1298), @@ -257608,47 +261221,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257673,7 +261286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -257690,82 +261303,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1299] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3605), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1299), [sym_preproc_endregion] = STATE(1299), [sym_preproc_line] = STATE(1299), @@ -257775,47 +261390,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257828,19 +261443,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -257851,88 +261466,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1300] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3607), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1300), [sym_preproc_endregion] = STATE(1300), [sym_preproc_line] = STATE(1300), @@ -257942,47 +261559,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -257995,19 +261612,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -258018,88 +261635,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1301] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5001), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1301), [sym_preproc_endregion] = STATE(1301), [sym_preproc_line] = STATE(1301), @@ -258109,47 +261728,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258162,19 +261781,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -258185,88 +261804,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1302] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5208), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1302), [sym_preproc_endregion] = STATE(1302), [sym_preproc_line] = STATE(1302), @@ -258276,47 +261897,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258341,7 +261962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -258358,82 +261979,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1303] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5222), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1303), [sym_preproc_endregion] = STATE(1303), [sym_preproc_line] = STATE(1303), @@ -258443,47 +262066,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258508,7 +262131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -258525,82 +262148,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1304] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5246), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1304), [sym_preproc_endregion] = STATE(1304), [sym_preproc_line] = STATE(1304), @@ -258610,47 +262235,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258675,7 +262300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -258692,82 +262317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1305] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5247), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1305), [sym_preproc_endregion] = STATE(1305), [sym_preproc_line] = STATE(1305), @@ -258777,47 +262404,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258842,7 +262469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -258859,82 +262486,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1306] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5248), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1306), [sym_preproc_endregion] = STATE(1306), [sym_preproc_line] = STATE(1306), @@ -258944,47 +262573,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -258997,19 +262626,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -259020,88 +262649,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1307] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5349), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1307), [sym_preproc_endregion] = STATE(1307), [sym_preproc_line] = STATE(1307), @@ -259111,47 +262742,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259176,7 +262807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -259193,82 +262824,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1308] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5252), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1308), [sym_preproc_endregion] = STATE(1308), [sym_preproc_line] = STATE(1308), @@ -259278,47 +262911,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259331,19 +262964,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -259360,82 +262993,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1309] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5254), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1309), [sym_preproc_endregion] = STATE(1309), [sym_preproc_line] = STATE(1309), @@ -259445,47 +263080,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2239), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259510,7 +263145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -259527,82 +263162,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1310] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5255), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1310), [sym_preproc_endregion] = STATE(1310), [sym_preproc_line] = STATE(1310), @@ -259612,47 +263249,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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_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(2153), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(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), + }, + [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_preproc_region] = STATE(1311), + [sym_preproc_endregion] = STATE(1311), + [sym_preproc_line] = STATE(1311), + [sym_preproc_pragma] = STATE(1311), + [sym_preproc_nullable] = STATE(1311), + [sym_preproc_error] = STATE(1311), + [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), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -259665,19 +263471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -259693,133 +263499,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), }, - [1311] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5052), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1311), - [sym_preproc_endregion] = STATE(1311), - [sym_preproc_line] = STATE(1311), - [sym_preproc_pragma] = STATE(1311), - [sym_preproc_nullable] = STATE(1311), - [sym_preproc_error] = STATE(1311), - [sym_preproc_warning] = STATE(1311), - [sym_preproc_define] = STATE(1311), - [sym_preproc_undef] = STATE(1311), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1312), + [sym_preproc_endregion] = STATE(1312), + [sym_preproc_line] = STATE(1312), + [sym_preproc_pragma] = STATE(1312), + [sym_preproc_nullable] = STATE(1312), + [sym_preproc_error] = STATE(1312), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -259832,520 +263640,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(127), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_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(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), + }, + [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_preproc_region] = STATE(1313), + [sym_preproc_endregion] = STATE(1313), + [sym_preproc_line] = STATE(1313), + [sym_preproc_pragma] = STATE(1313), + [sym_preproc_nullable] = STATE(1313), + [sym_preproc_error] = STATE(1313), + [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), + [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_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_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(1889), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, + [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_preproc_region] = STATE(1314), + [sym_preproc_endregion] = STATE(1314), + [sym_preproc_line] = STATE(1314), + [sym_preproc_pragma] = STATE(1314), + [sym_preproc_nullable] = STATE(1314), + [sym_preproc_error] = STATE(1314), + [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), + [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_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_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(1889), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1312] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3608), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1312), - [sym_preproc_endregion] = STATE(1312), - [sym_preproc_line] = STATE(1312), - [sym_preproc_pragma] = STATE(1312), - [sym_preproc_nullable] = STATE(1312), - [sym_preproc_error] = STATE(1312), - [sym_preproc_warning] = STATE(1312), - [sym_preproc_define] = STATE(1312), - [sym_preproc_undef] = STATE(1312), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1313] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5257), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1313), - [sym_preproc_endregion] = STATE(1313), - [sym_preproc_line] = STATE(1313), - [sym_preproc_pragma] = STATE(1313), - [sym_preproc_nullable] = STATE(1313), - [sym_preproc_error] = STATE(1313), - [sym_preproc_warning] = STATE(1313), - [sym_preproc_define] = STATE(1313), - [sym_preproc_undef] = STATE(1313), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1314] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5258), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1314), - [sym_preproc_endregion] = STATE(1314), - [sym_preproc_line] = STATE(1314), - [sym_preproc_pragma] = STATE(1314), - [sym_preproc_nullable] = STATE(1314), - [sym_preproc_error] = STATE(1314), - [sym_preproc_warning] = STATE(1314), - [sym_preproc_define] = STATE(1314), - [sym_preproc_undef] = STATE(1314), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [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(1085), + [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), @@ -260362,82 +264007,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1315] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5259), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1315), [sym_preproc_endregion] = STATE(1315), [sym_preproc_line] = STATE(1315), @@ -260447,47 +264094,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260500,19 +264147,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -260529,82 +264176,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1316] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5267), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1316), [sym_preproc_endregion] = STATE(1316), [sym_preproc_line] = STATE(1316), @@ -260614,47 +264263,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260667,19 +264316,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -260696,82 +264345,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1317] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5225), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1317), [sym_preproc_endregion] = STATE(1317), [sym_preproc_line] = STATE(1317), @@ -260781,47 +264432,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -260834,19 +264485,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -260863,82 +264514,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1318] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5163), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1318), [sym_preproc_endregion] = STATE(1318), [sym_preproc_line] = STATE(1318), @@ -260948,47 +264601,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261001,19 +264654,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -261030,82 +264683,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1319] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5226), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1319), [sym_preproc_endregion] = STATE(1319), [sym_preproc_line] = STATE(1319), @@ -261115,47 +264770,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261168,19 +264823,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -261197,82 +264852,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1320] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3609), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1320), [sym_preproc_endregion] = STATE(1320), [sym_preproc_line] = STATE(1320), @@ -261282,47 +264939,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261335,19 +264992,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -261358,88 +265015,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1321] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5191), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1321), [sym_preproc_endregion] = STATE(1321), [sym_preproc_line] = STATE(1321), @@ -261449,47 +265108,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261502,19 +265161,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -261531,82 +265190,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1322] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5234), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1322), [sym_preproc_endregion] = STATE(1322), [sym_preproc_line] = STATE(1322), @@ -261616,47 +265277,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261669,19 +265330,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -261698,82 +265359,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1323] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5236), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1323), [sym_preproc_endregion] = STATE(1323), [sym_preproc_line] = STATE(1323), @@ -261783,47 +265446,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -261836,19 +265499,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -261865,82 +265528,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1324] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1324), [sym_preproc_endregion] = STATE(1324), [sym_preproc_line] = STATE(1324), @@ -261950,47 +265615,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [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), @@ -262003,19 +265668,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -262026,88 +265691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1325] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4150), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1325), [sym_preproc_endregion] = STATE(1325), [sym_preproc_line] = STATE(1325), @@ -262117,47 +265784,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262170,19 +265837,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -262193,88 +265860,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1326] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3618), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1326), [sym_preproc_endregion] = STATE(1326), [sym_preproc_line] = STATE(1326), @@ -262284,214 +265953,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1327] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5325), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1327), - [sym_preproc_endregion] = STATE(1327), - [sym_preproc_line] = STATE(1327), - [sym_preproc_pragma] = STATE(1327), - [sym_preproc_nullable] = STATE(1327), - [sym_preproc_error] = STATE(1327), - [sym_preproc_warning] = STATE(1327), - [sym_preproc_define] = STATE(1327), - [sym_preproc_undef] = STATE(1327), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262504,19 +266006,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -262532,83 +266034,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), }, + [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_preproc_region] = STATE(1327), + [sym_preproc_endregion] = STATE(1327), + [sym_preproc_line] = STATE(1327), + [sym_preproc_pragma] = STATE(1327), + [sym_preproc_nullable] = STATE(1327), + [sym_preproc_error] = STATE(1327), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3623), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -262618,47 +266291,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1328), [sym_preproc_define] = STATE(1328), [sym_preproc_undef] = STATE(1328), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -262671,19 +266344,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -262694,88 +266367,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1329] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3625), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -262785,47 +266460,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1329), [sym_preproc_define] = STATE(1329), [sym_preproc_undef] = STATE(1329), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [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), @@ -262838,19 +266513,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -262861,88 +266536,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1330] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -262952,214 +266629,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1330), [sym_preproc_define] = STATE(1330), [sym_preproc_undef] = STATE(1330), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1331] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4845), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -263172,19 +266682,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -263200,133 +266710,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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -263351,7 +266863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -263367,83 +266879,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), }, + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5719), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5250), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -263453,47 +267136,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1333), [sym_preproc_define] = STATE(1333), [sym_preproc_undef] = STATE(1333), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -263506,19 +267189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -263535,82 +267218,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1334] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5304), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1334), [sym_preproc_endregion] = STATE(1334), [sym_preproc_line] = STATE(1334), @@ -263620,47 +267305,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1093), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), + [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(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -263685,7 +267370,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -263702,82 +267387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1335] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5200), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1335), [sym_preproc_endregion] = STATE(1335), [sym_preproc_line] = STATE(1335), @@ -263787,47 +267474,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -263840,19 +267527,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -263863,88 +267550,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1336] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3596), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1336), [sym_preproc_endregion] = STATE(1336), [sym_preproc_line] = STATE(1336), @@ -263954,47 +267643,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264007,19 +267696,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -264030,88 +267719,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1337] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1337), [sym_preproc_endregion] = STATE(1337), [sym_preproc_line] = STATE(1337), @@ -264121,47 +267812,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264186,7 +267877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -264203,82 +267894,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1338] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5694), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3564), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(2861), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5962), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7210), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1338), [sym_preproc_endregion] = STATE(1338), [sym_preproc_line] = STATE(1338), @@ -264288,47 +267981,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1143), - [anon_sym_ref] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1159), - [anon_sym_PLUS_PLUS] = ACTIONS(1159), - [anon_sym_DASH_DASH] = ACTIONS(1159), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1157), - [anon_sym_DASH] = ACTIONS(1157), - [anon_sym_STAR] = ACTIONS(1163), - [anon_sym_CARET] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1159), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1173), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1175), - [anon_sym_DOT_DOT] = ACTIONS(1177), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264341,19 +268034,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -264364,88 +268057,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1339] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1339), [sym_preproc_endregion] = STATE(1339), [sym_preproc_line] = STATE(1339), @@ -264455,47 +268150,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264508,19 +268203,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -264531,88 +268226,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1340] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5305), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1340), [sym_preproc_endregion] = STATE(1340), [sym_preproc_line] = STATE(1340), @@ -264622,47 +268319,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264687,7 +268384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -264704,82 +268401,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1341] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3903), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1341), [sym_preproc_endregion] = STATE(1341), [sym_preproc_line] = STATE(1341), @@ -264789,47 +268488,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -264842,19 +268541,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -264865,88 +268564,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1342] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1342), [sym_preproc_endregion] = STATE(1342), [sym_preproc_line] = STATE(1342), @@ -264956,47 +268657,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265021,7 +268722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -265038,82 +268739,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1343] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3902), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1343), [sym_preproc_endregion] = STATE(1343), [sym_preproc_line] = STATE(1343), @@ -265123,47 +268826,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265176,19 +268879,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -265199,88 +268902,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1344] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3886), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1344), [sym_preproc_endregion] = STATE(1344), [sym_preproc_line] = STATE(1344), @@ -265290,47 +268995,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265343,19 +269048,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -265366,88 +269071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1345] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4008), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1345), [sym_preproc_endregion] = STATE(1345), [sym_preproc_line] = STATE(1345), @@ -265457,47 +269164,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265511,18 +269218,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -265533,88 +269240,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1346] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3881), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1346), [sym_preproc_endregion] = STATE(1346), [sym_preproc_line] = STATE(1346), @@ -265624,47 +269333,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265677,19 +269386,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -265700,88 +269409,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1347] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4026), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1347), [sym_preproc_endregion] = STATE(1347), [sym_preproc_line] = STATE(1347), @@ -265791,47 +269502,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -265844,19 +269555,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -265867,88 +269578,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1348] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3986), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1348), [sym_preproc_endregion] = STATE(1348), [sym_preproc_line] = STATE(1348), @@ -265958,47 +269671,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266011,19 +269724,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -266034,88 +269747,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1349] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3880), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1349), [sym_preproc_endregion] = STATE(1349), [sym_preproc_line] = STATE(1349), @@ -266125,47 +269840,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266178,19 +269893,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -266201,88 +269916,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1350] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1350), [sym_preproc_endregion] = STATE(1350), [sym_preproc_line] = STATE(1350), @@ -266292,214 +270009,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1351] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4785), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1351), - [sym_preproc_endregion] = STATE(1351), - [sym_preproc_line] = STATE(1351), - [sym_preproc_pragma] = STATE(1351), - [sym_preproc_nullable] = STATE(1351), - [sym_preproc_error] = STATE(1351), - [sym_preproc_warning] = STATE(1351), - [sym_preproc_define] = STATE(1351), - [sym_preproc_undef] = STATE(1351), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266512,19 +270062,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -266540,83 +270090,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), }, + [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_preproc_region] = STATE(1351), + [sym_preproc_endregion] = STATE(1351), + [sym_preproc_line] = STATE(1351), + [sym_preproc_pragma] = STATE(1351), + [sym_preproc_nullable] = STATE(1351), + [sym_preproc_error] = STATE(1351), + [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), + [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_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(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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, [1352] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1352), [sym_preproc_endregion] = STATE(1352), [sym_preproc_line] = STATE(1352), @@ -266626,47 +270347,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266680,18 +270401,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -266702,88 +270423,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1353] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4277), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1353), [sym_preproc_endregion] = STATE(1353), [sym_preproc_line] = STATE(1353), @@ -266793,47 +270516,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -266846,19 +270569,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -266869,88 +270592,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1354] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4791), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1354), [sym_preproc_endregion] = STATE(1354), [sym_preproc_line] = STATE(1354), @@ -266960,47 +270685,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267013,19 +270738,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -267042,82 +270767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1355] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1355), [sym_preproc_endregion] = STATE(1355), [sym_preproc_line] = STATE(1355), @@ -267127,47 +270854,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267180,19 +270907,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -267203,88 +270930,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1356] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4887), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1356), [sym_preproc_endregion] = STATE(1356), [sym_preproc_line] = STATE(1356), @@ -267294,47 +271023,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267347,19 +271076,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -267370,88 +271099,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1357] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3854), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1357), [sym_preproc_endregion] = STATE(1357), [sym_preproc_line] = STATE(1357), @@ -267461,47 +271192,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [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), @@ -267514,19 +271245,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -267537,88 +271268,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1358] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4285), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1358), [sym_preproc_endregion] = STATE(1358), [sym_preproc_line] = STATE(1358), @@ -267628,47 +271361,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267681,19 +271414,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -267704,88 +271437,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1359] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4553), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1359), [sym_preproc_endregion] = STATE(1359), [sym_preproc_line] = STATE(1359), @@ -267795,47 +271530,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -267848,19 +271583,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -267871,88 +271606,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1360] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3852), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1360), [sym_preproc_endregion] = STATE(1360), [sym_preproc_line] = STATE(1360), @@ -267962,47 +271699,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -268015,19 +271752,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -268038,88 +271775,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1361] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4552), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1361), [sym_preproc_endregion] = STATE(1361), [sym_preproc_line] = STATE(1361), @@ -268129,381 +271868,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1362] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4551), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1362), - [sym_preproc_endregion] = STATE(1362), - [sym_preproc_line] = STATE(1362), - [sym_preproc_pragma] = STATE(1362), - [sym_preproc_nullable] = STATE(1362), - [sym_preproc_error] = STATE(1362), - [sym_preproc_warning] = STATE(1362), - [sym_preproc_define] = STATE(1362), - [sym_preproc_undef] = STATE(1362), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1859), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1363] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4794), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1363), - [sym_preproc_endregion] = STATE(1363), - [sym_preproc_line] = STATE(1363), - [sym_preproc_pragma] = STATE(1363), - [sym_preproc_nullable] = STATE(1363), - [sym_preproc_error] = STATE(1363), - [sym_preproc_warning] = STATE(1363), - [sym_preproc_define] = STATE(1363), - [sym_preproc_undef] = STATE(1363), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -268516,19 +271921,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(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), + }, + [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_preproc_region] = STATE(1362), + [sym_preproc_endregion] = STATE(1362), + [sym_preproc_line] = STATE(1362), + [sym_preproc_pragma] = STATE(1362), + [sym_preproc_nullable] = STATE(1362), + [sym_preproc_error] = STATE(1362), + [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), + [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_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), + }, + [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_preproc_region] = STATE(1363), + [sym_preproc_endregion] = STATE(1363), + [sym_preproc_line] = STATE(1363), + [sym_preproc_pragma] = STATE(1363), + [sym_preproc_nullable] = STATE(1363), + [sym_preproc_error] = STATE(1363), + [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), + [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_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), @@ -268545,82 +272288,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1364] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4549), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1364), [sym_preproc_endregion] = STATE(1364), [sym_preproc_line] = STATE(1364), @@ -268630,47 +272375,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -268683,19 +272428,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -268706,88 +272451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1365] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4604), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1365), [sym_preproc_endregion] = STATE(1365), [sym_preproc_line] = STATE(1365), @@ -268797,47 +272544,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -268850,19 +272597,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -268873,88 +272620,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1366] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4547), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1366), [sym_preproc_endregion] = STATE(1366), [sym_preproc_line] = STATE(1366), @@ -268964,47 +272713,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269017,19 +272766,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269040,88 +272789,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1367] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4546), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1367), [sym_preproc_endregion] = STATE(1367), [sym_preproc_line] = STATE(1367), @@ -269131,47 +272882,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269184,19 +272935,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269207,88 +272958,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1368] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4545), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1368), [sym_preproc_endregion] = STATE(1368), [sym_preproc_line] = STATE(1368), @@ -269298,47 +273051,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269351,19 +273104,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269374,88 +273127,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1369] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1369), [sym_preproc_endregion] = STATE(1369), [sym_preproc_line] = STATE(1369), @@ -269465,47 +273220,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269518,19 +273273,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269541,88 +273296,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1370] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1370), [sym_preproc_endregion] = STATE(1370), [sym_preproc_line] = STATE(1370), @@ -269632,47 +273389,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269685,19 +273442,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269708,88 +273465,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1371] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1371), [sym_preproc_endregion] = STATE(1371), [sym_preproc_line] = STATE(1371), @@ -269799,47 +273558,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -269852,19 +273611,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -269875,88 +273634,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1372] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1372), [sym_preproc_endregion] = STATE(1372), [sym_preproc_line] = STATE(1372), @@ -269966,47 +273727,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1721), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270019,19 +273780,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -270042,88 +273803,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1373] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5718), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4297), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3154), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5968), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7097), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1373), [sym_preproc_endregion] = STATE(1373), [sym_preproc_line] = STATE(1373), @@ -270133,47 +273896,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_ref] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1773), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_PLUS_PLUS] = ACTIONS(1773), - [anon_sym_DASH_DASH] = ACTIONS(1773), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1771), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1773), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1777), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1781), + [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), @@ -270186,19 +273949,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -270209,88 +273972,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1374] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4795), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1374), [sym_preproc_endregion] = STATE(1374), [sym_preproc_line] = STATE(1374), @@ -270300,47 +274065,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270353,19 +274118,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -270376,88 +274141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1375] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4237), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1375), [sym_preproc_endregion] = STATE(1375), [sym_preproc_line] = STATE(1375), @@ -270467,47 +274234,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -270520,19 +274287,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -270549,82 +274316,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1376] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4830), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1376), [sym_preproc_endregion] = STATE(1376), [sym_preproc_line] = STATE(1376), @@ -270634,47 +274403,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -270687,19 +274456,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -270716,82 +274485,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1377] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4233), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1377), [sym_preproc_endregion] = STATE(1377), [sym_preproc_line] = STATE(1377), @@ -270801,47 +274572,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -270854,19 +274625,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -270877,88 +274648,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1378] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4818), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1378), [sym_preproc_endregion] = STATE(1378), [sym_preproc_line] = STATE(1378), @@ -270968,47 +274741,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -271021,19 +274794,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -271050,82 +274823,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1379] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4825), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1379), [sym_preproc_endregion] = STATE(1379), [sym_preproc_line] = STATE(1379), @@ -271135,47 +274910,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271188,19 +274963,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -271217,82 +274992,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1380] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1380), [sym_preproc_endregion] = STATE(1380), [sym_preproc_line] = STATE(1380), @@ -271302,47 +275079,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -271355,19 +275132,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -271384,82 +275161,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1381] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4213), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1381), [sym_preproc_endregion] = STATE(1381), [sym_preproc_line] = STATE(1381), @@ -271469,47 +275248,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271522,19 +275301,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -271551,82 +275330,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1382] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5216), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1382), [sym_preproc_endregion] = STATE(1382), [sym_preproc_line] = STATE(1382), @@ -271636,47 +275417,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1365), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1367), + [anon_sym_DOT_DOT] = ACTIONS(1369), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -271689,19 +275470,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -271718,82 +275499,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1383] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4826), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1383), [sym_preproc_endregion] = STATE(1383), [sym_preproc_line] = STATE(1383), @@ -271803,47 +275586,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1525), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -271856,19 +275639,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -271885,82 +275668,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1384] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1384), [sym_preproc_endregion] = STATE(1384), [sym_preproc_line] = STATE(1384), @@ -271970,47 +275755,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272023,19 +275808,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -272046,88 +275831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1385] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5035), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1385), [sym_preproc_endregion] = STATE(1385), [sym_preproc_line] = STATE(1385), @@ -272137,47 +275924,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272190,19 +275977,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -272213,88 +276000,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1386] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5093), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1386), [sym_preproc_endregion] = STATE(1386), [sym_preproc_line] = STATE(1386), @@ -272304,47 +276093,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -272357,19 +276146,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -272380,88 +276169,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1387] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5094), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1387), [sym_preproc_endregion] = STATE(1387), [sym_preproc_line] = STATE(1387), @@ -272471,47 +276262,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -272524,19 +276315,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -272547,88 +276338,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1388] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5096), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1388), [sym_preproc_endregion] = STATE(1388), [sym_preproc_line] = STATE(1388), @@ -272638,47 +276431,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -272691,19 +276484,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -272714,88 +276507,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1389] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5098), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1389), [sym_preproc_endregion] = STATE(1389), [sym_preproc_line] = STATE(1389), @@ -272805,47 +276600,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -272858,19 +276653,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -272881,88 +276676,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1390] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5099), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1390), [sym_preproc_endregion] = STATE(1390), [sym_preproc_line] = STATE(1390), @@ -272972,47 +276769,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273025,19 +276822,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -273048,88 +276845,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1391] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5100), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1391), [sym_preproc_endregion] = STATE(1391), [sym_preproc_line] = STATE(1391), @@ -273139,47 +276938,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273192,19 +276991,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -273215,88 +277014,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1392] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5101), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1392), [sym_preproc_endregion] = STATE(1392), [sym_preproc_line] = STATE(1392), @@ -273306,47 +277107,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1721), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1725), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273359,19 +277160,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -273382,88 +277183,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1393] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5105), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1393), [sym_preproc_endregion] = STATE(1393), [sym_preproc_line] = STATE(1393), @@ -273473,47 +277276,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1363), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1323), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -273526,19 +277329,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -273549,88 +277352,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1394] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5107), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1394), [sym_preproc_endregion] = STATE(1394), [sym_preproc_line] = STATE(1394), @@ -273640,47 +277445,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -273693,19 +277498,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -273716,88 +277521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1395] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5109), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1395), [sym_preproc_endregion] = STATE(1395), [sym_preproc_line] = STATE(1395), @@ -273807,47 +277614,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -273860,19 +277667,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -273883,88 +277690,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1396] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5113), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1396), [sym_preproc_endregion] = STATE(1396), [sym_preproc_line] = STATE(1396), @@ -273974,47 +277783,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -274027,19 +277836,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -274050,88 +277859,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1397] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4405), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1397), [sym_preproc_endregion] = STATE(1397), [sym_preproc_line] = STATE(1397), @@ -274141,47 +277952,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -274194,19 +278005,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -274217,88 +278028,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1398] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4827), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1398), [sym_preproc_endregion] = STATE(1398), [sym_preproc_line] = STATE(1398), @@ -274308,47 +278121,385 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, + [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_preproc_region] = STATE(1399), + [sym_preproc_endregion] = STATE(1399), + [sym_preproc_line] = STATE(1399), + [sym_preproc_pragma] = STATE(1399), + [sym_preproc_nullable] = STATE(1399), + [sym_preproc_error] = STATE(1399), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1799), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -274361,19 +278512,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -274389,417 +278540,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), }, - [1399] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5114), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1399), - [sym_preproc_endregion] = STATE(1399), - [sym_preproc_line] = STATE(1399), - [sym_preproc_pragma] = STATE(1399), - [sym_preproc_nullable] = STATE(1399), - [sym_preproc_error] = STATE(1399), - [sym_preproc_warning] = STATE(1399), - [sym_preproc_define] = STATE(1399), - [sym_preproc_undef] = STATE(1399), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(2153), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1400] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4392), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, [1401] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3860), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1401), [sym_preproc_endregion] = STATE(1401), [sym_preproc_line] = STATE(1401), @@ -274809,47 +278628,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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(1851), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1263), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [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), @@ -274862,19 +278681,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -274885,88 +278704,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1402] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1402), [sym_preproc_endregion] = STATE(1402), [sym_preproc_line] = STATE(1402), @@ -274976,47 +278797,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -275029,19 +278850,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -275052,88 +278873,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1403] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5716), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5125), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3521), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5974), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7380), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1403), [sym_preproc_endregion] = STATE(1403), [sym_preproc_line] = STATE(1403), @@ -275143,47 +278966,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_ref] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(2153), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(2157), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_PLUS_PLUS] = ACTIONS(2157), - [anon_sym_DASH_DASH] = ACTIONS(2157), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2155), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_CARET] = ACTIONS(2157), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2161), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -275196,19 +279019,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -275219,88 +279042,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1404] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4040), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1404), [sym_preproc_endregion] = STATE(1404), [sym_preproc_line] = STATE(1404), @@ -275310,47 +279135,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -275363,19 +279188,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -275386,88 +279211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1405] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1405), [sym_preproc_endregion] = STATE(1405), [sym_preproc_line] = STATE(1405), @@ -275477,47 +279304,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -275530,19 +279357,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -275553,88 +279380,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1406] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1406), [sym_preproc_endregion] = STATE(1406), [sym_preproc_line] = STATE(1406), @@ -275644,164 +279473,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [1407] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4011), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1407), [sym_preproc_endregion] = STATE(1407), [sym_preproc_line] = STATE(1407), @@ -275811,47 +279642,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -275864,19 +279695,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -275887,88 +279718,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1408] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4259), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1408), [sym_preproc_endregion] = STATE(1408), [sym_preproc_line] = STATE(1408), @@ -275978,47 +279811,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -276031,19 +279864,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -276060,82 +279893,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1409] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4255), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1409), [sym_preproc_endregion] = STATE(1409), [sym_preproc_line] = STATE(1409), @@ -276145,47 +279980,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_checked] = ACTIONS(1067), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -276198,19 +280033,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -276227,82 +280062,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1410] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4253), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1410), [sym_preproc_endregion] = STATE(1410), [sym_preproc_line] = STATE(1410), @@ -276312,47 +280149,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -276365,19 +280202,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -276388,88 +280225,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1411] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4249), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1411), [sym_preproc_endregion] = STATE(1411), [sym_preproc_line] = STATE(1411), @@ -276479,47 +280318,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + }, + [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_preproc_region] = STATE(1412), + [sym_preproc_endregion] = STATE(1412), + [sym_preproc_line] = STATE(1412), + [sym_preproc_pragma] = STATE(1412), + [sym_preproc_nullable] = STATE(1412), + [sym_preproc_error] = STATE(1412), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -276532,19 +280540,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -276555,138 +280563,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [1412] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4246), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1412), - [sym_preproc_endregion] = STATE(1412), - [sym_preproc_line] = STATE(1412), - [sym_preproc_pragma] = STATE(1412), - [sym_preproc_nullable] = STATE(1412), - [sym_preproc_error] = STATE(1412), - [sym_preproc_warning] = STATE(1412), - [sym_preproc_define] = STATE(1412), - [sym_preproc_undef] = STATE(1412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1413), + [sym_preproc_endregion] = STATE(1413), + [sym_preproc_line] = STATE(1413), + [sym_preproc_pragma] = STATE(1413), + [sym_preproc_nullable] = STATE(1413), + [sym_preproc_error] = STATE(1413), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [anon_sym_checked] = ACTIONS(1067), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -276699,186 +280709,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1413] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4243), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1413), - [sym_preproc_endregion] = STATE(1413), - [sym_preproc_line] = STATE(1413), - [sym_preproc_pragma] = STATE(1413), - [sym_preproc_nullable] = STATE(1413), - [sym_preproc_error] = STATE(1413), - [sym_preproc_warning] = STATE(1413), - [sym_preproc_define] = STATE(1413), - [sym_preproc_undef] = STATE(1413), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -276895,82 +280738,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1414] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4236), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1414), [sym_preproc_endregion] = STATE(1414), [sym_preproc_line] = STATE(1414), @@ -276980,47 +280825,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1119), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1121), + [anon_sym_DOT_DOT] = ACTIONS(1125), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277033,19 +280878,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -277062,82 +280907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1415] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4228), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1415), [sym_preproc_endregion] = STATE(1415), [sym_preproc_line] = STATE(1415), @@ -277147,47 +280994,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -277200,19 +281047,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -277229,82 +281076,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1416] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4196), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1416), [sym_preproc_endregion] = STATE(1416), [sym_preproc_line] = STATE(1416), @@ -277314,47 +281163,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), + [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(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [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), @@ -277367,19 +281216,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -277396,82 +281245,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1417] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4225), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1417), [sym_preproc_endregion] = STATE(1417), [sym_preproc_line] = STATE(1417), @@ -277481,47 +281332,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277534,19 +281385,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -277557,88 +281408,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1418] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5150), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1418), [sym_preproc_endregion] = STATE(1418), [sym_preproc_line] = STATE(1418), @@ -277648,47 +281501,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -277713,7 +281566,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -277730,82 +281583,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1419] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5702), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4224), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3139), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5961), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7394), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1419), [sym_preproc_endregion] = STATE(1419), [sym_preproc_line] = STATE(1419), @@ -277815,47 +281670,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_ref] = ACTIONS(1341), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1099), - [anon_sym_TILDE] = ACTIONS(1099), - [anon_sym_PLUS_PLUS] = ACTIONS(1099), - [anon_sym_DASH_DASH] = ACTIONS(1099), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1101), - [anon_sym_DASH] = ACTIONS(1101), - [anon_sym_STAR] = ACTIONS(1343), - [anon_sym_CARET] = ACTIONS(1099), - [anon_sym_AMP] = ACTIONS(1099), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1347), - [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -277868,19 +281723,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -277891,88 +281746,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1420] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3985), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1420), [sym_preproc_endregion] = STATE(1420), [sym_preproc_line] = STATE(1420), @@ -277982,47 +281839,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278035,19 +281892,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -278058,88 +281915,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1421] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3613), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1421), [sym_preproc_endregion] = STATE(1421), [sym_preproc_line] = STATE(1421), @@ -278149,47 +282008,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -278202,19 +282061,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -278225,88 +282084,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1422] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3520), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1422), [sym_preproc_endregion] = STATE(1422), [sym_preproc_line] = STATE(1422), @@ -278316,47 +282177,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1737), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1649), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -278369,19 +282230,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -278392,88 +282253,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1423] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4000), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1423), [sym_preproc_endregion] = STATE(1423), [sym_preproc_line] = STATE(1423), @@ -278483,47 +282346,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278536,19 +282399,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -278559,88 +282422,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1424] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1424), [sym_preproc_endregion] = STATE(1424), [sym_preproc_line] = STATE(1424), @@ -278650,47 +282515,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278703,19 +282568,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -278726,88 +282591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1425] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4005), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1425), [sym_preproc_endregion] = STATE(1425), [sym_preproc_line] = STATE(1425), @@ -278817,47 +282684,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -278871,18 +282738,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -278893,88 +282760,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1426] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4017), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1426), [sym_preproc_endregion] = STATE(1426), [sym_preproc_line] = STATE(1426), @@ -278984,47 +282853,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279037,19 +282906,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -279060,88 +282929,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1427] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4018), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1427), [sym_preproc_endregion] = STATE(1427), [sym_preproc_line] = STATE(1427), @@ -279151,47 +283022,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -279205,18 +283076,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -279227,88 +283098,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1428] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4016), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1428), [sym_preproc_endregion] = STATE(1428), [sym_preproc_line] = STATE(1428), @@ -279318,47 +283191,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1428), [sym_preproc_define] = STATE(1428), [sym_preproc_undef] = STATE(1428), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(2291), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1263), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -279372,18 +283245,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -279394,88 +283267,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1429] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3816), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -279485,47 +283360,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1429), [sym_preproc_define] = STATE(1429), [sym_preproc_undef] = STATE(1429), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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__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_preproc_region] = STATE(1430), + [sym_preproc_endregion] = STATE(1430), + [sym_preproc_line] = STATE(1430), + [sym_preproc_pragma] = STATE(1430), + [sym_preproc_nullable] = STATE(1430), + [sym_preproc_error] = STATE(1430), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -279538,19 +283582,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -279561,138 +283605,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1430] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3796), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(1430), - [sym_preproc_endregion] = STATE(1430), - [sym_preproc_line] = STATE(1430), - [sym_preproc_pragma] = STATE(1430), - [sym_preproc_nullable] = STATE(1430), - [sym_preproc_error] = STATE(1430), - [sym_preproc_warning] = STATE(1430), - [sym_preproc_define] = STATE(1430), - [sym_preproc_undef] = STATE(1430), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_preproc_region] = STATE(1431), + [sym_preproc_endregion] = STATE(1431), + [sym_preproc_line] = STATE(1431), + [sym_preproc_pragma] = STATE(1431), + [sym_preproc_nullable] = STATE(1431), + [sym_preproc_error] = STATE(1431), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1719), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1323), + [anon_sym_scoped] = 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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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_preproc_region] = STATE(1432), + [sym_preproc_endregion] = STATE(1432), + [sym_preproc_line] = STATE(1432), + [sym_preproc_pragma] = STATE(1432), + [sym_preproc_nullable] = STATE(1432), + [sym_preproc_error] = STATE(1432), + [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), + [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(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -279705,19 +283920,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -279728,422 +283943,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, - [1431] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4006), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1431), - [sym_preproc_endregion] = STATE(1431), - [sym_preproc_line] = STATE(1431), - [sym_preproc_pragma] = STATE(1431), - [sym_preproc_nullable] = STATE(1431), - [sym_preproc_error] = STATE(1431), - [sym_preproc_warning] = STATE(1431), - [sym_preproc_define] = STATE(1431), - [sym_preproc_undef] = STATE(1431), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1432] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4144), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1432), - [sym_preproc_endregion] = STATE(1432), - [sym_preproc_line] = STATE(1432), - [sym_preproc_pragma] = STATE(1432), - [sym_preproc_nullable] = STATE(1432), - [sym_preproc_error] = STATE(1432), - [sym_preproc_warning] = STATE(1432), - [sym_preproc_define] = STATE(1432), - [sym_preproc_undef] = STATE(1432), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1433] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4013), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1433), [sym_preproc_endregion] = STATE(1433), [sym_preproc_line] = STATE(1433), @@ -280153,47 +284036,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -280207,18 +284090,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -280229,88 +284112,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1434] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4012), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1434), [sym_preproc_endregion] = STATE(1434), [sym_preproc_line] = STATE(1434), @@ -280320,47 +284205,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1809), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1817), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1821), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -280373,19 +284258,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -280396,88 +284281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1435] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4773), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1435), [sym_preproc_endregion] = STATE(1435), [sym_preproc_line] = STATE(1435), @@ -280487,47 +284374,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -280552,7 +284439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -280569,82 +284456,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1436] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3997), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1436), [sym_preproc_endregion] = STATE(1436), [sym_preproc_line] = STATE(1436), @@ -280654,47 +284543,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(2285), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2293), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -280707,19 +284596,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -280730,88 +284619,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1437] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4147), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1437), [sym_preproc_endregion] = STATE(1437), [sym_preproc_line] = STATE(1437), @@ -280821,47 +284712,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -280875,18 +284766,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -280897,88 +284788,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1438] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4010), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1438), [sym_preproc_endregion] = STATE(1438), [sym_preproc_line] = STATE(1438), @@ -280988,47 +284881,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281041,19 +284934,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -281064,88 +284957,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1439] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3612), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1439), [sym_preproc_endregion] = STATE(1439), [sym_preproc_line] = STATE(1439), @@ -281155,47 +285050,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -281208,19 +285103,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -281231,88 +285126,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1440] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1440), [sym_preproc_endregion] = STATE(1440), [sym_preproc_line] = STATE(1440), @@ -281322,47 +285219,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281376,18 +285273,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -281398,88 +285295,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1441] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3606), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1441), [sym_preproc_endregion] = STATE(1441), [sym_preproc_line] = STATE(1441), @@ -281489,47 +285388,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -281542,19 +285441,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -281565,88 +285464,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1442] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4152), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1442), [sym_preproc_endregion] = STATE(1442), [sym_preproc_line] = STATE(1442), @@ -281656,47 +285557,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -281709,19 +285610,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -281732,88 +285633,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1443] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3982), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1443), [sym_preproc_endregion] = STATE(1443), [sym_preproc_line] = STATE(1443), @@ -281823,47 +285726,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [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), @@ -281876,19 +285779,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -281899,88 +285802,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1444] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5701), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4535), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3308), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5991), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7307), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1444), [sym_preproc_endregion] = STATE(1444), [sym_preproc_line] = STATE(1444), @@ -281990,47 +285895,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_ref] = ACTIONS(1737), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1741), - [anon_sym_TILDE] = ACTIONS(1741), - [anon_sym_PLUS_PLUS] = ACTIONS(1741), - [anon_sym_DASH_DASH] = ACTIONS(1741), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1739), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_CARET] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(1741), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1537), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1749), + [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), @@ -282043,19 +285948,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -282066,88 +285971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1445] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4066), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1445), [sym_preproc_endregion] = STATE(1445), [sym_preproc_line] = STATE(1445), @@ -282157,47 +286064,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -282210,19 +286117,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -282233,88 +286140,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1446] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3575), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1446), [sym_preproc_endregion] = STATE(1446), [sym_preproc_line] = STATE(1446), @@ -282324,47 +286233,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1899), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1907), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -282377,19 +286286,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -282400,88 +286309,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1447] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1447), [sym_preproc_endregion] = STATE(1447), [sym_preproc_line] = STATE(1447), @@ -282491,47 +286402,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -282545,18 +286456,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -282567,88 +286478,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1448] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1448), [sym_preproc_endregion] = STATE(1448), [sym_preproc_line] = STATE(1448), @@ -282658,47 +286571,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(2145), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2153), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2155), + [anon_sym_DOT_DOT] = ACTIONS(2157), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -282711,19 +286624,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -282734,88 +286647,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1449] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3574), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1449), [sym_preproc_endregion] = STATE(1449), [sym_preproc_line] = STATE(1449), @@ -282825,47 +286740,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1567), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1177), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -282878,19 +286793,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -282901,88 +286816,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1450] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4101), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1450), [sym_preproc_endregion] = STATE(1450), [sym_preproc_line] = STATE(1450), @@ -282992,47 +286909,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1881), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1889), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(1891), + [anon_sym_DOT_DOT] = ACTIONS(1893), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283045,19 +286962,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -283068,88 +286985,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1451] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3573), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1451), [sym_preproc_endregion] = STATE(1451), [sym_preproc_line] = STATE(1451), @@ -283159,47 +287078,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(2039), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1263), [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -283212,19 +287131,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -283235,88 +287154,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1452] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1452), [sym_preproc_endregion] = STATE(1452), [sym_preproc_line] = STATE(1452), @@ -283326,47 +287247,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(2217), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2225), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [anon_sym_await] = ACTIONS(2227), + [anon_sym_DOT_DOT] = ACTIONS(2229), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -283379,19 +287300,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -283402,88 +287323,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1453] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1453), [sym_preproc_endregion] = STATE(1453), [sym_preproc_line] = STATE(1453), @@ -283493,47 +287416,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -283558,7 +287481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -283575,82 +287498,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1454] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3585), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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(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_preproc_region] = STATE(1454), [sym_preproc_endregion] = STATE(1454), [sym_preproc_line] = STATE(1454), @@ -283660,47 +287585,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -283713,19 +287638,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -283736,88 +287661,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1455] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1455), [sym_preproc_endregion] = STATE(1455), [sym_preproc_line] = STATE(1455), @@ -283827,47 +287754,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -283880,19 +287807,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -283903,88 +287830,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1456] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3663), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1456), [sym_preproc_endregion] = STATE(1456), [sym_preproc_line] = STATE(1456), @@ -283994,47 +287923,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1529), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1569), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -284047,19 +287976,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -284070,88 +287999,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1457] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4780), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1457), [sym_preproc_endregion] = STATE(1457), [sym_preproc_line] = STATE(1457), @@ -284161,47 +288092,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -284226,7 +288157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -284243,82 +288174,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1458] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3569), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1458), [sym_preproc_endregion] = STATE(1458), [sym_preproc_line] = STATE(1458), @@ -284328,47 +288261,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1553), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -284381,19 +288314,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -284404,88 +288337,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1459] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4097), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1459), [sym_preproc_endregion] = STATE(1459), [sym_preproc_line] = STATE(1459), @@ -284495,47 +288430,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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(1551), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), + [anon_sym_this] = ACTIONS(1323), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -284549,18 +288484,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -284571,88 +288506,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1460] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4746), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1460), [sym_preproc_endregion] = STATE(1460), [sym_preproc_line] = STATE(1460), @@ -284662,47 +288599,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2041), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -284715,19 +288652,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -284738,88 +288675,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1461] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4745), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1461), [sym_preproc_endregion] = STATE(1461), [sym_preproc_line] = STATE(1461), @@ -284829,47 +288768,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -284894,7 +288833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -284911,82 +288850,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1462] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4744), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1462), [sym_preproc_endregion] = STATE(1462), [sym_preproc_line] = STATE(1462), @@ -284996,47 +288937,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1919), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1927), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -285049,19 +288990,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -285072,88 +289013,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1463] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3578), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1463), [sym_preproc_endregion] = STATE(1463), [sym_preproc_line] = STATE(1463), @@ -285163,47 +289106,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -285216,19 +289159,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -285239,88 +289182,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1464] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4741), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1464), [sym_preproc_endregion] = STATE(1464), [sym_preproc_line] = STATE(1464), @@ -285330,47 +289275,216 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1827), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, + [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_preproc_region] = STATE(1465), + [sym_preproc_endregion] = STATE(1465), + [sym_preproc_line] = STATE(1465), + [sym_preproc_pragma] = STATE(1465), + [sym_preproc_nullable] = STATE(1465), + [sym_preproc_error] = STATE(1465), + [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), + [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_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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -285395,174 +289509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1465] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4740), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1465), - [sym_preproc_endregion] = STATE(1465), - [sym_preproc_line] = STATE(1465), - [sym_preproc_pragma] = STATE(1465), - [sym_preproc_nullable] = STATE(1465), - [sym_preproc_error] = STATE(1465), - [sym_preproc_warning] = STATE(1465), - [sym_preproc_define] = STATE(1465), - [sym_preproc_undef] = STATE(1465), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), + [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), @@ -285579,82 +289526,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1466] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4739), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1466), [sym_preproc_endregion] = STATE(1466), [sym_preproc_line] = STATE(1466), @@ -285664,47 +289613,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1603), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_DOT_DOT] = ACTIONS(1607), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -285717,19 +289666,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -285740,88 +289689,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1467] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4738), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1467), [sym_preproc_endregion] = STATE(1467), [sym_preproc_line] = STATE(1467), @@ -285831,164 +289782,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [1468] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4737), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1468), [sym_preproc_endregion] = STATE(1468), [sym_preproc_line] = STATE(1468), @@ -285998,47 +289951,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -286063,7 +290016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -286080,82 +290033,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1469] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4736), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1469), [sym_preproc_endregion] = STATE(1469), [sym_preproc_line] = STATE(1469), @@ -286165,47 +290120,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -286230,7 +290185,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -286247,82 +290202,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1470] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4735), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1470), [sym_preproc_endregion] = STATE(1470), [sym_preproc_line] = STATE(1470), @@ -286332,164 +290289,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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), }, [1471] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4154), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1471), [sym_preproc_endregion] = STATE(1471), [sym_preproc_line] = STATE(1471), @@ -286499,164 +290458,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4155), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -286666,47 +290627,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1472), [sym_preproc_define] = STATE(1472), [sym_preproc_undef] = STATE(1472), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -286720,18 +290681,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -286742,88 +290703,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1473] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4130), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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_preproc_region] = STATE(1473), [sym_preproc_endregion] = STATE(1473), [sym_preproc_line] = STATE(1473), @@ -286833,164 +290796,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [1474] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3577), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1474), [sym_preproc_endregion] = STATE(1474), [sym_preproc_line] = STATE(1474), @@ -287000,47 +290965,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1067), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -287053,19 +291018,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -287076,88 +291041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1475] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4732), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1475), [sym_preproc_endregion] = STATE(1475), [sym_preproc_line] = STATE(1475), @@ -287167,47 +291134,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [anon_sym_checked] = ACTIONS(1067), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -287232,7 +291199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -287249,82 +291216,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1476] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3576), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1476), [sym_preproc_endregion] = STATE(1476), [sym_preproc_line] = STATE(1476), @@ -287334,47 +291303,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1067), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -287387,19 +291356,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -287410,88 +291379,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1477] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3570), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1477), [sym_preproc_endregion] = STATE(1477), [sym_preproc_line] = STATE(1477), @@ -287501,47 +291472,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -287554,19 +291525,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -287577,88 +291548,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1478] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1478), [sym_preproc_endregion] = STATE(1478), [sym_preproc_line] = STATE(1478), @@ -287668,47 +291641,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1067), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -287721,19 +291694,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -287744,88 +291717,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1479] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3848), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1479), [sym_preproc_endregion] = STATE(1479), [sym_preproc_line] = STATE(1479), @@ -287835,47 +291810,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [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), @@ -287888,19 +291863,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -287911,88 +291886,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1480] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4336), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1480), [sym_preproc_endregion] = STATE(1480), [sym_preproc_line] = STATE(1480), @@ -288002,381 +291979,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1481] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1481), - [sym_preproc_endregion] = STATE(1481), - [sym_preproc_line] = STATE(1481), - [sym_preproc_pragma] = STATE(1481), - [sym_preproc_nullable] = STATE(1481), - [sym_preproc_error] = STATE(1481), - [sym_preproc_warning] = STATE(1481), - [sym_preproc_define] = STATE(1481), - [sym_preproc_undef] = STATE(1481), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1482] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4110), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1482), - [sym_preproc_endregion] = STATE(1482), - [sym_preproc_line] = STATE(1482), - [sym_preproc_pragma] = STATE(1482), - [sym_preproc_nullable] = STATE(1482), - [sym_preproc_error] = STATE(1482), - [sym_preproc_warning] = STATE(1482), - [sym_preproc_define] = STATE(1482), - [sym_preproc_undef] = STATE(1482), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_checked] = ACTIONS(1067), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -288390,18 +292033,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -288412,138 +292055,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3843), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1483), - [sym_preproc_endregion] = STATE(1483), - [sym_preproc_line] = STATE(1483), - [sym_preproc_pragma] = STATE(1483), - [sym_preproc_nullable] = STATE(1483), - [sym_preproc_error] = STATE(1483), - [sym_preproc_warning] = STATE(1483), - [sym_preproc_define] = STATE(1483), - [sym_preproc_undef] = STATE(1483), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1481), + [sym_preproc_endregion] = STATE(1481), + [sym_preproc_line] = STATE(1481), + [sym_preproc_pragma] = STATE(1481), + [sym_preproc_nullable] = STATE(1481), + [sym_preproc_error] = STATE(1481), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [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), @@ -288556,19 +292201,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -288579,305 +292224,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1484] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4322), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1484), - [sym_preproc_endregion] = STATE(1484), - [sym_preproc_line] = STATE(1484), - [sym_preproc_pragma] = STATE(1484), - [sym_preproc_nullable] = STATE(1484), - [sym_preproc_error] = STATE(1484), - [sym_preproc_warning] = STATE(1484), - [sym_preproc_define] = STATE(1484), - [sym_preproc_undef] = STATE(1484), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_preproc_region] = STATE(1482), + [sym_preproc_endregion] = STATE(1482), + [sym_preproc_line] = STATE(1482), + [sym_preproc_pragma] = STATE(1482), + [sym_preproc_nullable] = STATE(1482), + [sym_preproc_error] = STATE(1482), + [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), }, - [1485] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1485), - [sym_preproc_endregion] = STATE(1485), - [sym_preproc_line] = STATE(1485), - [sym_preproc_pragma] = STATE(1485), - [sym_preproc_nullable] = STATE(1485), - [sym_preproc_error] = STATE(1485), - [sym_preproc_warning] = STATE(1485), - [sym_preproc_define] = STATE(1485), - [sym_preproc_undef] = STATE(1485), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1483), + [sym_preproc_endregion] = STATE(1483), + [sym_preproc_line] = STATE(1483), + [sym_preproc_pragma] = STATE(1483), + [sym_preproc_nullable] = STATE(1483), + [sym_preproc_error] = STATE(1483), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -288902,7 +292551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -288918,133 +292567,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), }, - [1486] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4748), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3438), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7483), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1486), - [sym_preproc_endregion] = STATE(1486), - [sym_preproc_line] = STATE(1486), - [sym_preproc_pragma] = STATE(1486), - [sym_preproc_nullable] = STATE(1486), - [sym_preproc_error] = STATE(1486), - [sym_preproc_warning] = STATE(1486), - [sym_preproc_define] = STATE(1486), - [sym_preproc_undef] = STATE(1486), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1484), + [sym_preproc_endregion] = STATE(1484), + [sym_preproc_line] = STATE(1484), + [sym_preproc_pragma] = STATE(1484), + [sym_preproc_nullable] = STATE(1484), + [sym_preproc_error] = STATE(1484), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_ref] = ACTIONS(1555), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(681), - [anon_sym_TILDE] = ACTIONS(681), - [anon_sym_PLUS_PLUS] = ACTIONS(681), - [anon_sym_DASH_DASH] = ACTIONS(681), + [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(683), - [anon_sym_DASH] = ACTIONS(683), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(681), - [anon_sym_AMP] = ACTIONS(681), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1557), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1559), - [anon_sym_DOT_DOT] = ACTIONS(1561), + [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), @@ -289069,7 +292720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -289085,83 +292736,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(155), [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_preproc_region] = STATE(1485), + [sym_preproc_endregion] = STATE(1485), + [sym_preproc_line] = STATE(1485), + [sym_preproc_pragma] = STATE(1485), + [sym_preproc_nullable] = STATE(1485), + [sym_preproc_error] = STATE(1485), + [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), + }, + [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_preproc_region] = STATE(1486), + [sym_preproc_endregion] = STATE(1486), + [sym_preproc_line] = STATE(1486), + [sym_preproc_pragma] = STATE(1486), + [sym_preproc_nullable] = STATE(1486), + [sym_preproc_error] = STATE(1486), + [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), + }, [1487] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4319), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1487), [sym_preproc_endregion] = STATE(1487), [sym_preproc_line] = STATE(1487), @@ -289171,214 +293162,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1488] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1488), - [sym_preproc_endregion] = STATE(1488), - [sym_preproc_line] = STATE(1488), - [sym_preproc_pragma] = STATE(1488), - [sym_preproc_nullable] = STATE(1488), - [sym_preproc_error] = STATE(1488), - [sym_preproc_warning] = STATE(1488), - [sym_preproc_define] = STATE(1488), - [sym_preproc_undef] = STATE(1488), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -289391,19 +293215,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -289414,138 +293238,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1489] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4979), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1488), + [sym_preproc_endregion] = STATE(1488), + [sym_preproc_line] = STATE(1488), + [sym_preproc_pragma] = STATE(1488), + [sym_preproc_nullable] = STATE(1488), + [sym_preproc_error] = STATE(1488), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -289558,19 +293384,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -289586,83 +293412,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), }, + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3842), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1490), [sym_preproc_endregion] = STATE(1490), [sym_preproc_line] = STATE(1490), @@ -289672,164 +293669,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [1491] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3859), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1491), [sym_preproc_endregion] = STATE(1491), [sym_preproc_line] = STATE(1491), @@ -289839,164 +293838,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [1492] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2829), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1492), [sym_preproc_endregion] = STATE(1492), [sym_preproc_line] = STATE(1492), @@ -290006,47 +294007,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290059,19 +294060,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -290082,88 +294083,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1493] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3520), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1493), [sym_preproc_endregion] = STATE(1493), [sym_preproc_line] = STATE(1493), @@ -290173,47 +294176,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290226,19 +294229,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -290249,88 +294252,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1494] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3916), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(3013), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7111), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1494), [sym_preproc_endregion] = STATE(1494), [sym_preproc_line] = STATE(1494), @@ -290340,47 +294345,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_ref] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1951), - [anon_sym_TILDE] = ACTIONS(1951), - [anon_sym_PLUS_PLUS] = ACTIONS(1951), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1949), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1951), - [anon_sym_AMP] = ACTIONS(1951), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1953), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1957), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290393,19 +294398,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290416,88 +294421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1495] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1495), [sym_preproc_endregion] = STATE(1495), [sym_preproc_line] = STATE(1495), @@ -290507,47 +294514,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -290560,19 +294567,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -290589,82 +294596,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1496] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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_preproc_region] = STATE(1496), [sym_preproc_endregion] = STATE(1496), [sym_preproc_line] = STATE(1496), @@ -290674,381 +294683,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1497] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4278), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1497), - [sym_preproc_endregion] = STATE(1497), - [sym_preproc_line] = STATE(1497), - [sym_preproc_pragma] = STATE(1497), - [sym_preproc_nullable] = STATE(1497), - [sym_preproc_error] = STATE(1497), - [sym_preproc_warning] = STATE(1497), - [sym_preproc_define] = STATE(1497), - [sym_preproc_undef] = STATE(1497), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1498] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3930), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3015), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5971), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7347), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1498), - [sym_preproc_endregion] = STATE(1498), - [sym_preproc_line] = STATE(1498), - [sym_preproc_pragma] = STATE(1498), - [sym_preproc_nullable] = STATE(1498), - [sym_preproc_error] = STATE(1498), - [sym_preproc_warning] = STATE(1498), - [sym_preproc_define] = STATE(1498), - [sym_preproc_undef] = STATE(1498), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_ref] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1813), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291061,19 +294736,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291084,138 +294759,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1499] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4774), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1499), - [sym_preproc_endregion] = STATE(1499), - [sym_preproc_line] = STATE(1499), - [sym_preproc_pragma] = STATE(1499), - [sym_preproc_nullable] = STATE(1499), - [sym_preproc_error] = STATE(1499), - [sym_preproc_warning] = STATE(1499), - [sym_preproc_define] = STATE(1499), - [sym_preproc_undef] = STATE(1499), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1497), + [sym_preproc_endregion] = STATE(1497), + [sym_preproc_line] = STATE(1497), + [sym_preproc_pragma] = STATE(1497), + [sym_preproc_nullable] = STATE(1497), + [sym_preproc_error] = STATE(1497), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291228,19 +294905,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291256,634 +294933,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), }, - [1500] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4226), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1500), - [sym_preproc_endregion] = STATE(1500), - [sym_preproc_line] = STATE(1500), - [sym_preproc_pragma] = STATE(1500), - [sym_preproc_nullable] = STATE(1500), - [sym_preproc_error] = STATE(1500), - [sym_preproc_warning] = STATE(1500), - [sym_preproc_define] = STATE(1500), - [sym_preproc_undef] = STATE(1500), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1501] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1501), - [sym_preproc_endregion] = STATE(1501), - [sym_preproc_line] = STATE(1501), - [sym_preproc_pragma] = STATE(1501), - [sym_preproc_nullable] = STATE(1501), - [sym_preproc_error] = STATE(1501), - [sym_preproc_warning] = STATE(1501), - [sym_preproc_define] = STATE(1501), - [sym_preproc_undef] = STATE(1501), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1502] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4300), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1502), - [sym_preproc_endregion] = STATE(1502), - [sym_preproc_line] = STATE(1502), - [sym_preproc_pragma] = STATE(1502), - [sym_preproc_nullable] = STATE(1502), - [sym_preproc_error] = STATE(1502), - [sym_preproc_warning] = STATE(1502), - [sym_preproc_define] = STATE(1502), - [sym_preproc_undef] = STATE(1502), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1503] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5516), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2819), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1503), - [sym_preproc_endregion] = STATE(1503), - [sym_preproc_line] = STATE(1503), - [sym_preproc_pragma] = STATE(1503), - [sym_preproc_nullable] = STATE(1503), - [sym_preproc_error] = STATE(1503), - [sym_preproc_warning] = STATE(1503), - [sym_preproc_define] = STATE(1503), - [sym_preproc_undef] = STATE(1503), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1498), + [sym_preproc_endregion] = STATE(1498), + [sym_preproc_line] = STATE(1498), + [sym_preproc_pragma] = STATE(1498), + [sym_preproc_nullable] = STATE(1498), + [sym_preproc_error] = STATE(1498), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -291896,19 +295074,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291924,133 +295102,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), }, - [1504] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1504), - [sym_preproc_endregion] = STATE(1504), - [sym_preproc_line] = STATE(1504), - [sym_preproc_pragma] = STATE(1504), - [sym_preproc_nullable] = STATE(1504), - [sym_preproc_error] = STATE(1504), - [sym_preproc_warning] = STATE(1504), - [sym_preproc_define] = STATE(1504), - [sym_preproc_undef] = STATE(1504), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1499), + [sym_preproc_endregion] = STATE(1499), + [sym_preproc_line] = STATE(1499), + [sym_preproc_pragma] = STATE(1499), + [sym_preproc_nullable] = STATE(1499), + [sym_preproc_error] = STATE(1499), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292063,19 +295243,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292091,634 +295271,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), }, - [1505] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4232), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1505), - [sym_preproc_endregion] = STATE(1505), - [sym_preproc_line] = STATE(1505), - [sym_preproc_pragma] = STATE(1505), - [sym_preproc_nullable] = STATE(1505), - [sym_preproc_error] = STATE(1505), - [sym_preproc_warning] = STATE(1505), - [sym_preproc_define] = STATE(1505), - [sym_preproc_undef] = STATE(1505), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1506] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1506), - [sym_preproc_endregion] = STATE(1506), - [sym_preproc_line] = STATE(1506), - [sym_preproc_pragma] = STATE(1506), - [sym_preproc_nullable] = STATE(1506), - [sym_preproc_error] = STATE(1506), - [sym_preproc_warning] = STATE(1506), - [sym_preproc_define] = STATE(1506), - [sym_preproc_undef] = STATE(1506), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1507] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4595), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1507), - [sym_preproc_endregion] = STATE(1507), - [sym_preproc_line] = STATE(1507), - [sym_preproc_pragma] = STATE(1507), - [sym_preproc_nullable] = STATE(1507), - [sym_preproc_error] = STATE(1507), - [sym_preproc_warning] = STATE(1507), - [sym_preproc_define] = STATE(1507), - [sym_preproc_undef] = STATE(1507), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1508] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5212), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1508), - [sym_preproc_endregion] = STATE(1508), - [sym_preproc_line] = STATE(1508), - [sym_preproc_pragma] = STATE(1508), - [sym_preproc_nullable] = STATE(1508), - [sym_preproc_error] = STATE(1508), - [sym_preproc_warning] = STATE(1508), - [sym_preproc_define] = STATE(1508), - [sym_preproc_undef] = STATE(1508), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1500), + [sym_preproc_endregion] = STATE(1500), + [sym_preproc_line] = STATE(1500), + [sym_preproc_pragma] = STATE(1500), + [sym_preproc_nullable] = STATE(1500), + [sym_preproc_error] = STATE(1500), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -292731,19 +295412,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -292759,300 +295440,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), }, - [1509] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4390), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1509), - [sym_preproc_endregion] = STATE(1509), - [sym_preproc_line] = STATE(1509), - [sym_preproc_pragma] = STATE(1509), - [sym_preproc_nullable] = STATE(1509), - [sym_preproc_error] = STATE(1509), - [sym_preproc_warning] = STATE(1509), - [sym_preproc_define] = STATE(1509), - [sym_preproc_undef] = STATE(1509), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1510] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1510), - [sym_preproc_endregion] = STATE(1510), - [sym_preproc_line] = STATE(1510), - [sym_preproc_pragma] = STATE(1510), - [sym_preproc_nullable] = STATE(1510), - [sym_preproc_error] = STATE(1510), - [sym_preproc_warning] = STATE(1510), - [sym_preproc_define] = STATE(1510), - [sym_preproc_undef] = STATE(1510), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1501), + [sym_preproc_endregion] = STATE(1501), + [sym_preproc_line] = STATE(1501), + [sym_preproc_pragma] = STATE(1501), + [sym_preproc_nullable] = STATE(1501), + [sym_preproc_error] = STATE(1501), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -293065,19 +295581,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -293093,968 +295609,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), }, - [1511] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4389), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1511), - [sym_preproc_endregion] = STATE(1511), - [sym_preproc_line] = STATE(1511), - [sym_preproc_pragma] = STATE(1511), - [sym_preproc_nullable] = STATE(1511), - [sym_preproc_error] = STATE(1511), - [sym_preproc_warning] = STATE(1511), - [sym_preproc_define] = STATE(1511), - [sym_preproc_undef] = STATE(1511), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1512] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4292), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1512), - [sym_preproc_endregion] = STATE(1512), - [sym_preproc_line] = STATE(1512), - [sym_preproc_pragma] = STATE(1512), - [sym_preproc_nullable] = STATE(1512), - [sym_preproc_error] = STATE(1512), - [sym_preproc_warning] = STATE(1512), - [sym_preproc_define] = STATE(1512), - [sym_preproc_undef] = STATE(1512), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1513] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1513), - [sym_preproc_endregion] = STATE(1513), - [sym_preproc_line] = STATE(1513), - [sym_preproc_pragma] = STATE(1513), - [sym_preproc_nullable] = STATE(1513), - [sym_preproc_error] = STATE(1513), - [sym_preproc_warning] = STATE(1513), - [sym_preproc_define] = STATE(1513), - [sym_preproc_undef] = STATE(1513), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1514] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4387), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1514), - [sym_preproc_endregion] = STATE(1514), - [sym_preproc_line] = STATE(1514), - [sym_preproc_pragma] = STATE(1514), - [sym_preproc_nullable] = STATE(1514), - [sym_preproc_error] = STATE(1514), - [sym_preproc_warning] = STATE(1514), - [sym_preproc_define] = STATE(1514), - [sym_preproc_undef] = STATE(1514), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1515] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4386), - [sym_non_lvalue_expression] = STATE(4467), + [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(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1515), - [sym_preproc_endregion] = STATE(1515), - [sym_preproc_line] = STATE(1515), - [sym_preproc_pragma] = STATE(1515), - [sym_preproc_nullable] = STATE(1515), - [sym_preproc_error] = STATE(1515), - [sym_preproc_warning] = STATE(1515), - [sym_preproc_define] = STATE(1515), - [sym_preproc_undef] = STATE(1515), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1516] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4132), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1516), - [sym_preproc_endregion] = STATE(1516), - [sym_preproc_line] = STATE(1516), - [sym_preproc_pragma] = STATE(1516), - [sym_preproc_nullable] = STATE(1516), - [sym_preproc_error] = STATE(1516), - [sym_preproc_warning] = STATE(1516), - [sym_preproc_define] = STATE(1516), - [sym_preproc_undef] = STATE(1516), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1502), + [sym_preproc_endregion] = STATE(1502), + [sym_preproc_line] = STATE(1502), + [sym_preproc_pragma] = STATE(1502), + [sym_preproc_nullable] = STATE(1502), + [sym_preproc_error] = STATE(1502), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294067,19 +295750,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -294090,305 +295773,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1517] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4189), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1517), - [sym_preproc_endregion] = STATE(1517), - [sym_preproc_line] = STATE(1517), - [sym_preproc_pragma] = STATE(1517), - [sym_preproc_nullable] = STATE(1517), - [sym_preproc_error] = STATE(1517), - [sym_preproc_warning] = STATE(1517), - [sym_preproc_define] = STATE(1517), - [sym_preproc_undef] = STATE(1517), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4095), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1518), - [sym_preproc_endregion] = STATE(1518), - [sym_preproc_line] = STATE(1518), - [sym_preproc_pragma] = STATE(1518), - [sym_preproc_nullable] = STATE(1518), - [sym_preproc_error] = STATE(1518), - [sym_preproc_warning] = STATE(1518), - [sym_preproc_define] = STATE(1518), - [sym_preproc_undef] = STATE(1518), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1503), + [sym_preproc_endregion] = STATE(1503), + [sym_preproc_line] = STATE(1503), + [sym_preproc_pragma] = STATE(1503), + [sym_preproc_nullable] = STATE(1503), + [sym_preproc_error] = STATE(1503), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294401,19 +295919,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294424,305 +295942,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1519] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4385), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1519), - [sym_preproc_endregion] = STATE(1519), - [sym_preproc_line] = STATE(1519), - [sym_preproc_pragma] = STATE(1519), - [sym_preproc_nullable] = STATE(1519), - [sym_preproc_error] = STATE(1519), - [sym_preproc_warning] = STATE(1519), - [sym_preproc_define] = STATE(1519), - [sym_preproc_undef] = STATE(1519), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1520] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1520), - [sym_preproc_endregion] = STATE(1520), - [sym_preproc_line] = STATE(1520), - [sym_preproc_pragma] = STATE(1520), - [sym_preproc_nullable] = STATE(1520), - [sym_preproc_error] = STATE(1520), - [sym_preproc_warning] = STATE(1520), - [sym_preproc_define] = STATE(1520), - [sym_preproc_undef] = STATE(1520), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1504), + [sym_preproc_endregion] = STATE(1504), + [sym_preproc_line] = STATE(1504), + [sym_preproc_pragma] = STATE(1504), + [sym_preproc_nullable] = STATE(1504), + [sym_preproc_error] = STATE(1504), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294735,19 +296088,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294758,138 +296111,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1521] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4995), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1521), - [sym_preproc_endregion] = STATE(1521), - [sym_preproc_line] = STATE(1521), - [sym_preproc_pragma] = STATE(1521), - [sym_preproc_nullable] = STATE(1521), - [sym_preproc_error] = STATE(1521), - [sym_preproc_warning] = STATE(1521), - [sym_preproc_define] = STATE(1521), - [sym_preproc_undef] = STATE(1521), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1505), + [sym_preproc_endregion] = STATE(1505), + [sym_preproc_line] = STATE(1505), + [sym_preproc_pragma] = STATE(1505), + [sym_preproc_nullable] = STATE(1505), + [sym_preproc_error] = STATE(1505), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), + [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(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -294902,19 +296257,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -294930,133 +296285,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), }, - [1522] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4125), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1522), - [sym_preproc_endregion] = STATE(1522), - [sym_preproc_line] = STATE(1522), - [sym_preproc_pragma] = STATE(1522), - [sym_preproc_nullable] = STATE(1522), - [sym_preproc_error] = STATE(1522), - [sym_preproc_warning] = STATE(1522), - [sym_preproc_define] = STATE(1522), - [sym_preproc_undef] = STATE(1522), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1506), + [sym_preproc_endregion] = STATE(1506), + [sym_preproc_line] = STATE(1506), + [sym_preproc_pragma] = STATE(1506), + [sym_preproc_nullable] = STATE(1506), + [sym_preproc_error] = STATE(1506), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295069,19 +296426,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -295092,138 +296449,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1523] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4348), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1523), - [sym_preproc_endregion] = STATE(1523), - [sym_preproc_line] = STATE(1523), - [sym_preproc_pragma] = STATE(1523), - [sym_preproc_nullable] = STATE(1523), - [sym_preproc_error] = STATE(1523), - [sym_preproc_warning] = STATE(1523), - [sym_preproc_define] = STATE(1523), - [sym_preproc_undef] = STATE(1523), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1507), + [sym_preproc_endregion] = STATE(1507), + [sym_preproc_line] = STATE(1507), + [sym_preproc_pragma] = STATE(1507), + [sym_preproc_nullable] = STATE(1507), + [sym_preproc_error] = STATE(1507), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -295236,19 +296595,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -295259,138 +296618,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4350), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1524), - [sym_preproc_endregion] = STATE(1524), - [sym_preproc_line] = STATE(1524), - [sym_preproc_pragma] = STATE(1524), - [sym_preproc_nullable] = STATE(1524), - [sym_preproc_error] = STATE(1524), - [sym_preproc_warning] = STATE(1524), - [sym_preproc_define] = STATE(1524), - [sym_preproc_undef] = STATE(1524), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1508), + [sym_preproc_endregion] = STATE(1508), + [sym_preproc_line] = STATE(1508), + [sym_preproc_pragma] = STATE(1508), + [sym_preproc_nullable] = STATE(1508), + [sym_preproc_error] = STATE(1508), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295403,19 +296764,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295426,138 +296787,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4351), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1525), - [sym_preproc_endregion] = STATE(1525), - [sym_preproc_line] = STATE(1525), - [sym_preproc_pragma] = STATE(1525), - [sym_preproc_nullable] = STATE(1525), - [sym_preproc_error] = STATE(1525), - [sym_preproc_warning] = STATE(1525), - [sym_preproc_define] = STATE(1525), - [sym_preproc_undef] = STATE(1525), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1509), + [sym_preproc_endregion] = STATE(1509), + [sym_preproc_line] = STATE(1509), + [sym_preproc_pragma] = STATE(1509), + [sym_preproc_nullable] = STATE(1509), + [sym_preproc_error] = STATE(1509), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -295570,19 +296933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -295593,305 +296956,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1526] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3162), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7113), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [sym_preproc_region] = STATE(1526), - [sym_preproc_endregion] = STATE(1526), - [sym_preproc_line] = STATE(1526), - [sym_preproc_pragma] = STATE(1526), - [sym_preproc_nullable] = STATE(1526), - [sym_preproc_error] = STATE(1526), - [sym_preproc_warning] = STATE(1526), - [sym_preproc_define] = STATE(1526), - [sym_preproc_undef] = STATE(1526), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_ref] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_TILDE] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1403), - [anon_sym_DASH_DASH] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1401), - [anon_sym_DASH] = ACTIONS(1401), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1421), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1423), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1527] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4352), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1527), - [sym_preproc_endregion] = STATE(1527), - [sym_preproc_line] = STATE(1527), - [sym_preproc_pragma] = STATE(1527), - [sym_preproc_nullable] = STATE(1527), - [sym_preproc_error] = STATE(1527), - [sym_preproc_warning] = STATE(1527), - [sym_preproc_define] = STATE(1527), - [sym_preproc_undef] = STATE(1527), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1510), + [sym_preproc_endregion] = STATE(1510), + [sym_preproc_line] = STATE(1510), + [sym_preproc_pragma] = STATE(1510), + [sym_preproc_nullable] = STATE(1510), + [sym_preproc_error] = STATE(1510), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -295904,19 +297102,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -295927,138 +297125,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1528] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4291), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1528), - [sym_preproc_endregion] = STATE(1528), - [sym_preproc_line] = STATE(1528), - [sym_preproc_pragma] = STATE(1528), - [sym_preproc_nullable] = STATE(1528), - [sym_preproc_error] = STATE(1528), - [sym_preproc_warning] = STATE(1528), - [sym_preproc_define] = STATE(1528), - [sym_preproc_undef] = STATE(1528), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1511), + [sym_preproc_endregion] = STATE(1511), + [sym_preproc_line] = STATE(1511), + [sym_preproc_pragma] = STATE(1511), + [sym_preproc_nullable] = STATE(1511), + [sym_preproc_error] = STATE(1511), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -296071,19 +297271,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296094,138 +297294,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1529] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4359), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1529), - [sym_preproc_endregion] = STATE(1529), - [sym_preproc_line] = STATE(1529), - [sym_preproc_pragma] = STATE(1529), - [sym_preproc_nullable] = STATE(1529), - [sym_preproc_error] = STATE(1529), - [sym_preproc_warning] = STATE(1529), - [sym_preproc_define] = STATE(1529), - [sym_preproc_undef] = STATE(1529), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1512), + [sym_preproc_endregion] = STATE(1512), + [sym_preproc_line] = STATE(1512), + [sym_preproc_pragma] = STATE(1512), + [sym_preproc_nullable] = STATE(1512), + [sym_preproc_error] = STATE(1512), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296238,19 +297440,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296261,138 +297463,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1530] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4361), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1530), - [sym_preproc_endregion] = STATE(1530), - [sym_preproc_line] = STATE(1530), - [sym_preproc_pragma] = STATE(1530), - [sym_preproc_nullable] = STATE(1530), - [sym_preproc_error] = STATE(1530), - [sym_preproc_warning] = STATE(1530), - [sym_preproc_define] = STATE(1530), - [sym_preproc_undef] = STATE(1530), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1513), + [sym_preproc_endregion] = STATE(1513), + [sym_preproc_line] = STATE(1513), + [sym_preproc_pragma] = STATE(1513), + [sym_preproc_nullable] = STATE(1513), + [sym_preproc_error] = STATE(1513), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296405,19 +297609,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296428,138 +297632,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1531] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4364), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1531), - [sym_preproc_endregion] = STATE(1531), - [sym_preproc_line] = STATE(1531), - [sym_preproc_pragma] = STATE(1531), - [sym_preproc_nullable] = STATE(1531), - [sym_preproc_error] = STATE(1531), - [sym_preproc_warning] = STATE(1531), - [sym_preproc_define] = STATE(1531), - [sym_preproc_undef] = STATE(1531), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1514), + [sym_preproc_endregion] = STATE(1514), + [sym_preproc_line] = STATE(1514), + [sym_preproc_pragma] = STATE(1514), + [sym_preproc_nullable] = STATE(1514), + [sym_preproc_error] = STATE(1514), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296572,19 +297778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296595,138 +297801,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1532] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4293), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1532), - [sym_preproc_endregion] = STATE(1532), - [sym_preproc_line] = STATE(1532), - [sym_preproc_pragma] = STATE(1532), - [sym_preproc_nullable] = STATE(1532), - [sym_preproc_error] = STATE(1532), - [sym_preproc_warning] = STATE(1532), - [sym_preproc_define] = STATE(1532), - [sym_preproc_undef] = STATE(1532), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1515), + [sym_preproc_endregion] = STATE(1515), + [sym_preproc_line] = STATE(1515), + [sym_preproc_pragma] = STATE(1515), + [sym_preproc_nullable] = STATE(1515), + [sym_preproc_error] = STATE(1515), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296739,19 +297947,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296762,138 +297970,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1533] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4294), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1533), - [sym_preproc_endregion] = STATE(1533), - [sym_preproc_line] = STATE(1533), - [sym_preproc_pragma] = STATE(1533), - [sym_preproc_nullable] = STATE(1533), - [sym_preproc_error] = STATE(1533), - [sym_preproc_warning] = STATE(1533), - [sym_preproc_define] = STATE(1533), - [sym_preproc_undef] = STATE(1533), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1516), + [sym_preproc_endregion] = STATE(1516), + [sym_preproc_line] = STATE(1516), + [sym_preproc_pragma] = STATE(1516), + [sym_preproc_nullable] = STATE(1516), + [sym_preproc_error] = STATE(1516), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -296906,19 +298116,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -296929,138 +298139,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1534] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5339), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1534), - [sym_preproc_endregion] = STATE(1534), - [sym_preproc_line] = STATE(1534), - [sym_preproc_pragma] = STATE(1534), - [sym_preproc_nullable] = STATE(1534), - [sym_preproc_error] = STATE(1534), - [sym_preproc_warning] = STATE(1534), - [sym_preproc_define] = STATE(1534), - [sym_preproc_undef] = STATE(1534), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1517), + [sym_preproc_endregion] = STATE(1517), + [sym_preproc_line] = STATE(1517), + [sym_preproc_pragma] = STATE(1517), + [sym_preproc_nullable] = STATE(1517), + [sym_preproc_error] = STATE(1517), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297074,18 +298286,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -297096,138 +298308,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1535] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4295), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1535), - [sym_preproc_endregion] = STATE(1535), - [sym_preproc_line] = STATE(1535), - [sym_preproc_pragma] = STATE(1535), - [sym_preproc_nullable] = STATE(1535), - [sym_preproc_error] = STATE(1535), - [sym_preproc_warning] = STATE(1535), - [sym_preproc_define] = STATE(1535), - [sym_preproc_undef] = STATE(1535), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1518), + [sym_preproc_endregion] = STATE(1518), + [sym_preproc_line] = STATE(1518), + [sym_preproc_pragma] = STATE(1518), + [sym_preproc_nullable] = STATE(1518), + [sym_preproc_error] = STATE(1518), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297240,19 +298454,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -297263,138 +298477,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1536] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1536), - [sym_preproc_endregion] = STATE(1536), - [sym_preproc_line] = STATE(1536), - [sym_preproc_pragma] = STATE(1536), - [sym_preproc_nullable] = STATE(1536), - [sym_preproc_error] = STATE(1536), - [sym_preproc_warning] = STATE(1536), - [sym_preproc_define] = STATE(1536), - [sym_preproc_undef] = STATE(1536), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1519), + [sym_preproc_endregion] = STATE(1519), + [sym_preproc_line] = STATE(1519), + [sym_preproc_pragma] = STATE(1519), + [sym_preproc_nullable] = STATE(1519), + [sym_preproc_error] = STATE(1519), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297407,19 +298623,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -297430,138 +298646,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1537] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4109), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1537), - [sym_preproc_endregion] = STATE(1537), - [sym_preproc_line] = STATE(1537), - [sym_preproc_pragma] = STATE(1537), - [sym_preproc_nullable] = STATE(1537), - [sym_preproc_error] = STATE(1537), - [sym_preproc_warning] = STATE(1537), - [sym_preproc_define] = STATE(1537), - [sym_preproc_undef] = STATE(1537), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3080), + [sym_conditional_access_expression] = STATE(3080), + [sym_as_expression] = STATE(3080), + [sym_is_expression] = STATE(3080), + [sym_is_pattern_expression] = STATE(3080), + [sym_cast_expression] = STATE(3080), + [sym_checked_expression] = STATE(3080), + [sym_invocation_expression] = STATE(3111), + [sym_switch_expression] = STATE(3080), + [sym_await_expression] = STATE(3111), + [sym_throw_expression] = STATE(3080), + [sym_element_access_expression] = STATE(2484), + [sym_interpolated_string_expression] = STATE(3080), + [sym_member_access_expression] = STATE(2484), + [sym_object_creation_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(1520), + [sym_preproc_endregion] = STATE(1520), + [sym_preproc_line] = STATE(1520), + [sym_preproc_pragma] = STATE(1520), + [sym_preproc_nullable] = STATE(1520), + [sym_preproc_error] = STATE(1520), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -297574,19 +298792,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -297597,138 +298815,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4993), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1538), - [sym_preproc_endregion] = STATE(1538), - [sym_preproc_line] = STATE(1538), - [sym_preproc_pragma] = STATE(1538), - [sym_preproc_nullable] = STATE(1538), - [sym_preproc_error] = STATE(1538), - [sym_preproc_warning] = STATE(1538), - [sym_preproc_define] = STATE(1538), - [sym_preproc_undef] = STATE(1538), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1521), + [sym_preproc_endregion] = STATE(1521), + [sym_preproc_line] = STATE(1521), + [sym_preproc_pragma] = STATE(1521), + [sym_preproc_nullable] = STATE(1521), + [sym_preproc_error] = STATE(1521), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297741,19 +298961,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -297764,138 +298984,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1539] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4521), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1539), - [sym_preproc_endregion] = STATE(1539), - [sym_preproc_line] = STATE(1539), - [sym_preproc_pragma] = STATE(1539), - [sym_preproc_nullable] = STATE(1539), - [sym_preproc_error] = STATE(1539), - [sym_preproc_warning] = STATE(1539), - [sym_preproc_define] = STATE(1539), - [sym_preproc_undef] = STATE(1539), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1522), + [sym_preproc_endregion] = STATE(1522), + [sym_preproc_line] = STATE(1522), + [sym_preproc_pragma] = STATE(1522), + [sym_preproc_nullable] = STATE(1522), + [sym_preproc_error] = STATE(1522), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -297908,19 +299130,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -297931,138 +299153,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1540] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1540), - [sym_preproc_endregion] = STATE(1540), - [sym_preproc_line] = STATE(1540), - [sym_preproc_pragma] = STATE(1540), - [sym_preproc_nullable] = STATE(1540), - [sym_preproc_error] = STATE(1540), - [sym_preproc_warning] = STATE(1540), - [sym_preproc_define] = STATE(1540), - [sym_preproc_undef] = STATE(1540), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1523), + [sym_preproc_endregion] = STATE(1523), + [sym_preproc_line] = STATE(1523), + [sym_preproc_pragma] = STATE(1523), + [sym_preproc_nullable] = STATE(1523), + [sym_preproc_error] = STATE(1523), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298076,18 +299300,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -298098,138 +299322,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1541] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4518), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1541), - [sym_preproc_endregion] = STATE(1541), - [sym_preproc_line] = STATE(1541), - [sym_preproc_pragma] = STATE(1541), - [sym_preproc_nullable] = STATE(1541), - [sym_preproc_error] = STATE(1541), - [sym_preproc_warning] = STATE(1541), - [sym_preproc_define] = STATE(1541), - [sym_preproc_undef] = STATE(1541), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [1524] = { + [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(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_preproc_region] = STATE(1524), + [sym_preproc_endregion] = STATE(1524), + [sym_preproc_line] = STATE(1524), + [sym_preproc_pragma] = STATE(1524), + [sym_preproc_nullable] = STATE(1524), + [sym_preproc_error] = STATE(1524), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -298242,19 +299468,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -298265,138 +299491,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1542] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5256), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1542), - [sym_preproc_endregion] = STATE(1542), - [sym_preproc_line] = STATE(1542), - [sym_preproc_pragma] = STATE(1542), - [sym_preproc_nullable] = STATE(1542), - [sym_preproc_error] = STATE(1542), - [sym_preproc_warning] = STATE(1542), - [sym_preproc_define] = STATE(1542), - [sym_preproc_undef] = STATE(1542), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1525), + [sym_preproc_endregion] = STATE(1525), + [sym_preproc_line] = STATE(1525), + [sym_preproc_pragma] = STATE(1525), + [sym_preproc_nullable] = STATE(1525), + [sym_preproc_error] = STATE(1525), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298409,19 +299637,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -298437,133 +299665,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), }, - [1543] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5261), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1543), - [sym_preproc_endregion] = STATE(1543), - [sym_preproc_line] = STATE(1543), - [sym_preproc_pragma] = STATE(1543), - [sym_preproc_nullable] = STATE(1543), - [sym_preproc_error] = STATE(1543), - [sym_preproc_warning] = STATE(1543), - [sym_preproc_define] = STATE(1543), - [sym_preproc_undef] = STATE(1543), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1526), + [sym_preproc_endregion] = STATE(1526), + [sym_preproc_line] = STATE(1526), + [sym_preproc_pragma] = STATE(1526), + [sym_preproc_nullable] = STATE(1526), + [sym_preproc_error] = STATE(1526), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -298577,18 +299807,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -298599,138 +299829,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(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1544] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1544), - [sym_preproc_endregion] = STATE(1544), - [sym_preproc_line] = STATE(1544), - [sym_preproc_pragma] = STATE(1544), - [sym_preproc_nullable] = STATE(1544), - [sym_preproc_error] = STATE(1544), - [sym_preproc_warning] = STATE(1544), - [sym_preproc_define] = STATE(1544), - [sym_preproc_undef] = STATE(1544), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1527), + [sym_preproc_endregion] = STATE(1527), + [sym_preproc_line] = STATE(1527), + [sym_preproc_pragma] = STATE(1527), + [sym_preproc_nullable] = STATE(1527), + [sym_preproc_error] = STATE(1527), + [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), + }, + [1528] = { + [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(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_preproc_region] = STATE(1528), + [sym_preproc_endregion] = STATE(1528), + [sym_preproc_line] = STATE(1528), + [sym_preproc_pragma] = STATE(1528), + [sym_preproc_nullable] = STATE(1528), + [sym_preproc_error] = STATE(1528), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -298743,19 +300144,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -298766,138 +300167,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(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1545] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4509), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [sym_preproc_region] = STATE(1545), - [sym_preproc_endregion] = STATE(1545), - [sym_preproc_line] = STATE(1545), - [sym_preproc_pragma] = STATE(1545), - [sym_preproc_nullable] = STATE(1545), - [sym_preproc_error] = STATE(1545), - [sym_preproc_warning] = STATE(1545), - [sym_preproc_define] = STATE(1545), - [sym_preproc_undef] = STATE(1545), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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_preproc_region] = STATE(1529), + [sym_preproc_endregion] = STATE(1529), + [sym_preproc_line] = STATE(1529), + [sym_preproc_pragma] = STATE(1529), + [sym_preproc_nullable] = STATE(1529), + [sym_preproc_error] = STATE(1529), + [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), + [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_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), + }, + [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_preproc_region] = STATE(1530), + [sym_preproc_endregion] = STATE(1530), + [sym_preproc_line] = STATE(1530), + [sym_preproc_pragma] = STATE(1530), + [sym_preproc_nullable] = STATE(1530), + [sym_preproc_error] = STATE(1530), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(2163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(2171), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -298910,19 +300482,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -298938,133 +300510,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), }, - [1546] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(1546), - [sym_preproc_endregion] = STATE(1546), - [sym_preproc_line] = STATE(1546), - [sym_preproc_pragma] = STATE(1546), - [sym_preproc_nullable] = STATE(1546), - [sym_preproc_error] = STATE(1546), - [sym_preproc_warning] = STATE(1546), - [sym_preproc_define] = STATE(1546), - [sym_preproc_undef] = STATE(1546), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_from_clause] = STATE(6154), + [sym_conditional_expression] = STATE(3080), + [sym_conditional_access_expression] = STATE(3080), + [sym_as_expression] = STATE(3080), + [sym_is_expression] = STATE(3080), + [sym_is_pattern_expression] = STATE(3080), + [sym_cast_expression] = STATE(3080), + [sym_checked_expression] = STATE(3080), + [sym_invocation_expression] = STATE(3111), + [sym_switch_expression] = STATE(3080), + [sym_await_expression] = STATE(3111), + [sym_throw_expression] = STATE(3080), + [sym_element_access_expression] = STATE(2484), + [sym_interpolated_string_expression] = STATE(3080), + [sym_member_access_expression] = STATE(2484), + [sym_object_creation_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(1531), + [sym_preproc_endregion] = STATE(1531), + [sym_preproc_line] = STATE(1531), + [sym_preproc_pragma] = STATE(1531), + [sym_preproc_nullable] = STATE(1531), + [sym_preproc_error] = STATE(1531), + [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__lambda_expression_init_repeat1] = STATE(3367), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -299077,19 +300651,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -299100,138 +300674,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1547] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1547), - [sym_preproc_endregion] = STATE(1547), - [sym_preproc_line] = STATE(1547), - [sym_preproc_pragma] = STATE(1547), - [sym_preproc_nullable] = STATE(1547), - [sym_preproc_error] = STATE(1547), - [sym_preproc_warning] = STATE(1547), - [sym_preproc_define] = STATE(1547), - [sym_preproc_undef] = STATE(1547), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [1532] = { + [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(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_preproc_region] = STATE(1532), + [sym_preproc_endregion] = STATE(1532), + [sym_preproc_line] = STATE(1532), + [sym_preproc_pragma] = STATE(1532), + [sym_preproc_nullable] = STATE(1532), + [sym_preproc_error] = STATE(1532), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -299244,19 +300820,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -299267,138 +300843,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1548] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3520), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(1548), - [sym_preproc_endregion] = STATE(1548), - [sym_preproc_line] = STATE(1548), - [sym_preproc_pragma] = STATE(1548), - [sym_preproc_nullable] = STATE(1548), - [sym_preproc_error] = STATE(1548), - [sym_preproc_warning] = STATE(1548), - [sym_preproc_define] = STATE(1548), - [sym_preproc_undef] = STATE(1548), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [1533] = { + [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(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_preproc_region] = STATE(1533), + [sym_preproc_endregion] = STATE(1533), + [sym_preproc_line] = STATE(1533), + [sym_preproc_pragma] = STATE(1533), + [sym_preproc_nullable] = STATE(1533), + [sym_preproc_error] = STATE(1533), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -299411,19 +300989,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -299434,138 +301012,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1549] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4089), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1549), - [sym_preproc_endregion] = STATE(1549), - [sym_preproc_line] = STATE(1549), - [sym_preproc_pragma] = STATE(1549), - [sym_preproc_nullable] = STATE(1549), - [sym_preproc_error] = STATE(1549), - [sym_preproc_warning] = STATE(1549), - [sym_preproc_define] = STATE(1549), - [sym_preproc_undef] = STATE(1549), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [1534] = { + [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(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_preproc_region] = STATE(1534), + [sym_preproc_endregion] = STATE(1534), + [sym_preproc_line] = STATE(1534), + [sym_preproc_pragma] = STATE(1534), + [sym_preproc_nullable] = STATE(1534), + [sym_preproc_error] = STATE(1534), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -299578,19 +301158,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -299601,138 +301181,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1550] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4079), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1550), - [sym_preproc_endregion] = STATE(1550), - [sym_preproc_line] = STATE(1550), - [sym_preproc_pragma] = STATE(1550), - [sym_preproc_nullable] = STATE(1550), - [sym_preproc_error] = STATE(1550), - [sym_preproc_warning] = STATE(1550), - [sym_preproc_define] = STATE(1550), - [sym_preproc_undef] = STATE(1550), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [1535] = { + [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(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_preproc_region] = STATE(1535), + [sym_preproc_endregion] = STATE(1535), + [sym_preproc_line] = STATE(1535), + [sym_preproc_pragma] = STATE(1535), + [sym_preproc_nullable] = STATE(1535), + [sym_preproc_error] = STATE(1535), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -299745,19 +301327,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -299768,138 +301350,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1551] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4078), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1536), + [sym_preproc_endregion] = STATE(1536), + [sym_preproc_line] = STATE(1536), + [sym_preproc_pragma] = STATE(1536), + [sym_preproc_nullable] = STATE(1536), + [sym_preproc_error] = STATE(1536), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -299912,19 +301496,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -299935,138 +301519,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1552] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4077), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1552), - [sym_preproc_endregion] = STATE(1552), - [sym_preproc_line] = STATE(1552), - [sym_preproc_pragma] = STATE(1552), - [sym_preproc_nullable] = STATE(1552), - [sym_preproc_error] = STATE(1552), - [sym_preproc_warning] = STATE(1552), - [sym_preproc_define] = STATE(1552), - [sym_preproc_undef] = STATE(1552), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1537), + [sym_preproc_endregion] = STATE(1537), + [sym_preproc_line] = STATE(1537), + [sym_preproc_pragma] = STATE(1537), + [sym_preproc_nullable] = STATE(1537), + [sym_preproc_error] = STATE(1537), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300079,19 +301665,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300102,138 +301688,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1553] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4076), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1553), - [sym_preproc_endregion] = STATE(1553), - [sym_preproc_line] = STATE(1553), - [sym_preproc_pragma] = STATE(1553), - [sym_preproc_nullable] = STATE(1553), - [sym_preproc_error] = STATE(1553), - [sym_preproc_warning] = STATE(1553), - [sym_preproc_define] = STATE(1553), - [sym_preproc_undef] = STATE(1553), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1538), + [sym_preproc_endregion] = STATE(1538), + [sym_preproc_line] = STATE(1538), + [sym_preproc_pragma] = STATE(1538), + [sym_preproc_nullable] = STATE(1538), + [sym_preproc_error] = STATE(1538), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300246,19 +301834,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300269,138 +301857,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1554] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4071), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1554), - [sym_preproc_endregion] = STATE(1554), - [sym_preproc_line] = STATE(1554), - [sym_preproc_pragma] = STATE(1554), - [sym_preproc_nullable] = STATE(1554), - [sym_preproc_error] = STATE(1554), - [sym_preproc_warning] = STATE(1554), - [sym_preproc_define] = STATE(1554), - [sym_preproc_undef] = STATE(1554), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1539), + [sym_preproc_endregion] = STATE(1539), + [sym_preproc_line] = STATE(1539), + [sym_preproc_pragma] = STATE(1539), + [sym_preproc_nullable] = STATE(1539), + [sym_preproc_error] = STATE(1539), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300413,19 +302003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300436,138 +302026,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1555] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4068), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1555), - [sym_preproc_endregion] = STATE(1555), - [sym_preproc_line] = STATE(1555), - [sym_preproc_pragma] = STATE(1555), - [sym_preproc_nullable] = STATE(1555), - [sym_preproc_error] = STATE(1555), - [sym_preproc_warning] = STATE(1555), - [sym_preproc_define] = STATE(1555), - [sym_preproc_undef] = STATE(1555), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1540), + [sym_preproc_endregion] = STATE(1540), + [sym_preproc_line] = STATE(1540), + [sym_preproc_pragma] = STATE(1540), + [sym_preproc_nullable] = STATE(1540), + [sym_preproc_error] = STATE(1540), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300580,19 +302172,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300603,138 +302195,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1556] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4060), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1556), - [sym_preproc_endregion] = STATE(1556), - [sym_preproc_line] = STATE(1556), - [sym_preproc_pragma] = STATE(1556), - [sym_preproc_nullable] = STATE(1556), - [sym_preproc_error] = STATE(1556), - [sym_preproc_warning] = STATE(1556), - [sym_preproc_define] = STATE(1556), - [sym_preproc_undef] = STATE(1556), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1541), + [sym_preproc_endregion] = STATE(1541), + [sym_preproc_line] = STATE(1541), + [sym_preproc_pragma] = STATE(1541), + [sym_preproc_nullable] = STATE(1541), + [sym_preproc_error] = STATE(1541), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300747,19 +302341,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300770,138 +302364,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1557] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4049), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1557), - [sym_preproc_endregion] = STATE(1557), - [sym_preproc_line] = STATE(1557), - [sym_preproc_pragma] = STATE(1557), - [sym_preproc_nullable] = STATE(1557), - [sym_preproc_error] = STATE(1557), - [sym_preproc_warning] = STATE(1557), - [sym_preproc_define] = STATE(1557), - [sym_preproc_undef] = STATE(1557), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1542), + [sym_preproc_endregion] = STATE(1542), + [sym_preproc_line] = STATE(1542), + [sym_preproc_pragma] = STATE(1542), + [sym_preproc_nullable] = STATE(1542), + [sym_preproc_error] = STATE(1542), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -300914,19 +302510,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -300937,138 +302533,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1558] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4050), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1558), - [sym_preproc_endregion] = STATE(1558), - [sym_preproc_line] = STATE(1558), - [sym_preproc_pragma] = STATE(1558), - [sym_preproc_nullable] = STATE(1558), - [sym_preproc_error] = STATE(1558), - [sym_preproc_warning] = STATE(1558), - [sym_preproc_define] = STATE(1558), - [sym_preproc_undef] = STATE(1558), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1543), + [sym_preproc_endregion] = STATE(1543), + [sym_preproc_line] = STATE(1543), + [sym_preproc_pragma] = STATE(1543), + [sym_preproc_nullable] = STATE(1543), + [sym_preproc_error] = STATE(1543), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1657), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -301081,19 +302679,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -301104,138 +302702,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, - [1559] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4052), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1559), - [sym_preproc_endregion] = STATE(1559), - [sym_preproc_line] = STATE(1559), - [sym_preproc_pragma] = STATE(1559), - [sym_preproc_nullable] = STATE(1559), - [sym_preproc_error] = STATE(1559), - [sym_preproc_warning] = STATE(1559), - [sym_preproc_define] = STATE(1559), - [sym_preproc_undef] = STATE(1559), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1544), + [sym_preproc_endregion] = STATE(1544), + [sym_preproc_line] = STATE(1544), + [sym_preproc_pragma] = STATE(1544), + [sym_preproc_nullable] = STATE(1544), + [sym_preproc_error] = STATE(1544), + [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), + }, + [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_preproc_region] = STATE(1545), + [sym_preproc_endregion] = STATE(1545), + [sym_preproc_line] = STATE(1545), + [sym_preproc_pragma] = STATE(1545), + [sym_preproc_nullable] = STATE(1545), + [sym_preproc_error] = STATE(1545), + [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), + }, + [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_preproc_region] = STATE(1546), + [sym_preproc_endregion] = STATE(1546), + [sym_preproc_line] = STATE(1546), + [sym_preproc_pragma] = STATE(1546), + [sym_preproc_nullable] = STATE(1546), + [sym_preproc_error] = STATE(1546), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [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), @@ -301248,19 +303186,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -301271,138 +303209,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1560] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4056), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1560), - [sym_preproc_endregion] = STATE(1560), - [sym_preproc_line] = STATE(1560), - [sym_preproc_pragma] = STATE(1560), - [sym_preproc_nullable] = STATE(1560), - [sym_preproc_error] = STATE(1560), - [sym_preproc_warning] = STATE(1560), - [sym_preproc_define] = STATE(1560), - [sym_preproc_undef] = STATE(1560), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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_preproc_region] = STATE(1547), + [sym_preproc_endregion] = STATE(1547), + [sym_preproc_line] = STATE(1547), + [sym_preproc_pragma] = STATE(1547), + [sym_preproc_nullable] = STATE(1547), + [sym_preproc_error] = STATE(1547), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301415,19 +303355,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -301438,138 +303378,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5705), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4643), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3310), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5965), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7186), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1561), - [sym_preproc_endregion] = STATE(1561), - [sym_preproc_line] = STATE(1561), - [sym_preproc_pragma] = STATE(1561), - [sym_preproc_nullable] = STATE(1561), - [sym_preproc_error] = STATE(1561), - [sym_preproc_warning] = STATE(1561), - [sym_preproc_define] = STATE(1561), - [sym_preproc_undef] = STATE(1561), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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_preproc_region] = STATE(1548), + [sym_preproc_endregion] = STATE(1548), + [sym_preproc_line] = STATE(1548), + [sym_preproc_pragma] = STATE(1548), + [sym_preproc_nullable] = STATE(1548), + [sym_preproc_error] = STATE(1548), + [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), + }, + [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_preproc_region] = STATE(1549), + [sym_preproc_endregion] = STATE(1549), + [sym_preproc_line] = STATE(1549), + [sym_preproc_pragma] = STATE(1549), + [sym_preproc_nullable] = STATE(1549), + [sym_preproc_error] = STATE(1549), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1855), - [anon_sym_ref] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1859), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1863), - [anon_sym_TILDE] = ACTIONS(1863), - [anon_sym_PLUS_PLUS] = ACTIONS(1863), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1861), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_CARET] = ACTIONS(1863), - [anon_sym_AMP] = ACTIONS(1863), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -301582,19 +303693,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -301605,138 +303716,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(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, - [1562] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3511), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(1562), - [sym_preproc_endregion] = STATE(1562), - [sym_preproc_line] = STATE(1562), - [sym_preproc_pragma] = STATE(1562), - [sym_preproc_nullable] = STATE(1562), - [sym_preproc_error] = STATE(1562), - [sym_preproc_warning] = STATE(1562), - [sym_preproc_define] = STATE(1562), - [sym_preproc_undef] = STATE(1562), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_preproc_region] = STATE(1550), + [sym_preproc_endregion] = STATE(1550), + [sym_preproc_line] = STATE(1550), + [sym_preproc_pragma] = STATE(1550), + [sym_preproc_nullable] = STATE(1550), + [sym_preproc_error] = STATE(1550), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(2235), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301749,19 +304031,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -301772,138 +304054,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(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, - [1563] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4062), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [sym_preproc_region] = STATE(1563), - [sym_preproc_endregion] = STATE(1563), - [sym_preproc_line] = STATE(1563), - [sym_preproc_pragma] = STATE(1563), - [sym_preproc_nullable] = STATE(1563), - [sym_preproc_error] = STATE(1563), - [sym_preproc_warning] = STATE(1563), - [sym_preproc_define] = STATE(1563), - [sym_preproc_undef] = STATE(1563), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), + }, + [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_preproc_region] = STATE(1552), + [sym_preproc_endregion] = STATE(1552), + [sym_preproc_line] = STATE(1552), + [sym_preproc_pragma] = STATE(1552), + [sym_preproc_nullable] = STATE(1552), + [sym_preproc_error] = STATE(1552), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -301916,19 +304200,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301939,138 +304223,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5381), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1564), - [sym_preproc_endregion] = STATE(1564), - [sym_preproc_line] = STATE(1564), - [sym_preproc_pragma] = STATE(1564), - [sym_preproc_nullable] = STATE(1564), - [sym_preproc_error] = STATE(1564), - [sym_preproc_warning] = STATE(1564), - [sym_preproc_define] = STATE(1564), - [sym_preproc_undef] = STATE(1564), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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_preproc_region] = STATE(1553), + [sym_preproc_endregion] = STATE(1553), + [sym_preproc_line] = STATE(1553), + [sym_preproc_pragma] = STATE(1553), + [sym_preproc_nullable] = STATE(1553), + [sym_preproc_error] = STATE(1553), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302083,19 +304369,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302111,133 +304397,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), }, - [1565] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3515), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [sym_preproc_region] = STATE(1565), - [sym_preproc_endregion] = STATE(1565), - [sym_preproc_line] = STATE(1565), - [sym_preproc_pragma] = STATE(1565), - [sym_preproc_nullable] = STATE(1565), - [sym_preproc_error] = STATE(1565), - [sym_preproc_warning] = STATE(1565), - [sym_preproc_define] = STATE(1565), - [sym_preproc_undef] = STATE(1565), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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_preproc_region] = STATE(1554), + [sym_preproc_endregion] = STATE(1554), + [sym_preproc_line] = STATE(1554), + [sym_preproc_pragma] = STATE(1554), + [sym_preproc_nullable] = STATE(1554), + [sym_preproc_error] = STATE(1554), + [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), + }, + [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_preproc_region] = STATE(1555), + [sym_preproc_endregion] = STATE(1555), + [sym_preproc_line] = STATE(1555), + [sym_preproc_pragma] = STATE(1555), + [sym_preproc_nullable] = STATE(1555), + [sym_preproc_error] = STATE(1555), + [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), + }, + [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_preproc_region] = STATE(1556), + [sym_preproc_endregion] = STATE(1556), + [sym_preproc_line] = STATE(1556), + [sym_preproc_pragma] = STATE(1556), + [sym_preproc_nullable] = STATE(1556), + [sym_preproc_error] = STATE(1556), + [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), + }, + [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_preproc_region] = STATE(1557), + [sym_preproc_endregion] = STATE(1557), + [sym_preproc_line] = STATE(1557), + [sym_preproc_pragma] = STATE(1557), + [sym_preproc_nullable] = STATE(1557), + [sym_preproc_error] = STATE(1557), + [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), + }, + [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_preproc_region] = STATE(1558), + [sym_preproc_endregion] = STATE(1558), + [sym_preproc_line] = STATE(1558), + [sym_preproc_pragma] = STATE(1558), + [sym_preproc_nullable] = STATE(1558), + [sym_preproc_error] = STATE(1558), + [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), + }, + [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_preproc_region] = STATE(1559), + [sym_preproc_endregion] = STATE(1559), + [sym_preproc_line] = STATE(1559), + [sym_preproc_pragma] = STATE(1559), + [sym_preproc_nullable] = STATE(1559), + [sym_preproc_error] = STATE(1559), + [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), + }, + [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_preproc_region] = STATE(1560), + [sym_preproc_endregion] = STATE(1560), + [sym_preproc_line] = STATE(1560), + [sym_preproc_pragma] = STATE(1560), + [sym_preproc_nullable] = STATE(1560), + [sym_preproc_error] = STATE(1560), + [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), + }, + [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_preproc_region] = STATE(1561), + [sym_preproc_endregion] = STATE(1561), + [sym_preproc_line] = STATE(1561), + [sym_preproc_pragma] = STATE(1561), + [sym_preproc_nullable] = STATE(1561), + [sym_preproc_error] = STATE(1561), + [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), + }, + [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_preproc_region] = STATE(1562), + [sym_preproc_endregion] = STATE(1562), + [sym_preproc_line] = STATE(1562), + [sym_preproc_pragma] = STATE(1562), + [sym_preproc_nullable] = STATE(1562), + [sym_preproc_error] = STATE(1562), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -302250,19 +305890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -302273,88 +305913,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), + }, + [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_preproc_region] = STATE(1563), + [sym_preproc_endregion] = STATE(1563), + [sym_preproc_line] = STATE(1563), + [sym_preproc_pragma] = STATE(1563), + [sym_preproc_nullable] = STATE(1563), + [sym_preproc_error] = STATE(1563), + [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), + }, + [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_preproc_region] = STATE(1564), + [sym_preproc_endregion] = STATE(1564), + [sym_preproc_line] = STATE(1564), + [sym_preproc_pragma] = STATE(1564), + [sym_preproc_nullable] = STATE(1564), + [sym_preproc_error] = STATE(1564), + [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), + }, + [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_preproc_region] = STATE(1565), + [sym_preproc_endregion] = STATE(1565), + [sym_preproc_line] = STATE(1565), + [sym_preproc_pragma] = STATE(1565), + [sym_preproc_nullable] = STATE(1565), + [sym_preproc_error] = STATE(1565), + [sym_preproc_warning] = STATE(1565), + [sym_preproc_define] = STATE(1565), + [sym_preproc_undef] = STATE(1565), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), }, [1566] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3505), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1566), [sym_preproc_endregion] = STATE(1566), [sym_preproc_line] = STATE(1566), @@ -302364,47 +306513,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302417,19 +306566,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302440,88 +306589,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1567] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1567), [sym_preproc_endregion] = STATE(1567), [sym_preproc_line] = STATE(1567), @@ -302531,47 +306682,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302584,19 +306735,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -302607,88 +306758,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1568] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4070), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -302698,164 +306851,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1568), [sym_preproc_define] = STATE(1568), [sym_preproc_undef] = STATE(1568), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3504), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1569), [sym_preproc_endregion] = STATE(1569), [sym_preproc_line] = STATE(1569), @@ -302865,47 +307020,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -302918,19 +307073,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302941,88 +307096,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1570] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5262), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1570), [sym_preproc_endregion] = STATE(1570), [sym_preproc_line] = STATE(1570), @@ -303032,47 +307189,47 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -303097,7 +307254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -303114,82 +307271,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1571] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3501), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1571), [sym_preproc_endregion] = STATE(1571), [sym_preproc_line] = STATE(1571), @@ -303199,47 +307358,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [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), @@ -303252,19 +307411,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -303275,88 +307434,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1572] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1572), [sym_preproc_endregion] = STATE(1572), [sym_preproc_line] = STATE(1572), @@ -303366,47 +307527,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -303419,19 +307580,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -303442,88 +307603,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1573] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1573), [sym_preproc_endregion] = STATE(1573), [sym_preproc_line] = STATE(1573), @@ -303533,47 +307696,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303586,19 +307749,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -303609,88 +307772,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1574] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3523), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1574), [sym_preproc_endregion] = STATE(1574), [sym_preproc_line] = STATE(1574), @@ -303700,47 +307865,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303753,19 +307918,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -303776,88 +307941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1575] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4440), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1575), [sym_preproc_endregion] = STATE(1575), [sym_preproc_line] = STATE(1575), @@ -303867,47 +308034,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -303920,19 +308087,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -303943,88 +308110,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1576] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4439), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1576), [sym_preproc_endregion] = STATE(1576), [sym_preproc_line] = STATE(1576), @@ -304034,47 +308203,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304087,19 +308256,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304110,88 +308279,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1577] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4438), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1577), [sym_preproc_endregion] = STATE(1577), [sym_preproc_line] = STATE(1577), @@ -304201,47 +308372,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304254,19 +308425,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304277,88 +308448,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1578] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4437), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1578), [sym_preproc_endregion] = STATE(1578), [sym_preproc_line] = STATE(1578), @@ -304368,47 +308541,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [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), @@ -304421,19 +308594,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304444,88 +308617,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1579] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4436), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1579), [sym_preproc_endregion] = STATE(1579), [sym_preproc_line] = STATE(1579), @@ -304535,47 +308710,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304588,19 +308763,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304611,88 +308786,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1580] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4435), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1580), [sym_preproc_endregion] = STATE(1580), [sym_preproc_line] = STATE(1580), @@ -304702,47 +308879,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304755,19 +308932,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304778,88 +308955,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1581] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4434), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1581), [sym_preproc_endregion] = STATE(1581), [sym_preproc_line] = STATE(1581), @@ -304869,47 +309048,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -304922,19 +309101,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -304945,88 +309124,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1582] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4433), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1582), [sym_preproc_endregion] = STATE(1582), [sym_preproc_line] = STATE(1582), @@ -305036,47 +309217,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305089,19 +309270,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -305112,88 +309293,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1583] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4657), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1583), [sym_preproc_endregion] = STATE(1583), [sym_preproc_line] = STATE(1583), @@ -305203,47 +309386,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305256,19 +309439,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -305279,88 +309462,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1584] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4432), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1584), [sym_preproc_endregion] = STATE(1584), [sym_preproc_line] = STATE(1584), @@ -305370,47 +309555,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305423,19 +309608,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -305446,88 +309631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1585] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4431), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1585), [sym_preproc_endregion] = STATE(1585), [sym_preproc_line] = STATE(1585), @@ -305537,47 +309724,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1567), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [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(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305590,19 +309777,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -305613,88 +309800,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1586] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3524), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1586), [sym_preproc_endregion] = STATE(1586), [sym_preproc_line] = STATE(1586), @@ -305704,47 +309893,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305757,19 +309946,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -305780,88 +309969,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1587] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1587), [sym_preproc_endregion] = STATE(1587), [sym_preproc_line] = STATE(1587), @@ -305871,47 +310062,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -305924,19 +310115,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -305947,88 +310138,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1588] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3528), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1588), [sym_preproc_endregion] = STATE(1588), [sym_preproc_line] = STATE(1588), @@ -306038,47 +310231,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306091,19 +310284,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -306114,88 +310307,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1589] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5264), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1589), [sym_preproc_endregion] = STATE(1589), [sym_preproc_line] = STATE(1589), @@ -306205,47 +310400,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306258,19 +310453,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -306281,88 +310476,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1590] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3497), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1590), [sym_preproc_endregion] = STATE(1590), [sym_preproc_line] = STATE(1590), @@ -306372,47 +310569,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306425,19 +310622,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -306448,88 +310645,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1591] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5268), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1591), [sym_preproc_endregion] = STATE(1591), [sym_preproc_line] = STATE(1591), @@ -306539,47 +310738,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -306592,19 +310791,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -306615,88 +310814,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1592] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3535), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1592), [sym_preproc_endregion] = STATE(1592), [sym_preproc_line] = STATE(1592), @@ -306706,164 +310907,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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), }, [1593] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3546), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1593), [sym_preproc_endregion] = STATE(1593), [sym_preproc_line] = STATE(1593), @@ -306873,164 +311076,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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), }, [1594] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5310), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(1594), [sym_preproc_endregion] = STATE(1594), [sym_preproc_line] = STATE(1594), @@ -307040,47 +311245,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -307105,7 +311310,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -307122,82 +311327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1595] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1595), [sym_preproc_endregion] = STATE(1595), [sym_preproc_line] = STATE(1595), @@ -307207,47 +311414,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -307260,19 +311467,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -307283,88 +311490,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1596] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3496), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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_preproc_region] = STATE(1596), [sym_preproc_endregion] = STATE(1596), [sym_preproc_line] = STATE(1596), @@ -307374,164 +311583,166 @@ 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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4082), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -307541,47 +311752,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1597), [sym_preproc_define] = STATE(1597), [sym_preproc_undef] = STATE(1597), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1805), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -307594,19 +311805,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -307617,88 +311828,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1598] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3489), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -307708,164 +311921,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1598), [sym_preproc_define] = STATE(1598), [sym_preproc_undef] = STATE(1598), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -307875,164 +312090,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1599), [sym_preproc_define] = STATE(1599), [sym_preproc_undef] = STATE(1599), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -308042,164 +312259,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1600), [sym_preproc_define] = STATE(1600), [sym_preproc_undef] = STATE(1600), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4443), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -308209,164 +312428,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1601), [sym_preproc_define] = STATE(1601), [sym_preproc_undef] = STATE(1601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4194), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -308376,164 +312597,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1602), [sym_preproc_define] = STATE(1602), [sym_preproc_undef] = STATE(1602), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -308543,164 +312766,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1603), [sym_preproc_define] = STATE(1603), [sym_preproc_undef] = STATE(1603), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4200), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -308710,164 +312935,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1604), [sym_preproc_define] = STATE(1604), [sym_preproc_undef] = STATE(1604), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4204), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -308877,164 +313104,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1605), [sym_preproc_define] = STATE(1605), [sym_preproc_undef] = STATE(1605), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4247), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -309044,164 +313273,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1606), [sym_preproc_define] = STATE(1606), [sym_preproc_undef] = STATE(1606), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5284), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -309211,47 +313442,723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1607), [sym_preproc_define] = STATE(1607), [sym_preproc_undef] = STATE(1607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309264,19 +314171,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -309292,300 +314199,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), }, - [1608] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4244), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1609] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5287), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309610,7 +314352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309626,133 +314368,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), }, - [1610] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5291), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309777,7 +314521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309793,133 +314537,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), }, - [1611] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4571), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -309932,19 +314678,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -309960,133 +314706,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), }, - [1612] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310111,7 +314859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310127,133 +314875,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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5717), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2260), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4673), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3370), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5987), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7304), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1563), - [anon_sym_ref] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1567), + [anon_sym_new] = ACTIONS(1697), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_TILDE] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1571), - [anon_sym_DASH_DASH] = ACTIONS(1571), + [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(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_STAR] = ACTIONS(1573), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1575), + [anon_sym_throw] = ACTIONS(1703), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1579), + [anon_sym_await] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1707), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310266,19 +315016,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [aux_sym_preproc_if_token1] = ACTIONS(1709), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310294,133 +315044,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), }, - [1614] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5328), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310445,7 +315197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310461,300 +315213,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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4258), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1616] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5329), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -310767,19 +315354,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -310790,422 +315377,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1617] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4214), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1618] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4215), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1619] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5330), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -311215,47 +315470,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1619), [sym_preproc_define] = STATE(1619), [sym_preproc_undef] = STATE(1619), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311268,19 +315523,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -311291,88 +315546,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1620] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -311382,164 +315639,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1620), [sym_preproc_define] = STATE(1620), [sym_preproc_undef] = STATE(1620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(1155), + [anon_sym_ref] = ACTIONS(1157), + [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(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_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(1185), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1621] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4257), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -311549,164 +315808,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1621), [sym_preproc_define] = STATE(1621), [sym_preproc_undef] = STATE(1621), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(1155), + [anon_sym_ref] = ACTIONS(1157), + [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(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_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(1185), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1622] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4532), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -311716,47 +315977,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1622), [sym_preproc_define] = STATE(1622), [sym_preproc_undef] = STATE(1622), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(1739), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -311769,19 +316030,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -311792,88 +316053,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1623] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4221), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -311883,164 +316146,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1623), [sym_preproc_define] = STATE(1623), [sym_preproc_undef] = STATE(1623), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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_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_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(1945), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1624] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4227), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -312050,214 +316315,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1624), [sym_preproc_define] = STATE(1624), [sym_preproc_undef] = STATE(1624), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1625] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -312271,18 +316369,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -312293,472 +316391,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), - }, - [1626] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4229), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1627] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4360), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, - [1628] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5697), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2308), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4043), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3042), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5989), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7487), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_ref] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1805), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [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(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2097), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_CARET] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2101), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -312771,19 +316537,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -312794,138 +316560,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [1629] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4972), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [1626] = { + [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(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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1637), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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__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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -312938,19 +316875,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -312966,83 +316903,423 @@ 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), + [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), + }, [1630] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -313052,214 +317329,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1630), [sym_preproc_define] = STATE(1630), [sym_preproc_undef] = STATE(1630), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1631] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4496), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -313284,7 +317394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -313300,83 +317410,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), }, + [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), + [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_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(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_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(1739), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1741), + [anon_sym_DOT_DOT] = ACTIONS(1743), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, [1632] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4497), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -313386,47 +317667,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1632), [sym_preproc_define] = STATE(1632), [sym_preproc_undef] = STATE(1632), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313439,19 +317720,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -313462,88 +317743,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1633] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4498), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -313553,47 +317836,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1633), [sym_preproc_define] = STATE(1633), [sym_preproc_undef] = STATE(1633), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313618,7 +317901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -313635,82 +317918,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1634] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4537), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -313720,47 +318005,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1634), [sym_preproc_define] = STATE(1634), [sym_preproc_undef] = STATE(1634), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313773,19 +318058,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -313796,88 +318081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1635] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4501), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -313887,47 +318174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1635), [sym_preproc_define] = STATE(1635), [sym_preproc_undef] = STATE(1635), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313940,19 +318227,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -313963,88 +318250,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1636] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4502), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314054,47 +318343,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1636), [sym_preproc_define] = STATE(1636), [sym_preproc_undef] = STATE(1636), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -314107,19 +318396,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314130,88 +318419,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1637] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4503), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314221,47 +318512,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1637), [sym_preproc_define] = STATE(1637), [sym_preproc_undef] = STATE(1637), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314274,19 +318565,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314297,88 +318588,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1638] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4505), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314388,47 +318681,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1638), [sym_preproc_define] = STATE(1638), [sym_preproc_undef] = STATE(1638), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314441,19 +318734,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314464,88 +318757,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1639] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4506), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314555,47 +318850,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1639), [sym_preproc_define] = STATE(1639), [sym_preproc_undef] = STATE(1639), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -314620,7 +318915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314637,82 +318932,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1640] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314722,47 +319019,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1640), [sym_preproc_define] = STATE(1640), [sym_preproc_undef] = STATE(1640), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -314787,7 +319084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314804,82 +319101,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1641] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4508), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -314889,47 +319188,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1641), [sym_preproc_define] = STATE(1641), [sym_preproc_undef] = STATE(1641), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -314954,7 +319253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -314971,82 +319270,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1642] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5311), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -315056,47 +319357,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1642), [sym_preproc_define] = STATE(1642), [sym_preproc_undef] = STATE(1642), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -315121,7 +319422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -315138,82 +319439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1643] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4524), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -315223,47 +319526,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1643), [sym_preproc_define] = STATE(1643), [sym_preproc_undef] = STATE(1643), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -315288,7 +319591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -315305,82 +319608,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1644] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -315390,47 +319695,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1644), [sym_preproc_define] = STATE(1644), [sym_preproc_undef] = STATE(1644), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_checked] = ACTIONS(1067), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -315455,7 +319760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -315472,82 +319777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1645] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5323), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -315557,47 +319864,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1645), [sym_preproc_define] = STATE(1645), [sym_preproc_undef] = STATE(1645), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_checked] = ACTIONS(1067), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [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), @@ -315622,7 +319929,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -315639,82 +319946,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1646] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3142), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3435), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7075), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -315724,47 +320033,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1646), [sym_preproc_define] = STATE(1646), [sym_preproc_undef] = STATE(1646), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_ref] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1525), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1529), - [anon_sym_TILDE] = ACTIONS(1529), - [anon_sym_PLUS_PLUS] = ACTIONS(1529), - [anon_sym_DASH_DASH] = ACTIONS(1529), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1527), - [anon_sym_DASH] = ACTIONS(1527), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1529), - [anon_sym_AMP] = ACTIONS(1529), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1531), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1535), + [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), @@ -315777,19 +320086,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -315800,88 +320109,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1647] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3472), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -315891,47 +320202,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1647), [sym_preproc_define] = STATE(1647), [sym_preproc_undef] = STATE(1647), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315944,19 +320255,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -315967,88 +320278,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1648] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5425), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -316058,47 +320371,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1648), [sym_preproc_define] = STATE(1648), [sym_preproc_undef] = STATE(1648), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1353), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1355), + [anon_sym_DOT_DOT] = ACTIONS(1357), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316111,19 +320424,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -316140,82 +320453,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1649] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3476), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -316225,47 +320540,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1649), [sym_preproc_define] = STATE(1649), [sym_preproc_undef] = STATE(1649), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316278,19 +320593,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -316301,88 +320616,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1650] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4008), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -316392,47 +320709,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1650), [sym_preproc_define] = STATE(1650), [sym_preproc_undef] = STATE(1650), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316445,19 +320762,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -316468,88 +320785,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1651] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5721), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2287), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2836), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7221), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -316559,47 +320878,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1651), [sym_preproc_define] = STATE(1651), [sym_preproc_undef] = STATE(1651), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_ref] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1695), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_TILDE] = ACTIONS(1699), - [anon_sym_PLUS_PLUS] = ACTIONS(1699), - [anon_sym_DASH_DASH] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1701), - [anon_sym_CARET] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1703), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1705), - [anon_sym_DOT_DOT] = ACTIONS(1707), + [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), @@ -316612,19 +320931,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -316635,88 +320954,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1652] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -316726,47 +321047,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1652), [sym_preproc_define] = STATE(1652), [sym_preproc_undef] = STATE(1652), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1945), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), + [anon_sym_await] = ACTIONS(1947), + [anon_sym_DOT_DOT] = ACTIONS(1949), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -316779,19 +321100,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -316802,88 +321123,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1653] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4538), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -316893,47 +321216,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1653), [sym_preproc_define] = STATE(1653), [sym_preproc_undef] = STATE(1653), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -316946,19 +321269,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -316969,88 +321292,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1654] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317060,47 +321385,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1654), [sym_preproc_define] = STATE(1654), [sym_preproc_undef] = STATE(1654), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -317113,19 +321438,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -317136,88 +321461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1655] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4879), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317227,47 +321554,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1655), [sym_preproc_define] = STATE(1655), [sym_preproc_undef] = STATE(1655), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -317281,18 +321608,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(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(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [sym_integer_literal] = 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), @@ -317303,88 +321630,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1656] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317394,47 +321723,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1656), [sym_preproc_define] = STATE(1656), [sym_preproc_undef] = STATE(1656), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317447,19 +321776,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -317470,88 +321799,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1657] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4539), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317561,47 +321892,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1657), [sym_preproc_define] = STATE(1657), [sym_preproc_undef] = STATE(1657), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1101), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1233), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -317626,7 +321957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -317643,82 +321974,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1658] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4023), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3037), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5973), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7367), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317728,47 +322061,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1658), [sym_preproc_define] = STATE(1658), [sym_preproc_undef] = STATE(1658), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_ref] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_TILDE] = ACTIONS(1827), - [anon_sym_PLUS_PLUS] = ACTIONS(1827), - [anon_sym_DASH_DASH] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1833), - [anon_sym_DOT_DOT] = ACTIONS(1835), + [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), @@ -317781,19 +322114,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -317804,88 +322137,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1659] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4555), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -317895,47 +322230,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1659), [sym_preproc_define] = STATE(1659), [sym_preproc_undef] = STATE(1659), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -317960,7 +322295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -317977,82 +322312,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1660] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4558), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318062,47 +322399,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1660), [sym_preproc_define] = STATE(1660), [sym_preproc_undef] = STATE(1660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -318127,7 +322464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318144,82 +322481,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1661] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4559), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318229,47 +322568,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1661), [sym_preproc_define] = STATE(1661), [sym_preproc_undef] = STATE(1661), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -318294,7 +322633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318311,82 +322650,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1662] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5530), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(2392), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318396,47 +322737,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1662), [sym_preproc_define] = STATE(1662), [sym_preproc_undef] = STATE(1662), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -318461,7 +322802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318478,82 +322819,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1663] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5691), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5350), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3611), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5985), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7126), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318563,47 +322906,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1663), [sym_preproc_define] = STATE(1663), [sym_preproc_undef] = STATE(1663), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_ref] = ACTIONS(2133), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2135), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_TILDE] = ACTIONS(2139), - [anon_sym_PLUS_PLUS] = ACTIONS(2139), - [anon_sym_DASH_DASH] = ACTIONS(2139), + [anon_sym_checked] = ACTIONS(1067), + [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(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_STAR] = ACTIONS(2141), - [anon_sym_CARET] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2143), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_DOT_DOT] = ACTIONS(2147), + [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), @@ -318628,7 +322971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318645,82 +322988,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1664] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4563), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318730,47 +323075,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1664), [sym_preproc_define] = STATE(1664), [sym_preproc_undef] = STATE(1664), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -318795,7 +323140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318812,82 +323157,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1665] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4565), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -318897,47 +323244,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1665), [sym_preproc_define] = STATE(1665), [sym_preproc_undef] = STATE(1665), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -318962,7 +323309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -318979,82 +323326,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1666] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4566), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -319064,47 +323413,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1666), [sym_preproc_define] = STATE(1666), [sym_preproc_undef] = STATE(1666), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319117,19 +323466,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -319140,88 +323489,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1667] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4567), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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(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), @@ -319231,164 +323582,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1667), [sym_preproc_define] = STATE(1667), [sym_preproc_undef] = STATE(1667), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(1085), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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(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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4550), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -319398,47 +323751,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1668), [sym_preproc_define] = STATE(1668), [sym_preproc_undef] = STATE(1668), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -319451,19 +323804,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -319474,88 +323827,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1669] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4284), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), + [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), @@ -319565,47 +323920,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1669), [sym_preproc_define] = STATE(1669), [sym_preproc_undef] = STATE(1669), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -319618,19 +323973,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -319641,88 +323996,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1670] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5175), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), + [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), @@ -319732,47 +324089,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1670), [sym_preproc_define] = STATE(1670), [sym_preproc_undef] = STATE(1670), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -319785,19 +324142,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -319814,82 +324171,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1671] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5413), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -319899,47 +324258,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1671), [sym_preproc_define] = STATE(1671), [sym_preproc_undef] = STATE(1671), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1489), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1185), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_await] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1189), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -319952,19 +324311,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -319975,88 +324334,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1672] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5293), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320066,47 +324427,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1672), [sym_preproc_define] = STATE(1672), [sym_preproc_undef] = STATE(1672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -320131,7 +324492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -320148,82 +324509,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1673] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5285), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320233,47 +324596,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1673), [sym_preproc_define] = STATE(1673), [sym_preproc_undef] = STATE(1673), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -320298,7 +324661,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -320315,82 +324678,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1674] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5249), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320400,47 +324765,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1674), [sym_preproc_define] = STATE(1674), [sym_preproc_undef] = STATE(1674), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -320465,7 +324830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -320482,82 +324847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1675] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5243), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320567,47 +324934,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1675), [sym_preproc_define] = STATE(1675), [sym_preproc_undef] = STATE(1675), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -320632,7 +324999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -320649,82 +325016,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1676] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320734,47 +325103,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1676), [sym_preproc_define] = STATE(1676), [sym_preproc_undef] = STATE(1676), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -320787,19 +325156,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -320816,82 +325185,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1677] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5049), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -320901,47 +325272,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1677), [sym_preproc_define] = STATE(1677), [sym_preproc_undef] = STATE(1677), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -320954,19 +325325,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -320983,82 +325354,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1678] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5240), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -321068,47 +325441,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1678), [sym_preproc_define] = STATE(1678), [sym_preproc_undef] = STATE(1678), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -321121,19 +325494,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -321150,82 +325523,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1679] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5053), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -321235,47 +325610,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1679), [sym_preproc_define] = STATE(1679), [sym_preproc_undef] = STATE(1679), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -321288,19 +325663,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -321317,82 +325692,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1680] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4141), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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_preproc_region] = STATE(1680), [sym_preproc_endregion] = STATE(1680), [sym_preproc_line] = STATE(1680), @@ -321402,47 +325779,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1680), [sym_preproc_define] = STATE(1680), [sym_preproc_undef] = STATE(1680), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -321455,19 +325832,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -321484,82 +325861,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1681] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5180), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1681), [sym_preproc_endregion] = STATE(1681), [sym_preproc_line] = STATE(1681), @@ -321569,47 +325948,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -321622,19 +326001,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -321651,82 +326030,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1682] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5711), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3845), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3001), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5976), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7464), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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_preproc_region] = STATE(1682), [sym_preproc_endregion] = STATE(1682), [sym_preproc_line] = STATE(1682), @@ -321736,47 +326117,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_ref] = ACTIONS(1241), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_TILDE] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1271), + [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), @@ -321789,19 +326170,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -321812,88 +326193,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1683] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5708), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2324), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5327), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3566), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5994), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7185), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1683), [sym_preproc_endregion] = STATE(1683), [sym_preproc_line] = STATE(1683), @@ -321903,47 +326286,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_ref] = ACTIONS(2193), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(2195), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), + [anon_sym_checked] = ACTIONS(1067), + [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(2197), - [anon_sym_DASH] = ACTIONS(2197), - [anon_sym_STAR] = ACTIONS(2201), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2203), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2205), - [anon_sym_DOT_DOT] = ACTIONS(2207), + [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), @@ -321968,7 +326351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -321985,82 +326368,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1684] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5186), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1684), [sym_preproc_endregion] = STATE(1684), [sym_preproc_line] = STATE(1684), @@ -322070,47 +326455,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -322135,7 +326520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -322152,82 +326537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1685] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5188), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1685), [sym_preproc_endregion] = STATE(1685), [sym_preproc_line] = STATE(1685), @@ -322237,47 +326624,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(1067), + [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(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(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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -322302,7 +326689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -322319,82 +326706,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1686] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5231), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1686), [sym_preproc_endregion] = STATE(1686), [sym_preproc_line] = STATE(1686), @@ -322404,47 +326793,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -322457,19 +326846,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -322486,82 +326875,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1687] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5229), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1687), [sym_preproc_endregion] = STATE(1687), [sym_preproc_line] = STATE(1687), @@ -322571,47 +326962,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -322624,19 +327015,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][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(1333), [anon_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(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(1085), + [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), @@ -322653,82 +327044,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1688] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4103), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1688), [sym_preproc_endregion] = STATE(1688), [sym_preproc_line] = STATE(1688), @@ -322738,47 +327131,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -322791,19 +327184,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -322814,88 +327207,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1689] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5266), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1689), [sym_preproc_endregion] = STATE(1689), [sym_preproc_line] = STATE(1689), @@ -322905,47 +327300,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -322970,7 +327365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -322987,82 +327382,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1690] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4877), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1690), [sym_preproc_endregion] = STATE(1690), [sym_preproc_line] = STATE(1690), @@ -323072,47 +327469,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -323137,7 +327534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -323154,82 +327551,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1691] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1691), [sym_preproc_endregion] = STATE(1691), [sym_preproc_line] = STATE(1691), @@ -323239,47 +327638,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -323292,19 +327691,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -323315,88 +327714,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1692] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5218), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1692), [sym_preproc_endregion] = STATE(1692), [sym_preproc_line] = STATE(1692), @@ -323406,47 +327807,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -323471,7 +327872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -323488,82 +327889,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1693] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4471), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1693), [sym_preproc_endregion] = STATE(1693), [sym_preproc_line] = STATE(1693), @@ -323573,47 +327976,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -323626,19 +328029,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -323649,88 +328052,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1694] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3068), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1694), [sym_preproc_endregion] = STATE(1694), [sym_preproc_line] = STATE(1694), @@ -323740,47 +328145,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -323793,19 +328198,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -323816,88 +328221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1695] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5067), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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_preproc_region] = STATE(1695), [sym_preproc_endregion] = STATE(1695), [sym_preproc_line] = STATE(1695), @@ -323907,47 +328314,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1731), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1651), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1653), + [anon_sym_unchecked] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1655), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -323960,19 +328367,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -323983,88 +328390,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1685), + [sym_interpolation_verbatim_start] = ACTIONS(1687), + [sym_interpolation_raw_start] = ACTIONS(1689), + [sym_raw_string_start] = ACTIONS(1691), }, [1696] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4345), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1696), [sym_preproc_endregion] = STATE(1696), [sym_preproc_line] = STATE(1696), @@ -324074,47 +328483,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -324127,19 +328536,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -324150,88 +328559,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1697] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4122), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1697), [sym_preproc_endregion] = STATE(1697), [sym_preproc_line] = STATE(1697), @@ -324241,47 +328652,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -324294,19 +328705,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -324317,88 +328728,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1698] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4121), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1698), [sym_preproc_endregion] = STATE(1698), [sym_preproc_line] = STATE(1698), @@ -324408,381 +328821,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1699] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4120), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), - [sym_preproc_region] = STATE(1699), - [sym_preproc_endregion] = STATE(1699), - [sym_preproc_line] = STATE(1699), - [sym_preproc_pragma] = STATE(1699), - [sym_preproc_nullable] = STATE(1699), - [sym_preproc_error] = STATE(1699), - [sym_preproc_warning] = STATE(1699), - [sym_preproc_define] = STATE(1699), - [sym_preproc_undef] = STATE(1699), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1151), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), - }, - [1700] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5070), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [sym_preproc_region] = STATE(1700), - [sym_preproc_endregion] = STATE(1700), - [sym_preproc_line] = STATE(1700), - [sym_preproc_pragma] = STATE(1700), - [sym_preproc_nullable] = STATE(1700), - [sym_preproc_error] = STATE(1700), - [sym_preproc_warning] = STATE(1700), - [sym_preproc_define] = STATE(1700), - [sym_preproc_undef] = STATE(1700), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -324807,7 +328886,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(1085), + [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), + }, + [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_preproc_region] = STATE(1699), + [sym_preproc_endregion] = STATE(1699), + [sym_preproc_line] = STATE(1699), + [sym_preproc_pragma] = STATE(1699), + [sym_preproc_nullable] = STATE(1699), + [sym_preproc_error] = STATE(1699), + [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), + [sym__identifier_token] = ACTIONS(25), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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_preproc_region] = STATE(1700), + [sym_preproc_endregion] = STATE(1700), + [sym_preproc_line] = STATE(1700), + [sym_preproc_pragma] = STATE(1700), + [sym_preproc_nullable] = STATE(1700), + [sym_preproc_error] = STATE(1700), + [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), + [sym__identifier_token] = ACTIONS(25), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -324824,82 +329241,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1701] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4118), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1701), [sym_preproc_endregion] = STATE(1701), [sym_preproc_line] = STATE(1701), @@ -324909,47 +329328,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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1937), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2259), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -324962,19 +329381,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -324985,88 +329404,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1702] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4117), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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_preproc_region] = STATE(1702), [sym_preproc_endregion] = STATE(1702), [sym_preproc_line] = STATE(1702), @@ -325076,47 +329497,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1702), [sym_preproc_define] = STATE(1702), [sym_preproc_undef] = STATE(1702), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325129,19 +329550,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -325152,88 +329573,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1703] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4116), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -325243,47 +329666,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1703), [sym_preproc_define] = STATE(1703), [sym_preproc_undef] = STATE(1703), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325296,19 +329719,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -325319,88 +329742,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1704] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4115), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -325410,47 +329835,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1704), [sym_preproc_define] = STATE(1704), [sym_preproc_undef] = STATE(1704), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325463,19 +329888,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -325486,88 +329911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1705] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4114), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -325577,47 +330004,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1705), [sym_preproc_define] = STATE(1705), [sym_preproc_undef] = STATE(1705), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325630,19 +330057,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -325653,88 +330080,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1706] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4113), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -325744,47 +330173,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1706), [sym_preproc_define] = STATE(1706), [sym_preproc_undef] = STATE(1706), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [anon_sym_checked] = ACTIONS(1067), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325797,19 +330226,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -325820,88 +330249,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1707] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4112), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -325911,47 +330342,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1707), [sym_preproc_define] = STATE(1707), [sym_preproc_undef] = STATE(1707), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -325964,19 +330395,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -325987,88 +330418,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1708] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5408), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -326078,47 +330511,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1708), [sym_preproc_define] = STATE(1708), [sym_preproc_undef] = STATE(1708), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(79), - [anon_sym_DASH] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(1587), + [anon_sym_AMP] = ACTIONS(1587), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -326143,7 +330576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -326160,82 +330593,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1709] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4111), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -326245,47 +330680,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1709), [sym_preproc_define] = STATE(1709), [sym_preproc_undef] = STATE(1709), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -326298,19 +330733,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -326321,88 +330756,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1710] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4757), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -326412,47 +330849,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1710), [sym_preproc_define] = STATE(1710), [sym_preproc_undef] = STATE(1710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1863), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1871), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -326465,19 +330902,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -326488,88 +330925,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1711] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -326579,47 +331018,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1711), [sym_preproc_define] = STATE(1711), [sym_preproc_undef] = STATE(1711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -326632,19 +331071,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -326655,88 +331094,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1712] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5695), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2246), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4371), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3163), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5990), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7155), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2190), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -326746,47 +331187,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1712), [sym_preproc_define] = STATE(1712), [sym_preproc_undef] = STATE(1712), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_ref] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1721), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1725), - [anon_sym_TILDE] = ACTIONS(1725), - [anon_sym_PLUS_PLUS] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1725), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_CARET] = ACTIONS(1725), - [anon_sym_AMP] = ACTIONS(1725), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1733), + [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), @@ -326799,19 +331240,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -326822,88 +331263,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1713] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4754), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -326913,47 +331356,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1713), [sym_preproc_define] = STATE(1713), [sym_preproc_undef] = STATE(1713), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(79), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -326978,7 +331421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -326995,82 +331438,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1714] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4733), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -327080,47 +331525,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1714), [sym_preproc_define] = STATE(1714), [sym_preproc_undef] = STATE(1714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -327133,19 +331578,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -327156,88 +331601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1715] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4778), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -327247,47 +331694,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1715), [sym_preproc_define] = STATE(1715), [sym_preproc_undef] = STATE(1715), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -327300,19 +331747,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -327323,88 +331770,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1716] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4096), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -327414,47 +331863,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1716), [sym_preproc_define] = STATE(1716), [sym_preproc_undef] = STATE(1716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -327467,19 +331916,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -327496,82 +331945,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1717] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4764), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -327581,46 +332032,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1717), [sym_preproc_define] = STATE(1717), [sym_preproc_undef] = STATE(1717), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_static] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1585), + [anon_sym_DASH] = ACTIONS(1585), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), + [anon_sym_await] = ACTIONS(1591), [anon_sym_DOT_DOT] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), @@ -327646,7 +332097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -327663,82 +332114,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1718] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -327748,72 +332201,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1718), [sym_preproc_define] = STATE(1718), [sym_preproc_undef] = STATE(1718), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), @@ -327824,88 +332277,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1719] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -327915,47 +332370,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1719), [sym_preproc_define] = STATE(1719), [sym_preproc_undef] = STATE(1719), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [anon_sym_checked] = ACTIONS(1067), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -327980,7 +332435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -327997,82 +332452,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1720] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4854), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -328082,47 +332539,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1720), [sym_preproc_define] = STATE(1720), [sym_preproc_undef] = STATE(1720), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2057), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2061), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328147,7 +332604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -328164,82 +332621,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1721] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -328249,47 +332708,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1721), [sym_preproc_define] = STATE(1721), [sym_preproc_undef] = STATE(1721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -328302,19 +332761,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -328331,82 +332790,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1722] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4517), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -328416,72 +332877,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1722), [sym_preproc_define] = STATE(1722), [sym_preproc_undef] = STATE(1722), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), + [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(1405), - [anon_sym_false] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(77), + [anon_sym_false] = ACTIONS(77), [anon_sym_PLUS] = ACTIONS(1585), [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(81), [anon_sym_CARET] = ACTIONS(1587), [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), + [anon_sym_this] = ACTIONS(83), + [anon_sym_scoped] = 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(1385), + [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328492,88 +332953,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1723] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4516), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -328583,72 +333046,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1723), [sym_preproc_define] = STATE(1723), [sym_preproc_undef] = STATE(1723), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -328659,88 +333122,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1724] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4515), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -328750,72 +333215,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1724), [sym_preproc_define] = STATE(1724), [sym_preproc_undef] = STATE(1724), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), @@ -328826,88 +333291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4864), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -328917,47 +333384,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1725), [sym_preproc_define] = STATE(1725), [sym_preproc_undef] = STATE(1725), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -328982,7 +333449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -328999,82 +333466,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1726] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4513), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329084,72 +333553,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1726), [sym_preproc_define] = STATE(1726), [sym_preproc_undef] = STATE(1726), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329160,88 +333629,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1727] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4663), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329251,72 +333722,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1727), [sym_preproc_define] = STATE(1727), [sym_preproc_undef] = STATE(1727), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329327,88 +333798,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1728] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4512), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329418,72 +333891,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1728), [sym_preproc_define] = STATE(1728), [sym_preproc_undef] = STATE(1728), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329494,88 +333967,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1729] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4511), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329585,72 +334060,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1729), [sym_preproc_define] = STATE(1729), [sym_preproc_undef] = STATE(1729), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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(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_scoped] = 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(2101), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329661,88 +334136,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1730] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4510), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329752,72 +334229,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1730), [sym_preproc_define] = STATE(1730), [sym_preproc_undef] = STATE(1730), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), @@ -329828,88 +334305,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1731] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4677), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -329919,72 +334398,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1731), [sym_preproc_define] = STATE(1731), [sym_preproc_undef] = STATE(1731), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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(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_scoped] = 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(2101), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -329995,88 +334474,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1732] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4661), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -330086,72 +334567,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1732), [sym_preproc_define] = STATE(1732), [sym_preproc_undef] = STATE(1732), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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(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_scoped] = 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(2101), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330162,88 +334643,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1733] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4659), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -330253,72 +334736,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1733), [sym_preproc_define] = STATE(1733), [sym_preproc_undef] = STATE(1733), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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(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_scoped] = 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(2101), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330329,88 +334812,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1734] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4917), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -330420,47 +334905,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1734), [sym_preproc_define] = STATE(1734), [sym_preproc_undef] = STATE(1734), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330485,7 +334970,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330502,82 +334987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1735] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -330587,47 +335074,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1735), [sym_preproc_define] = STATE(1735), [sym_preproc_undef] = STATE(1735), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330640,19 +335127,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330669,82 +335156,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1736] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4135), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -330754,47 +335243,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1736), [sym_preproc_define] = STATE(1736), [sym_preproc_undef] = STATE(1736), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330807,19 +335296,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -330836,82 +335325,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1737] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4923), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -330921,47 +335412,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1737), [sym_preproc_define] = STATE(1737), [sym_preproc_undef] = STATE(1737), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -330986,7 +335477,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331003,82 +335494,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1738] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4654), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -331088,72 +335581,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1738), [sym_preproc_define] = STATE(1738), [sym_preproc_undef] = STATE(1738), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331164,88 +335657,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1739] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5265), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -331255,47 +335750,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1739), [sym_preproc_define] = STATE(1739), [sym_preproc_undef] = STATE(1739), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331320,7 +335815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331337,82 +335832,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1740] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4176), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3131), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5970), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7101), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -331422,164 +335919,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1740), [sym_preproc_define] = STATE(1740), [sym_preproc_undef] = STATE(1740), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_ref] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_TILDE] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1467), - [anon_sym_DASH_DASH] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1471), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1475), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(2093), + [anon_sym_ref] = ACTIONS(2095), + [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(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_scoped] = 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(2101), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(2107), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1741] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2812), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -331589,47 +336088,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1741), [sym_preproc_define] = STATE(1741), [sym_preproc_undef] = STATE(1741), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -331642,19 +336141,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331665,88 +336164,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1742] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4901), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -331756,47 +336257,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1742), [sym_preproc_define] = STATE(1742), [sym_preproc_undef] = STATE(1742), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(2181), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(2189), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -331821,7 +336322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -331838,82 +336339,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1743] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4649), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -331923,72 +336426,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1743), [sym_preproc_define] = STATE(1743), [sym_preproc_undef] = STATE(1743), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), @@ -331999,88 +336502,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4779), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -332090,47 +336595,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1744), [sym_preproc_define] = STATE(1744), [sym_preproc_undef] = STATE(1744), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -332143,19 +336648,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -332166,88 +336671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5263), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -332257,47 +336764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1745), [sym_preproc_define] = STATE(1745), [sym_preproc_undef] = STATE(1745), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332322,7 +336829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332339,82 +336846,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1746] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4379), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -332424,47 +336933,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1746), [sym_preproc_define] = STATE(1746), [sym_preproc_undef] = STATE(1746), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -332477,19 +336986,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -332500,88 +337009,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1747] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4380), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -332591,47 +337102,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1747), [sym_preproc_define] = STATE(1747), [sym_preproc_undef] = STATE(1747), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -332644,19 +337155,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -332667,88 +337178,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1748] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4381), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -332758,214 +337271,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1748), [sym_preproc_define] = STATE(1748), [sym_preproc_undef] = STATE(1748), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1749] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5714), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5260), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3620), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7511), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_ref] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_TILDE] = ACTIONS(2015), - [anon_sym_PLUS_PLUS] = ACTIONS(2015), - [anon_sym_DASH_DASH] = ACTIONS(2015), + [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(2013), - [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_PLUS] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2097), [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), + [anon_sym_CARET] = ACTIONS(2099), + [anon_sym_AMP] = ACTIONS(2099), [anon_sym_this] = ACTIONS(83), [anon_sym_scoped] = ACTIONS(85), [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2017), + [anon_sym_throw] = ACTIONS(2101), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_DOT_DOT] = ACTIONS(2105), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -332990,7 +337336,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [aux_sym_preproc_if_token1] = ACTIONS(2107), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333006,133 +337352,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), }, - [1750] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4382), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -333145,19 +337493,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -333168,88 +337516,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(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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), }, [1751] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4383), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -333259,47 +337778,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1751), [sym_preproc_define] = STATE(1751), [sym_preproc_undef] = STATE(1751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -333312,19 +337831,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -333335,88 +337854,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -333426,47 +337947,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1752), [sym_preproc_define] = STATE(1752), [sym_preproc_undef] = STATE(1752), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + }, + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -333479,19 +338338,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -333507,300 +338366,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), }, - [1753] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3434), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7253), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_ref] = ACTIONS(1679), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1397), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1683), - [anon_sym_DASH_DASH] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1681), - [anon_sym_DASH] = ACTIONS(1681), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1683), - [anon_sym_AMP] = ACTIONS(1683), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1685), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1687), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1754] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4394), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -333813,173 +338507,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), - }, - [1755] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5689), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2242), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5504), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3135), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), @@ -333992,7 +338519,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -334009,82 +338536,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1756] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4395), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334094,47 +338623,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1756), [sym_preproc_define] = STATE(1756), [sym_preproc_undef] = STATE(1756), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334147,19 +338676,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -334170,88 +338699,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1757] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4396), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334261,47 +338792,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1757), [sym_preproc_define] = STATE(1757), [sym_preproc_undef] = STATE(1757), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334314,19 +338845,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -334337,88 +338868,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1758] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4397), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334428,47 +338961,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1758), [sym_preproc_define] = STATE(1758), [sym_preproc_undef] = STATE(1758), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [anon_sym_checked] = ACTIONS(1067), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334481,19 +339014,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -334504,88 +339037,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1759] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4398), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334595,47 +339130,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1759), [sym_preproc_define] = STATE(1759), [sym_preproc_undef] = STATE(1759), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334648,19 +339183,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -334671,88 +339206,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1760] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4273), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334762,47 +339299,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1760), [sym_preproc_define] = STATE(1760), [sym_preproc_undef] = STATE(1760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334815,19 +339352,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -334838,88 +339375,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1761] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4399), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -334929,47 +339468,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1761), [sym_preproc_define] = STATE(1761), [sym_preproc_undef] = STATE(1761), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1261), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -334982,19 +339521,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335005,88 +339544,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1762] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5286), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -335096,47 +339637,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1762), [sym_preproc_define] = STATE(1762), [sym_preproc_undef] = STATE(1762), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -335149,19 +339690,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -335172,88 +339713,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1763] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4871), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -335263,47 +339806,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1763), [sym_preproc_define] = STATE(1763), [sym_preproc_undef] = STATE(1763), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_checked] = ACTIONS(1067), + [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(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), + [anon_sym_PLUS] = 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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -335328,7 +339871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -335345,82 +339888,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1764] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5415), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -335430,47 +339975,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1764), [sym_preproc_define] = STATE(1764), [sym_preproc_undef] = STATE(1764), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -335483,19 +340028,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -335506,88 +340051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1765] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -335597,72 +340144,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1765), [sym_preproc_define] = STATE(1765), [sym_preproc_undef] = STATE(1765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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), @@ -335673,88 +340220,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1766] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -335764,214 +340313,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1766), [sym_preproc_define] = STATE(1766), [sym_preproc_undef] = STATE(1766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), - }, - [1767] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5396), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), - [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), + [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), + }, + [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -335984,19 +340535,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -336007,88 +340558,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1768] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5296), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -336098,47 +340651,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1768), [sym_preproc_define] = STATE(1768), [sym_preproc_undef] = STATE(1768), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -336151,19 +340704,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -336174,88 +340727,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1769] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5288), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -336265,47 +340820,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1769), [sym_preproc_define] = STATE(1769), [sym_preproc_undef] = STATE(1769), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -336318,19 +340873,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -336341,88 +340896,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1770] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4370), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -336432,47 +340989,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1770), [sym_preproc_define] = STATE(1770), [sym_preproc_undef] = STATE(1770), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -336485,19 +341042,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -336508,88 +341065,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1771] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5295), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -336599,47 +341158,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1771), [sym_preproc_define] = STATE(1771), [sym_preproc_undef] = STATE(1771), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -336652,19 +341211,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -336675,88 +341234,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1772] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2542), - [sym__name] = STATE(5688), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4148), - [sym_non_lvalue_expression] = STATE(3253), - [sym_lvalue_expression] = STATE(3061), - [sym__expression_statement_expression] = STATE(3252), - [sym_assignment_expression] = STATE(3254), - [sym_binary_expression] = STATE(3252), - [sym_postfix_unary_expression] = STATE(3254), - [sym_prefix_unary_expression] = STATE(3254), - [sym__pointer_indirection_expression] = STATE(2543), - [sym_query_expression] = STATE(3252), - [sym_from_clause] = STATE(5984), - [sym_conditional_expression] = STATE(3252), - [sym_conditional_access_expression] = STATE(3252), - [sym_as_expression] = STATE(3252), - [sym_is_expression] = STATE(3252), - [sym_is_pattern_expression] = STATE(3252), - [sym_cast_expression] = STATE(3252), - [sym_checked_expression] = STATE(3252), - [sym_invocation_expression] = STATE(3254), - [sym_switch_expression] = STATE(3252), - [sym_await_expression] = STATE(3254), - [sym_throw_expression] = STATE(3252), - [sym_element_access_expression] = STATE(2543), - [sym_interpolated_string_expression] = STATE(3252), - [sym_member_access_expression] = STATE(2543), - [sym_object_creation_expression] = STATE(3254), - [sym_parenthesized_expression] = STATE(3254), - [sym__parenthesized_lvalue_expression] = STATE(2543), - [sym_lambda_expression] = STATE(3252), - [sym__lambda_expression_init] = STATE(7136), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3252), - [sym_anonymous_method_expression] = STATE(3252), - [sym_anonymous_object_creation_expression] = STATE(3252), - [sym_implicit_array_creation_expression] = STATE(3252), - [sym_implicit_object_creation_expression] = STATE(3252), - [sym_implicit_stackalloc_expression] = STATE(3252), - [sym_initializer_expression] = STATE(3252), - [sym_default_expression] = STATE(3252), - [sym_with_expression] = STATE(3252), - [sym_sizeof_expression] = STATE(3252), - [sym_typeof_expression] = STATE(3252), - [sym_makeref_expression] = STATE(3252), - [sym_ref_expression] = STATE(3252), - [sym_reftype_expression] = STATE(3252), - [sym_refvalue_expression] = STATE(3252), - [sym_stackalloc_expression] = STATE(3252), - [sym_range_expression] = STATE(3252), - [sym_tuple_expression] = STATE(2543), - [sym_literal] = STATE(3252), - [sym_character_literal] = STATE(3168), - [sym_string_literal] = STATE(3168), - [sym_raw_string_literal] = STATE(3168), - [sym_boolean_literal] = STATE(3168), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3252), + [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), @@ -336766,47 +341327,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1772), [sym_preproc_define] = STATE(1772), [sym_preproc_undef] = STATE(1772), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3312), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_LPAREN] = ACTIONS(1351), - [anon_sym_ref] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_delegate] = ACTIONS(1149), - [anon_sym_async] = ACTIONS(1043), + [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(1151), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1155), - [anon_sym_BANG] = ACTIONS(1357), - [anon_sym_TILDE] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_true] = ACTIONS(1161), - [anon_sym_false] = ACTIONS(1161), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_STAR] = ACTIONS(1359), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_this] = ACTIONS(1165), + [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(1167), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1169), - [anon_sym_unchecked] = ACTIONS(1155), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1171), - [anon_sym_throw] = ACTIONS(1361), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1365), + [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), @@ -336819,19 +341380,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1179), - [anon_sym_sizeof] = ACTIONS(1181), - [anon_sym_typeof] = ACTIONS(1183), - [anon_sym___makeref] = ACTIONS(1185), - [anon_sym___reftype] = ACTIONS(1187), - [anon_sym___refvalue] = ACTIONS(1189), - [sym_null_literal] = ACTIONS(1191), - [anon_sym_SQUOTE] = ACTIONS(1193), - [sym_integer_literal] = ACTIONS(1191), - [sym_real_literal] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [sym_verbatim_string_literal] = ACTIONS(1195), - [aux_sym_preproc_if_token1] = ACTIONS(1199), + [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), @@ -336842,88 +341403,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1201), - [sym_interpolation_verbatim_start] = ACTIONS(1203), - [sym_interpolation_raw_start] = ACTIONS(1205), - [sym_raw_string_start] = ACTIONS(1207), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1773] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4865), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3457), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -336933,47 +341496,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1773), [sym_preproc_define] = STATE(1773), [sym_preproc_undef] = STATE(1773), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -336986,19 +341549,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -337009,88 +341572,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1774] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -337100,47 +341665,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1774), [sym_preproc_define] = STATE(1774), [sym_preproc_undef] = STATE(1774), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -337153,19 +341718,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -337176,88 +341741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1775] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5316), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -337267,47 +341834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1775), [sym_preproc_define] = STATE(1775), [sym_preproc_undef] = STATE(1775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -337320,19 +341887,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -337343,88 +341910,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1776] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4366), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -337434,47 +342003,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1776), [sym_preproc_define] = STATE(1776), [sym_preproc_undef] = STATE(1776), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -337487,19 +342056,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -337510,88 +342079,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1777] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5318), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -337601,47 +342172,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1777), [sym_preproc_define] = STATE(1777), [sym_preproc_undef] = STATE(1777), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), + [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(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [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(1063), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -337666,7 +342237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -337683,82 +342254,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1778] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3722), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -337768,47 +342341,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1778), [sym_preproc_define] = STATE(1778), [sym_preproc_undef] = STATE(1778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -337821,19 +342394,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337844,88 +342417,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1779] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5174), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3595), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5960), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7339), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -337935,47 +342510,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1779), [sym_preproc_define] = STATE(1779), [sym_preproc_undef] = STATE(1779), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1093), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_TILDE] = ACTIONS(1993), - [anon_sym_PLUS_PLUS] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_STAR] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1231), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1233), - [anon_sym_DOT_DOT] = ACTIONS(1235), + [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), @@ -337988,19 +342563,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338011,88 +342586,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1780] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3719), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -338102,47 +342679,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1780), [sym_preproc_define] = STATE(1780), [sym_preproc_undef] = STATE(1780), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -338155,19 +342732,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338178,88 +342755,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1781] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3717), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -338269,47 +342848,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1781), [sym_preproc_define] = STATE(1781), [sym_preproc_undef] = STATE(1781), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -338322,19 +342901,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338345,88 +342924,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1782] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5321), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -338436,47 +343017,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1782), [sym_preproc_define] = STATE(1782), [sym_preproc_undef] = STATE(1782), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -338489,19 +343070,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338512,88 +343093,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1783] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3716), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -338603,47 +343186,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1783), [sym_preproc_define] = STATE(1783), [sym_preproc_undef] = STATE(1783), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -338656,19 +343239,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338679,88 +343262,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1784] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -338770,72 +343355,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1784), [sym_preproc_define] = STATE(1784), [sym_preproc_undef] = STATE(1784), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), + [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_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_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(1767), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338846,88 +343431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1785] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5504), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3135), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7332), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -338937,72 +343524,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1785), [sym_preproc_define] = STATE(1785), [sym_preproc_undef] = STATE(1785), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_ref] = ACTIONS(719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1057), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_TILDE] = ACTIONS(1711), - [anon_sym_PLUS_PLUS] = ACTIONS(1711), - [anon_sym_DASH_DASH] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(87), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1713), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(123), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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_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_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(1767), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1773), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339013,88 +343600,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1786] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4092), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -339104,47 +343693,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1786), [sym_preproc_define] = STATE(1786), [sym_preproc_undef] = STATE(1786), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -339157,19 +343746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339180,88 +343769,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1787] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -339271,47 +343862,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1787), [sym_preproc_define] = STATE(1787), [sym_preproc_undef] = STATE(1787), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -339324,19 +343915,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339347,88 +343938,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1788] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3660), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -339438,47 +344031,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1788), [sym_preproc_define] = STATE(1788), [sym_preproc_undef] = STATE(1788), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [anon_sym_checked] = ACTIONS(1067), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -339491,19 +344084,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -339514,88 +344107,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1789] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3715), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -339605,47 +344200,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1789), [sym_preproc_define] = STATE(1789), [sym_preproc_undef] = STATE(1789), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -339658,19 +344253,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339681,88 +344276,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1790] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5480), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -339772,47 +344369,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1790), [sym_preproc_define] = STATE(1790), [sym_preproc_undef] = STATE(1790), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -339825,19 +344422,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339848,88 +344445,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1791] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5483), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -339939,47 +344538,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1791), [sym_preproc_define] = STATE(1791), [sym_preproc_undef] = STATE(1791), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(87), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -339992,19 +344591,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340015,88 +344614,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1792] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3714), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -340106,47 +344707,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1792), [sym_preproc_define] = STATE(1792), [sym_preproc_undef] = STATE(1792), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -340159,19 +344760,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340182,88 +344783,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1793] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3713), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -340273,47 +344876,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1793), [sym_preproc_define] = STATE(1793), [sym_preproc_undef] = STATE(1793), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -340326,19 +344929,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -340349,88 +344952,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1794] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3662), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -340440,47 +345045,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1794), [sym_preproc_define] = STATE(1794), [sym_preproc_undef] = STATE(1794), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -340493,19 +345098,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340516,88 +345121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1795] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5472), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -340607,47 +345214,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1795), [sym_preproc_define] = STATE(1795), [sym_preproc_undef] = STATE(1795), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -340660,19 +345267,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -340683,88 +345290,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1796] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3664), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -340774,47 +345383,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1796), [sym_preproc_define] = STATE(1796), [sym_preproc_undef] = STATE(1796), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -340827,19 +345436,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340850,88 +345459,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [1797] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4129), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -340941,47 +345552,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1797), [sym_preproc_define] = STATE(1797), [sym_preproc_undef] = STATE(1797), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -340994,19 +345605,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -341017,88 +345628,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1798] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -341108,47 +345721,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1798), [sym_preproc_define] = STATE(1798), [sym_preproc_undef] = STATE(1798), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1589), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -341161,19 +345774,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -341184,88 +345797,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1799] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4131), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -341275,47 +345890,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1799), [sym_preproc_define] = STATE(1799), [sym_preproc_undef] = STATE(1799), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -341328,19 +345943,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -341351,88 +345966,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1800] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -341442,47 +346059,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1800), [sym_preproc_define] = STATE(1800), [sym_preproc_undef] = STATE(1800), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1519), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -341495,19 +346112,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [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), @@ -341518,88 +346135,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1801] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2379), - [sym__name] = STATE(5728), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2131), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4347), - [sym_non_lvalue_expression] = STATE(2968), - [sym_lvalue_expression] = STATE(3155), - [sym__expression_statement_expression] = STATE(2908), - [sym_assignment_expression] = STATE(2945), - [sym_binary_expression] = STATE(2908), - [sym_postfix_unary_expression] = STATE(2945), - [sym_prefix_unary_expression] = STATE(2945), - [sym__pointer_indirection_expression] = STATE(2371), - [sym_query_expression] = STATE(2908), - [sym_from_clause] = STATE(5979), - [sym_conditional_expression] = STATE(2908), - [sym_conditional_access_expression] = STATE(2908), - [sym_as_expression] = STATE(2908), - [sym_is_expression] = STATE(2908), - [sym_is_pattern_expression] = STATE(2908), - [sym_cast_expression] = STATE(2908), - [sym_checked_expression] = STATE(2908), - [sym_invocation_expression] = STATE(2945), - [sym_switch_expression] = STATE(2908), - [sym_await_expression] = STATE(2945), - [sym_throw_expression] = STATE(2908), - [sym_element_access_expression] = STATE(2371), - [sym_interpolated_string_expression] = STATE(2908), - [sym_member_access_expression] = STATE(2371), - [sym_object_creation_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym__parenthesized_lvalue_expression] = STATE(2371), - [sym_lambda_expression] = STATE(2908), - [sym__lambda_expression_init] = STATE(7151), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(2908), - [sym_anonymous_method_expression] = STATE(2908), - [sym_anonymous_object_creation_expression] = STATE(2908), - [sym_implicit_array_creation_expression] = STATE(2908), - [sym_implicit_object_creation_expression] = STATE(2908), - [sym_implicit_stackalloc_expression] = STATE(2908), - [sym_initializer_expression] = STATE(2908), - [sym_default_expression] = STATE(2908), - [sym_with_expression] = STATE(2908), - [sym_sizeof_expression] = STATE(2908), - [sym_typeof_expression] = STATE(2908), - [sym_makeref_expression] = STATE(2908), - [sym_ref_expression] = STATE(2908), - [sym_reftype_expression] = STATE(2908), - [sym_refvalue_expression] = STATE(2908), - [sym_stackalloc_expression] = STATE(2908), - [sym_range_expression] = STATE(2908), - [sym_tuple_expression] = STATE(2371), - [sym_literal] = STATE(2908), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(2908), + [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), @@ -341609,47 +346228,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1801), [sym_preproc_define] = STATE(1801), [sym_preproc_undef] = STATE(1801), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3301), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1237), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_ref] = ACTIONS(1507), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_delegate] = ACTIONS(1245), - [anon_sym_async] = ACTIONS(1043), + [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(1247), + [anon_sym_new] = ACTIONS(1501), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1249), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_TILDE] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1511), - [anon_sym_DASH_DASH] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_STAR] = ACTIONS(1513), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_this] = ACTIONS(1259), + [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(1261), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1263), - [anon_sym_unchecked] = ACTIONS(1249), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(1515), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1503), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), + [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), @@ -341662,19 +346281,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1273), - [anon_sym_sizeof] = ACTIONS(1275), - [anon_sym_typeof] = ACTIONS(1277), - [anon_sym___makeref] = ACTIONS(1279), - [anon_sym___reftype] = ACTIONS(1281), - [anon_sym___refvalue] = ACTIONS(1283), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1293), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -341685,88 +346304,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1802] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4102), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -341776,47 +346397,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1802), [sym_preproc_define] = STATE(1802), [sym_preproc_undef] = STATE(1802), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2203), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -341829,19 +346450,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -341852,88 +346473,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [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(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(3132), - [sym__name] = STATE(5693), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2235), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2201), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4467), - [sym_lvalue_expression] = STATE(3302), - [sym__expression_statement_expression] = STATE(4490), - [sym_assignment_expression] = STATE(4531), - [sym_binary_expression] = STATE(4490), - [sym_postfix_unary_expression] = STATE(4531), - [sym_prefix_unary_expression] = STATE(4531), - [sym__pointer_indirection_expression] = STATE(3130), - [sym_query_expression] = STATE(4490), - [sym_from_clause] = STATE(5988), - [sym_conditional_expression] = STATE(4490), - [sym_conditional_access_expression] = STATE(4490), - [sym_as_expression] = STATE(4490), - [sym_is_expression] = STATE(4490), - [sym_is_pattern_expression] = STATE(4490), - [sym_cast_expression] = STATE(4490), - [sym_checked_expression] = STATE(4490), - [sym_invocation_expression] = STATE(4531), - [sym_switch_expression] = STATE(4490), - [sym_await_expression] = STATE(4531), - [sym_throw_expression] = STATE(4490), - [sym_element_access_expression] = STATE(3130), - [sym_interpolated_string_expression] = STATE(4490), - [sym_member_access_expression] = STATE(3130), - [sym_object_creation_expression] = STATE(4531), - [sym_parenthesized_expression] = STATE(4531), - [sym__parenthesized_lvalue_expression] = STATE(3130), - [sym_lambda_expression] = STATE(4490), - [sym__lambda_expression_init] = STATE(7343), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(4490), - [sym_anonymous_method_expression] = STATE(4490), - [sym_anonymous_object_creation_expression] = STATE(4490), - [sym_implicit_array_creation_expression] = STATE(4490), - [sym_implicit_object_creation_expression] = STATE(4490), - [sym_implicit_stackalloc_expression] = STATE(4490), - [sym_initializer_expression] = STATE(4490), - [sym_default_expression] = STATE(4490), - [sym_with_expression] = STATE(4490), - [sym_sizeof_expression] = STATE(4490), - [sym_typeof_expression] = STATE(4490), - [sym_makeref_expression] = STATE(4490), - [sym_ref_expression] = STATE(4490), - [sym_reftype_expression] = STATE(4490), - [sym_refvalue_expression] = STATE(4490), - [sym_stackalloc_expression] = STATE(4490), - [sym_range_expression] = STATE(4490), - [sym_tuple_expression] = STATE(3130), - [sym_literal] = STATE(4490), - [sym_character_literal] = STATE(4526), - [sym_string_literal] = STATE(4526), - [sym_raw_string_literal] = STATE(4526), - [sym_boolean_literal] = STATE(4526), - [sym_identifier] = STATE(2179), - [sym__reserved_identifier] = STATE(2165), - [sym_preproc_if_in_expression] = STATE(4490), + [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), @@ -341943,164 +346566,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1803), [sym_preproc_define] = STATE(1803), [sym_preproc_undef] = STATE(1803), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3387), - [sym__identifier_token] = ACTIONS(1383), - [anon_sym_alias] = ACTIONS(1385), - [anon_sym_global] = ACTIONS(1385), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1387), - [anon_sym_LPAREN] = ACTIONS(1581), - [anon_sym_ref] = ACTIONS(1583), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_delegate] = ACTIONS(1395), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(1385), - [anon_sym_new] = ACTIONS(1463), - [anon_sym_where] = ACTIONS(1385), - [anon_sym_notnull] = ACTIONS(1385), - [anon_sym_unmanaged] = ACTIONS(1385), - [anon_sym_checked] = ACTIONS(1399), - [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(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_PLUS] = ACTIONS(1585), - [anon_sym_DASH] = ACTIONS(1585), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1587), - [anon_sym_AMP] = ACTIONS(1587), - [anon_sym_this] = ACTIONS(1409), - [anon_sym_scoped] = ACTIONS(1411), - [anon_sym_base] = ACTIONS(1413), - [anon_sym_var] = ACTIONS(1415), - [sym_predefined_type] = ACTIONS(1417), - [anon_sym_unchecked] = ACTIONS(1399), - [anon_sym_yield] = ACTIONS(1385), - [anon_sym_default] = ACTIONS(1419), - [anon_sym_throw] = ACTIONS(1589), - [anon_sym_when] = ACTIONS(1385), - [anon_sym_await] = ACTIONS(1591), - [anon_sym_DOT_DOT] = ACTIONS(1593), - [anon_sym_from] = ACTIONS(1427), - [anon_sym_into] = ACTIONS(1385), - [anon_sym_join] = ACTIONS(1385), - [anon_sym_on] = ACTIONS(1385), - [anon_sym_equals] = ACTIONS(1385), - [anon_sym_let] = ACTIONS(1385), - [anon_sym_orderby] = ACTIONS(1385), - [anon_sym_ascending] = ACTIONS(1385), - [anon_sym_descending] = ACTIONS(1385), - [anon_sym_group] = ACTIONS(1385), - [anon_sym_by] = ACTIONS(1385), - [anon_sym_select] = ACTIONS(1385), - [anon_sym_stackalloc] = ACTIONS(1429), - [anon_sym_sizeof] = ACTIONS(1431), - [anon_sym_typeof] = ACTIONS(1433), - [anon_sym___makeref] = ACTIONS(1435), - [anon_sym___reftype] = ACTIONS(1437), - [anon_sym___refvalue] = ACTIONS(1439), - [sym_null_literal] = ACTIONS(1441), - [anon_sym_SQUOTE] = ACTIONS(1443), - [sym_integer_literal] = ACTIONS(1441), - [sym_real_literal] = ACTIONS(1445), - [anon_sym_DQUOTE] = ACTIONS(1447), - [sym_verbatim_string_literal] = ACTIONS(1445), - [aux_sym_preproc_if_token1] = ACTIONS(1449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1451), - [sym_interpolation_verbatim_start] = ACTIONS(1453), - [sym_interpolation_raw_start] = ACTIONS(1455), - [sym_raw_string_start] = ACTIONS(1457), + [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), }, [1804] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5692), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2302), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4091), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3055), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5995), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7366), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(2888), - [sym_string_literal] = STATE(2888), - [sym_raw_string_literal] = STATE(2888), - [sym_boolean_literal] = STATE(2888), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -342110,47 +346735,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1804), [sym_preproc_define] = STATE(1804), [sym_preproc_undef] = STATE(1804), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_ref] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1823), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(2177), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_true] = ACTIONS(1255), - [anon_sym_false] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(2175), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_CARET] = ACTIONS(2177), - [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_checked] = ACTIONS(1067), + [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(1263), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(91), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1265), - [anon_sym_throw] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(109), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_DOT_DOT] = ACTIONS(2183), + [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), @@ -342164,18 +346789,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(1275), - [anon_sym_typeof] = ACTIONS(1277), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), [anon_sym___makeref] = ACTIONS(133), [anon_sym___reftype] = ACTIONS(135), [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(1285), - [anon_sym_SQUOTE] = ACTIONS(1287), - [sym_integer_literal] = ACTIONS(1285), - [sym_real_literal] = ACTIONS(1289), - [anon_sym_DQUOTE] = ACTIONS(1291), - [sym_verbatim_string_literal] = ACTIONS(1289), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(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), @@ -342186,88 +346811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1295), - [sym_interpolation_verbatim_start] = ACTIONS(1297), - [sym_interpolation_raw_start] = ACTIONS(1299), - [sym_raw_string_start] = ACTIONS(1301), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1805] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3688), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -342277,381 +346904,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1805), [sym_preproc_define] = STATE(1805), [sym_preproc_undef] = STATE(1805), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, - [1806] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3490), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2816), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5963), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7096), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_ref] = ACTIONS(1599), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1605), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1611), - [anon_sym_TILDE] = ACTIONS(1611), - [anon_sym_PLUS_PLUS] = ACTIONS(1611), - [anon_sym_DASH_DASH] = ACTIONS(1611), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1609), - [anon_sym_DASH] = ACTIONS(1609), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1611), - [anon_sym_AMP] = ACTIONS(1611), - [anon_sym_this] = ACTIONS(1617), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1619), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), - [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1625), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1627), - [anon_sym_DOT_DOT] = ACTIONS(1629), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), - }, - [1807] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4134), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [anon_sym_checked] = ACTIONS(1067), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -342664,19 +346957,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(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), + }, + [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), + [sym__identifier_token] = ACTIONS(25), + [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), + }, + [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), + [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), @@ -342693,82 +347324,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1808] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3695), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -342778,47 +347411,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1808), [sym_preproc_define] = STATE(1808), [sym_preproc_undef] = STATE(1808), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -342831,19 +347464,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -342854,88 +347487,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1809] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4146), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -342945,47 +347580,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1809), [sym_preproc_define] = STATE(1809), [sym_preproc_undef] = STATE(1809), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -342998,19 +347633,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -343021,88 +347656,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1810] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5451), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -343112,47 +347749,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1810), [sym_preproc_define] = STATE(1810), [sym_preproc_undef] = STATE(1810), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -343165,19 +347802,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -343188,88 +347825,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1811] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4222), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -343279,47 +347918,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1811), [sym_preproc_define] = STATE(1811), [sym_preproc_undef] = STATE(1811), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -343332,19 +347971,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -343355,88 +347994,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1812] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -343446,47 +348087,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1812), [sym_preproc_define] = STATE(1812), [sym_preproc_undef] = STATE(1812), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_checked] = ACTIONS(1067), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -343499,19 +348140,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -343528,82 +348169,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1813] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5412), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -343613,47 +348256,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1813), [sym_preproc_define] = STATE(1813), [sym_preproc_undef] = STATE(1813), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -343666,19 +348309,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -343689,88 +348332,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1814] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4218), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -343780,47 +348425,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1814), [sym_preproc_define] = STATE(1814), [sym_preproc_undef] = STATE(1814), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1613), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1621), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -343833,19 +348478,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -343862,82 +348507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1815] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5154), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5454), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3320), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7206), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -343947,47 +348594,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1815), [sym_preproc_define] = STATE(1815), [sym_preproc_undef] = STATE(1815), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1487), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1489), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [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(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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1491), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1495), + [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), @@ -344000,19 +348647,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -344023,88 +348670,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1816] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4168), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -344114,47 +348763,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1816), [sym_preproc_define] = STATE(1816), [sym_preproc_undef] = STATE(1816), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -344167,19 +348816,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -344190,88 +348839,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1817] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4216), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -344281,47 +348932,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1817), [sym_preproc_define] = STATE(1817), [sym_preproc_undef] = STATE(1817), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -344334,19 +348985,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -344357,88 +349008,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1818] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4207), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -344448,47 +349101,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1818), [sym_preproc_define] = STATE(1818), [sym_preproc_undef] = STATE(1818), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -344501,19 +349154,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -344524,88 +349177,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1819] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3520), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -344615,47 +349270,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1819), [sym_preproc_define] = STATE(1819), [sym_preproc_undef] = STATE(1819), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -344668,19 +349323,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -344691,88 +349346,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1820] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2814), - [sym__name] = STATE(5725), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2284), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3697), - [sym_non_lvalue_expression] = STATE(3670), - [sym_lvalue_expression] = STATE(2958), - [sym__expression_statement_expression] = STATE(3643), - [sym_assignment_expression] = STATE(3673), - [sym_binary_expression] = STATE(3643), - [sym_postfix_unary_expression] = STATE(3673), - [sym_prefix_unary_expression] = STATE(3673), - [sym__pointer_indirection_expression] = STATE(2811), - [sym_query_expression] = STATE(3643), - [sym_from_clause] = STATE(5980), - [sym_conditional_expression] = STATE(3643), - [sym_conditional_access_expression] = STATE(3643), - [sym_as_expression] = STATE(3643), - [sym_is_expression] = STATE(3643), - [sym_is_pattern_expression] = STATE(3643), - [sym_cast_expression] = STATE(3643), - [sym_checked_expression] = STATE(3643), - [sym_invocation_expression] = STATE(3673), - [sym_switch_expression] = STATE(3643), - [sym_await_expression] = STATE(3673), - [sym_throw_expression] = STATE(3643), - [sym_element_access_expression] = STATE(2811), - [sym_interpolated_string_expression] = STATE(3643), - [sym_member_access_expression] = STATE(2811), - [sym_object_creation_expression] = STATE(3673), - [sym_parenthesized_expression] = STATE(3673), - [sym__parenthesized_lvalue_expression] = STATE(2811), - [sym_lambda_expression] = STATE(3643), - [sym__lambda_expression_init] = STATE(7434), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3643), - [sym_anonymous_method_expression] = STATE(3643), - [sym_anonymous_object_creation_expression] = STATE(3643), - [sym_implicit_array_creation_expression] = STATE(3643), - [sym_implicit_object_creation_expression] = STATE(3643), - [sym_implicit_stackalloc_expression] = STATE(3643), - [sym_initializer_expression] = STATE(3643), - [sym_default_expression] = STATE(3643), - [sym_with_expression] = STATE(3643), - [sym_sizeof_expression] = STATE(3643), - [sym_typeof_expression] = STATE(3643), - [sym_makeref_expression] = STATE(3643), - [sym_ref_expression] = STATE(3643), - [sym_reftype_expression] = STATE(3643), - [sym_refvalue_expression] = STATE(3643), - [sym_stackalloc_expression] = STATE(3643), - [sym_range_expression] = STATE(3643), - [sym_tuple_expression] = STATE(2811), - [sym_literal] = STATE(3643), - [sym_character_literal] = STATE(3649), - [sym_string_literal] = STATE(3649), - [sym_raw_string_literal] = STATE(3649), - [sym_boolean_literal] = STATE(3649), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3643), + [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), @@ -344782,47 +349439,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1820), [sym_preproc_define] = STATE(1820), [sym_preproc_undef] = STATE(1820), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3317), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_ref] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_delegate] = ACTIONS(1603), - [anon_sym_async] = ACTIONS(1043), + [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(1605), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1979), - [anon_sym_TILDE] = ACTIONS(1979), - [anon_sym_PLUS_PLUS] = ACTIONS(1979), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1613), - [anon_sym_false] = ACTIONS(1613), - [anon_sym_PLUS] = ACTIONS(1977), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1615), - [anon_sym_CARET] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1979), - [anon_sym_this] = ACTIONS(1617), + [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(1619), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(1621), - [anon_sym_unchecked] = ACTIONS(1607), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1623), - [anon_sym_throw] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1985), + [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), @@ -344835,19 +349492,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1631), - [anon_sym_sizeof] = ACTIONS(1633), - [anon_sym_typeof] = ACTIONS(1635), - [anon_sym___makeref] = ACTIONS(1637), - [anon_sym___reftype] = ACTIONS(1639), - [anon_sym___refvalue] = ACTIONS(1641), - [sym_null_literal] = ACTIONS(1643), - [anon_sym_SQUOTE] = ACTIONS(1645), - [sym_integer_literal] = ACTIONS(1643), - [sym_real_literal] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym_verbatim_string_literal] = ACTIONS(1647), - [aux_sym_preproc_if_token1] = ACTIONS(1651), + [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), @@ -344858,88 +349515,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(1653), - [sym_interpolation_verbatim_start] = ACTIONS(1655), - [sym_interpolation_raw_start] = ACTIONS(1657), - [sym_raw_string_start] = ACTIONS(1659), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1821] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4201), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -344949,47 +349608,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1821), [sym_preproc_define] = STATE(1821), [sym_preproc_undef] = STATE(1821), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -345002,19 +349661,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -345025,88 +349684,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1822] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -345116,47 +349777,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1822), [sym_preproc_define] = STATE(1822), [sym_preproc_undef] = STATE(1822), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -345169,19 +349830,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -345192,88 +349853,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1823] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2405), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(5453), - [sym_non_lvalue_expression] = STATE(3024), - [sym_lvalue_expression] = STATE(3309), - [sym__expression_statement_expression] = STATE(3005), - [sym_assignment_expression] = STATE(3010), - [sym_binary_expression] = STATE(3005), - [sym_postfix_unary_expression] = STATE(3010), - [sym_prefix_unary_expression] = STATE(3010), - [sym__pointer_indirection_expression] = STATE(2388), - [sym_query_expression] = STATE(3005), - [sym_from_clause] = STATE(5966), - [sym_conditional_expression] = STATE(3005), - [sym_conditional_access_expression] = STATE(3005), - [sym_as_expression] = STATE(3005), - [sym_is_expression] = STATE(3005), - [sym_is_pattern_expression] = STATE(3005), - [sym_cast_expression] = STATE(3005), - [sym_checked_expression] = STATE(3005), - [sym_invocation_expression] = STATE(3010), - [sym_switch_expression] = STATE(3005), - [sym_await_expression] = STATE(3010), - [sym_throw_expression] = STATE(3005), - [sym_element_access_expression] = STATE(2388), - [sym_interpolated_string_expression] = STATE(3005), - [sym_member_access_expression] = STATE(2388), - [sym_object_creation_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym__parenthesized_lvalue_expression] = STATE(2388), - [sym_lambda_expression] = STATE(3005), - [sym__lambda_expression_init] = STATE(7462), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3005), - [sym_anonymous_method_expression] = STATE(3005), - [sym_anonymous_object_creation_expression] = STATE(3005), - [sym_implicit_array_creation_expression] = STATE(3005), - [sym_implicit_object_creation_expression] = STATE(3005), - [sym_implicit_stackalloc_expression] = STATE(3005), - [sym_initializer_expression] = STATE(3005), - [sym_default_expression] = STATE(3005), - [sym_with_expression] = STATE(3005), - [sym_sizeof_expression] = STATE(3005), - [sym_typeof_expression] = STATE(3005), - [sym_makeref_expression] = STATE(3005), - [sym_ref_expression] = STATE(3005), - [sym_reftype_expression] = STATE(3005), - [sym_refvalue_expression] = STATE(3005), - [sym_stackalloc_expression] = STATE(3005), - [sym_range_expression] = STATE(3005), - [sym_tuple_expression] = STATE(2388), - [sym_literal] = STATE(3005), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3005), + [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), @@ -345283,47 +349946,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1823), [sym_preproc_define] = STATE(1823), [sym_preproc_undef] = STATE(1823), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3328), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_LPAREN] = ACTIONS(661), - [anon_sym_ref] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_delegate] = ACTIONS(671), - [anon_sym_async] = ACTIONS(1043), + [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(1057), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1063), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1483), - [anon_sym_DASH_DASH] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(685), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_this] = ACTIONS(83), + [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(87), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1063), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1075), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(713), + [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), @@ -345336,19 +349999,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1085), + [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), @@ -345359,88 +350022,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1824] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4160), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -345450,47 +350115,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1824), [sym_preproc_define] = STATE(1824), [sym_preproc_undef] = STATE(1824), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -345503,19 +350168,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -345526,88 +350191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1825] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4198), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -345617,47 +350284,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1825), [sym_preproc_define] = STATE(1825), [sym_preproc_undef] = STATE(1825), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -345670,19 +350337,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -345693,88 +350360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1826] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4161), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -345784,47 +350453,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1826), [sym_preproc_define] = STATE(1826), [sym_preproc_undef] = STATE(1826), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -345837,19 +350506,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -345860,88 +350529,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1827] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4162), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -345951,47 +350622,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1827), [sym_preproc_define] = STATE(1827), [sym_preproc_undef] = STATE(1827), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1845), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1853), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -346004,19 +350675,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -346027,88 +350698,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [1828] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4163), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -346118,47 +350791,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1828), [sym_preproc_define] = STATE(1828), [sym_preproc_undef] = STATE(1828), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1317), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), + [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(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1325), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1319), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -346171,19 +350844,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [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(1337), + [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), @@ -346200,82 +350873,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(157), }, [1829] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4230), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), + [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), @@ -346285,47 +350960,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1829), [sym_preproc_define] = STATE(1829), [sym_preproc_undef] = STATE(1829), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), + }, + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_checked] = ACTIONS(1067), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -346338,19 +351182,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -346366,133 +351210,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), }, - [1830] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4182), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -346505,19 +351351,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346528,138 +351374,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [1831] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1163), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1321), + [anon_sym_base] = ACTIONS(1179), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1181), + [anon_sym_unchecked] = ACTIONS(1167), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1767), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -346672,19 +351520,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -346695,138 +351543,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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, - [1832] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2134), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4209), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3106), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7188), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1367), - [anon_sym_ref] = ACTIONS(1369), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1061), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1373), - [anon_sym_TILDE] = ACTIONS(1373), - [anon_sym_PLUS_PLUS] = ACTIONS(1373), - [anon_sym_DASH_DASH] = ACTIONS(1373), + [anon_sym_checked] = ACTIONS(1067), + [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(1371), - [anon_sym_DASH] = ACTIONS(1371), - [anon_sym_STAR] = ACTIONS(1375), - [anon_sym_CARET] = ACTIONS(1373), - [anon_sym_AMP] = ACTIONS(1373), - [anon_sym_this] = ACTIONS(1319), + [anon_sym_PLUS] = 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(1321), + [anon_sym_base] = ACTIONS(87), [anon_sym_var] = ACTIONS(89), [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [anon_sym_unchecked] = ACTIONS(1067), [anon_sym_yield] = ACTIONS(29), [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1377), + [anon_sym_throw] = ACTIONS(1079), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1381), + [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), @@ -346839,19 +351689,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), + [anon_sym_stackalloc] = ACTIONS(127), [anon_sym_sizeof] = ACTIONS(129), [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), [sym_null_literal] = ACTIONS(139), [anon_sym_SQUOTE] = ACTIONS(141), [sym_integer_literal] = ACTIONS(139), [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -346867,133 +351717,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), }, - [1833] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym_bracketed_argument_list] = STATE(2745), - [sym__name] = STATE(5700), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(2174), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_type] = STATE(5739), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_expression] = STATE(4167), - [sym_non_lvalue_expression] = STATE(3395), - [sym_lvalue_expression] = STATE(3059), - [sym__expression_statement_expression] = STATE(3394), - [sym_assignment_expression] = STATE(3402), - [sym_binary_expression] = STATE(3394), - [sym_postfix_unary_expression] = STATE(3402), - [sym_prefix_unary_expression] = STATE(3402), - [sym__pointer_indirection_expression] = STATE(2736), - [sym_query_expression] = STATE(3394), - [sym_from_clause] = STATE(5977), - [sym_conditional_expression] = STATE(3394), - [sym_conditional_access_expression] = STATE(3394), - [sym_as_expression] = STATE(3394), - [sym_is_expression] = STATE(3394), - [sym_is_pattern_expression] = STATE(3394), - [sym_cast_expression] = STATE(3394), - [sym_checked_expression] = STATE(3394), - [sym_invocation_expression] = STATE(3402), - [sym_switch_expression] = STATE(3394), - [sym_await_expression] = STATE(3402), - [sym_throw_expression] = STATE(3394), - [sym_element_access_expression] = STATE(2736), - [sym_interpolated_string_expression] = STATE(3394), - [sym_member_access_expression] = STATE(2736), - [sym_object_creation_expression] = STATE(3402), - [sym_parenthesized_expression] = STATE(3402), - [sym__parenthesized_lvalue_expression] = STATE(2736), - [sym_lambda_expression] = STATE(3394), - [sym__lambda_expression_init] = STATE(7321), - [sym__lambda_parameters] = STATE(7331), - [sym_array_creation_expression] = STATE(3394), - [sym_anonymous_method_expression] = STATE(3394), - [sym_anonymous_object_creation_expression] = STATE(3394), - [sym_implicit_array_creation_expression] = STATE(3394), - [sym_implicit_object_creation_expression] = STATE(3394), - [sym_implicit_stackalloc_expression] = STATE(3394), - [sym_initializer_expression] = STATE(3394), - [sym_default_expression] = STATE(3394), - [sym_with_expression] = STATE(3394), - [sym_sizeof_expression] = STATE(3394), - [sym_typeof_expression] = STATE(3394), - [sym_makeref_expression] = STATE(3394), - [sym_ref_expression] = STATE(3394), - [sym_reftype_expression] = STATE(3394), - [sym_refvalue_expression] = STATE(3394), - [sym_stackalloc_expression] = STATE(3394), - [sym_range_expression] = STATE(3394), - [sym_tuple_expression] = STATE(2736), - [sym_literal] = STATE(3394), - [sym_character_literal] = STATE(3368), - [sym_string_literal] = STATE(3368), - [sym_raw_string_literal] = STATE(3368), - [sym_boolean_literal] = STATE(3368), - [sym_identifier] = STATE(2111), - [sym__reserved_identifier] = STATE(2106), - [sym_preproc_if_in_expression] = STATE(3394), - [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(3051), - [aux_sym__lambda_expression_init_repeat1] = STATE(3287), + [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), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_ref] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_delegate] = ACTIONS(1311), - [anon_sym_async] = ACTIONS(1043), + [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(1313), + [anon_sym_new] = ACTIONS(1251), [anon_sym_where] = ACTIONS(29), [anon_sym_notnull] = ACTIONS(29), [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1315), - [anon_sym_BANG] = ACTIONS(1065), - [anon_sym_TILDE] = ACTIONS(1065), - [anon_sym_PLUS_PLUS] = ACTIONS(1065), - [anon_sym_DASH_DASH] = ACTIONS(1065), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1067), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1317), - [anon_sym_CARET] = ACTIONS(1065), - [anon_sym_AMP] = ACTIONS(1065), - [anon_sym_this] = ACTIONS(1319), + [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(1321), + [anon_sym_base] = ACTIONS(1265), [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), - [anon_sym_unchecked] = ACTIONS(1315), + [sym_predefined_type] = ACTIONS(1267), + [anon_sym_unchecked] = ACTIONS(1253), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(1323), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(2121), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1325), - [anon_sym_DOT_DOT] = ACTIONS(1327), + [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), @@ -347006,19 +351858,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1329), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(1331), - [anon_sym___reftype] = ACTIONS(1333), - [anon_sym___refvalue] = ACTIONS(1335), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(143), - [anon_sym_DQUOTE] = ACTIONS(145), - [sym_verbatim_string_literal] = ACTIONS(143), - [aux_sym_preproc_if_token1] = ACTIONS(1337), + [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), @@ -347029,162 +351881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(151), - [sym_interpolation_verbatim_start] = ACTIONS(153), - [sym_interpolation_raw_start] = ACTIONS(155), - [sym_raw_string_start] = ACTIONS(157), - }, - [1834] = { - [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), - [sym__identifier_token] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym_alias] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_global] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_ref] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2901), - [anon_sym_delegate] = ACTIONS(2901), - [anon_sym_record] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_file] = ACTIONS(2901), - [anon_sym_fixed] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_partial] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_protected] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_readonly] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_sealed] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_where] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_notnull] = ACTIONS(2901), - [anon_sym_unmanaged] = ACTIONS(2901), - [anon_sym_checked] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_this] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_scoped] = ACTIONS(2901), - [anon_sym_base] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [sym_predefined_type] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_unchecked] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_lock] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_when] = ACTIONS(2901), - [anon_sym_await] = ACTIONS(2901), - [anon_sym_foreach] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_DOT_DOT] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2901), - [anon_sym_into] = ACTIONS(2901), - [anon_sym_join] = ACTIONS(2901), - [anon_sym_on] = ACTIONS(2901), - [anon_sym_equals] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_orderby] = ACTIONS(2901), - [anon_sym_ascending] = ACTIONS(2901), - [anon_sym_descending] = ACTIONS(2901), - [anon_sym_group] = ACTIONS(2901), - [anon_sym_by] = ACTIONS(2901), - [anon_sym_select] = ACTIONS(2901), - [anon_sym_as] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_stackalloc] = ACTIONS(2901), - [anon_sym_with] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym_typeof] = ACTIONS(2901), - [anon_sym___makeref] = ACTIONS(2901), - [anon_sym___reftype] = ACTIONS(2901), - [anon_sym___refvalue] = ACTIONS(2901), - [sym_null_literal] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2903), - [sym_integer_literal] = ACTIONS(2901), - [sym_real_literal] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_verbatim_string_literal] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_if_token3] = ACTIONS(2903), - [aux_sym_preproc_else_token1] = ACTIONS(2903), - [aux_sym_preproc_elif_token1] = ACTIONS(2903), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2903), - [sym_interpolation_verbatim_start] = ACTIONS(2903), - [sym_interpolation_raw_start] = ACTIONS(2903), - [sym_raw_string_start] = ACTIONS(2903), + [sym_interpolation_regular_start] = ACTIONS(1299), + [sym_interpolation_verbatim_start] = ACTIONS(1301), + [sym_interpolation_raw_start] = ACTIONS(1303), + [sym_raw_string_start] = ACTIONS(1305), }, [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), @@ -347194,147 +351974,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1835), [sym_preproc_define] = STATE(1835), [sym_preproc_undef] = STATE(1835), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_record] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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_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), }, [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), @@ -347344,145 +352143,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1836), [sym_preproc_define] = STATE(1836), [sym_preproc_undef] = STATE(1836), - [ts_builtin_sym_end] = ACTIONS(2903), - [sym__identifier_token] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym_alias] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_global] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_namespace] = ACTIONS(2901), - [anon_sym_class] = ACTIONS(2901), - [anon_sym_ref] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2901), - [anon_sym_enum] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2901), - [anon_sym_delegate] = ACTIONS(2901), - [anon_sym_record] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_file] = ACTIONS(2901), - [anon_sym_fixed] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_partial] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_protected] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_readonly] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_sealed] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_where] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_notnull] = ACTIONS(2901), - [anon_sym_unmanaged] = ACTIONS(2901), - [anon_sym_checked] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_this] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_scoped] = ACTIONS(2901), - [anon_sym_base] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [sym_predefined_type] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_unchecked] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_lock] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_when] = ACTIONS(2901), - [anon_sym_await] = ACTIONS(2901), - [anon_sym_foreach] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_DOT_DOT] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2901), - [anon_sym_into] = ACTIONS(2901), - [anon_sym_join] = ACTIONS(2901), - [anon_sym_on] = ACTIONS(2901), - [anon_sym_equals] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_orderby] = ACTIONS(2901), - [anon_sym_ascending] = ACTIONS(2901), - [anon_sym_descending] = ACTIONS(2901), - [anon_sym_group] = ACTIONS(2901), - [anon_sym_by] = ACTIONS(2901), - [anon_sym_select] = ACTIONS(2901), - [anon_sym_as] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_stackalloc] = ACTIONS(2901), - [anon_sym_with] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym_typeof] = ACTIONS(2901), - [anon_sym___makeref] = ACTIONS(2901), - [anon_sym___reftype] = ACTIONS(2901), - [anon_sym___refvalue] = ACTIONS(2901), - [sym_null_literal] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2903), - [sym_integer_literal] = ACTIONS(2901), - [sym_real_literal] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_verbatim_string_literal] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2903), - [sym_interpolation_verbatim_start] = ACTIONS(2903), - [sym_interpolation_raw_start] = ACTIONS(2903), - [sym_raw_string_start] = ACTIONS(2903), + [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_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_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(1767), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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(1773), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -347492,145 +352312,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1837), [sym_preproc_define] = STATE(1837), [sym_preproc_undef] = STATE(1837), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_record] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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), }, [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), @@ -347640,141 +352481,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1838), [sym_preproc_define] = STATE(1838), [sym_preproc_undef] = STATE(1838), - [sym__identifier_token] = ACTIONS(2901), - [anon_sym_extern] = ACTIONS(2901), - [anon_sym_alias] = ACTIONS(2901), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_global] = ACTIONS(2901), - [anon_sym_using] = ACTIONS(2901), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_static] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2901), - [anon_sym_ref] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_delegate] = ACTIONS(2901), - [anon_sym_abstract] = ACTIONS(2901), - [anon_sym_async] = ACTIONS(2901), - [anon_sym_const] = ACTIONS(2901), - [anon_sym_file] = ACTIONS(2901), - [anon_sym_fixed] = ACTIONS(2901), - [anon_sym_internal] = ACTIONS(2901), - [anon_sym_new] = ACTIONS(2901), - [anon_sym_override] = ACTIONS(2901), - [anon_sym_partial] = ACTIONS(2901), - [anon_sym_private] = ACTIONS(2901), - [anon_sym_protected] = ACTIONS(2901), - [anon_sym_public] = ACTIONS(2901), - [anon_sym_readonly] = ACTIONS(2901), - [anon_sym_required] = ACTIONS(2901), - [anon_sym_sealed] = ACTIONS(2901), - [anon_sym_virtual] = ACTIONS(2901), - [anon_sym_volatile] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_where] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_notnull] = ACTIONS(2901), - [anon_sym_unmanaged] = ACTIONS(2901), - [anon_sym_checked] = ACTIONS(2901), - [anon_sym_BANG] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_true] = ACTIONS(2901), - [anon_sym_false] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2901), - [anon_sym_DASH] = ACTIONS(2901), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_this] = ACTIONS(2901), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_scoped] = ACTIONS(2901), - [anon_sym_base] = ACTIONS(2901), - [anon_sym_var] = ACTIONS(2901), - [sym_predefined_type] = ACTIONS(2901), - [anon_sym_break] = ACTIONS(2901), - [anon_sym_unchecked] = ACTIONS(2901), - [anon_sym_continue] = ACTIONS(2901), - [anon_sym_do] = ACTIONS(2901), - [anon_sym_while] = ACTIONS(2901), - [anon_sym_for] = ACTIONS(2901), - [anon_sym_lock] = ACTIONS(2901), - [anon_sym_yield] = ACTIONS(2901), - [anon_sym_switch] = ACTIONS(2901), - [anon_sym_case] = ACTIONS(2901), - [anon_sym_default] = ACTIONS(2901), - [anon_sym_throw] = ACTIONS(2901), - [anon_sym_try] = ACTIONS(2901), - [anon_sym_when] = ACTIONS(2901), - [anon_sym_await] = ACTIONS(2901), - [anon_sym_foreach] = ACTIONS(2901), - [anon_sym_goto] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2901), - [anon_sym_DOT_DOT] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2901), - [anon_sym_into] = ACTIONS(2901), - [anon_sym_join] = ACTIONS(2901), - [anon_sym_on] = ACTIONS(2901), - [anon_sym_equals] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2901), - [anon_sym_orderby] = ACTIONS(2901), - [anon_sym_ascending] = ACTIONS(2901), - [anon_sym_descending] = ACTIONS(2901), - [anon_sym_group] = ACTIONS(2901), - [anon_sym_by] = ACTIONS(2901), - [anon_sym_select] = ACTIONS(2901), - [anon_sym_as] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2905), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_stackalloc] = ACTIONS(2901), - [anon_sym_with] = ACTIONS(2905), - [anon_sym_sizeof] = ACTIONS(2901), - [anon_sym_typeof] = ACTIONS(2901), - [anon_sym___makeref] = ACTIONS(2901), - [anon_sym___reftype] = ACTIONS(2901), - [anon_sym___refvalue] = ACTIONS(2901), - [sym_null_literal] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2903), - [sym_integer_literal] = ACTIONS(2901), - [sym_real_literal] = ACTIONS(2903), - [anon_sym_DQUOTE] = ACTIONS(2903), - [sym_verbatim_string_literal] = ACTIONS(2903), - [aux_sym_preproc_if_token1] = ACTIONS(2903), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2903), - [sym_interpolation_verbatim_start] = ACTIONS(2903), - [sym_interpolation_raw_start] = ACTIONS(2903), - [sym_raw_string_start] = ACTIONS(2903), + [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(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_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_scoped] = 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(2243), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2247), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [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), @@ -347784,190 +352650,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1839), [sym_preproc_define] = STATE(1839), [sym_preproc_undef] = STATE(1839), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_with] = ACTIONS(2913), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1840] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), - [sym_preproc_else] = STATE(7214), - [sym_preproc_elif] = STATE(7214), + [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), @@ -347977,71 +352819,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1840), [sym_preproc_define] = STATE(1840), [sym_preproc_undef] = STATE(1840), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1841), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2955), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2959), + [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), @@ -348052,57 +352895,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1841] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), - [sym_preproc_else] = STATE(7432), - [sym_preproc_elif] = STATE(7432), + [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), @@ -348112,71 +352988,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1841), [sym_preproc_define] = STATE(1841), [sym_preproc_undef] = STATE(1841), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1844), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2961), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2959), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -348187,57 +353064,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1842] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), - [sym_preproc_else] = STATE(7140), - [sym_preproc_elif] = STATE(7140), + [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), @@ -348247,71 +353157,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1842), [sym_preproc_define] = STATE(1842), [sym_preproc_undef] = STATE(1842), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1843), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2963), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2959), + [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), @@ -348322,57 +353233,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1843] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), - [sym_preproc_else] = STATE(7153), - [sym_preproc_elif] = STATE(7153), + [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(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), @@ -348382,71 +353326,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1843), [sym_preproc_define] = STATE(1843), [sym_preproc_undef] = STATE(1843), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1844), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(2965), - [aux_sym_preproc_else_token1] = ACTIONS(2957), - [aux_sym_preproc_elif_token1] = ACTIONS(2959), + [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), @@ -348457,55 +353402,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1844] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), + [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), @@ -348515,72 +353495,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1844), [sym_preproc_define] = STATE(1844), [sym_preproc_undef] = STATE(1844), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1844), - [sym__identifier_token] = ACTIONS(2967), - [anon_sym_extern] = ACTIONS(2970), - [anon_sym_alias] = ACTIONS(2973), - [anon_sym_global] = ACTIONS(2976), - [anon_sym_using] = ACTIONS(2979), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2988), - [anon_sym_event] = ACTIONS(2991), - [anon_sym_namespace] = ACTIONS(2994), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_ref] = ACTIONS(3000), - [anon_sym_struct] = ACTIONS(3003), - [anon_sym_enum] = ACTIONS(3006), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3011), - [anon_sym_delegate] = ACTIONS(3014), - [anon_sym_record] = ACTIONS(3017), - [anon_sym_abstract] = ACTIONS(2982), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_file] = ACTIONS(3020), - [anon_sym_fixed] = ACTIONS(2982), - [anon_sym_internal] = ACTIONS(2982), - [anon_sym_new] = ACTIONS(2982), - [anon_sym_override] = ACTIONS(2982), - [anon_sym_partial] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_protected] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_required] = ACTIONS(2982), - [anon_sym_sealed] = ACTIONS(2982), - [anon_sym_virtual] = ACTIONS(2982), - [anon_sym_volatile] = ACTIONS(2982), - [anon_sym_where] = ACTIONS(2973), - [anon_sym_notnull] = ACTIONS(2973), - [anon_sym_unmanaged] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_implicit] = ACTIONS(3026), - [anon_sym_explicit] = ACTIONS(3026), - [anon_sym_scoped] = ACTIONS(3029), - [anon_sym_var] = ACTIONS(3032), - [sym_predefined_type] = ACTIONS(3035), - [anon_sym_yield] = ACTIONS(2973), - [anon_sym_when] = ACTIONS(2973), - [anon_sym_from] = ACTIONS(2973), - [anon_sym_into] = ACTIONS(2973), - [anon_sym_join] = ACTIONS(2973), - [anon_sym_on] = ACTIONS(2973), - [anon_sym_equals] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2973), - [anon_sym_orderby] = ACTIONS(2973), - [anon_sym_ascending] = ACTIONS(2973), - [anon_sym_descending] = ACTIONS(2973), - [anon_sym_group] = ACTIONS(2973), - [anon_sym_by] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [aux_sym_preproc_if_token1] = ACTIONS(3038), - [aux_sym_preproc_if_token3] = ACTIONS(3009), - [aux_sym_preproc_else_token1] = ACTIONS(3009), - [aux_sym_preproc_elif_token1] = ACTIONS(3009), + [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), @@ -348591,10 +353571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1845] = { - [sym_catch_clause] = STATE(1859), - [sym_finally_clause] = STATE(1863), + [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), @@ -348604,131 +353664,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1845), [sym_preproc_define] = STATE(1845), [sym_preproc_undef] = STATE(1845), - [aux_sym_try_statement_repeat1] = STATE(1847), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_record] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_catch] = ACTIONS(3045), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_finally] = ACTIONS(3047), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_if_token3] = ACTIONS(3043), - [aux_sym_preproc_else_token1] = ACTIONS(3043), - [aux_sym_preproc_elif_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1846] = { - [sym_catch_clause] = STATE(1859), - [sym_finally_clause] = STATE(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(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), @@ -348738,130 +353833,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1846), [sym_preproc_define] = STATE(1846), [sym_preproc_undef] = STATE(1846), - [aux_sym_try_statement_repeat1] = STATE(1845), - [sym__identifier_token] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym_alias] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_ref] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_delegate] = ACTIONS(3049), - [anon_sym_record] = ACTIONS(3049), - [anon_sym_abstract] = ACTIONS(3049), - [anon_sym_async] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_file] = ACTIONS(3049), - [anon_sym_fixed] = ACTIONS(3049), - [anon_sym_internal] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_override] = ACTIONS(3049), - [anon_sym_partial] = ACTIONS(3049), - [anon_sym_private] = ACTIONS(3049), - [anon_sym_protected] = ACTIONS(3049), - [anon_sym_public] = ACTIONS(3049), - [anon_sym_readonly] = ACTIONS(3049), - [anon_sym_required] = ACTIONS(3049), - [anon_sym_sealed] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_where] = ACTIONS(3049), - [anon_sym_notnull] = ACTIONS(3049), - [anon_sym_unmanaged] = ACTIONS(3049), - [anon_sym_checked] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_true] = ACTIONS(3049), - [anon_sym_false] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_this] = ACTIONS(3049), - [anon_sym_scoped] = ACTIONS(3049), - [anon_sym_base] = ACTIONS(3049), - [anon_sym_var] = ACTIONS(3049), - [sym_predefined_type] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_unchecked] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_catch] = ACTIONS(3045), - [anon_sym_when] = ACTIONS(3049), - [anon_sym_finally] = ACTIONS(3047), - [anon_sym_await] = ACTIONS(3049), - [anon_sym_foreach] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_DOT_DOT] = ACTIONS(3051), - [anon_sym_from] = ACTIONS(3049), - [anon_sym_into] = ACTIONS(3049), - [anon_sym_join] = ACTIONS(3049), - [anon_sym_on] = ACTIONS(3049), - [anon_sym_equals] = ACTIONS(3049), - [anon_sym_let] = ACTIONS(3049), - [anon_sym_orderby] = ACTIONS(3049), - [anon_sym_ascending] = ACTIONS(3049), - [anon_sym_descending] = ACTIONS(3049), - [anon_sym_group] = ACTIONS(3049), - [anon_sym_by] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_stackalloc] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3049), - [anon_sym___makeref] = ACTIONS(3049), - [anon_sym___reftype] = ACTIONS(3049), - [anon_sym___refvalue] = ACTIONS(3049), - [sym_null_literal] = ACTIONS(3049), - [anon_sym_SQUOTE] = ACTIONS(3051), - [sym_integer_literal] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_verbatim_string_literal] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_if_token3] = ACTIONS(3051), - [aux_sym_preproc_else_token1] = ACTIONS(3051), - [aux_sym_preproc_elif_token1] = ACTIONS(3051), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3051), - [sym_interpolation_verbatim_start] = ACTIONS(3051), - [sym_interpolation_raw_start] = ACTIONS(3051), - [sym_raw_string_start] = ACTIONS(3051), + [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), }, [1847] = { - [sym_catch_clause] = STATE(1859), + [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), @@ -348871,131 +354002,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1847), [sym_preproc_define] = STATE(1847), [sym_preproc_undef] = STATE(1847), - [aux_sym_try_statement_repeat1] = STATE(1847), - [sym__identifier_token] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym_alias] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_global] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_ref] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_delegate] = ACTIONS(3053), - [anon_sym_record] = ACTIONS(3053), - [anon_sym_abstract] = ACTIONS(3053), - [anon_sym_async] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_file] = ACTIONS(3053), - [anon_sym_fixed] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_partial] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_protected] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_readonly] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_sealed] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_notnull] = ACTIONS(3053), - [anon_sym_unmanaged] = ACTIONS(3053), - [anon_sym_checked] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_true] = ACTIONS(3053), - [anon_sym_false] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_this] = ACTIONS(3053), - [anon_sym_scoped] = ACTIONS(3053), - [anon_sym_base] = ACTIONS(3053), - [anon_sym_var] = ACTIONS(3053), - [sym_predefined_type] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_unchecked] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_yield] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_catch] = ACTIONS(3057), - [anon_sym_when] = ACTIONS(3053), - [anon_sym_finally] = ACTIONS(3053), - [anon_sym_await] = ACTIONS(3053), - [anon_sym_foreach] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(3055), - [anon_sym_from] = ACTIONS(3053), - [anon_sym_into] = ACTIONS(3053), - [anon_sym_join] = ACTIONS(3053), - [anon_sym_on] = ACTIONS(3053), - [anon_sym_equals] = ACTIONS(3053), - [anon_sym_let] = ACTIONS(3053), - [anon_sym_orderby] = ACTIONS(3053), - [anon_sym_ascending] = ACTIONS(3053), - [anon_sym_descending] = ACTIONS(3053), - [anon_sym_group] = ACTIONS(3053), - [anon_sym_by] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_stackalloc] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym_typeof] = ACTIONS(3053), - [anon_sym___makeref] = ACTIONS(3053), - [anon_sym___reftype] = ACTIONS(3053), - [anon_sym___refvalue] = ACTIONS(3053), - [sym_null_literal] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3055), - [sym_integer_literal] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_verbatim_string_literal] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_if_token3] = ACTIONS(3055), - [aux_sym_preproc_else_token1] = ACTIONS(3055), - [aux_sym_preproc_elif_token1] = ACTIONS(3055), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3055), - [sym_interpolation_verbatim_start] = ACTIONS(3055), - [sym_interpolation_raw_start] = ACTIONS(3055), - [sym_raw_string_start] = ACTIONS(3055), + [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), + [anon_sym_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1183), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1385), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1848] = { - [sym_catch_clause] = STATE(1907), - [sym_finally_clause] = STATE(1976), + [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), @@ -349005,129 +354171,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1848), [sym_preproc_define] = STATE(1848), [sym_preproc_undef] = STATE(1848), - [aux_sym_try_statement_repeat1] = STATE(1856), - [ts_builtin_sym_end] = ACTIONS(3043), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_record] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_catch] = ACTIONS(3060), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_finally] = ACTIONS(3062), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1849] = { - [sym_catch_clause] = STATE(1907), - [sym_finally_clause] = STATE(1966), + [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), @@ -349137,174 +354340,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1849), [sym_preproc_define] = STATE(1849), [sym_preproc_undef] = STATE(1849), - [aux_sym_try_statement_repeat1] = STATE(1848), - [ts_builtin_sym_end] = ACTIONS(3051), - [sym__identifier_token] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym_alias] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_namespace] = ACTIONS(3049), - [anon_sym_class] = ACTIONS(3049), - [anon_sym_ref] = ACTIONS(3049), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_delegate] = ACTIONS(3049), - [anon_sym_record] = ACTIONS(3049), - [anon_sym_abstract] = ACTIONS(3049), - [anon_sym_async] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_file] = ACTIONS(3049), - [anon_sym_fixed] = ACTIONS(3049), - [anon_sym_internal] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_override] = ACTIONS(3049), - [anon_sym_partial] = ACTIONS(3049), - [anon_sym_private] = ACTIONS(3049), - [anon_sym_protected] = ACTIONS(3049), - [anon_sym_public] = ACTIONS(3049), - [anon_sym_readonly] = ACTIONS(3049), - [anon_sym_required] = ACTIONS(3049), - [anon_sym_sealed] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_where] = ACTIONS(3049), - [anon_sym_notnull] = ACTIONS(3049), - [anon_sym_unmanaged] = ACTIONS(3049), - [anon_sym_checked] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_true] = ACTIONS(3049), - [anon_sym_false] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_this] = ACTIONS(3049), - [anon_sym_scoped] = ACTIONS(3049), - [anon_sym_base] = ACTIONS(3049), - [anon_sym_var] = ACTIONS(3049), - [sym_predefined_type] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_unchecked] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_catch] = ACTIONS(3060), - [anon_sym_when] = ACTIONS(3049), - [anon_sym_finally] = ACTIONS(3062), - [anon_sym_await] = ACTIONS(3049), - [anon_sym_foreach] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_DOT_DOT] = ACTIONS(3051), - [anon_sym_from] = ACTIONS(3049), - [anon_sym_into] = ACTIONS(3049), - [anon_sym_join] = ACTIONS(3049), - [anon_sym_on] = ACTIONS(3049), - [anon_sym_equals] = ACTIONS(3049), - [anon_sym_let] = ACTIONS(3049), - [anon_sym_orderby] = ACTIONS(3049), - [anon_sym_ascending] = ACTIONS(3049), - [anon_sym_descending] = ACTIONS(3049), - [anon_sym_group] = ACTIONS(3049), - [anon_sym_by] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_stackalloc] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3049), - [anon_sym___makeref] = ACTIONS(3049), - [anon_sym___reftype] = ACTIONS(3049), - [anon_sym___refvalue] = ACTIONS(3049), - [sym_null_literal] = ACTIONS(3049), - [anon_sym_SQUOTE] = ACTIONS(3051), - [sym_integer_literal] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_verbatim_string_literal] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3051), - [sym_interpolation_verbatim_start] = ACTIONS(3051), - [sym_interpolation_raw_start] = ACTIONS(3051), - [sym_raw_string_start] = ACTIONS(3051), + [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), }, [1850] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), + [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), @@ -349314,69 +354509,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1850), [sym_preproc_define] = STATE(1850), [sym_preproc_undef] = STATE(1850), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1844), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(3064), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349387,8 +354585,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1851] = { + [sym_attribute_list] = STATE(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), @@ -349398,128 +354678,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1851), [sym_preproc_define] = STATE(1851), [sym_preproc_undef] = STATE(1851), - [sym__identifier_token] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym_alias] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_global] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_ref] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_delegate] = ACTIONS(3066), - [anon_sym_record] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_file] = ACTIONS(3066), - [anon_sym_fixed] = ACTIONS(3066), - [anon_sym_internal] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_partial] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_required] = ACTIONS(3066), - [anon_sym_sealed] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_notnull] = ACTIONS(3066), - [anon_sym_unmanaged] = ACTIONS(3066), - [anon_sym_checked] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_scoped] = ACTIONS(3066), - [anon_sym_base] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [sym_predefined_type] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_unchecked] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_catch] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_foreach] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_DOT_DOT] = ACTIONS(3068), - [anon_sym_from] = ACTIONS(3066), - [anon_sym_into] = ACTIONS(3066), - [anon_sym_join] = ACTIONS(3066), - [anon_sym_on] = ACTIONS(3066), - [anon_sym_equals] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_orderby] = ACTIONS(3066), - [anon_sym_ascending] = ACTIONS(3066), - [anon_sym_descending] = ACTIONS(3066), - [anon_sym_group] = ACTIONS(3066), - [anon_sym_by] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_stackalloc] = ACTIONS(3066), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym___makeref] = ACTIONS(3066), - [anon_sym___reftype] = ACTIONS(3066), - [anon_sym___refvalue] = ACTIONS(3066), - [sym_null_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_integer_literal] = ACTIONS(3066), - [sym_real_literal] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_verbatim_string_literal] = ACTIONS(3068), - [aux_sym_preproc_if_token1] = ACTIONS(3068), - [aux_sym_preproc_if_token3] = ACTIONS(3068), - [aux_sym_preproc_else_token1] = ACTIONS(3068), - [aux_sym_preproc_elif_token1] = ACTIONS(3068), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3068), - [sym_interpolation_verbatim_start] = ACTIONS(3068), - [sym_interpolation_raw_start] = ACTIONS(3068), - [sym_raw_string_start] = ACTIONS(3068), + [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), @@ -349529,175 +354847,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1852), [sym_preproc_define] = STATE(1852), [sym_preproc_undef] = STATE(1852), - [sym__identifier_token] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym_alias] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_global] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_ref] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_delegate] = ACTIONS(3070), - [anon_sym_record] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_file] = ACTIONS(3070), - [anon_sym_fixed] = ACTIONS(3070), - [anon_sym_internal] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_partial] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_required] = ACTIONS(3070), - [anon_sym_sealed] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_where] = ACTIONS(3070), - [anon_sym_notnull] = ACTIONS(3070), - [anon_sym_unmanaged] = ACTIONS(3070), - [anon_sym_checked] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_scoped] = ACTIONS(3070), - [anon_sym_base] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [sym_predefined_type] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_unchecked] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_when] = ACTIONS(3070), - [anon_sym_finally] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_foreach] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3072), - [anon_sym_from] = ACTIONS(3070), - [anon_sym_into] = ACTIONS(3070), - [anon_sym_join] = ACTIONS(3070), - [anon_sym_on] = ACTIONS(3070), - [anon_sym_equals] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_orderby] = ACTIONS(3070), - [anon_sym_ascending] = ACTIONS(3070), - [anon_sym_descending] = ACTIONS(3070), - [anon_sym_group] = ACTIONS(3070), - [anon_sym_by] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_stackalloc] = ACTIONS(3070), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym___makeref] = ACTIONS(3070), - [anon_sym___reftype] = ACTIONS(3070), - [anon_sym___refvalue] = ACTIONS(3070), - [sym_null_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [sym_integer_literal] = ACTIONS(3070), - [sym_real_literal] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_verbatim_string_literal] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_if_token3] = ACTIONS(3072), - [aux_sym_preproc_else_token1] = ACTIONS(3072), - [aux_sym_preproc_elif_token1] = ACTIONS(3072), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3072), - [sym_interpolation_verbatim_start] = ACTIONS(3072), - [sym_interpolation_raw_start] = ACTIONS(3072), - [sym_raw_string_start] = ACTIONS(3072), + [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_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), + [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), @@ -349707,69 +355016,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1853), [sym_preproc_define] = STATE(1853), [sym_preproc_undef] = STATE(1853), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1850), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), + [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), @@ -349780,55 +355092,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1854] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), + [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), @@ -349838,69 +355185,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1854), [sym_preproc_define] = STATE(1854), [sym_preproc_undef] = STATE(1854), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1844), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(3076), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -349911,8 +355261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [1855] = { + [sym_attribute_list] = STATE(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), @@ -349922,129 +355354,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1855), [sym_preproc_define] = STATE(1855), [sym_preproc_undef] = STATE(1855), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_record] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_catch] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1856] = { - [sym_catch_clause] = STATE(1907), + [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), @@ -350054,127 +355523,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1856), [sym_preproc_define] = STATE(1856), [sym_preproc_undef] = STATE(1856), - [aux_sym_try_statement_repeat1] = STATE(1856), - [ts_builtin_sym_end] = ACTIONS(3055), - [sym__identifier_token] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym_alias] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_global] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_namespace] = ACTIONS(3053), - [anon_sym_class] = ACTIONS(3053), - [anon_sym_ref] = ACTIONS(3053), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_delegate] = ACTIONS(3053), - [anon_sym_record] = ACTIONS(3053), - [anon_sym_abstract] = ACTIONS(3053), - [anon_sym_async] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_file] = ACTIONS(3053), - [anon_sym_fixed] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_partial] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_protected] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_readonly] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_sealed] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_notnull] = ACTIONS(3053), - [anon_sym_unmanaged] = ACTIONS(3053), - [anon_sym_checked] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_true] = ACTIONS(3053), - [anon_sym_false] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_this] = ACTIONS(3053), - [anon_sym_scoped] = ACTIONS(3053), - [anon_sym_base] = ACTIONS(3053), - [anon_sym_var] = ACTIONS(3053), - [sym_predefined_type] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_unchecked] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_yield] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_catch] = ACTIONS(3078), - [anon_sym_when] = ACTIONS(3053), - [anon_sym_finally] = ACTIONS(3053), - [anon_sym_await] = ACTIONS(3053), - [anon_sym_foreach] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(3055), - [anon_sym_from] = ACTIONS(3053), - [anon_sym_into] = ACTIONS(3053), - [anon_sym_join] = ACTIONS(3053), - [anon_sym_on] = ACTIONS(3053), - [anon_sym_equals] = ACTIONS(3053), - [anon_sym_let] = ACTIONS(3053), - [anon_sym_orderby] = ACTIONS(3053), - [anon_sym_ascending] = ACTIONS(3053), - [anon_sym_descending] = ACTIONS(3053), - [anon_sym_group] = ACTIONS(3053), - [anon_sym_by] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_stackalloc] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym_typeof] = ACTIONS(3053), - [anon_sym___makeref] = ACTIONS(3053), - [anon_sym___reftype] = ACTIONS(3053), - [anon_sym___refvalue] = ACTIONS(3053), - [sym_null_literal] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3055), - [sym_integer_literal] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_verbatim_string_literal] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3055), - [sym_interpolation_verbatim_start] = ACTIONS(3055), - [sym_interpolation_raw_start] = ACTIONS(3055), - [sym_raw_string_start] = ACTIONS(3055), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -350184,175 +355692,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1857), [sym_preproc_define] = STATE(1857), [sym_preproc_undef] = STATE(1857), - [sym__identifier_token] = ACTIONS(3081), - [anon_sym_extern] = ACTIONS(3081), - [anon_sym_alias] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_global] = ACTIONS(3081), - [anon_sym_using] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3081), - [anon_sym_ref] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_delegate] = ACTIONS(3081), - [anon_sym_record] = ACTIONS(3081), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_file] = ACTIONS(3081), - [anon_sym_fixed] = ACTIONS(3081), - [anon_sym_internal] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_partial] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_required] = ACTIONS(3081), - [anon_sym_sealed] = ACTIONS(3081), - [anon_sym_virtual] = ACTIONS(3081), - [anon_sym_volatile] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3081), - [anon_sym_notnull] = ACTIONS(3081), - [anon_sym_unmanaged] = ACTIONS(3081), - [anon_sym_checked] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_this] = ACTIONS(3081), - [anon_sym_scoped] = ACTIONS(3081), - [anon_sym_base] = ACTIONS(3081), - [anon_sym_var] = ACTIONS(3081), - [sym_predefined_type] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_unchecked] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_do] = ACTIONS(3081), - [anon_sym_while] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3081), - [anon_sym_switch] = ACTIONS(3081), - [anon_sym_default] = ACTIONS(3081), - [anon_sym_throw] = ACTIONS(3081), - [anon_sym_try] = ACTIONS(3081), - [anon_sym_catch] = ACTIONS(3081), - [anon_sym_when] = ACTIONS(3081), - [anon_sym_finally] = ACTIONS(3081), - [anon_sym_await] = ACTIONS(3081), - [anon_sym_foreach] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3081), - [anon_sym_into] = ACTIONS(3081), - [anon_sym_join] = ACTIONS(3081), - [anon_sym_on] = ACTIONS(3081), - [anon_sym_equals] = ACTIONS(3081), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_orderby] = ACTIONS(3081), - [anon_sym_ascending] = ACTIONS(3081), - [anon_sym_descending] = ACTIONS(3081), - [anon_sym_group] = ACTIONS(3081), - [anon_sym_by] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_stackalloc] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3081), - [anon_sym___makeref] = ACTIONS(3081), - [anon_sym___reftype] = ACTIONS(3081), - [anon_sym___refvalue] = ACTIONS(3081), - [sym_null_literal] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3083), - [sym_integer_literal] = ACTIONS(3081), - [sym_real_literal] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_verbatim_string_literal] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3083), - [sym_interpolation_verbatim_start] = ACTIONS(3083), - [sym_interpolation_raw_start] = ACTIONS(3083), - [sym_raw_string_start] = ACTIONS(3083), + [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), }, [1858] = { - [sym_using_directive] = STATE(2691), - [sym_attribute_list] = STATE(3007), - [sym_namespace_declaration] = STATE(2691), - [sym_class_declaration] = STATE(2691), - [sym__class_declaration_initializer] = STATE(7386), - [sym_struct_declaration] = STATE(2691), - [sym__struct_declaration_initializer] = STATE(6887), - [sym_enum_declaration] = STATE(2691), - [sym_interface_declaration] = STATE(2691), - [sym__interface_declaration_initializer] = STATE(6886), - [sym_delegate_declaration] = STATE(2691), - [sym__delegate_declaration_initializer] = STATE(6460), - [sym_record_declaration] = STATE(2691), - [sym__record_declaration_initializer] = STATE(6792), - [sym_modifier] = STATE(3047), - [sym_operator_declaration] = STATE(2691), - [sym_conversion_operator_declaration] = STATE(2691), - [sym_declaration] = STATE(2685), - [sym_field_declaration] = STATE(2691), - [sym_constructor_declaration] = STATE(2691), - [sym__constructor_declaration_initializer] = STATE(6259), - [sym_destructor_declaration] = STATE(2691), - [sym_method_declaration] = STATE(2691), - [sym_event_declaration] = STATE(2691), - [sym_event_field_declaration] = STATE(2691), - [sym_indexer_declaration] = STATE(2691), - [sym_property_declaration] = STATE(2691), - [sym_variable_declaration] = STATE(7395), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5418), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5547), - [sym__reserved_identifier] = STATE(3558), - [sym_preproc_if] = STATE(2691), + [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(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), @@ -350362,69 +355861,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1858), [sym_preproc_define] = STATE(1858), [sym_preproc_undef] = STATE(1858), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2211), - [aux_sym_declaration_list_repeat1] = STATE(1854), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(2919), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2923), - [anon_sym_using] = ACTIONS(2925), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(2931), - [anon_sym_namespace] = ACTIONS(2933), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(2937), - [anon_sym_interface] = ACTIONS(59), - [anon_sym_delegate] = ACTIONS(2939), - [anon_sym_record] = ACTIONS(63), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_implicit] = ACTIONS(2945), - [anon_sym_explicit] = ACTIONS(2945), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_if_token1] = ACTIONS(2953), - [aux_sym_preproc_if_token3] = ACTIONS(3085), + [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), @@ -350435,8 +355937,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [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), @@ -350446,128 +356030,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1859), [sym_preproc_define] = STATE(1859), [sym_preproc_undef] = STATE(1859), - [sym__identifier_token] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_alias] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_global] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_ref] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_delegate] = ACTIONS(3087), - [anon_sym_record] = ACTIONS(3087), - [anon_sym_abstract] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_file] = ACTIONS(3087), - [anon_sym_fixed] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_partial] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_sealed] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_where] = ACTIONS(3087), - [anon_sym_notnull] = ACTIONS(3087), - [anon_sym_unmanaged] = ACTIONS(3087), - [anon_sym_checked] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_true] = ACTIONS(3087), - [anon_sym_false] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3087), - [anon_sym_scoped] = ACTIONS(3087), - [anon_sym_base] = ACTIONS(3087), - [anon_sym_var] = ACTIONS(3087), - [sym_predefined_type] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_unchecked] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_when] = ACTIONS(3087), - [anon_sym_finally] = ACTIONS(3087), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_foreach] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_DOT_DOT] = ACTIONS(3089), - [anon_sym_from] = ACTIONS(3087), - [anon_sym_into] = ACTIONS(3087), - [anon_sym_join] = ACTIONS(3087), - [anon_sym_on] = ACTIONS(3087), - [anon_sym_equals] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_orderby] = ACTIONS(3087), - [anon_sym_ascending] = ACTIONS(3087), - [anon_sym_descending] = ACTIONS(3087), - [anon_sym_group] = ACTIONS(3087), - [anon_sym_by] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_stackalloc] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym_typeof] = ACTIONS(3087), - [anon_sym___makeref] = ACTIONS(3087), - [anon_sym___reftype] = ACTIONS(3087), - [anon_sym___refvalue] = ACTIONS(3087), - [sym_null_literal] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_verbatim_string_literal] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_if_token3] = ACTIONS(3089), - [aux_sym_preproc_else_token1] = ACTIONS(3089), - [aux_sym_preproc_elif_token1] = ACTIONS(3089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3089), - [sym_interpolation_verbatim_start] = ACTIONS(3089), - [sym_interpolation_raw_start] = ACTIONS(3089), - [sym_raw_string_start] = ACTIONS(3089), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -350577,126 +356199,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1860), [sym_preproc_define] = STATE(1860), [sym_preproc_undef] = STATE(1860), - [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_when] = ACTIONS(3091), - [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), + [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), }, [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), @@ -350706,110 +356368,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1861), [sym_preproc_define] = STATE(1861), [sym_preproc_undef] = STATE(1861), - [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__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), @@ -350820,12 +356444,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1213), + [sym_interpolation_verbatim_start] = ACTIONS(1215), + [sym_interpolation_raw_start] = ACTIONS(1217), + [sym_raw_string_start] = ACTIONS(1219), }, [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), @@ -350835,126 +356537,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1862), [sym_preproc_define] = STATE(1862), [sym_preproc_undef] = STATE(1862), - [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), + [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), }, [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), @@ -350964,110 +356706,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1863), [sym_preproc_define] = STATE(1863), [sym_preproc_undef] = STATE(1863), - [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_when] = ACTIONS(3103), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -351078,12 +356782,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [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), @@ -351093,126 +356875,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1864), [sym_preproc_define] = STATE(1864), [sym_preproc_undef] = STATE(1864), - [sym__identifier_token] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym_alias] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_global] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_unsafe] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_ref] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_delegate] = ACTIONS(3107), - [anon_sym_record] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_file] = ACTIONS(3107), - [anon_sym_fixed] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_partial] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_sealed] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_where] = ACTIONS(3107), - [anon_sym_notnull] = ACTIONS(3107), - [anon_sym_unmanaged] = ACTIONS(3107), - [anon_sym_checked] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3107), - [anon_sym_scoped] = ACTIONS(3107), - [anon_sym_base] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [sym_predefined_type] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_unchecked] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_lock] = ACTIONS(3107), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_when] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_foreach] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_DOT_DOT] = ACTIONS(3109), - [anon_sym_from] = ACTIONS(3107), - [anon_sym_into] = ACTIONS(3107), - [anon_sym_join] = ACTIONS(3107), - [anon_sym_on] = ACTIONS(3107), - [anon_sym_equals] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_orderby] = ACTIONS(3107), - [anon_sym_ascending] = ACTIONS(3107), - [anon_sym_descending] = ACTIONS(3107), - [anon_sym_group] = ACTIONS(3107), - [anon_sym_by] = ACTIONS(3107), - [anon_sym_select] = ACTIONS(3107), - [anon_sym_stackalloc] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym___makeref] = ACTIONS(3107), - [anon_sym___reftype] = ACTIONS(3107), - [anon_sym___refvalue] = ACTIONS(3107), - [sym_null_literal] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3109), - [sym_integer_literal] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_verbatim_string_literal] = ACTIONS(3109), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_if_token3] = ACTIONS(3109), - [aux_sym_preproc_else_token1] = ACTIONS(3109), - [aux_sym_preproc_elif_token1] = ACTIONS(3109), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3109), - [sym_interpolation_verbatim_start] = ACTIONS(3109), - [sym_interpolation_raw_start] = ACTIONS(3109), - [sym_raw_string_start] = ACTIONS(3109), + [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(1243), + [anon_sym_ref] = ACTIONS(1245), + [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(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_yield] = ACTIONS(29), + [anon_sym_default] = ACTIONS(1269), + [anon_sym_throw] = ACTIONS(1271), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1275), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [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), @@ -351222,126 +357044,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1865), [sym_preproc_define] = STATE(1865), [sym_preproc_undef] = STATE(1865), - [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_when] = 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), + [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), }, [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), @@ -351351,126 +357213,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1866), [sym_preproc_define] = STATE(1866), [sym_preproc_undef] = STATE(1866), - [sym__identifier_token] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym_alias] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_global] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_unsafe] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_ref] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3115), - [anon_sym_delegate] = ACTIONS(3115), - [anon_sym_record] = ACTIONS(3115), - [anon_sym_abstract] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_file] = ACTIONS(3115), - [anon_sym_fixed] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_partial] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_sealed] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_where] = ACTIONS(3115), - [anon_sym_notnull] = ACTIONS(3115), - [anon_sym_unmanaged] = ACTIONS(3115), - [anon_sym_checked] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3115), - [anon_sym_false] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_this] = ACTIONS(3115), - [anon_sym_scoped] = ACTIONS(3115), - [anon_sym_base] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [sym_predefined_type] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_unchecked] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_lock] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_when] = ACTIONS(3115), - [anon_sym_await] = ACTIONS(3115), - [anon_sym_foreach] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3115), - [anon_sym_DOT_DOT] = ACTIONS(3117), - [anon_sym_from] = ACTIONS(3115), - [anon_sym_into] = ACTIONS(3115), - [anon_sym_join] = ACTIONS(3115), - [anon_sym_on] = ACTIONS(3115), - [anon_sym_equals] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_orderby] = ACTIONS(3115), - [anon_sym_ascending] = ACTIONS(3115), - [anon_sym_descending] = ACTIONS(3115), - [anon_sym_group] = ACTIONS(3115), - [anon_sym_by] = ACTIONS(3115), - [anon_sym_select] = ACTIONS(3115), - [anon_sym_stackalloc] = ACTIONS(3115), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym_typeof] = ACTIONS(3115), - [anon_sym___makeref] = ACTIONS(3115), - [anon_sym___reftype] = ACTIONS(3115), - [anon_sym___refvalue] = ACTIONS(3115), - [sym_null_literal] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3117), - [sym_integer_literal] = ACTIONS(3115), - [sym_real_literal] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_verbatim_string_literal] = ACTIONS(3117), - [aux_sym_preproc_if_token1] = ACTIONS(3117), - [aux_sym_preproc_if_token3] = ACTIONS(3117), - [aux_sym_preproc_else_token1] = ACTIONS(3117), - [aux_sym_preproc_elif_token1] = ACTIONS(3117), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3117), - [sym_interpolation_verbatim_start] = ACTIONS(3117), - [sym_interpolation_raw_start] = ACTIONS(3117), - [sym_raw_string_start] = ACTIONS(3117), + [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), }, [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), @@ -351480,126 +357382,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1867), [sym_preproc_define] = STATE(1867), [sym_preproc_undef] = STATE(1867), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_record] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_when] = ACTIONS(3119), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_if_token3] = ACTIONS(3121), - [aux_sym_preproc_else_token1] = ACTIONS(3121), - [aux_sym_preproc_elif_token1] = ACTIONS(3121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), + [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), }, [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), + [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), @@ -351609,126 +357551,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1868), [sym_preproc_define] = STATE(1868), [sym_preproc_undef] = STATE(1868), - [sym__identifier_token] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym_alias] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_global] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_ref] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3123), - [anon_sym_delegate] = ACTIONS(3123), - [anon_sym_record] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_file] = ACTIONS(3123), - [anon_sym_fixed] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_partial] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_readonly] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_notnull] = ACTIONS(3123), - [anon_sym_unmanaged] = ACTIONS(3123), - [anon_sym_checked] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_scoped] = ACTIONS(3123), - [anon_sym_base] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [sym_predefined_type] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_unchecked] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_yield] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_await] = ACTIONS(3123), - [anon_sym_foreach] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_from] = ACTIONS(3123), - [anon_sym_into] = ACTIONS(3123), - [anon_sym_join] = ACTIONS(3123), - [anon_sym_on] = ACTIONS(3123), - [anon_sym_equals] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_orderby] = ACTIONS(3123), - [anon_sym_ascending] = ACTIONS(3123), - [anon_sym_descending] = ACTIONS(3123), - [anon_sym_group] = ACTIONS(3123), - [anon_sym_by] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_stackalloc] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym_typeof] = ACTIONS(3123), - [anon_sym___makeref] = ACTIONS(3123), - [anon_sym___reftype] = ACTIONS(3123), - [anon_sym___refvalue] = ACTIONS(3123), - [sym_null_literal] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_verbatim_string_literal] = ACTIONS(3125), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_if_token3] = ACTIONS(3125), - [aux_sym_preproc_else_token1] = ACTIONS(3125), - [aux_sym_preproc_elif_token1] = ACTIONS(3125), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3125), - [sym_interpolation_verbatim_start] = ACTIONS(3125), - [sym_interpolation_raw_start] = ACTIONS(3125), - [sym_raw_string_start] = ACTIONS(3125), + [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), }, [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), @@ -351738,126 +357720,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1869), [sym_preproc_define] = STATE(1869), [sym_preproc_undef] = STATE(1869), - [sym__identifier_token] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym_alias] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_global] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_ref] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3127), - [anon_sym_delegate] = ACTIONS(3127), - [anon_sym_record] = ACTIONS(3127), - [anon_sym_abstract] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_file] = ACTIONS(3127), - [anon_sym_fixed] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_partial] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_protected] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_readonly] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_sealed] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_where] = ACTIONS(3127), - [anon_sym_notnull] = ACTIONS(3127), - [anon_sym_unmanaged] = ACTIONS(3127), - [anon_sym_checked] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_this] = ACTIONS(3127), - [anon_sym_scoped] = ACTIONS(3127), - [anon_sym_base] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [sym_predefined_type] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_unchecked] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_when] = ACTIONS(3127), - [anon_sym_await] = ACTIONS(3127), - [anon_sym_foreach] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_DOT_DOT] = ACTIONS(3129), - [anon_sym_from] = ACTIONS(3127), - [anon_sym_into] = ACTIONS(3127), - [anon_sym_join] = ACTIONS(3127), - [anon_sym_on] = ACTIONS(3127), - [anon_sym_equals] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_orderby] = ACTIONS(3127), - [anon_sym_ascending] = ACTIONS(3127), - [anon_sym_descending] = ACTIONS(3127), - [anon_sym_group] = ACTIONS(3127), - [anon_sym_by] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_stackalloc] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym_typeof] = ACTIONS(3127), - [anon_sym___makeref] = ACTIONS(3127), - [anon_sym___reftype] = ACTIONS(3127), - [anon_sym___refvalue] = ACTIONS(3127), - [sym_null_literal] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3129), - [sym_integer_literal] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_verbatim_string_literal] = ACTIONS(3129), - [aux_sym_preproc_if_token1] = ACTIONS(3129), - [aux_sym_preproc_if_token3] = ACTIONS(3129), - [aux_sym_preproc_else_token1] = ACTIONS(3129), - [aux_sym_preproc_elif_token1] = ACTIONS(3129), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3129), - [sym_interpolation_verbatim_start] = ACTIONS(3129), - [sym_interpolation_raw_start] = ACTIONS(3129), - [sym_raw_string_start] = ACTIONS(3129), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -351867,255 +357889,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1870), [sym_preproc_define] = STATE(1870), [sym_preproc_undef] = STATE(1870), - [ts_builtin_sym_end] = ACTIONS(3072), - [sym__identifier_token] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym_alias] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_global] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_namespace] = ACTIONS(3070), - [anon_sym_class] = ACTIONS(3070), - [anon_sym_ref] = ACTIONS(3070), - [anon_sym_struct] = ACTIONS(3070), - [anon_sym_enum] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3070), - [anon_sym_delegate] = ACTIONS(3070), - [anon_sym_record] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_file] = ACTIONS(3070), - [anon_sym_fixed] = ACTIONS(3070), - [anon_sym_internal] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_partial] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_required] = ACTIONS(3070), - [anon_sym_sealed] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_where] = ACTIONS(3070), - [anon_sym_notnull] = ACTIONS(3070), - [anon_sym_unmanaged] = ACTIONS(3070), - [anon_sym_checked] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_scoped] = ACTIONS(3070), - [anon_sym_base] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [sym_predefined_type] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_unchecked] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_when] = ACTIONS(3070), - [anon_sym_finally] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_foreach] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3072), - [anon_sym_from] = ACTIONS(3070), - [anon_sym_into] = ACTIONS(3070), - [anon_sym_join] = ACTIONS(3070), - [anon_sym_on] = ACTIONS(3070), - [anon_sym_equals] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_orderby] = ACTIONS(3070), - [anon_sym_ascending] = ACTIONS(3070), - [anon_sym_descending] = ACTIONS(3070), - [anon_sym_group] = ACTIONS(3070), - [anon_sym_by] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_stackalloc] = ACTIONS(3070), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym___makeref] = ACTIONS(3070), - [anon_sym___reftype] = ACTIONS(3070), - [anon_sym___refvalue] = ACTIONS(3070), - [sym_null_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [sym_integer_literal] = ACTIONS(3070), - [sym_real_literal] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_verbatim_string_literal] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3072), - [sym_interpolation_verbatim_start] = ACTIONS(3072), - [sym_interpolation_raw_start] = ACTIONS(3072), - [sym_raw_string_start] = ACTIONS(3072), - }, - [1871] = { - [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), - [ts_builtin_sym_end] = ACTIONS(3083), - [sym__identifier_token] = ACTIONS(3081), - [anon_sym_extern] = ACTIONS(3081), - [anon_sym_alias] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_global] = ACTIONS(3081), - [anon_sym_using] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3081), - [anon_sym_ref] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_delegate] = ACTIONS(3081), - [anon_sym_record] = ACTIONS(3081), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_file] = ACTIONS(3081), - [anon_sym_fixed] = ACTIONS(3081), - [anon_sym_internal] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_partial] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_required] = ACTIONS(3081), - [anon_sym_sealed] = ACTIONS(3081), - [anon_sym_virtual] = ACTIONS(3081), - [anon_sym_volatile] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3081), - [anon_sym_notnull] = ACTIONS(3081), - [anon_sym_unmanaged] = ACTIONS(3081), - [anon_sym_checked] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_this] = ACTIONS(3081), - [anon_sym_scoped] = ACTIONS(3081), - [anon_sym_base] = ACTIONS(3081), - [anon_sym_var] = ACTIONS(3081), - [sym_predefined_type] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_unchecked] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_do] = ACTIONS(3081), - [anon_sym_while] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3081), - [anon_sym_switch] = ACTIONS(3081), - [anon_sym_default] = ACTIONS(3081), - [anon_sym_throw] = ACTIONS(3081), - [anon_sym_try] = ACTIONS(3081), - [anon_sym_catch] = ACTIONS(3081), - [anon_sym_when] = ACTIONS(3081), - [anon_sym_finally] = ACTIONS(3081), - [anon_sym_await] = ACTIONS(3081), - [anon_sym_foreach] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3081), - [anon_sym_into] = ACTIONS(3081), - [anon_sym_join] = ACTIONS(3081), - [anon_sym_on] = ACTIONS(3081), - [anon_sym_equals] = ACTIONS(3081), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_orderby] = ACTIONS(3081), - [anon_sym_ascending] = ACTIONS(3081), - [anon_sym_descending] = ACTIONS(3081), - [anon_sym_group] = ACTIONS(3081), - [anon_sym_by] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_stackalloc] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3081), - [anon_sym___makeref] = ACTIONS(3081), - [anon_sym___reftype] = ACTIONS(3081), - [anon_sym___refvalue] = ACTIONS(3081), - [sym_null_literal] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3083), - [sym_integer_literal] = ACTIONS(3081), - [sym_real_literal] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_verbatim_string_literal] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3083), - [sym_interpolation_verbatim_start] = ACTIONS(3083), - [sym_interpolation_raw_start] = ACTIONS(3083), - [sym_raw_string_start] = ACTIONS(3083), - }, - [1872] = { + [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), + }, + [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), + [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), + }, + [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), @@ -352125,126 +358227,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1872), [sym_preproc_define] = STATE(1872), [sym_preproc_undef] = STATE(1872), - [sym__identifier_token] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym_alias] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_global] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_ref] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3131), - [anon_sym_delegate] = ACTIONS(3131), - [anon_sym_record] = ACTIONS(3131), - [anon_sym_abstract] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_file] = ACTIONS(3131), - [anon_sym_fixed] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_partial] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_protected] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_sealed] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_where] = ACTIONS(3131), - [anon_sym_notnull] = ACTIONS(3131), - [anon_sym_unmanaged] = ACTIONS(3131), - [anon_sym_checked] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3131), - [anon_sym_false] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_this] = ACTIONS(3131), - [anon_sym_scoped] = ACTIONS(3131), - [anon_sym_base] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [sym_predefined_type] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_unchecked] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_when] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_foreach] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_from] = ACTIONS(3131), - [anon_sym_into] = ACTIONS(3131), - [anon_sym_join] = ACTIONS(3131), - [anon_sym_on] = ACTIONS(3131), - [anon_sym_equals] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_orderby] = ACTIONS(3131), - [anon_sym_ascending] = ACTIONS(3131), - [anon_sym_descending] = ACTIONS(3131), - [anon_sym_group] = ACTIONS(3131), - [anon_sym_by] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_stackalloc] = ACTIONS(3131), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3131), - [anon_sym___makeref] = ACTIONS(3131), - [anon_sym___reftype] = ACTIONS(3131), - [anon_sym___refvalue] = ACTIONS(3131), - [sym_null_literal] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3133), - [sym_integer_literal] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_verbatim_string_literal] = ACTIONS(3133), - [aux_sym_preproc_if_token1] = ACTIONS(3133), - [aux_sym_preproc_if_token3] = ACTIONS(3133), - [aux_sym_preproc_else_token1] = ACTIONS(3133), - [aux_sym_preproc_elif_token1] = ACTIONS(3133), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3133), - [sym_interpolation_verbatim_start] = ACTIONS(3133), - [sym_interpolation_raw_start] = ACTIONS(3133), - [sym_raw_string_start] = ACTIONS(3133), + [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(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_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_scoped] = 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(1233), + [anon_sym_when] = ACTIONS(29), + [anon_sym_await] = ACTIONS(1235), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_from] = ACTIONS(125), + [anon_sym_into] = ACTIONS(29), + [anon_sym_join] = ACTIONS(29), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [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), @@ -352254,126 +358396,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1873), [sym_preproc_define] = STATE(1873), [sym_preproc_undef] = STATE(1873), - [sym__identifier_token] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym_alias] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_ref] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_delegate] = ACTIONS(3135), - [anon_sym_record] = ACTIONS(3135), - [anon_sym_abstract] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_file] = ACTIONS(3135), - [anon_sym_fixed] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_partial] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_readonly] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_sealed] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_where] = ACTIONS(3135), - [anon_sym_notnull] = ACTIONS(3135), - [anon_sym_unmanaged] = ACTIONS(3135), - [anon_sym_checked] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3135), - [anon_sym_false] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_this] = ACTIONS(3135), - [anon_sym_scoped] = ACTIONS(3135), - [anon_sym_base] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [sym_predefined_type] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_unchecked] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_when] = ACTIONS(3135), - [anon_sym_await] = ACTIONS(3135), - [anon_sym_foreach] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_DOT_DOT] = ACTIONS(3137), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_into] = ACTIONS(3135), - [anon_sym_join] = ACTIONS(3135), - [anon_sym_on] = ACTIONS(3135), - [anon_sym_equals] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_orderby] = ACTIONS(3135), - [anon_sym_ascending] = ACTIONS(3135), - [anon_sym_descending] = ACTIONS(3135), - [anon_sym_group] = ACTIONS(3135), - [anon_sym_by] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_stackalloc] = ACTIONS(3135), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym_typeof] = ACTIONS(3135), - [anon_sym___makeref] = ACTIONS(3135), - [anon_sym___reftype] = ACTIONS(3135), - [anon_sym___refvalue] = ACTIONS(3135), - [sym_null_literal] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3137), - [sym_integer_literal] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_verbatim_string_literal] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_if_token3] = ACTIONS(3137), - [aux_sym_preproc_else_token1] = ACTIONS(3137), - [aux_sym_preproc_elif_token1] = ACTIONS(3137), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3137), - [sym_interpolation_verbatim_start] = ACTIONS(3137), - [sym_interpolation_raw_start] = ACTIONS(3137), - [sym_raw_string_start] = ACTIONS(3137), + [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), }, [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), @@ -352383,126 +358565,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1874), [sym_preproc_define] = STATE(1874), [sym_preproc_undef] = STATE(1874), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_record] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), - [aux_sym_preproc_if_token3] = ACTIONS(3141), - [aux_sym_preproc_else_token1] = ACTIONS(3141), - [aux_sym_preproc_elif_token1] = ACTIONS(3141), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [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), }, [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), @@ -352512,110 +358734,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1875), [sym_preproc_define] = STATE(1875), [sym_preproc_undef] = STATE(1875), - [sym__identifier_token] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym_alias] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_global] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_ref] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_delegate] = ACTIONS(3143), - [anon_sym_record] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_file] = ACTIONS(3143), - [anon_sym_fixed] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_partial] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_sealed] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_notnull] = ACTIONS(3143), - [anon_sym_unmanaged] = ACTIONS(3143), - [anon_sym_checked] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3143), - [anon_sym_false] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_this] = ACTIONS(3143), - [anon_sym_scoped] = ACTIONS(3143), - [anon_sym_base] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [sym_predefined_type] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_unchecked] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_foreach] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3145), - [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_ascending] = ACTIONS(3143), - [anon_sym_descending] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_stackalloc] = ACTIONS(3143), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym___makeref] = ACTIONS(3143), - [anon_sym___reftype] = ACTIONS(3143), - [anon_sym___refvalue] = ACTIONS(3143), - [sym_null_literal] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3145), - [sym_integer_literal] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_verbatim_string_literal] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_if_token3] = ACTIONS(3145), - [aux_sym_preproc_else_token1] = ACTIONS(3145), - [aux_sym_preproc_elif_token1] = ACTIONS(3145), + [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), @@ -352626,12 +358810,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3145), - [sym_interpolation_verbatim_start] = ACTIONS(3145), - [sym_interpolation_raw_start] = ACTIONS(3145), - [sym_raw_string_start] = ACTIONS(3145), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [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), @@ -352641,126 +358903,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1876), [sym_preproc_define] = STATE(1876), [sym_preproc_undef] = STATE(1876), - [sym__identifier_token] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym_alias] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_ref] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_delegate] = ACTIONS(3147), - [anon_sym_record] = ACTIONS(3147), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_file] = ACTIONS(3147), - [anon_sym_fixed] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_partial] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_protected] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_sealed] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_where] = ACTIONS(3147), - [anon_sym_notnull] = ACTIONS(3147), - [anon_sym_unmanaged] = ACTIONS(3147), - [anon_sym_checked] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3147), - [anon_sym_false] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3147), - [anon_sym_scoped] = ACTIONS(3147), - [anon_sym_base] = ACTIONS(3147), - [anon_sym_var] = ACTIONS(3147), - [sym_predefined_type] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_unchecked] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_when] = ACTIONS(3147), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_foreach] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_into] = ACTIONS(3147), - [anon_sym_join] = ACTIONS(3147), - [anon_sym_on] = ACTIONS(3147), - [anon_sym_equals] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_orderby] = ACTIONS(3147), - [anon_sym_ascending] = ACTIONS(3147), - [anon_sym_descending] = ACTIONS(3147), - [anon_sym_group] = ACTIONS(3147), - [anon_sym_by] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_stackalloc] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym_typeof] = ACTIONS(3147), - [anon_sym___makeref] = ACTIONS(3147), - [anon_sym___reftype] = ACTIONS(3147), - [anon_sym___refvalue] = ACTIONS(3147), - [sym_null_literal] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3149), - [sym_integer_literal] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_verbatim_string_literal] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token3] = ACTIONS(3149), - [aux_sym_preproc_else_token1] = ACTIONS(3149), - [aux_sym_preproc_elif_token1] = ACTIONS(3149), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3149), - [sym_interpolation_verbatim_start] = ACTIONS(3149), - [sym_interpolation_raw_start] = ACTIONS(3149), - [sym_raw_string_start] = ACTIONS(3149), + [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), }, [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), @@ -352770,126 +359072,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1877), [sym_preproc_define] = STATE(1877), [sym_preproc_undef] = STATE(1877), - [sym__identifier_token] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym_alias] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_global] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_namespace] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_ref] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_delegate] = ACTIONS(3151), - [anon_sym_record] = ACTIONS(3151), - [anon_sym_abstract] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_file] = ACTIONS(3151), - [anon_sym_fixed] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_partial] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_protected] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_sealed] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_where] = ACTIONS(3151), - [anon_sym_notnull] = ACTIONS(3151), - [anon_sym_unmanaged] = ACTIONS(3151), - [anon_sym_checked] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_true] = ACTIONS(3151), - [anon_sym_false] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_this] = ACTIONS(3151), - [anon_sym_scoped] = ACTIONS(3151), - [anon_sym_base] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [sym_predefined_type] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_unchecked] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_when] = ACTIONS(3151), - [anon_sym_await] = ACTIONS(3151), - [anon_sym_foreach] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_DOT_DOT] = ACTIONS(3153), - [anon_sym_from] = ACTIONS(3151), - [anon_sym_into] = ACTIONS(3151), - [anon_sym_join] = ACTIONS(3151), - [anon_sym_on] = ACTIONS(3151), - [anon_sym_equals] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_orderby] = ACTIONS(3151), - [anon_sym_ascending] = ACTIONS(3151), - [anon_sym_descending] = ACTIONS(3151), - [anon_sym_group] = ACTIONS(3151), - [anon_sym_by] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_stackalloc] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym___makeref] = ACTIONS(3151), - [anon_sym___reftype] = ACTIONS(3151), - [anon_sym___refvalue] = ACTIONS(3151), - [sym_null_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3153), - [sym_integer_literal] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_verbatim_string_literal] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3153), - [aux_sym_preproc_if_token3] = ACTIONS(3153), - [aux_sym_preproc_else_token1] = ACTIONS(3153), - [aux_sym_preproc_elif_token1] = ACTIONS(3153), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3153), - [sym_interpolation_verbatim_start] = ACTIONS(3153), - [sym_interpolation_raw_start] = ACTIONS(3153), - [sym_raw_string_start] = ACTIONS(3153), + [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), }, [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), @@ -352899,126 +359241,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1878), [sym_preproc_define] = STATE(1878), [sym_preproc_undef] = STATE(1878), - [sym__identifier_token] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym_alias] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_global] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_ref] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_delegate] = ACTIONS(3155), - [anon_sym_record] = ACTIONS(3155), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_file] = ACTIONS(3155), - [anon_sym_fixed] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_partial] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_readonly] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_sealed] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_where] = ACTIONS(3155), - [anon_sym_notnull] = ACTIONS(3155), - [anon_sym_unmanaged] = ACTIONS(3155), - [anon_sym_checked] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_true] = ACTIONS(3155), - [anon_sym_false] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_this] = ACTIONS(3155), - [anon_sym_scoped] = ACTIONS(3155), - [anon_sym_base] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [sym_predefined_type] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_unchecked] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_yield] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_when] = ACTIONS(3155), - [anon_sym_await] = ACTIONS(3155), - [anon_sym_foreach] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_DOT_DOT] = ACTIONS(3157), - [anon_sym_from] = ACTIONS(3155), - [anon_sym_into] = ACTIONS(3155), - [anon_sym_join] = ACTIONS(3155), - [anon_sym_on] = ACTIONS(3155), - [anon_sym_equals] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_orderby] = ACTIONS(3155), - [anon_sym_ascending] = ACTIONS(3155), - [anon_sym_descending] = ACTIONS(3155), - [anon_sym_group] = ACTIONS(3155), - [anon_sym_by] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_stackalloc] = ACTIONS(3155), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym_typeof] = ACTIONS(3155), - [anon_sym___makeref] = ACTIONS(3155), - [anon_sym___reftype] = ACTIONS(3155), - [anon_sym___refvalue] = ACTIONS(3155), - [sym_null_literal] = ACTIONS(3155), - [anon_sym_SQUOTE] = ACTIONS(3157), - [sym_integer_literal] = ACTIONS(3155), - [sym_real_literal] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_verbatim_string_literal] = ACTIONS(3157), - [aux_sym_preproc_if_token1] = ACTIONS(3157), - [aux_sym_preproc_if_token3] = ACTIONS(3157), - [aux_sym_preproc_else_token1] = ACTIONS(3157), - [aux_sym_preproc_elif_token1] = ACTIONS(3157), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3157), - [sym_interpolation_verbatim_start] = ACTIONS(3157), - [sym_interpolation_raw_start] = ACTIONS(3157), - [sym_raw_string_start] = ACTIONS(3157), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -353028,126 +359410,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1879), [sym_preproc_define] = STATE(1879), [sym_preproc_undef] = STATE(1879), - [sym__identifier_token] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym_alias] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_global] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_namespace] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_ref] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_delegate] = ACTIONS(3159), - [anon_sym_record] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_file] = ACTIONS(3159), - [anon_sym_fixed] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_partial] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_readonly] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_notnull] = ACTIONS(3159), - [anon_sym_unmanaged] = ACTIONS(3159), - [anon_sym_checked] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_scoped] = ACTIONS(3159), - [anon_sym_base] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [sym_predefined_type] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_unchecked] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_await] = ACTIONS(3159), - [anon_sym_foreach] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_from] = ACTIONS(3159), - [anon_sym_into] = ACTIONS(3159), - [anon_sym_join] = ACTIONS(3159), - [anon_sym_on] = ACTIONS(3159), - [anon_sym_equals] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_orderby] = ACTIONS(3159), - [anon_sym_ascending] = ACTIONS(3159), - [anon_sym_descending] = ACTIONS(3159), - [anon_sym_group] = ACTIONS(3159), - [anon_sym_by] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_stackalloc] = ACTIONS(3159), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym_typeof] = ACTIONS(3159), - [anon_sym___makeref] = ACTIONS(3159), - [anon_sym___reftype] = ACTIONS(3159), - [anon_sym___refvalue] = ACTIONS(3159), - [sym_null_literal] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_real_literal] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_verbatim_string_literal] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3161), - [aux_sym_preproc_if_token3] = ACTIONS(3161), - [aux_sym_preproc_else_token1] = ACTIONS(3161), - [aux_sym_preproc_elif_token1] = ACTIONS(3161), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3161), - [sym_interpolation_verbatim_start] = ACTIONS(3161), - [sym_interpolation_raw_start] = ACTIONS(3161), - [sym_raw_string_start] = ACTIONS(3161), + [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), }, [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), @@ -353157,126 +359579,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1880), [sym_preproc_define] = STATE(1880), [sym_preproc_undef] = STATE(1880), - [sym__identifier_token] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym_alias] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_global] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_ref] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_delegate] = ACTIONS(3163), - [anon_sym_record] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_file] = ACTIONS(3163), - [anon_sym_fixed] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_partial] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_sealed] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_where] = ACTIONS(3163), - [anon_sym_notnull] = ACTIONS(3163), - [anon_sym_unmanaged] = ACTIONS(3163), - [anon_sym_checked] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3163), - [anon_sym_false] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_this] = ACTIONS(3163), - [anon_sym_scoped] = ACTIONS(3163), - [anon_sym_base] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [sym_predefined_type] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_unchecked] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_when] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_foreach] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_from] = ACTIONS(3163), - [anon_sym_into] = ACTIONS(3163), - [anon_sym_join] = ACTIONS(3163), - [anon_sym_on] = ACTIONS(3163), - [anon_sym_equals] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_orderby] = ACTIONS(3163), - [anon_sym_ascending] = ACTIONS(3163), - [anon_sym_descending] = ACTIONS(3163), - [anon_sym_group] = ACTIONS(3163), - [anon_sym_by] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_stackalloc] = ACTIONS(3163), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym___makeref] = ACTIONS(3163), - [anon_sym___reftype] = ACTIONS(3163), - [anon_sym___refvalue] = ACTIONS(3163), - [sym_null_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3165), - [sym_integer_literal] = ACTIONS(3163), - [sym_real_literal] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [sym_verbatim_string_literal] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token3] = ACTIONS(3165), - [aux_sym_preproc_else_token1] = ACTIONS(3165), - [aux_sym_preproc_elif_token1] = ACTIONS(3165), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3165), - [sym_interpolation_verbatim_start] = ACTIONS(3165), - [sym_interpolation_raw_start] = ACTIONS(3165), - [sym_raw_string_start] = ACTIONS(3165), + [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), }, [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), @@ -353286,126 +359748,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1881), [sym_preproc_define] = STATE(1881), [sym_preproc_undef] = STATE(1881), - [sym__identifier_token] = ACTIONS(3167), - [anon_sym_extern] = ACTIONS(3167), - [anon_sym_alias] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_global] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_ref] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_delegate] = ACTIONS(3167), - [anon_sym_record] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_file] = ACTIONS(3167), - [anon_sym_fixed] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_partial] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_sealed] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_where] = ACTIONS(3167), - [anon_sym_notnull] = ACTIONS(3167), - [anon_sym_unmanaged] = ACTIONS(3167), - [anon_sym_checked] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3167), - [anon_sym_false] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_this] = ACTIONS(3167), - [anon_sym_scoped] = ACTIONS(3167), - [anon_sym_base] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [sym_predefined_type] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_unchecked] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_when] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_foreach] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_from] = ACTIONS(3167), - [anon_sym_into] = ACTIONS(3167), - [anon_sym_join] = ACTIONS(3167), - [anon_sym_on] = ACTIONS(3167), - [anon_sym_equals] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_orderby] = ACTIONS(3167), - [anon_sym_ascending] = ACTIONS(3167), - [anon_sym_descending] = ACTIONS(3167), - [anon_sym_group] = ACTIONS(3167), - [anon_sym_by] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_stackalloc] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym___makeref] = ACTIONS(3167), - [anon_sym___reftype] = ACTIONS(3167), - [anon_sym___refvalue] = ACTIONS(3167), - [sym_null_literal] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3169), - [sym_integer_literal] = ACTIONS(3167), - [sym_real_literal] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(3169), - [sym_verbatim_string_literal] = ACTIONS(3169), - [aux_sym_preproc_if_token1] = ACTIONS(3169), - [aux_sym_preproc_if_token3] = ACTIONS(3169), - [aux_sym_preproc_else_token1] = ACTIONS(3169), - [aux_sym_preproc_elif_token1] = ACTIONS(3169), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3169), - [sym_interpolation_verbatim_start] = ACTIONS(3169), - [sym_interpolation_raw_start] = ACTIONS(3169), - [sym_raw_string_start] = ACTIONS(3169), + [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), }, [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), @@ -353415,126 +359917,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1882), [sym_preproc_define] = STATE(1882), [sym_preproc_undef] = STATE(1882), - [ts_builtin_sym_end] = ACTIONS(2911), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_record] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_catch] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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), }, [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), @@ -353544,126 +360086,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1883), [sym_preproc_define] = STATE(1883), [sym_preproc_undef] = STATE(1883), - [sym__identifier_token] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym_alias] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_global] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_delegate] = ACTIONS(3171), - [anon_sym_record] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_file] = ACTIONS(3171), - [anon_sym_fixed] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_partial] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_sealed] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_where] = ACTIONS(3171), - [anon_sym_notnull] = ACTIONS(3171), - [anon_sym_unmanaged] = ACTIONS(3171), - [anon_sym_checked] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3171), - [anon_sym_false] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_this] = ACTIONS(3171), - [anon_sym_scoped] = ACTIONS(3171), - [anon_sym_base] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [sym_predefined_type] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_unchecked] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_when] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_foreach] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_DOT_DOT] = ACTIONS(3173), - [anon_sym_from] = ACTIONS(3171), - [anon_sym_into] = ACTIONS(3171), - [anon_sym_join] = ACTIONS(3171), - [anon_sym_on] = ACTIONS(3171), - [anon_sym_equals] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_orderby] = ACTIONS(3171), - [anon_sym_ascending] = ACTIONS(3171), - [anon_sym_descending] = ACTIONS(3171), - [anon_sym_group] = ACTIONS(3171), - [anon_sym_by] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_stackalloc] = ACTIONS(3171), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym___makeref] = ACTIONS(3171), - [anon_sym___reftype] = ACTIONS(3171), - [anon_sym___refvalue] = ACTIONS(3171), - [sym_null_literal] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3173), - [sym_integer_literal] = ACTIONS(3171), - [sym_real_literal] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_verbatim_string_literal] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3173), - [aux_sym_preproc_if_token3] = ACTIONS(3173), - [aux_sym_preproc_else_token1] = ACTIONS(3173), - [aux_sym_preproc_elif_token1] = ACTIONS(3173), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3173), - [sym_interpolation_verbatim_start] = ACTIONS(3173), - [sym_interpolation_raw_start] = ACTIONS(3173), - [sym_raw_string_start] = ACTIONS(3173), + [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), }, [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), @@ -353673,126 +360255,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1884), [sym_preproc_define] = STATE(1884), [sym_preproc_undef] = STATE(1884), - [sym__identifier_token] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym_alias] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_global] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_delegate] = ACTIONS(3175), - [anon_sym_record] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_file] = ACTIONS(3175), - [anon_sym_fixed] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_partial] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_sealed] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_where] = ACTIONS(3175), - [anon_sym_notnull] = ACTIONS(3175), - [anon_sym_unmanaged] = ACTIONS(3175), - [anon_sym_checked] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3175), - [anon_sym_false] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_this] = ACTIONS(3175), - [anon_sym_scoped] = ACTIONS(3175), - [anon_sym_base] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [sym_predefined_type] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_unchecked] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_when] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_foreach] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3177), - [anon_sym_from] = ACTIONS(3175), - [anon_sym_into] = ACTIONS(3175), - [anon_sym_join] = ACTIONS(3175), - [anon_sym_on] = ACTIONS(3175), - [anon_sym_equals] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_orderby] = ACTIONS(3175), - [anon_sym_ascending] = ACTIONS(3175), - [anon_sym_descending] = ACTIONS(3175), - [anon_sym_group] = ACTIONS(3175), - [anon_sym_by] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_stackalloc] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym___makeref] = ACTIONS(3175), - [anon_sym___reftype] = ACTIONS(3175), - [anon_sym___refvalue] = ACTIONS(3175), - [sym_null_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3177), - [sym_integer_literal] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_verbatim_string_literal] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_if_token3] = ACTIONS(3177), - [aux_sym_preproc_else_token1] = ACTIONS(3177), - [aux_sym_preproc_elif_token1] = ACTIONS(3177), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3177), - [sym_interpolation_verbatim_start] = ACTIONS(3177), - [sym_interpolation_raw_start] = ACTIONS(3177), - [sym_raw_string_start] = ACTIONS(3177), + [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), }, [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), @@ -353802,126 +360424,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1885), [sym_preproc_define] = STATE(1885), [sym_preproc_undef] = STATE(1885), - [sym__identifier_token] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym_alias] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_global] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_delegate] = ACTIONS(3179), - [anon_sym_record] = ACTIONS(3179), - [anon_sym_abstract] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_file] = ACTIONS(3179), - [anon_sym_fixed] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_partial] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_protected] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_sealed] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_where] = ACTIONS(3179), - [anon_sym_notnull] = ACTIONS(3179), - [anon_sym_unmanaged] = ACTIONS(3179), - [anon_sym_checked] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3179), - [anon_sym_false] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_this] = ACTIONS(3179), - [anon_sym_scoped] = ACTIONS(3179), - [anon_sym_base] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [sym_predefined_type] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_unchecked] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(3179), - [anon_sym_await] = ACTIONS(3179), - [anon_sym_foreach] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_DOT_DOT] = ACTIONS(3181), - [anon_sym_from] = ACTIONS(3179), - [anon_sym_into] = ACTIONS(3179), - [anon_sym_join] = ACTIONS(3179), - [anon_sym_on] = ACTIONS(3179), - [anon_sym_equals] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_orderby] = ACTIONS(3179), - [anon_sym_ascending] = ACTIONS(3179), - [anon_sym_descending] = ACTIONS(3179), - [anon_sym_group] = ACTIONS(3179), - [anon_sym_by] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_stackalloc] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym_typeof] = ACTIONS(3179), - [anon_sym___makeref] = ACTIONS(3179), - [anon_sym___reftype] = ACTIONS(3179), - [anon_sym___refvalue] = ACTIONS(3179), - [sym_null_literal] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3181), - [sym_integer_literal] = ACTIONS(3179), - [sym_real_literal] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_verbatim_string_literal] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3181), - [aux_sym_preproc_if_token3] = ACTIONS(3181), - [aux_sym_preproc_else_token1] = ACTIONS(3181), - [aux_sym_preproc_elif_token1] = ACTIONS(3181), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3181), - [sym_interpolation_verbatim_start] = ACTIONS(3181), - [sym_interpolation_raw_start] = ACTIONS(3181), - [sym_raw_string_start] = ACTIONS(3181), + [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), }, [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), @@ -353931,126 +360593,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1886), [sym_preproc_define] = STATE(1886), [sym_preproc_undef] = STATE(1886), - [sym__identifier_token] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym_alias] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_global] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_ref] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_delegate] = ACTIONS(3183), - [anon_sym_record] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_file] = ACTIONS(3183), - [anon_sym_fixed] = ACTIONS(3183), - [anon_sym_internal] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_partial] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_required] = ACTIONS(3183), - [anon_sym_sealed] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_where] = ACTIONS(3183), - [anon_sym_notnull] = ACTIONS(3183), - [anon_sym_unmanaged] = ACTIONS(3183), - [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_this] = ACTIONS(3183), - [anon_sym_scoped] = ACTIONS(3183), - [anon_sym_base] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [sym_predefined_type] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_unchecked] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_when] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_foreach] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_DOT_DOT] = ACTIONS(3185), - [anon_sym_from] = ACTIONS(3183), - [anon_sym_into] = ACTIONS(3183), - [anon_sym_join] = ACTIONS(3183), - [anon_sym_on] = ACTIONS(3183), - [anon_sym_equals] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_orderby] = ACTIONS(3183), - [anon_sym_ascending] = ACTIONS(3183), - [anon_sym_descending] = ACTIONS(3183), - [anon_sym_group] = ACTIONS(3183), - [anon_sym_by] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_stackalloc] = ACTIONS(3183), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym___makeref] = ACTIONS(3183), - [anon_sym___reftype] = ACTIONS(3183), - [anon_sym___refvalue] = ACTIONS(3183), - [sym_null_literal] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3185), - [sym_integer_literal] = ACTIONS(3183), - [sym_real_literal] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_verbatim_string_literal] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3185), - [aux_sym_preproc_if_token3] = ACTIONS(3185), - [aux_sym_preproc_else_token1] = ACTIONS(3185), - [aux_sym_preproc_elif_token1] = ACTIONS(3185), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3185), - [sym_interpolation_verbatim_start] = ACTIONS(3185), - [sym_interpolation_raw_start] = ACTIONS(3185), - [sym_raw_string_start] = ACTIONS(3185), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -354060,497 +360762,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1887), [sym_preproc_define] = STATE(1887), [sym_preproc_undef] = STATE(1887), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_extern] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_ref] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_delegate] = ACTIONS(3187), - [anon_sym_record] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_fixed] = ACTIONS(3187), - [anon_sym_internal] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_partial] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_required] = ACTIONS(3187), - [anon_sym_sealed] = ACTIONS(3187), - [anon_sym_virtual] = ACTIONS(3187), - [anon_sym_volatile] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_checked] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3187), - [anon_sym_false] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_base] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [sym_predefined_type] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_unchecked] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_default] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_foreach] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_from] = ACTIONS(3187), - [anon_sym_into] = ACTIONS(3187), - [anon_sym_join] = ACTIONS(3187), - [anon_sym_on] = ACTIONS(3187), - [anon_sym_equals] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_orderby] = ACTIONS(3187), - [anon_sym_ascending] = ACTIONS(3187), - [anon_sym_descending] = ACTIONS(3187), - [anon_sym_group] = ACTIONS(3187), - [anon_sym_by] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_stackalloc] = ACTIONS(3187), - [anon_sym_sizeof] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym___makeref] = ACTIONS(3187), - [anon_sym___reftype] = ACTIONS(3187), - [anon_sym___refvalue] = ACTIONS(3187), - [sym_null_literal] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3189), - [sym_integer_literal] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [sym_verbatim_string_literal] = ACTIONS(3189), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_if_token3] = ACTIONS(3189), - [aux_sym_preproc_else_token1] = ACTIONS(3189), - [aux_sym_preproc_elif_token1] = ACTIONS(3189), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3189), - [sym_interpolation_verbatim_start] = ACTIONS(3189), - [sym_interpolation_raw_start] = ACTIONS(3189), - [sym_raw_string_start] = ACTIONS(3189), - }, - [1888] = { - [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), - [sym__identifier_token] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym_alias] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_global] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_ref] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_delegate] = ACTIONS(3191), - [anon_sym_record] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_file] = ACTIONS(3191), - [anon_sym_fixed] = ACTIONS(3191), - [anon_sym_internal] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_partial] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_required] = ACTIONS(3191), - [anon_sym_sealed] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_where] = ACTIONS(3191), - [anon_sym_notnull] = ACTIONS(3191), - [anon_sym_unmanaged] = ACTIONS(3191), - [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3191), - [anon_sym_false] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3191), - [anon_sym_scoped] = ACTIONS(3191), - [anon_sym_base] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [sym_predefined_type] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_unchecked] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_when] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_foreach] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3193), - [anon_sym_from] = ACTIONS(3191), - [anon_sym_into] = ACTIONS(3191), - [anon_sym_join] = ACTIONS(3191), - [anon_sym_on] = ACTIONS(3191), - [anon_sym_equals] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_orderby] = ACTIONS(3191), - [anon_sym_ascending] = ACTIONS(3191), - [anon_sym_descending] = ACTIONS(3191), - [anon_sym_group] = ACTIONS(3191), - [anon_sym_by] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_stackalloc] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym___makeref] = ACTIONS(3191), - [anon_sym___reftype] = ACTIONS(3191), - [anon_sym___refvalue] = ACTIONS(3191), - [sym_null_literal] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3193), - [sym_integer_literal] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_verbatim_string_literal] = ACTIONS(3193), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_if_token3] = ACTIONS(3193), - [aux_sym_preproc_else_token1] = ACTIONS(3193), - [aux_sym_preproc_elif_token1] = ACTIONS(3193), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3193), - [sym_interpolation_verbatim_start] = ACTIONS(3193), - [sym_interpolation_raw_start] = ACTIONS(3193), - [sym_raw_string_start] = ACTIONS(3193), - }, - [1889] = { - [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), - [sym__identifier_token] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym_alias] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_global] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_ref] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_delegate] = ACTIONS(3195), - [anon_sym_record] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_file] = ACTIONS(3195), - [anon_sym_fixed] = ACTIONS(3195), - [anon_sym_internal] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_partial] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_required] = ACTIONS(3195), - [anon_sym_sealed] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(3195), - [anon_sym_unmanaged] = ACTIONS(3195), - [anon_sym_checked] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3195), - [anon_sym_false] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_this] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(3195), - [anon_sym_base] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [sym_predefined_type] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_unchecked] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_foreach] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_from] = ACTIONS(3195), - [anon_sym_into] = ACTIONS(3195), - [anon_sym_join] = ACTIONS(3195), - [anon_sym_on] = ACTIONS(3195), - [anon_sym_equals] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_orderby] = ACTIONS(3195), - [anon_sym_ascending] = ACTIONS(3195), - [anon_sym_descending] = ACTIONS(3195), - [anon_sym_group] = ACTIONS(3195), - [anon_sym_by] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_stackalloc] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym___makeref] = ACTIONS(3195), - [anon_sym___reftype] = ACTIONS(3195), - [anon_sym___refvalue] = ACTIONS(3195), - [sym_null_literal] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3197), - [sym_integer_literal] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_verbatim_string_literal] = ACTIONS(3197), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_if_token3] = ACTIONS(3197), - [aux_sym_preproc_else_token1] = ACTIONS(3197), - [aux_sym_preproc_elif_token1] = ACTIONS(3197), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3197), - [sym_interpolation_verbatim_start] = ACTIONS(3197), - [sym_interpolation_raw_start] = ACTIONS(3197), - [sym_raw_string_start] = ACTIONS(3197), - }, - [1890] = { - [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), - [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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354561,12 +360838,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -354576,110 +361438,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1891), [sym_preproc_define] = STATE(1891), [sym_preproc_undef] = STATE(1891), - [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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354690,12 +361514,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [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), @@ -354705,126 +361607,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1892), [sym_preproc_define] = STATE(1892), [sym_preproc_undef] = STATE(1892), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_record] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_if_token3] = ACTIONS(3043), - [aux_sym_preproc_else_token1] = ACTIONS(3043), - [aux_sym_preproc_elif_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -354834,110 +361776,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1893), [sym_preproc_define] = STATE(1893), [sym_preproc_undef] = STATE(1893), - [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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -354948,12 +361852,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(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), @@ -354963,110 +361945,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1894), [sym_preproc_define] = STATE(1894), [sym_preproc_undef] = STATE(1894), - [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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -355077,12 +362021,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [sym_interpolation_regular_start] = ACTIONS(151), + [sym_interpolation_verbatim_start] = ACTIONS(153), + [sym_interpolation_raw_start] = ACTIONS(155), + [sym_raw_string_start] = ACTIONS(157), }, [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), @@ -355092,126 +362114,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1895), [sym_preproc_define] = STATE(1895), [sym_preproc_undef] = STATE(1895), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_record] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_if_token3] = ACTIONS(3219), - [aux_sym_preproc_else_token1] = ACTIONS(3219), - [aux_sym_preproc_elif_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), + [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), }, [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), @@ -355221,126 +362283,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1896), [sym_preproc_define] = STATE(1896), [sym_preproc_undef] = STATE(1896), - [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), + [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), }, [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), @@ -355350,126 +362452,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1897), [sym_preproc_define] = STATE(1897), [sym_preproc_undef] = STATE(1897), - [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), + [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), }, [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), @@ -355479,126 +362621,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1898), [sym_preproc_define] = STATE(1898), [sym_preproc_undef] = STATE(1898), - [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), + [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), }, [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), @@ -355608,126 +362790,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1899), [sym_preproc_define] = STATE(1899), [sym_preproc_undef] = STATE(1899), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -355737,643 +362959,685 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1900), [sym_preproc_define] = STATE(1900), [sym_preproc_undef] = STATE(1900), - [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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3068), - [sym__identifier_token] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym_alias] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_global] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_ref] = ACTIONS(3066), - [anon_sym_struct] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_delegate] = ACTIONS(3066), - [anon_sym_record] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_file] = ACTIONS(3066), - [anon_sym_fixed] = ACTIONS(3066), - [anon_sym_internal] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_partial] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_required] = ACTIONS(3066), - [anon_sym_sealed] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_notnull] = ACTIONS(3066), - [anon_sym_unmanaged] = ACTIONS(3066), - [anon_sym_checked] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_scoped] = ACTIONS(3066), - [anon_sym_base] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [sym_predefined_type] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_unchecked] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_catch] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_foreach] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_DOT_DOT] = ACTIONS(3068), - [anon_sym_from] = ACTIONS(3066), - [anon_sym_into] = ACTIONS(3066), - [anon_sym_join] = ACTIONS(3066), - [anon_sym_on] = ACTIONS(3066), - [anon_sym_equals] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_orderby] = ACTIONS(3066), - [anon_sym_ascending] = ACTIONS(3066), - [anon_sym_descending] = ACTIONS(3066), - [anon_sym_group] = ACTIONS(3066), - [anon_sym_by] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_stackalloc] = ACTIONS(3066), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym___makeref] = ACTIONS(3066), - [anon_sym___reftype] = ACTIONS(3066), - [anon_sym___refvalue] = ACTIONS(3066), - [sym_null_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_integer_literal] = ACTIONS(3066), - [sym_real_literal] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_verbatim_string_literal] = ACTIONS(3068), - [aux_sym_preproc_if_token1] = ACTIONS(3068), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3068), - [sym_interpolation_verbatim_start] = ACTIONS(3068), - [sym_interpolation_raw_start] = ACTIONS(3068), - [sym_raw_string_start] = ACTIONS(3068), - }, - [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(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), - }, - [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), - [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), - }, - [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), - [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), - }, - [1905] = { - [sym_preproc_region] = STATE(1905), + [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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -356382,124 +363646,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1905), [sym_preproc_define] = STATE(1905), [sym_preproc_undef] = STATE(1905), - [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), + [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), }, [1906] = { [sym_preproc_region] = STATE(1906), @@ -356511,126 +363790,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1906), [sym_preproc_define] = STATE(1906), [sym_preproc_undef] = STATE(1906), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [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), @@ -356640,126 +363987,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1907), [sym_preproc_define] = STATE(1907), [sym_preproc_undef] = STATE(1907), - [ts_builtin_sym_end] = ACTIONS(3089), - [sym__identifier_token] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_alias] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_global] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_namespace] = ACTIONS(3087), - [anon_sym_class] = ACTIONS(3087), - [anon_sym_ref] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_delegate] = ACTIONS(3087), - [anon_sym_record] = ACTIONS(3087), - [anon_sym_abstract] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_file] = ACTIONS(3087), - [anon_sym_fixed] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_partial] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_sealed] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_where] = ACTIONS(3087), - [anon_sym_notnull] = ACTIONS(3087), - [anon_sym_unmanaged] = ACTIONS(3087), - [anon_sym_checked] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_true] = ACTIONS(3087), - [anon_sym_false] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3087), - [anon_sym_scoped] = ACTIONS(3087), - [anon_sym_base] = ACTIONS(3087), - [anon_sym_var] = ACTIONS(3087), - [sym_predefined_type] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_unchecked] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_when] = ACTIONS(3087), - [anon_sym_finally] = ACTIONS(3087), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_foreach] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_DOT_DOT] = ACTIONS(3089), - [anon_sym_from] = ACTIONS(3087), - [anon_sym_into] = ACTIONS(3087), - [anon_sym_join] = ACTIONS(3087), - [anon_sym_on] = ACTIONS(3087), - [anon_sym_equals] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_orderby] = ACTIONS(3087), - [anon_sym_ascending] = ACTIONS(3087), - [anon_sym_descending] = ACTIONS(3087), - [anon_sym_group] = ACTIONS(3087), - [anon_sym_by] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_stackalloc] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym_typeof] = ACTIONS(3087), - [anon_sym___makeref] = ACTIONS(3087), - [anon_sym___reftype] = ACTIONS(3087), - [anon_sym___refvalue] = ACTIONS(3087), - [sym_null_literal] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_verbatim_string_literal] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3089), - [sym_interpolation_verbatim_start] = ACTIONS(3089), - [sym_interpolation_raw_start] = ACTIONS(3089), - [sym_raw_string_start] = ACTIONS(3089), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -356769,126 +364126,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1908), [sym_preproc_define] = STATE(1908), [sym_preproc_undef] = STATE(1908), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -356898,126 +364263,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1909), [sym_preproc_define] = STATE(1909), [sym_preproc_undef] = STATE(1909), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -357027,126 +364400,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1910), [sym_preproc_define] = STATE(1910), [sym_preproc_undef] = STATE(1910), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -357156,125 +364537,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1911), [sym_preproc_define] = STATE(1911), [sym_preproc_undef] = STATE(1911), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -357284,125 +364672,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1912), [sym_preproc_define] = STATE(1912), [sym_preproc_undef] = STATE(1912), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -357412,125 +364761,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1913), [sym_preproc_define] = STATE(1913), [sym_preproc_undef] = STATE(1913), - [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_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), + [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), @@ -357540,125 +364895,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1914), [sym_preproc_define] = STATE(1914), [sym_preproc_undef] = STATE(1914), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -357668,125 +365076,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1915), [sym_preproc_define] = STATE(1915), [sym_preproc_undef] = STATE(1915), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [1916] = { + [sym_catch_clause] = STATE(1924), [sym_preproc_region] = STATE(1916), [sym_preproc_endregion] = STATE(1916), [sym_preproc_line] = STATE(1916), @@ -357796,125 +365161,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1916), [sym_preproc_define] = STATE(1916), [sym_preproc_undef] = STATE(1916), - [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_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), + [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), @@ -357924,125 +365342,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1917), [sym_preproc_define] = STATE(1917), [sym_preproc_undef] = STATE(1917), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -358052,125 +365475,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1918), [sym_preproc_define] = STATE(1918), [sym_preproc_undef] = STATE(1918), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -358180,125 +365608,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1919), [sym_preproc_define] = STATE(1919), [sym_preproc_undef] = STATE(1919), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -358308,125 +365741,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1920), [sym_preproc_define] = STATE(1920), [sym_preproc_undef] = STATE(1920), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -358436,125 +365827,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1921), [sym_preproc_define] = STATE(1921), [sym_preproc_undef] = STATE(1921), - [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_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), + [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), @@ -358564,123 +365959,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1922), [sym_preproc_define] = STATE(1922), [sym_preproc_undef] = STATE(1922), - [sym__identifier_token] = ACTIONS(3317), - [anon_sym_extern] = ACTIONS(3317), - [anon_sym_alias] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_global] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_unsafe] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_ref] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_delegate] = ACTIONS(3317), - [anon_sym_record] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_file] = ACTIONS(3317), - [anon_sym_fixed] = ACTIONS(3317), - [anon_sym_internal] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_partial] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_required] = ACTIONS(3317), - [anon_sym_sealed] = ACTIONS(3317), - [anon_sym_virtual] = ACTIONS(3317), - [anon_sym_volatile] = ACTIONS(3317), - [anon_sym_where] = ACTIONS(3317), - [anon_sym_notnull] = ACTIONS(3317), - [anon_sym_unmanaged] = ACTIONS(3317), - [anon_sym_checked] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_this] = ACTIONS(3317), - [anon_sym_scoped] = ACTIONS(3317), - [anon_sym_base] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [sym_predefined_type] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_unchecked] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_lock] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_when] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_foreach] = ACTIONS(3317), - [anon_sym_goto] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3319), - [anon_sym_from] = ACTIONS(3317), - [anon_sym_into] = ACTIONS(3317), - [anon_sym_join] = ACTIONS(3317), - [anon_sym_on] = ACTIONS(3317), - [anon_sym_equals] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_orderby] = ACTIONS(3317), - [anon_sym_ascending] = ACTIONS(3317), - [anon_sym_descending] = ACTIONS(3317), - [anon_sym_group] = ACTIONS(3317), - [anon_sym_by] = ACTIONS(3317), - [anon_sym_select] = ACTIONS(3317), - [anon_sym_stackalloc] = ACTIONS(3317), - [anon_sym_sizeof] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym___makeref] = ACTIONS(3317), - [anon_sym___reftype] = ACTIONS(3317), - [anon_sym___refvalue] = ACTIONS(3317), - [sym_null_literal] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3319), - [sym_integer_literal] = ACTIONS(3317), - [sym_real_literal] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_verbatim_string_literal] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token3] = ACTIONS(3319), - [aux_sym_preproc_else_token1] = ACTIONS(3319), - [aux_sym_preproc_elif_token1] = ACTIONS(3319), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3319), - [sym_interpolation_verbatim_start] = ACTIONS(3319), - [sym_interpolation_raw_start] = ACTIONS(3319), - [sym_raw_string_start] = ACTIONS(3319), + [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), @@ -358692,123 +366089,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1923), [sym_preproc_define] = STATE(1923), [sym_preproc_undef] = STATE(1923), - [sym__identifier_token] = ACTIONS(3321), - [anon_sym_extern] = ACTIONS(3321), - [anon_sym_alias] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_global] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_unsafe] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_ref] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_delegate] = ACTIONS(3321), - [anon_sym_record] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_file] = ACTIONS(3321), - [anon_sym_fixed] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_partial] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_sealed] = ACTIONS(3321), - [anon_sym_virtual] = ACTIONS(3321), - [anon_sym_volatile] = ACTIONS(3321), - [anon_sym_where] = ACTIONS(3321), - [anon_sym_notnull] = ACTIONS(3321), - [anon_sym_unmanaged] = ACTIONS(3321), - [anon_sym_checked] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_this] = ACTIONS(3321), - [anon_sym_scoped] = ACTIONS(3321), - [anon_sym_base] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [sym_predefined_type] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_unchecked] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_lock] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_default] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_when] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_foreach] = ACTIONS(3321), - [anon_sym_goto] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3323), - [anon_sym_from] = ACTIONS(3321), - [anon_sym_into] = ACTIONS(3321), - [anon_sym_join] = ACTIONS(3321), - [anon_sym_on] = ACTIONS(3321), - [anon_sym_equals] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_orderby] = ACTIONS(3321), - [anon_sym_ascending] = ACTIONS(3321), - [anon_sym_descending] = ACTIONS(3321), - [anon_sym_group] = ACTIONS(3321), - [anon_sym_by] = ACTIONS(3321), - [anon_sym_select] = ACTIONS(3321), - [anon_sym_stackalloc] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym___makeref] = ACTIONS(3321), - [anon_sym___reftype] = ACTIONS(3321), - [anon_sym___refvalue] = ACTIONS(3321), - [sym_null_literal] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3323), - [sym_integer_literal] = ACTIONS(3321), - [sym_real_literal] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_verbatim_string_literal] = ACTIONS(3323), - [aux_sym_preproc_if_token1] = ACTIONS(3323), - [aux_sym_preproc_if_token3] = ACTIONS(3323), - [aux_sym_preproc_else_token1] = ACTIONS(3323), - [aux_sym_preproc_elif_token1] = ACTIONS(3323), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3323), - [sym_interpolation_verbatim_start] = ACTIONS(3323), - [sym_interpolation_raw_start] = ACTIONS(3323), - [sym_raw_string_start] = ACTIONS(3323), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1924] = { [sym_preproc_region] = STATE(1924), @@ -358820,123 +366220,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1924), [sym_preproc_define] = STATE(1924), [sym_preproc_undef] = STATE(1924), - [sym__identifier_token] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym_alias] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_global] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_unsafe] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_ref] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_delegate] = ACTIONS(3325), - [anon_sym_record] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_file] = ACTIONS(3325), - [anon_sym_fixed] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_partial] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_sealed] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_where] = ACTIONS(3325), - [anon_sym_notnull] = ACTIONS(3325), - [anon_sym_unmanaged] = ACTIONS(3325), - [anon_sym_checked] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_this] = ACTIONS(3325), - [anon_sym_scoped] = ACTIONS(3325), - [anon_sym_base] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [sym_predefined_type] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_unchecked] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_lock] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_when] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_foreach] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3327), - [anon_sym_from] = ACTIONS(3325), - [anon_sym_into] = ACTIONS(3325), - [anon_sym_join] = ACTIONS(3325), - [anon_sym_on] = ACTIONS(3325), - [anon_sym_equals] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_orderby] = ACTIONS(3325), - [anon_sym_ascending] = ACTIONS(3325), - [anon_sym_descending] = ACTIONS(3325), - [anon_sym_group] = ACTIONS(3325), - [anon_sym_by] = ACTIONS(3325), - [anon_sym_select] = ACTIONS(3325), - [anon_sym_stackalloc] = ACTIONS(3325), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym___makeref] = ACTIONS(3325), - [anon_sym___reftype] = ACTIONS(3325), - [anon_sym___refvalue] = ACTIONS(3325), - [sym_null_literal] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3327), - [sym_integer_literal] = ACTIONS(3325), - [sym_real_literal] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_verbatim_string_literal] = ACTIONS(3327), - [aux_sym_preproc_if_token1] = ACTIONS(3327), - [aux_sym_preproc_if_token3] = ACTIONS(3327), - [aux_sym_preproc_else_token1] = ACTIONS(3327), - [aux_sym_preproc_elif_token1] = ACTIONS(3327), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3327), - [sym_interpolation_verbatim_start] = ACTIONS(3327), - [sym_interpolation_raw_start] = ACTIONS(3327), - [sym_raw_string_start] = ACTIONS(3327), + [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), }, [1925] = { [sym_preproc_region] = STATE(1925), @@ -358948,125 +366351,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1925), [sym_preproc_define] = STATE(1925), [sym_preproc_undef] = STATE(1925), - [sym__identifier_token] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym_alias] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_global] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_unsafe] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_ref] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_delegate] = ACTIONS(3329), - [anon_sym_record] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_file] = ACTIONS(3329), - [anon_sym_fixed] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_partial] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_sealed] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_where] = ACTIONS(3329), - [anon_sym_notnull] = ACTIONS(3329), - [anon_sym_unmanaged] = ACTIONS(3329), - [anon_sym_checked] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_this] = ACTIONS(3329), - [anon_sym_scoped] = ACTIONS(3329), - [anon_sym_base] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [sym_predefined_type] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_unchecked] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_lock] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_when] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_foreach] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [anon_sym_from] = ACTIONS(3329), - [anon_sym_into] = ACTIONS(3329), - [anon_sym_join] = ACTIONS(3329), - [anon_sym_on] = ACTIONS(3329), - [anon_sym_equals] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_orderby] = ACTIONS(3329), - [anon_sym_ascending] = ACTIONS(3329), - [anon_sym_descending] = ACTIONS(3329), - [anon_sym_group] = ACTIONS(3329), - [anon_sym_by] = ACTIONS(3329), - [anon_sym_select] = ACTIONS(3329), - [anon_sym_stackalloc] = ACTIONS(3329), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym___makeref] = ACTIONS(3329), - [anon_sym___reftype] = ACTIONS(3329), - [anon_sym___refvalue] = ACTIONS(3329), - [sym_null_literal] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3331), - [sym_integer_literal] = ACTIONS(3329), - [sym_real_literal] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_verbatim_string_literal] = ACTIONS(3331), - [aux_sym_preproc_if_token1] = ACTIONS(3331), - [aux_sym_preproc_if_token3] = ACTIONS(3331), - [aux_sym_preproc_else_token1] = ACTIONS(3331), - [aux_sym_preproc_elif_token1] = ACTIONS(3331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3331), - [sym_interpolation_verbatim_start] = ACTIONS(3331), - [sym_interpolation_raw_start] = ACTIONS(3331), - [sym_raw_string_start] = ACTIONS(3331), + [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), }, [1926] = { + [sym_catch_clause] = STATE(1967), [sym_preproc_region] = STATE(1926), [sym_preproc_endregion] = STATE(1926), [sym_preproc_line] = STATE(1926), @@ -359076,123 +366483,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1926), [sym_preproc_define] = STATE(1926), [sym_preproc_undef] = STATE(1926), - [sym__identifier_token] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym_alias] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_global] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_unsafe] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_ref] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_delegate] = ACTIONS(3333), - [anon_sym_record] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_file] = ACTIONS(3333), - [anon_sym_fixed] = ACTIONS(3333), - [anon_sym_internal] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_partial] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_required] = ACTIONS(3333), - [anon_sym_sealed] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_where] = ACTIONS(3333), - [anon_sym_notnull] = ACTIONS(3333), - [anon_sym_unmanaged] = ACTIONS(3333), - [anon_sym_checked] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_this] = ACTIONS(3333), - [anon_sym_scoped] = ACTIONS(3333), - [anon_sym_base] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [sym_predefined_type] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_unchecked] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_lock] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_when] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_foreach] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3335), - [anon_sym_from] = ACTIONS(3333), - [anon_sym_into] = ACTIONS(3333), - [anon_sym_join] = ACTIONS(3333), - [anon_sym_on] = ACTIONS(3333), - [anon_sym_equals] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_orderby] = ACTIONS(3333), - [anon_sym_ascending] = ACTIONS(3333), - [anon_sym_descending] = ACTIONS(3333), - [anon_sym_group] = ACTIONS(3333), - [anon_sym_by] = ACTIONS(3333), - [anon_sym_select] = ACTIONS(3333), - [anon_sym_stackalloc] = ACTIONS(3333), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym___makeref] = ACTIONS(3333), - [anon_sym___reftype] = ACTIONS(3333), - [anon_sym___refvalue] = ACTIONS(3333), - [sym_null_literal] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3335), - [sym_integer_literal] = ACTIONS(3333), - [sym_real_literal] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_verbatim_string_literal] = ACTIONS(3335), - [aux_sym_preproc_if_token1] = ACTIONS(3335), - [aux_sym_preproc_if_token3] = ACTIONS(3335), - [aux_sym_preproc_else_token1] = ACTIONS(3335), - [aux_sym_preproc_elif_token1] = ACTIONS(3335), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3335), - [sym_interpolation_verbatim_start] = ACTIONS(3335), - [sym_interpolation_raw_start] = ACTIONS(3335), - [sym_raw_string_start] = ACTIONS(3335), + [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), }, [1927] = { [sym_preproc_region] = STATE(1927), @@ -359204,123 +366613,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1927), [sym_preproc_define] = STATE(1927), [sym_preproc_undef] = STATE(1927), - [sym__identifier_token] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym_alias] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_global] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_unsafe] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_ref] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_delegate] = ACTIONS(3337), - [anon_sym_record] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_file] = ACTIONS(3337), - [anon_sym_fixed] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_partial] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_sealed] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_where] = ACTIONS(3337), - [anon_sym_notnull] = ACTIONS(3337), - [anon_sym_unmanaged] = ACTIONS(3337), - [anon_sym_checked] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_this] = ACTIONS(3337), - [anon_sym_scoped] = ACTIONS(3337), - [anon_sym_base] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [sym_predefined_type] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_unchecked] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_lock] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_when] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_foreach] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3339), - [anon_sym_from] = ACTIONS(3337), - [anon_sym_into] = ACTIONS(3337), - [anon_sym_join] = ACTIONS(3337), - [anon_sym_on] = ACTIONS(3337), - [anon_sym_equals] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_orderby] = ACTIONS(3337), - [anon_sym_ascending] = ACTIONS(3337), - [anon_sym_descending] = ACTIONS(3337), - [anon_sym_group] = ACTIONS(3337), - [anon_sym_by] = ACTIONS(3337), - [anon_sym_select] = ACTIONS(3337), - [anon_sym_stackalloc] = ACTIONS(3337), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym___makeref] = ACTIONS(3337), - [anon_sym___reftype] = ACTIONS(3337), - [anon_sym___refvalue] = ACTIONS(3337), - [sym_null_literal] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), - [sym_integer_literal] = ACTIONS(3337), - [sym_real_literal] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_verbatim_string_literal] = ACTIONS(3339), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_if_token3] = ACTIONS(3339), - [aux_sym_preproc_else_token1] = ACTIONS(3339), - [aux_sym_preproc_elif_token1] = ACTIONS(3339), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3339), - [sym_interpolation_verbatim_start] = ACTIONS(3339), - [sym_interpolation_raw_start] = ACTIONS(3339), - [sym_raw_string_start] = ACTIONS(3339), + [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), }, [1928] = { [sym_preproc_region] = STATE(1928), @@ -359332,123 +366744,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1928), [sym_preproc_define] = STATE(1928), [sym_preproc_undef] = STATE(1928), - [sym__identifier_token] = ACTIONS(3341), - [anon_sym_extern] = ACTIONS(3341), - [anon_sym_alias] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_global] = ACTIONS(3341), - [anon_sym_using] = ACTIONS(3341), - [anon_sym_unsafe] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3341), - [anon_sym_namespace] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_ref] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_delegate] = ACTIONS(3341), - [anon_sym_record] = ACTIONS(3341), - [anon_sym_abstract] = ACTIONS(3341), - [anon_sym_async] = ACTIONS(3341), - [anon_sym_const] = ACTIONS(3341), - [anon_sym_file] = ACTIONS(3341), - [anon_sym_fixed] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_partial] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_protected] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_readonly] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_sealed] = ACTIONS(3341), - [anon_sym_virtual] = ACTIONS(3341), - [anon_sym_volatile] = ACTIONS(3341), - [anon_sym_where] = ACTIONS(3341), - [anon_sym_notnull] = ACTIONS(3341), - [anon_sym_unmanaged] = ACTIONS(3341), - [anon_sym_checked] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_this] = ACTIONS(3341), - [anon_sym_scoped] = ACTIONS(3341), - [anon_sym_base] = ACTIONS(3341), - [anon_sym_var] = ACTIONS(3341), - [sym_predefined_type] = ACTIONS(3341), - [anon_sym_break] = ACTIONS(3341), - [anon_sym_unchecked] = ACTIONS(3341), - [anon_sym_continue] = ACTIONS(3341), - [anon_sym_do] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3341), - [anon_sym_lock] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3341), - [anon_sym_switch] = ACTIONS(3341), - [anon_sym_default] = ACTIONS(3341), - [anon_sym_throw] = ACTIONS(3341), - [anon_sym_try] = ACTIONS(3341), - [anon_sym_when] = ACTIONS(3341), - [anon_sym_await] = ACTIONS(3341), - [anon_sym_foreach] = ACTIONS(3341), - [anon_sym_goto] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3341), - [anon_sym_into] = ACTIONS(3341), - [anon_sym_join] = ACTIONS(3341), - [anon_sym_on] = ACTIONS(3341), - [anon_sym_equals] = ACTIONS(3341), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_orderby] = ACTIONS(3341), - [anon_sym_ascending] = ACTIONS(3341), - [anon_sym_descending] = ACTIONS(3341), - [anon_sym_group] = ACTIONS(3341), - [anon_sym_by] = ACTIONS(3341), - [anon_sym_select] = ACTIONS(3341), - [anon_sym_stackalloc] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3341), - [anon_sym_typeof] = ACTIONS(3341), - [anon_sym___makeref] = ACTIONS(3341), - [anon_sym___reftype] = ACTIONS(3341), - [anon_sym___refvalue] = ACTIONS(3341), - [sym_null_literal] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3343), - [sym_integer_literal] = ACTIONS(3341), - [sym_real_literal] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_verbatim_string_literal] = ACTIONS(3343), - [aux_sym_preproc_if_token1] = ACTIONS(3343), - [aux_sym_preproc_if_token3] = ACTIONS(3343), - [aux_sym_preproc_else_token1] = ACTIONS(3343), - [aux_sym_preproc_elif_token1] = ACTIONS(3343), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3343), - [sym_interpolation_verbatim_start] = ACTIONS(3343), - [sym_interpolation_raw_start] = ACTIONS(3343), - [sym_raw_string_start] = ACTIONS(3343), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1929] = { [sym_preproc_region] = STATE(1929), @@ -359460,123 +366875,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1929), [sym_preproc_define] = STATE(1929), [sym_preproc_undef] = STATE(1929), - [sym__identifier_token] = ACTIONS(3345), - [anon_sym_extern] = ACTIONS(3345), - [anon_sym_alias] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_global] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_unsafe] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_ref] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_delegate] = ACTIONS(3345), - [anon_sym_record] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_file] = ACTIONS(3345), - [anon_sym_fixed] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_partial] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_sealed] = ACTIONS(3345), - [anon_sym_virtual] = ACTIONS(3345), - [anon_sym_volatile] = ACTIONS(3345), - [anon_sym_where] = ACTIONS(3345), - [anon_sym_notnull] = ACTIONS(3345), - [anon_sym_unmanaged] = ACTIONS(3345), - [anon_sym_checked] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_this] = ACTIONS(3345), - [anon_sym_scoped] = ACTIONS(3345), - [anon_sym_base] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [sym_predefined_type] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_unchecked] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_lock] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_when] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_foreach] = ACTIONS(3345), - [anon_sym_goto] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_into] = ACTIONS(3345), - [anon_sym_join] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_equals] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_orderby] = ACTIONS(3345), - [anon_sym_ascending] = ACTIONS(3345), - [anon_sym_descending] = ACTIONS(3345), - [anon_sym_group] = ACTIONS(3345), - [anon_sym_by] = ACTIONS(3345), - [anon_sym_select] = ACTIONS(3345), - [anon_sym_stackalloc] = ACTIONS(3345), - [anon_sym_sizeof] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym___makeref] = ACTIONS(3345), - [anon_sym___reftype] = ACTIONS(3345), - [anon_sym___refvalue] = ACTIONS(3345), - [sym_null_literal] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3347), - [sym_integer_literal] = ACTIONS(3345), - [sym_real_literal] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_verbatim_string_literal] = ACTIONS(3347), - [aux_sym_preproc_if_token1] = ACTIONS(3347), - [aux_sym_preproc_if_token3] = ACTIONS(3347), - [aux_sym_preproc_else_token1] = ACTIONS(3347), - [aux_sym_preproc_elif_token1] = ACTIONS(3347), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3347), - [sym_interpolation_verbatim_start] = ACTIONS(3347), - [sym_interpolation_raw_start] = ACTIONS(3347), - [sym_raw_string_start] = ACTIONS(3347), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1930] = { [sym_preproc_region] = STATE(1930), @@ -359588,123 +367004,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1930), [sym_preproc_define] = STATE(1930), [sym_preproc_undef] = STATE(1930), - [sym__identifier_token] = ACTIONS(3349), - [anon_sym_extern] = ACTIONS(3349), - [anon_sym_alias] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_global] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_unsafe] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_ref] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_delegate] = ACTIONS(3349), - [anon_sym_record] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_file] = ACTIONS(3349), - [anon_sym_fixed] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_partial] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_sealed] = ACTIONS(3349), - [anon_sym_virtual] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_where] = ACTIONS(3349), - [anon_sym_notnull] = ACTIONS(3349), - [anon_sym_unmanaged] = ACTIONS(3349), - [anon_sym_checked] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_this] = ACTIONS(3349), - [anon_sym_scoped] = ACTIONS(3349), - [anon_sym_base] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [sym_predefined_type] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_unchecked] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_lock] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_when] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_foreach] = ACTIONS(3349), - [anon_sym_goto] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_from] = ACTIONS(3349), - [anon_sym_into] = ACTIONS(3349), - [anon_sym_join] = ACTIONS(3349), - [anon_sym_on] = ACTIONS(3349), - [anon_sym_equals] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_orderby] = ACTIONS(3349), - [anon_sym_ascending] = ACTIONS(3349), - [anon_sym_descending] = ACTIONS(3349), - [anon_sym_group] = ACTIONS(3349), - [anon_sym_by] = ACTIONS(3349), - [anon_sym_select] = ACTIONS(3349), - [anon_sym_stackalloc] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym___makeref] = ACTIONS(3349), - [anon_sym___reftype] = ACTIONS(3349), - [anon_sym___refvalue] = ACTIONS(3349), - [sym_null_literal] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3351), - [sym_integer_literal] = ACTIONS(3349), - [sym_real_literal] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_verbatim_string_literal] = ACTIONS(3351), - [aux_sym_preproc_if_token1] = ACTIONS(3351), - [aux_sym_preproc_if_token3] = ACTIONS(3351), - [aux_sym_preproc_else_token1] = ACTIONS(3351), - [aux_sym_preproc_elif_token1] = ACTIONS(3351), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3351), - [sym_interpolation_verbatim_start] = ACTIONS(3351), - [sym_interpolation_raw_start] = ACTIONS(3351), - [sym_raw_string_start] = ACTIONS(3351), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1931] = { [sym_preproc_region] = STATE(1931), @@ -359716,123 +367133,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1931), [sym_preproc_define] = STATE(1931), [sym_preproc_undef] = STATE(1931), - [sym__identifier_token] = ACTIONS(3353), - [anon_sym_extern] = ACTIONS(3353), - [anon_sym_alias] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_global] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_unsafe] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_ref] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_delegate] = ACTIONS(3353), - [anon_sym_record] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_file] = ACTIONS(3353), - [anon_sym_fixed] = ACTIONS(3353), - [anon_sym_internal] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_partial] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_required] = ACTIONS(3353), - [anon_sym_sealed] = ACTIONS(3353), - [anon_sym_virtual] = ACTIONS(3353), - [anon_sym_volatile] = ACTIONS(3353), - [anon_sym_where] = ACTIONS(3353), - [anon_sym_notnull] = ACTIONS(3353), - [anon_sym_unmanaged] = ACTIONS(3353), - [anon_sym_checked] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_this] = ACTIONS(3353), - [anon_sym_scoped] = ACTIONS(3353), - [anon_sym_base] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [sym_predefined_type] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_unchecked] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_lock] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_when] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_foreach] = ACTIONS(3353), - [anon_sym_goto] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_from] = ACTIONS(3353), - [anon_sym_into] = ACTIONS(3353), - [anon_sym_join] = ACTIONS(3353), - [anon_sym_on] = ACTIONS(3353), - [anon_sym_equals] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_orderby] = ACTIONS(3353), - [anon_sym_ascending] = ACTIONS(3353), - [anon_sym_descending] = ACTIONS(3353), - [anon_sym_group] = ACTIONS(3353), - [anon_sym_by] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_stackalloc] = ACTIONS(3353), - [anon_sym_sizeof] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym___makeref] = ACTIONS(3353), - [anon_sym___reftype] = ACTIONS(3353), - [anon_sym___refvalue] = ACTIONS(3353), - [sym_null_literal] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3355), - [sym_integer_literal] = ACTIONS(3353), - [sym_real_literal] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_verbatim_string_literal] = ACTIONS(3355), - [aux_sym_preproc_if_token1] = ACTIONS(3355), - [aux_sym_preproc_if_token3] = ACTIONS(3355), - [aux_sym_preproc_else_token1] = ACTIONS(3355), - [aux_sym_preproc_elif_token1] = ACTIONS(3355), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3355), - [sym_interpolation_verbatim_start] = ACTIONS(3355), - [sym_interpolation_raw_start] = ACTIONS(3355), - [sym_raw_string_start] = ACTIONS(3355), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1932] = { [sym_preproc_region] = STATE(1932), @@ -359844,123 +367262,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1932), [sym_preproc_define] = STATE(1932), [sym_preproc_undef] = STATE(1932), - [sym__identifier_token] = ACTIONS(3357), - [anon_sym_extern] = ACTIONS(3357), - [anon_sym_alias] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_global] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_unsafe] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_ref] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_delegate] = ACTIONS(3357), - [anon_sym_record] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_file] = ACTIONS(3357), - [anon_sym_fixed] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_partial] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_sealed] = ACTIONS(3357), - [anon_sym_virtual] = ACTIONS(3357), - [anon_sym_volatile] = ACTIONS(3357), - [anon_sym_where] = ACTIONS(3357), - [anon_sym_notnull] = ACTIONS(3357), - [anon_sym_unmanaged] = ACTIONS(3357), - [anon_sym_checked] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_this] = ACTIONS(3357), - [anon_sym_scoped] = ACTIONS(3357), - [anon_sym_base] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [sym_predefined_type] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_unchecked] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_lock] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_foreach] = ACTIONS(3357), - [anon_sym_goto] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_from] = ACTIONS(3357), - [anon_sym_into] = ACTIONS(3357), - [anon_sym_join] = ACTIONS(3357), - [anon_sym_on] = ACTIONS(3357), - [anon_sym_equals] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_orderby] = ACTIONS(3357), - [anon_sym_ascending] = ACTIONS(3357), - [anon_sym_descending] = ACTIONS(3357), - [anon_sym_group] = ACTIONS(3357), - [anon_sym_by] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_stackalloc] = ACTIONS(3357), - [anon_sym_sizeof] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym___makeref] = ACTIONS(3357), - [anon_sym___reftype] = ACTIONS(3357), - [anon_sym___refvalue] = ACTIONS(3357), - [sym_null_literal] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3359), - [sym_integer_literal] = ACTIONS(3357), - [sym_real_literal] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_verbatim_string_literal] = ACTIONS(3359), - [aux_sym_preproc_if_token1] = ACTIONS(3359), - [aux_sym_preproc_if_token3] = ACTIONS(3359), - [aux_sym_preproc_else_token1] = ACTIONS(3359), - [aux_sym_preproc_elif_token1] = ACTIONS(3359), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3359), - [sym_interpolation_verbatim_start] = ACTIONS(3359), - [sym_interpolation_raw_start] = ACTIONS(3359), - [sym_raw_string_start] = ACTIONS(3359), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1933] = { [sym_preproc_region] = STATE(1933), @@ -359972,123 +367391,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1933), [sym_preproc_define] = STATE(1933), [sym_preproc_undef] = STATE(1933), - [sym__identifier_token] = ACTIONS(3361), - [anon_sym_extern] = ACTIONS(3361), - [anon_sym_alias] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_global] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_unsafe] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_ref] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_delegate] = ACTIONS(3361), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_abstract] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_file] = ACTIONS(3361), - [anon_sym_fixed] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_partial] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_protected] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_sealed] = ACTIONS(3361), - [anon_sym_virtual] = ACTIONS(3361), - [anon_sym_volatile] = ACTIONS(3361), - [anon_sym_where] = ACTIONS(3361), - [anon_sym_notnull] = ACTIONS(3361), - [anon_sym_unmanaged] = ACTIONS(3361), - [anon_sym_checked] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_this] = ACTIONS(3361), - [anon_sym_scoped] = ACTIONS(3361), - [anon_sym_base] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [sym_predefined_type] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_unchecked] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_lock] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_when] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_foreach] = ACTIONS(3361), - [anon_sym_goto] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_from] = ACTIONS(3361), - [anon_sym_into] = ACTIONS(3361), - [anon_sym_join] = ACTIONS(3361), - [anon_sym_on] = ACTIONS(3361), - [anon_sym_equals] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_orderby] = ACTIONS(3361), - [anon_sym_ascending] = ACTIONS(3361), - [anon_sym_descending] = ACTIONS(3361), - [anon_sym_group] = ACTIONS(3361), - [anon_sym_by] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_stackalloc] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym___makeref] = ACTIONS(3361), - [anon_sym___reftype] = ACTIONS(3361), - [anon_sym___refvalue] = ACTIONS(3361), - [sym_null_literal] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3363), - [sym_integer_literal] = ACTIONS(3361), - [sym_real_literal] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_verbatim_string_literal] = ACTIONS(3363), - [aux_sym_preproc_if_token1] = ACTIONS(3363), - [aux_sym_preproc_if_token3] = ACTIONS(3363), - [aux_sym_preproc_else_token1] = ACTIONS(3363), - [aux_sym_preproc_elif_token1] = ACTIONS(3363), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3363), - [sym_interpolation_verbatim_start] = ACTIONS(3363), - [sym_interpolation_raw_start] = ACTIONS(3363), - [sym_raw_string_start] = ACTIONS(3363), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1934] = { [sym_preproc_region] = STATE(1934), @@ -360100,901 +367520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1934), [sym_preproc_define] = STATE(1934), [sym_preproc_undef] = STATE(1934), - [sym__identifier_token] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym_alias] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_ref] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_delegate] = ACTIONS(3147), - [anon_sym_record] = ACTIONS(3147), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_file] = ACTIONS(3147), - [anon_sym_fixed] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_partial] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_protected] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_sealed] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_where] = ACTIONS(3147), - [anon_sym_notnull] = ACTIONS(3147), - [anon_sym_unmanaged] = ACTIONS(3147), - [anon_sym_checked] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3147), - [anon_sym_false] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3147), - [anon_sym_scoped] = ACTIONS(3147), - [anon_sym_base] = ACTIONS(3147), - [anon_sym_var] = ACTIONS(3147), - [sym_predefined_type] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_unchecked] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_when] = ACTIONS(3147), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_foreach] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_into] = ACTIONS(3147), - [anon_sym_join] = ACTIONS(3147), - [anon_sym_on] = ACTIONS(3147), - [anon_sym_equals] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_orderby] = ACTIONS(3147), - [anon_sym_ascending] = ACTIONS(3147), - [anon_sym_descending] = ACTIONS(3147), - [anon_sym_group] = ACTIONS(3147), - [anon_sym_by] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_stackalloc] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym_typeof] = ACTIONS(3147), - [anon_sym___makeref] = ACTIONS(3147), - [anon_sym___reftype] = ACTIONS(3147), - [anon_sym___refvalue] = ACTIONS(3147), - [sym_null_literal] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3149), - [sym_integer_literal] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_verbatim_string_literal] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_if_token3] = ACTIONS(3149), - [aux_sym_preproc_else_token1] = ACTIONS(3149), - [aux_sym_preproc_elif_token1] = ACTIONS(3149), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3149), - [sym_interpolation_verbatim_start] = ACTIONS(3149), - [sym_interpolation_raw_start] = ACTIONS(3149), - [sym_raw_string_start] = ACTIONS(3149), - }, - [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(3365), - [anon_sym_extern] = ACTIONS(3365), - [anon_sym_alias] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_global] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_unsafe] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_ref] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_delegate] = ACTIONS(3365), - [anon_sym_record] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_file] = ACTIONS(3365), - [anon_sym_fixed] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_partial] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_sealed] = ACTIONS(3365), - [anon_sym_virtual] = ACTIONS(3365), - [anon_sym_volatile] = ACTIONS(3365), - [anon_sym_where] = ACTIONS(3365), - [anon_sym_notnull] = ACTIONS(3365), - [anon_sym_unmanaged] = ACTIONS(3365), - [anon_sym_checked] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_this] = ACTIONS(3365), - [anon_sym_scoped] = ACTIONS(3365), - [anon_sym_base] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [sym_predefined_type] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_unchecked] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_lock] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_default] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_when] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_foreach] = ACTIONS(3365), - [anon_sym_goto] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_from] = ACTIONS(3365), - [anon_sym_into] = ACTIONS(3365), - [anon_sym_join] = ACTIONS(3365), - [anon_sym_on] = ACTIONS(3365), - [anon_sym_equals] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_orderby] = ACTIONS(3365), - [anon_sym_ascending] = ACTIONS(3365), - [anon_sym_descending] = ACTIONS(3365), - [anon_sym_group] = ACTIONS(3365), - [anon_sym_by] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_stackalloc] = ACTIONS(3365), - [anon_sym_sizeof] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym___makeref] = ACTIONS(3365), - [anon_sym___reftype] = ACTIONS(3365), - [anon_sym___refvalue] = ACTIONS(3365), - [sym_null_literal] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3367), - [sym_integer_literal] = ACTIONS(3365), - [sym_real_literal] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_verbatim_string_literal] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token3] = ACTIONS(3367), - [aux_sym_preproc_else_token1] = ACTIONS(3367), - [aux_sym_preproc_elif_token1] = ACTIONS(3367), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3367), - [sym_interpolation_verbatim_start] = ACTIONS(3367), - [sym_interpolation_raw_start] = ACTIONS(3367), - [sym_raw_string_start] = ACTIONS(3367), - }, - [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(3369), - [anon_sym_extern] = ACTIONS(3369), - [anon_sym_alias] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_global] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_unsafe] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_ref] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_delegate] = ACTIONS(3369), - [anon_sym_record] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_file] = ACTIONS(3369), - [anon_sym_fixed] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_partial] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_sealed] = ACTIONS(3369), - [anon_sym_virtual] = ACTIONS(3369), - [anon_sym_volatile] = ACTIONS(3369), - [anon_sym_where] = ACTIONS(3369), - [anon_sym_notnull] = ACTIONS(3369), - [anon_sym_unmanaged] = ACTIONS(3369), - [anon_sym_checked] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_this] = ACTIONS(3369), - [anon_sym_scoped] = ACTIONS(3369), - [anon_sym_base] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [sym_predefined_type] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_unchecked] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_lock] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_when] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_foreach] = ACTIONS(3369), - [anon_sym_goto] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_from] = ACTIONS(3369), - [anon_sym_into] = ACTIONS(3369), - [anon_sym_join] = ACTIONS(3369), - [anon_sym_on] = ACTIONS(3369), - [anon_sym_equals] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_orderby] = ACTIONS(3369), - [anon_sym_ascending] = ACTIONS(3369), - [anon_sym_descending] = ACTIONS(3369), - [anon_sym_group] = ACTIONS(3369), - [anon_sym_by] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_stackalloc] = ACTIONS(3369), - [anon_sym_sizeof] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym___makeref] = ACTIONS(3369), - [anon_sym___reftype] = ACTIONS(3369), - [anon_sym___refvalue] = ACTIONS(3369), - [sym_null_literal] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3371), - [sym_integer_literal] = ACTIONS(3369), - [sym_real_literal] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_verbatim_string_literal] = ACTIONS(3371), - [aux_sym_preproc_if_token1] = ACTIONS(3371), - [aux_sym_preproc_if_token3] = ACTIONS(3371), - [aux_sym_preproc_else_token1] = ACTIONS(3371), - [aux_sym_preproc_elif_token1] = ACTIONS(3371), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3371), - [sym_interpolation_verbatim_start] = ACTIONS(3371), - [sym_interpolation_raw_start] = ACTIONS(3371), - [sym_raw_string_start] = ACTIONS(3371), - }, - [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(3373), - [anon_sym_extern] = ACTIONS(3373), - [anon_sym_alias] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_global] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_unsafe] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_ref] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_delegate] = ACTIONS(3373), - [anon_sym_record] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_file] = ACTIONS(3373), - [anon_sym_fixed] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_partial] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_sealed] = ACTIONS(3373), - [anon_sym_virtual] = ACTIONS(3373), - [anon_sym_volatile] = ACTIONS(3373), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_notnull] = ACTIONS(3373), - [anon_sym_unmanaged] = ACTIONS(3373), - [anon_sym_checked] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_this] = ACTIONS(3373), - [anon_sym_scoped] = ACTIONS(3373), - [anon_sym_base] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [sym_predefined_type] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_unchecked] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_lock] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_when] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_foreach] = ACTIONS(3373), - [anon_sym_goto] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_from] = ACTIONS(3373), - [anon_sym_into] = ACTIONS(3373), - [anon_sym_join] = ACTIONS(3373), - [anon_sym_on] = ACTIONS(3373), - [anon_sym_equals] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_orderby] = ACTIONS(3373), - [anon_sym_ascending] = ACTIONS(3373), - [anon_sym_descending] = ACTIONS(3373), - [anon_sym_group] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_stackalloc] = ACTIONS(3373), - [anon_sym_sizeof] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym___makeref] = ACTIONS(3373), - [anon_sym___reftype] = ACTIONS(3373), - [anon_sym___refvalue] = ACTIONS(3373), - [sym_null_literal] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3375), - [sym_integer_literal] = ACTIONS(3373), - [sym_real_literal] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_verbatim_string_literal] = ACTIONS(3375), - [aux_sym_preproc_if_token1] = ACTIONS(3375), - [aux_sym_preproc_if_token3] = ACTIONS(3375), - [aux_sym_preproc_else_token1] = ACTIONS(3375), - [aux_sym_preproc_elif_token1] = ACTIONS(3375), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3375), - [sym_interpolation_verbatim_start] = ACTIONS(3375), - [sym_interpolation_raw_start] = ACTIONS(3375), - [sym_raw_string_start] = ACTIONS(3375), - }, - [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(3377), - [anon_sym_extern] = ACTIONS(3377), - [anon_sym_alias] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_global] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_unsafe] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_ref] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_delegate] = ACTIONS(3377), - [anon_sym_record] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_file] = ACTIONS(3377), - [anon_sym_fixed] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_partial] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_sealed] = ACTIONS(3377), - [anon_sym_virtual] = ACTIONS(3377), - [anon_sym_volatile] = ACTIONS(3377), - [anon_sym_where] = ACTIONS(3377), - [anon_sym_notnull] = ACTIONS(3377), - [anon_sym_unmanaged] = ACTIONS(3377), - [anon_sym_checked] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_this] = ACTIONS(3377), - [anon_sym_scoped] = ACTIONS(3377), - [anon_sym_base] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [sym_predefined_type] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_unchecked] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_lock] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_when] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_foreach] = ACTIONS(3377), - [anon_sym_goto] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_from] = ACTIONS(3377), - [anon_sym_into] = ACTIONS(3377), - [anon_sym_join] = ACTIONS(3377), - [anon_sym_on] = ACTIONS(3377), - [anon_sym_equals] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_orderby] = ACTIONS(3377), - [anon_sym_ascending] = ACTIONS(3377), - [anon_sym_descending] = ACTIONS(3377), - [anon_sym_group] = ACTIONS(3377), - [anon_sym_by] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_stackalloc] = ACTIONS(3377), - [anon_sym_sizeof] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym___makeref] = ACTIONS(3377), - [anon_sym___reftype] = ACTIONS(3377), - [anon_sym___refvalue] = ACTIONS(3377), - [sym_null_literal] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [sym_integer_literal] = ACTIONS(3377), - [sym_real_literal] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_verbatim_string_literal] = ACTIONS(3379), - [aux_sym_preproc_if_token1] = ACTIONS(3379), - [aux_sym_preproc_if_token3] = ACTIONS(3379), - [aux_sym_preproc_else_token1] = ACTIONS(3379), - [aux_sym_preproc_elif_token1] = ACTIONS(3379), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3379), - [sym_interpolation_verbatim_start] = ACTIONS(3379), - [sym_interpolation_raw_start] = ACTIONS(3379), - [sym_raw_string_start] = ACTIONS(3379), - }, - [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), - [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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3177), - [sym__identifier_token] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym_alias] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_global] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_namespace] = ACTIONS(3175), - [anon_sym_class] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3175), - [anon_sym_enum] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3175), - [anon_sym_delegate] = ACTIONS(3175), - [anon_sym_record] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_file] = ACTIONS(3175), - [anon_sym_fixed] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_partial] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_sealed] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_where] = ACTIONS(3175), - [anon_sym_notnull] = ACTIONS(3175), - [anon_sym_unmanaged] = ACTIONS(3175), - [anon_sym_checked] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3175), - [anon_sym_false] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_this] = ACTIONS(3175), - [anon_sym_scoped] = ACTIONS(3175), - [anon_sym_base] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [sym_predefined_type] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_unchecked] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_when] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_foreach] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3177), - [anon_sym_from] = ACTIONS(3175), - [anon_sym_into] = ACTIONS(3175), - [anon_sym_join] = ACTIONS(3175), - [anon_sym_on] = ACTIONS(3175), - [anon_sym_equals] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_orderby] = ACTIONS(3175), - [anon_sym_ascending] = ACTIONS(3175), - [anon_sym_descending] = ACTIONS(3175), - [anon_sym_group] = ACTIONS(3175), - [anon_sym_by] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_stackalloc] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym___makeref] = ACTIONS(3175), - [anon_sym___reftype] = ACTIONS(3175), - [anon_sym___refvalue] = ACTIONS(3175), - [sym_null_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3177), - [sym_integer_literal] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_verbatim_string_literal] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3177), - [sym_interpolation_verbatim_start] = ACTIONS(3177), - [sym_interpolation_raw_start] = ACTIONS(3177), - [sym_raw_string_start] = ACTIONS(3177), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3097), [sym__identifier_token] = ACTIONS(3095), [anon_sym_extern] = ACTIONS(3095), [anon_sym_alias] = ACTIONS(3095), @@ -361096,6 +367621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -361111,6 +367639,909 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3097), [sym_raw_string_start] = ACTIONS(3097), }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), @@ -361121,122 +368552,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1942), [sym_preproc_define] = STATE(1942), [sym_preproc_undef] = STATE(1942), - [ts_builtin_sym_end] = ACTIONS(3255), - [sym__identifier_token] = ACTIONS(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_global] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_ref] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_delegate] = ACTIONS(3253), - [anon_sym_record] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_file] = ACTIONS(3253), - [anon_sym_fixed] = ACTIONS(3253), - [anon_sym_internal] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_partial] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_required] = ACTIONS(3253), - [anon_sym_sealed] = ACTIONS(3253), - [anon_sym_virtual] = ACTIONS(3253), - [anon_sym_volatile] = ACTIONS(3253), - [anon_sym_where] = ACTIONS(3253), - [anon_sym_notnull] = ACTIONS(3253), - [anon_sym_unmanaged] = ACTIONS(3253), - [anon_sym_checked] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_true] = ACTIONS(3253), - [anon_sym_false] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_this] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_base] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [sym_predefined_type] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_unchecked] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_lock] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_foreach] = ACTIONS(3253), - [anon_sym_goto] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_DOT_DOT] = ACTIONS(3255), - [anon_sym_from] = ACTIONS(3253), - [anon_sym_into] = ACTIONS(3253), - [anon_sym_join] = ACTIONS(3253), - [anon_sym_on] = ACTIONS(3253), - [anon_sym_equals] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_orderby] = ACTIONS(3253), - [anon_sym_ascending] = ACTIONS(3253), - [anon_sym_descending] = ACTIONS(3253), - [anon_sym_group] = ACTIONS(3253), - [anon_sym_by] = ACTIONS(3253), - [anon_sym_select] = ACTIONS(3253), - [anon_sym_stackalloc] = ACTIONS(3253), - [anon_sym_sizeof] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym___makeref] = ACTIONS(3253), - [anon_sym___reftype] = ACTIONS(3253), - [anon_sym___refvalue] = ACTIONS(3253), - [sym_null_literal] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3255), - [sym_integer_literal] = ACTIONS(3253), - [sym_real_literal] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [sym_verbatim_string_literal] = ACTIONS(3255), - [aux_sym_preproc_if_token1] = ACTIONS(3255), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3255), - [sym_interpolation_verbatim_start] = ACTIONS(3255), - [sym_interpolation_raw_start] = ACTIONS(3255), - [sym_raw_string_start] = ACTIONS(3255), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1943] = { [sym_preproc_region] = STATE(1943), @@ -361248,122 +368681,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1943), [sym_preproc_define] = STATE(1943), [sym_preproc_undef] = STATE(1943), - [ts_builtin_sym_end] = ACTIONS(3153), - [sym__identifier_token] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym_alias] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_global] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_namespace] = ACTIONS(3151), - [anon_sym_class] = ACTIONS(3151), - [anon_sym_ref] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3151), - [anon_sym_enum] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3151), - [anon_sym_delegate] = ACTIONS(3151), - [anon_sym_record] = ACTIONS(3151), - [anon_sym_abstract] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_file] = ACTIONS(3151), - [anon_sym_fixed] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_partial] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_protected] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_sealed] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_where] = ACTIONS(3151), - [anon_sym_notnull] = ACTIONS(3151), - [anon_sym_unmanaged] = ACTIONS(3151), - [anon_sym_checked] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_true] = ACTIONS(3151), - [anon_sym_false] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_this] = ACTIONS(3151), - [anon_sym_scoped] = ACTIONS(3151), - [anon_sym_base] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [sym_predefined_type] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_unchecked] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_when] = ACTIONS(3151), - [anon_sym_await] = ACTIONS(3151), - [anon_sym_foreach] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_DOT_DOT] = ACTIONS(3153), - [anon_sym_from] = ACTIONS(3151), - [anon_sym_into] = ACTIONS(3151), - [anon_sym_join] = ACTIONS(3151), - [anon_sym_on] = ACTIONS(3151), - [anon_sym_equals] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_orderby] = ACTIONS(3151), - [anon_sym_ascending] = ACTIONS(3151), - [anon_sym_descending] = ACTIONS(3151), - [anon_sym_group] = ACTIONS(3151), - [anon_sym_by] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_stackalloc] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym___makeref] = ACTIONS(3151), - [anon_sym___reftype] = ACTIONS(3151), - [anon_sym___refvalue] = ACTIONS(3151), - [sym_null_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3153), - [sym_integer_literal] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_verbatim_string_literal] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3153), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3153), - [sym_interpolation_verbatim_start] = ACTIONS(3153), - [sym_interpolation_raw_start] = ACTIONS(3153), - [sym_raw_string_start] = ACTIONS(3153), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3199), + [sym_interpolation_verbatim_start] = ACTIONS(3199), + [sym_interpolation_raw_start] = ACTIONS(3199), + [sym_raw_string_start] = ACTIONS(3199), }, [1944] = { [sym_preproc_region] = STATE(1944), @@ -361375,122 +368810,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1944), [sym_preproc_define] = STATE(1944), [sym_preproc_undef] = STATE(1944), - [ts_builtin_sym_end] = ACTIONS(3181), - [sym__identifier_token] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym_alias] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_global] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_namespace] = ACTIONS(3179), - [anon_sym_class] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3179), - [anon_sym_enum] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3179), - [anon_sym_delegate] = ACTIONS(3179), - [anon_sym_record] = ACTIONS(3179), - [anon_sym_abstract] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_file] = ACTIONS(3179), - [anon_sym_fixed] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_partial] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_protected] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_sealed] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_where] = ACTIONS(3179), - [anon_sym_notnull] = ACTIONS(3179), - [anon_sym_unmanaged] = ACTIONS(3179), - [anon_sym_checked] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3179), - [anon_sym_false] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_this] = ACTIONS(3179), - [anon_sym_scoped] = ACTIONS(3179), - [anon_sym_base] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [sym_predefined_type] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_unchecked] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(3179), - [anon_sym_await] = ACTIONS(3179), - [anon_sym_foreach] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_DOT_DOT] = ACTIONS(3181), - [anon_sym_from] = ACTIONS(3179), - [anon_sym_into] = ACTIONS(3179), - [anon_sym_join] = ACTIONS(3179), - [anon_sym_on] = ACTIONS(3179), - [anon_sym_equals] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_orderby] = ACTIONS(3179), - [anon_sym_ascending] = ACTIONS(3179), - [anon_sym_descending] = ACTIONS(3179), - [anon_sym_group] = ACTIONS(3179), - [anon_sym_by] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_stackalloc] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym_typeof] = ACTIONS(3179), - [anon_sym___makeref] = ACTIONS(3179), - [anon_sym___reftype] = ACTIONS(3179), - [anon_sym___refvalue] = ACTIONS(3179), - [sym_null_literal] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3181), - [sym_integer_literal] = ACTIONS(3179), - [sym_real_literal] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_verbatim_string_literal] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3181), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3181), - [sym_interpolation_verbatim_start] = ACTIONS(3181), - [sym_interpolation_raw_start] = ACTIONS(3181), - [sym_raw_string_start] = ACTIONS(3181), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1945] = { [sym_preproc_region] = STATE(1945), @@ -361502,122 +368939,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1945), [sym_preproc_define] = STATE(1945), [sym_preproc_undef] = STATE(1945), - [ts_builtin_sym_end] = ACTIONS(3271), - [sym__identifier_token] = ACTIONS(3269), - [anon_sym_extern] = ACTIONS(3269), - [anon_sym_alias] = ACTIONS(3269), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_global] = ACTIONS(3269), - [anon_sym_using] = ACTIONS(3269), - [anon_sym_unsafe] = ACTIONS(3269), - [anon_sym_static] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3269), - [anon_sym_namespace] = ACTIONS(3269), - [anon_sym_class] = ACTIONS(3269), - [anon_sym_ref] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3269), - [anon_sym_enum] = ACTIONS(3269), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3269), - [anon_sym_delegate] = ACTIONS(3269), - [anon_sym_record] = ACTIONS(3269), - [anon_sym_abstract] = ACTIONS(3269), - [anon_sym_async] = ACTIONS(3269), - [anon_sym_const] = ACTIONS(3269), - [anon_sym_file] = ACTIONS(3269), - [anon_sym_fixed] = ACTIONS(3269), - [anon_sym_internal] = ACTIONS(3269), - [anon_sym_new] = ACTIONS(3269), - [anon_sym_override] = ACTIONS(3269), - [anon_sym_partial] = ACTIONS(3269), - [anon_sym_private] = ACTIONS(3269), - [anon_sym_protected] = ACTIONS(3269), - [anon_sym_public] = ACTIONS(3269), - [anon_sym_readonly] = ACTIONS(3269), - [anon_sym_required] = ACTIONS(3269), - [anon_sym_sealed] = ACTIONS(3269), - [anon_sym_virtual] = ACTIONS(3269), - [anon_sym_volatile] = ACTIONS(3269), - [anon_sym_where] = ACTIONS(3269), - [anon_sym_notnull] = ACTIONS(3269), - [anon_sym_unmanaged] = ACTIONS(3269), - [anon_sym_checked] = ACTIONS(3269), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3269), - [anon_sym_false] = ACTIONS(3269), - [anon_sym_PLUS] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(3269), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_this] = ACTIONS(3269), - [anon_sym_scoped] = ACTIONS(3269), - [anon_sym_base] = ACTIONS(3269), - [anon_sym_var] = ACTIONS(3269), - [sym_predefined_type] = ACTIONS(3269), - [anon_sym_break] = ACTIONS(3269), - [anon_sym_unchecked] = ACTIONS(3269), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_do] = ACTIONS(3269), - [anon_sym_while] = ACTIONS(3269), - [anon_sym_for] = ACTIONS(3269), - [anon_sym_lock] = ACTIONS(3269), - [anon_sym_yield] = ACTIONS(3269), - [anon_sym_switch] = ACTIONS(3269), - [anon_sym_default] = ACTIONS(3269), - [anon_sym_throw] = ACTIONS(3269), - [anon_sym_try] = ACTIONS(3269), - [anon_sym_when] = ACTIONS(3269), - [anon_sym_await] = ACTIONS(3269), - [anon_sym_foreach] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3269), - [anon_sym_else] = ACTIONS(3269), - [anon_sym_DOT_DOT] = ACTIONS(3271), - [anon_sym_from] = ACTIONS(3269), - [anon_sym_into] = ACTIONS(3269), - [anon_sym_join] = ACTIONS(3269), - [anon_sym_on] = ACTIONS(3269), - [anon_sym_equals] = ACTIONS(3269), - [anon_sym_let] = ACTIONS(3269), - [anon_sym_orderby] = ACTIONS(3269), - [anon_sym_ascending] = ACTIONS(3269), - [anon_sym_descending] = ACTIONS(3269), - [anon_sym_group] = ACTIONS(3269), - [anon_sym_by] = ACTIONS(3269), - [anon_sym_select] = ACTIONS(3269), - [anon_sym_stackalloc] = ACTIONS(3269), - [anon_sym_sizeof] = ACTIONS(3269), - [anon_sym_typeof] = ACTIONS(3269), - [anon_sym___makeref] = ACTIONS(3269), - [anon_sym___reftype] = ACTIONS(3269), - [anon_sym___refvalue] = ACTIONS(3269), - [sym_null_literal] = ACTIONS(3269), - [anon_sym_SQUOTE] = ACTIONS(3271), - [sym_integer_literal] = ACTIONS(3269), - [sym_real_literal] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [sym_verbatim_string_literal] = ACTIONS(3271), - [aux_sym_preproc_if_token1] = ACTIONS(3271), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3271), - [sym_interpolation_verbatim_start] = ACTIONS(3271), - [sym_interpolation_raw_start] = ACTIONS(3271), - [sym_raw_string_start] = ACTIONS(3271), + [sym__identifier_token] = ACTIONS(3201), + [anon_sym_extern] = ACTIONS(3201), + [anon_sym_alias] = ACTIONS(3201), + [anon_sym_SEMI] = ACTIONS(3203), + [anon_sym_global] = ACTIONS(3201), + [anon_sym_using] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_static] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_namespace] = ACTIONS(3201), + [anon_sym_class] = ACTIONS(3201), + [anon_sym_ref] = ACTIONS(3201), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_enum] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_interface] = ACTIONS(3201), + [anon_sym_delegate] = ACTIONS(3201), + [anon_sym_record] = ACTIONS(3201), + [anon_sym_abstract] = ACTIONS(3201), + [anon_sym_async] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3201), + [anon_sym_file] = ACTIONS(3201), + [anon_sym_fixed] = ACTIONS(3201), + [anon_sym_internal] = ACTIONS(3201), + [anon_sym_new] = ACTIONS(3201), + [anon_sym_override] = ACTIONS(3201), + [anon_sym_partial] = ACTIONS(3201), + [anon_sym_private] = ACTIONS(3201), + [anon_sym_protected] = ACTIONS(3201), + [anon_sym_public] = ACTIONS(3201), + [anon_sym_readonly] = ACTIONS(3201), + [anon_sym_required] = ACTIONS(3201), + [anon_sym_sealed] = ACTIONS(3201), + [anon_sym_virtual] = ACTIONS(3201), + [anon_sym_volatile] = ACTIONS(3201), + [anon_sym_where] = ACTIONS(3201), + [anon_sym_notnull] = ACTIONS(3201), + [anon_sym_unmanaged] = ACTIONS(3201), + [anon_sym_checked] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3203), + [anon_sym_true] = ACTIONS(3201), + [anon_sym_false] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_this] = ACTIONS(3201), + [anon_sym_scoped] = ACTIONS(3201), + [anon_sym_base] = ACTIONS(3201), + [anon_sym_var] = ACTIONS(3201), + [sym_predefined_type] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_unchecked] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_do] = ACTIONS(3201), + [anon_sym_while] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_yield] = ACTIONS(3201), + [anon_sym_switch] = ACTIONS(3201), + [anon_sym_default] = ACTIONS(3201), + [anon_sym_throw] = ACTIONS(3201), + [anon_sym_try] = ACTIONS(3201), + [anon_sym_when] = ACTIONS(3201), + [anon_sym_await] = ACTIONS(3201), + [anon_sym_foreach] = ACTIONS(3201), + [anon_sym_goto] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_else] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3203), + [anon_sym_from] = ACTIONS(3201), + [anon_sym_into] = ACTIONS(3201), + [anon_sym_join] = ACTIONS(3201), + [anon_sym_on] = ACTIONS(3201), + [anon_sym_equals] = ACTIONS(3201), + [anon_sym_let] = ACTIONS(3201), + [anon_sym_orderby] = ACTIONS(3201), + [anon_sym_ascending] = ACTIONS(3201), + [anon_sym_descending] = ACTIONS(3201), + [anon_sym_group] = ACTIONS(3201), + [anon_sym_by] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_stackalloc] = ACTIONS(3201), + [anon_sym_sizeof] = ACTIONS(3201), + [anon_sym_typeof] = ACTIONS(3201), + [anon_sym___makeref] = ACTIONS(3201), + [anon_sym___reftype] = ACTIONS(3201), + [anon_sym___refvalue] = ACTIONS(3201), + [sym_null_literal] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3203), + [sym_integer_literal] = ACTIONS(3201), + [sym_real_literal] = ACTIONS(3203), + [anon_sym_DQUOTE] = ACTIONS(3203), + [sym_verbatim_string_literal] = ACTIONS(3203), + [aux_sym_preproc_if_token1] = ACTIONS(3203), + [aux_sym_preproc_if_token3] = ACTIONS(3203), + [aux_sym_preproc_else_token1] = ACTIONS(3203), + [aux_sym_preproc_elif_token1] = ACTIONS(3203), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3203), + [sym_interpolation_verbatim_start] = ACTIONS(3203), + [sym_interpolation_raw_start] = ACTIONS(3203), + [sym_raw_string_start] = ACTIONS(3203), }, [1946] = { [sym_preproc_region] = STATE(1946), @@ -361629,126 +369068,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1946), [sym_preproc_define] = STATE(1946), [sym_preproc_undef] = STATE(1946), - [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), + [sym__identifier_token] = ACTIONS(3205), + [anon_sym_extern] = ACTIONS(3205), + [anon_sym_alias] = ACTIONS(3205), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_global] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_static] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_namespace] = ACTIONS(3205), + [anon_sym_class] = ACTIONS(3205), + [anon_sym_ref] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_delegate] = ACTIONS(3205), + [anon_sym_record] = ACTIONS(3205), + [anon_sym_abstract] = ACTIONS(3205), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_file] = ACTIONS(3205), + [anon_sym_fixed] = ACTIONS(3205), + [anon_sym_internal] = ACTIONS(3205), + [anon_sym_new] = ACTIONS(3205), + [anon_sym_override] = ACTIONS(3205), + [anon_sym_partial] = ACTIONS(3205), + [anon_sym_private] = ACTIONS(3205), + [anon_sym_protected] = ACTIONS(3205), + [anon_sym_public] = ACTIONS(3205), + [anon_sym_readonly] = ACTIONS(3205), + [anon_sym_required] = ACTIONS(3205), + [anon_sym_sealed] = ACTIONS(3205), + [anon_sym_virtual] = ACTIONS(3205), + [anon_sym_volatile] = ACTIONS(3205), + [anon_sym_where] = ACTIONS(3205), + [anon_sym_notnull] = ACTIONS(3205), + [anon_sym_unmanaged] = ACTIONS(3205), + [anon_sym_checked] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_true] = ACTIONS(3205), + [anon_sym_false] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_CARET] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_this] = ACTIONS(3205), + [anon_sym_scoped] = ACTIONS(3205), + [anon_sym_base] = ACTIONS(3205), + [anon_sym_var] = ACTIONS(3205), + [sym_predefined_type] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_unchecked] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_do] = ACTIONS(3205), + [anon_sym_while] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3205), + [anon_sym_default] = ACTIONS(3205), + [anon_sym_throw] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3205), + [anon_sym_when] = ACTIONS(3205), + [anon_sym_await] = ACTIONS(3205), + [anon_sym_foreach] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_else] = ACTIONS(3205), + [anon_sym_DOT_DOT] = ACTIONS(3207), + [anon_sym_from] = ACTIONS(3205), + [anon_sym_into] = ACTIONS(3205), + [anon_sym_join] = ACTIONS(3205), + [anon_sym_on] = ACTIONS(3205), + [anon_sym_equals] = ACTIONS(3205), + [anon_sym_let] = ACTIONS(3205), + [anon_sym_orderby] = ACTIONS(3205), + [anon_sym_ascending] = ACTIONS(3205), + [anon_sym_descending] = ACTIONS(3205), + [anon_sym_group] = ACTIONS(3205), + [anon_sym_by] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_stackalloc] = ACTIONS(3205), + [anon_sym_sizeof] = ACTIONS(3205), + [anon_sym_typeof] = ACTIONS(3205), + [anon_sym___makeref] = ACTIONS(3205), + [anon_sym___reftype] = ACTIONS(3205), + [anon_sym___refvalue] = ACTIONS(3205), + [sym_null_literal] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3207), + [sym_integer_literal] = ACTIONS(3205), + [sym_real_literal] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [sym_verbatim_string_literal] = ACTIONS(3207), + [aux_sym_preproc_if_token1] = ACTIONS(3207), + [aux_sym_preproc_if_token3] = ACTIONS(3207), + [aux_sym_preproc_else_token1] = ACTIONS(3207), + [aux_sym_preproc_elif_token1] = ACTIONS(3207), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3207), + [sym_interpolation_verbatim_start] = ACTIONS(3207), + [sym_interpolation_raw_start] = ACTIONS(3207), + [sym_raw_string_start] = ACTIONS(3207), }, [1947] = { - [sym_catch_clause] = STATE(2019), - [sym_finally_clause] = STATE(2041), [sym_preproc_region] = STATE(1947), [sym_preproc_endregion] = STATE(1947), [sym_preproc_line] = STATE(1947), @@ -361758,120 +369197,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1947), [sym_preproc_define] = STATE(1947), [sym_preproc_undef] = STATE(1947), - [aux_sym_try_statement_repeat1] = STATE(1957), - [sym__identifier_token] = ACTIONS(3049), - [anon_sym_extern] = ACTIONS(3049), - [anon_sym_alias] = ACTIONS(3049), - [anon_sym_SEMI] = ACTIONS(3051), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_using] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_static] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_ref] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_RBRACE] = ACTIONS(3051), - [anon_sym_delegate] = ACTIONS(3049), - [anon_sym_abstract] = ACTIONS(3049), - [anon_sym_async] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_file] = ACTIONS(3049), - [anon_sym_fixed] = ACTIONS(3049), - [anon_sym_internal] = ACTIONS(3049), - [anon_sym_new] = ACTIONS(3049), - [anon_sym_override] = ACTIONS(3049), - [anon_sym_partial] = ACTIONS(3049), - [anon_sym_private] = ACTIONS(3049), - [anon_sym_protected] = ACTIONS(3049), - [anon_sym_public] = ACTIONS(3049), - [anon_sym_readonly] = ACTIONS(3049), - [anon_sym_required] = ACTIONS(3049), - [anon_sym_sealed] = ACTIONS(3049), - [anon_sym_virtual] = ACTIONS(3049), - [anon_sym_volatile] = ACTIONS(3049), - [anon_sym_where] = ACTIONS(3049), - [anon_sym_notnull] = ACTIONS(3049), - [anon_sym_unmanaged] = ACTIONS(3049), - [anon_sym_checked] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3051), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_true] = ACTIONS(3049), - [anon_sym_false] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3051), - [anon_sym_this] = ACTIONS(3049), - [anon_sym_scoped] = ACTIONS(3049), - [anon_sym_base] = ACTIONS(3049), - [anon_sym_var] = ACTIONS(3049), - [sym_predefined_type] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_unchecked] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_do] = ACTIONS(3049), - [anon_sym_while] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_yield] = ACTIONS(3049), - [anon_sym_switch] = ACTIONS(3049), - [anon_sym_case] = ACTIONS(3049), - [anon_sym_default] = ACTIONS(3049), - [anon_sym_throw] = ACTIONS(3049), - [anon_sym_try] = ACTIONS(3049), - [anon_sym_catch] = ACTIONS(3381), - [anon_sym_when] = ACTIONS(3049), - [anon_sym_finally] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3049), - [anon_sym_foreach] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_else] = ACTIONS(3049), - [anon_sym_DOT_DOT] = ACTIONS(3051), - [anon_sym_from] = ACTIONS(3049), - [anon_sym_into] = ACTIONS(3049), - [anon_sym_join] = ACTIONS(3049), - [anon_sym_on] = ACTIONS(3049), - [anon_sym_equals] = ACTIONS(3049), - [anon_sym_let] = ACTIONS(3049), - [anon_sym_orderby] = ACTIONS(3049), - [anon_sym_ascending] = ACTIONS(3049), - [anon_sym_descending] = ACTIONS(3049), - [anon_sym_group] = ACTIONS(3049), - [anon_sym_by] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_stackalloc] = ACTIONS(3049), - [anon_sym_sizeof] = ACTIONS(3049), - [anon_sym_typeof] = ACTIONS(3049), - [anon_sym___makeref] = ACTIONS(3049), - [anon_sym___reftype] = ACTIONS(3049), - [anon_sym___refvalue] = ACTIONS(3049), - [sym_null_literal] = ACTIONS(3049), - [anon_sym_SQUOTE] = ACTIONS(3051), - [sym_integer_literal] = ACTIONS(3049), - [sym_real_literal] = ACTIONS(3051), - [anon_sym_DQUOTE] = ACTIONS(3051), - [sym_verbatim_string_literal] = ACTIONS(3051), - [aux_sym_preproc_if_token1] = ACTIONS(3051), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3051), - [sym_interpolation_verbatim_start] = ACTIONS(3051), - [sym_interpolation_raw_start] = ACTIONS(3051), - [sym_raw_string_start] = ACTIONS(3051), + [sym__identifier_token] = ACTIONS(3209), + [anon_sym_extern] = ACTIONS(3209), + [anon_sym_alias] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3209), + [anon_sym_using] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_static] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3209), + [anon_sym_namespace] = ACTIONS(3209), + [anon_sym_class] = ACTIONS(3209), + [anon_sym_ref] = ACTIONS(3209), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3209), + [anon_sym_delegate] = ACTIONS(3209), + [anon_sym_record] = ACTIONS(3209), + [anon_sym_abstract] = ACTIONS(3209), + [anon_sym_async] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_file] = ACTIONS(3209), + [anon_sym_fixed] = ACTIONS(3209), + [anon_sym_internal] = ACTIONS(3209), + [anon_sym_new] = ACTIONS(3209), + [anon_sym_override] = ACTIONS(3209), + [anon_sym_partial] = ACTIONS(3209), + [anon_sym_private] = ACTIONS(3209), + [anon_sym_protected] = ACTIONS(3209), + [anon_sym_public] = ACTIONS(3209), + [anon_sym_readonly] = ACTIONS(3209), + [anon_sym_required] = ACTIONS(3209), + [anon_sym_sealed] = ACTIONS(3209), + [anon_sym_virtual] = ACTIONS(3209), + [anon_sym_volatile] = ACTIONS(3209), + [anon_sym_where] = ACTIONS(3209), + [anon_sym_notnull] = ACTIONS(3209), + [anon_sym_unmanaged] = ACTIONS(3209), + [anon_sym_checked] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_true] = ACTIONS(3209), + [anon_sym_false] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(3209), + [anon_sym_scoped] = ACTIONS(3209), + [anon_sym_base] = ACTIONS(3209), + [anon_sym_var] = ACTIONS(3209), + [sym_predefined_type] = ACTIONS(3209), + [anon_sym_break] = ACTIONS(3209), + [anon_sym_unchecked] = ACTIONS(3209), + [anon_sym_continue] = ACTIONS(3209), + [anon_sym_do] = ACTIONS(3209), + [anon_sym_while] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_yield] = ACTIONS(3209), + [anon_sym_switch] = ACTIONS(3209), + [anon_sym_default] = ACTIONS(3209), + [anon_sym_throw] = ACTIONS(3209), + [anon_sym_try] = ACTIONS(3209), + [anon_sym_when] = ACTIONS(3209), + [anon_sym_await] = ACTIONS(3209), + [anon_sym_foreach] = ACTIONS(3209), + [anon_sym_goto] = ACTIONS(3209), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_else] = ACTIONS(3209), + [anon_sym_DOT_DOT] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3209), + [anon_sym_into] = ACTIONS(3209), + [anon_sym_join] = ACTIONS(3209), + [anon_sym_on] = ACTIONS(3209), + [anon_sym_equals] = ACTIONS(3209), + [anon_sym_let] = ACTIONS(3209), + [anon_sym_orderby] = ACTIONS(3209), + [anon_sym_ascending] = ACTIONS(3209), + [anon_sym_descending] = ACTIONS(3209), + [anon_sym_group] = ACTIONS(3209), + [anon_sym_by] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_stackalloc] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3209), + [anon_sym_typeof] = ACTIONS(3209), + [anon_sym___makeref] = ACTIONS(3209), + [anon_sym___reftype] = ACTIONS(3209), + [anon_sym___refvalue] = ACTIONS(3209), + [sym_null_literal] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3211), + [sym_integer_literal] = ACTIONS(3209), + [sym_real_literal] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym_verbatim_string_literal] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_if_token3] = ACTIONS(3211), + [aux_sym_preproc_else_token1] = ACTIONS(3211), + [aux_sym_preproc_elif_token1] = ACTIONS(3211), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, [1948] = { [sym_preproc_region] = STATE(1948), @@ -361883,261 +369326,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1948), [sym_preproc_define] = STATE(1948), [sym_preproc_undef] = STATE(1948), - [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), - }, - [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(3149), - [sym__identifier_token] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym_alias] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3147), - [anon_sym_class] = ACTIONS(3147), - [anon_sym_ref] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3147), - [anon_sym_enum] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3147), - [anon_sym_delegate] = ACTIONS(3147), - [anon_sym_record] = ACTIONS(3147), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_file] = ACTIONS(3147), - [anon_sym_fixed] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_partial] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_protected] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_sealed] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_where] = ACTIONS(3147), - [anon_sym_notnull] = ACTIONS(3147), - [anon_sym_unmanaged] = ACTIONS(3147), - [anon_sym_checked] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3147), - [anon_sym_false] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3147), - [anon_sym_scoped] = ACTIONS(3147), - [anon_sym_base] = ACTIONS(3147), - [anon_sym_var] = ACTIONS(3147), - [sym_predefined_type] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_unchecked] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_when] = ACTIONS(3147), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_foreach] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_into] = ACTIONS(3147), - [anon_sym_join] = ACTIONS(3147), - [anon_sym_on] = ACTIONS(3147), - [anon_sym_equals] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_orderby] = ACTIONS(3147), - [anon_sym_ascending] = ACTIONS(3147), - [anon_sym_descending] = ACTIONS(3147), - [anon_sym_group] = ACTIONS(3147), - [anon_sym_by] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_stackalloc] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym_typeof] = ACTIONS(3147), - [anon_sym___makeref] = ACTIONS(3147), - [anon_sym___reftype] = ACTIONS(3147), - [anon_sym___refvalue] = ACTIONS(3147), - [sym_null_literal] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3149), - [sym_integer_literal] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_verbatim_string_literal] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3149), - [sym_interpolation_verbatim_start] = ACTIONS(3149), - [sym_interpolation_raw_start] = ACTIONS(3149), - [sym_raw_string_start] = ACTIONS(3149), - }, - [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(3215), [sym__identifier_token] = ACTIONS(3213), [anon_sym_extern] = ACTIONS(3213), [anon_sym_alias] = ACTIONS(3213), @@ -362212,7 +369400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3213), [anon_sym_goto] = ACTIONS(3213), [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3217), [anon_sym_DOT_DOT] = ACTIONS(3215), [anon_sym_from] = ACTIONS(3213), [anon_sym_into] = ACTIONS(3213), @@ -362239,6 +369427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -362254,6 +369445,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -362264,122 +369713,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1951), [sym_preproc_define] = STATE(1951), [sym_preproc_undef] = STATE(1951), - [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_when] = 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), + [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), @@ -362391,122 +369842,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1952), [sym_preproc_define] = STATE(1952), [sym_preproc_undef] = STATE(1952), - [ts_builtin_sym_end] = ACTIONS(3185), - [sym__identifier_token] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym_alias] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_global] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_namespace] = ACTIONS(3183), - [anon_sym_class] = ACTIONS(3183), - [anon_sym_ref] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_enum] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3183), - [anon_sym_delegate] = ACTIONS(3183), - [anon_sym_record] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_file] = ACTIONS(3183), - [anon_sym_fixed] = ACTIONS(3183), - [anon_sym_internal] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_partial] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_required] = ACTIONS(3183), - [anon_sym_sealed] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_where] = ACTIONS(3183), - [anon_sym_notnull] = ACTIONS(3183), - [anon_sym_unmanaged] = ACTIONS(3183), - [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_this] = ACTIONS(3183), - [anon_sym_scoped] = ACTIONS(3183), - [anon_sym_base] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [sym_predefined_type] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_unchecked] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_when] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_foreach] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_DOT_DOT] = ACTIONS(3185), - [anon_sym_from] = ACTIONS(3183), - [anon_sym_into] = ACTIONS(3183), - [anon_sym_join] = ACTIONS(3183), - [anon_sym_on] = ACTIONS(3183), - [anon_sym_equals] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_orderby] = ACTIONS(3183), - [anon_sym_ascending] = ACTIONS(3183), - [anon_sym_descending] = ACTIONS(3183), - [anon_sym_group] = ACTIONS(3183), - [anon_sym_by] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_stackalloc] = ACTIONS(3183), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym___makeref] = ACTIONS(3183), - [anon_sym___reftype] = ACTIONS(3183), - [anon_sym___refvalue] = ACTIONS(3183), - [sym_null_literal] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3185), - [sym_integer_literal] = ACTIONS(3183), - [sym_real_literal] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_verbatim_string_literal] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3185), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3185), - [sym_interpolation_verbatim_start] = ACTIONS(3185), - [sym_interpolation_raw_start] = ACTIONS(3185), - [sym_raw_string_start] = ACTIONS(3185), + [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), @@ -362518,122 +369971,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1953), [sym_preproc_define] = STATE(1953), [sym_preproc_undef] = STATE(1953), - [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), + [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), @@ -362645,122 +370100,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1954), [sym_preproc_define] = STATE(1954), [sym_preproc_undef] = STATE(1954), - [ts_builtin_sym_end] = ACTIONS(3197), - [sym__identifier_token] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym_alias] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_global] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_namespace] = ACTIONS(3195), - [anon_sym_class] = ACTIONS(3195), - [anon_sym_ref] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_delegate] = ACTIONS(3195), - [anon_sym_record] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_file] = ACTIONS(3195), - [anon_sym_fixed] = ACTIONS(3195), - [anon_sym_internal] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_partial] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_required] = ACTIONS(3195), - [anon_sym_sealed] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(3195), - [anon_sym_unmanaged] = ACTIONS(3195), - [anon_sym_checked] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3195), - [anon_sym_false] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_this] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(3195), - [anon_sym_base] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [sym_predefined_type] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_unchecked] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_foreach] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_from] = ACTIONS(3195), - [anon_sym_into] = ACTIONS(3195), - [anon_sym_join] = ACTIONS(3195), - [anon_sym_on] = ACTIONS(3195), - [anon_sym_equals] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_orderby] = ACTIONS(3195), - [anon_sym_ascending] = ACTIONS(3195), - [anon_sym_descending] = ACTIONS(3195), - [anon_sym_group] = ACTIONS(3195), - [anon_sym_by] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_stackalloc] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym___makeref] = ACTIONS(3195), - [anon_sym___reftype] = ACTIONS(3195), - [anon_sym___refvalue] = ACTIONS(3195), - [sym_null_literal] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3197), - [sym_integer_literal] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_verbatim_string_literal] = ACTIONS(3197), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3197), - [sym_interpolation_verbatim_start] = ACTIONS(3197), - [sym_interpolation_raw_start] = ACTIONS(3197), - [sym_raw_string_start] = ACTIONS(3197), + [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), @@ -362772,122 +370229,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1955), [sym_preproc_define] = STATE(1955), [sym_preproc_undef] = STATE(1955), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -362899,126 +370358,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1956), [sym_preproc_define] = STATE(1956), [sym_preproc_undef] = STATE(1956), - [ts_builtin_sym_end] = ACTIONS(3193), - [sym__identifier_token] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym_alias] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_global] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_namespace] = ACTIONS(3191), - [anon_sym_class] = ACTIONS(3191), - [anon_sym_ref] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_enum] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3191), - [anon_sym_delegate] = ACTIONS(3191), - [anon_sym_record] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_file] = ACTIONS(3191), - [anon_sym_fixed] = ACTIONS(3191), - [anon_sym_internal] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_partial] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_required] = ACTIONS(3191), - [anon_sym_sealed] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_where] = ACTIONS(3191), - [anon_sym_notnull] = ACTIONS(3191), - [anon_sym_unmanaged] = ACTIONS(3191), - [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3191), - [anon_sym_false] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3191), - [anon_sym_scoped] = ACTIONS(3191), - [anon_sym_base] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [sym_predefined_type] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_unchecked] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_when] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_foreach] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3193), - [anon_sym_from] = ACTIONS(3191), - [anon_sym_into] = ACTIONS(3191), - [anon_sym_join] = ACTIONS(3191), - [anon_sym_on] = ACTIONS(3191), - [anon_sym_equals] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_orderby] = ACTIONS(3191), - [anon_sym_ascending] = ACTIONS(3191), - [anon_sym_descending] = ACTIONS(3191), - [anon_sym_group] = ACTIONS(3191), - [anon_sym_by] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_stackalloc] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym___makeref] = ACTIONS(3191), - [anon_sym___reftype] = ACTIONS(3191), - [anon_sym___refvalue] = ACTIONS(3191), - [sym_null_literal] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3193), - [sym_integer_literal] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_verbatim_string_literal] = ACTIONS(3193), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3193), - [sym_interpolation_verbatim_start] = ACTIONS(3193), - [sym_interpolation_raw_start] = ACTIONS(3193), - [sym_raw_string_start] = ACTIONS(3193), + [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_catch_clause] = STATE(2019), - [sym_finally_clause] = STATE(2061), [sym_preproc_region] = STATE(1957), [sym_preproc_endregion] = STATE(1957), [sym_preproc_line] = STATE(1957), @@ -363028,120 +370487,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1957), [sym_preproc_define] = STATE(1957), [sym_preproc_undef] = STATE(1957), - [aux_sym_try_statement_repeat1] = STATE(2011), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_catch] = ACTIONS(3381), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_finally] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), @@ -363153,122 +370616,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1958), [sym_preproc_define] = STATE(1958), [sym_preproc_undef] = STATE(1958), - [ts_builtin_sym_end] = ACTIONS(3211), - [sym__identifier_token] = ACTIONS(3209), - [anon_sym_extern] = ACTIONS(3209), - [anon_sym_alias] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_unsafe] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_ref] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_delegate] = ACTIONS(3209), - [anon_sym_record] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_file] = ACTIONS(3209), - [anon_sym_fixed] = ACTIONS(3209), - [anon_sym_internal] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_partial] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_required] = ACTIONS(3209), - [anon_sym_sealed] = ACTIONS(3209), - [anon_sym_virtual] = ACTIONS(3209), - [anon_sym_volatile] = ACTIONS(3209), - [anon_sym_where] = ACTIONS(3209), - [anon_sym_notnull] = ACTIONS(3209), - [anon_sym_unmanaged] = ACTIONS(3209), - [anon_sym_checked] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_true] = ACTIONS(3209), - [anon_sym_false] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_this] = ACTIONS(3209), - [anon_sym_scoped] = ACTIONS(3209), - [anon_sym_base] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [sym_predefined_type] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_unchecked] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_lock] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_when] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_foreach] = ACTIONS(3209), - [anon_sym_goto] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_DOT_DOT] = ACTIONS(3211), - [anon_sym_from] = ACTIONS(3209), - [anon_sym_into] = ACTIONS(3209), - [anon_sym_join] = ACTIONS(3209), - [anon_sym_on] = ACTIONS(3209), - [anon_sym_equals] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_orderby] = ACTIONS(3209), - [anon_sym_ascending] = ACTIONS(3209), - [anon_sym_descending] = ACTIONS(3209), - [anon_sym_group] = ACTIONS(3209), - [anon_sym_by] = ACTIONS(3209), - [anon_sym_select] = ACTIONS(3209), - [anon_sym_stackalloc] = ACTIONS(3209), - [anon_sym_sizeof] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym___makeref] = ACTIONS(3209), - [anon_sym___reftype] = ACTIONS(3209), - [anon_sym___refvalue] = ACTIONS(3209), - [sym_null_literal] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3211), - [sym_integer_literal] = ACTIONS(3209), - [sym_real_literal] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(3211), - [sym_verbatim_string_literal] = ACTIONS(3211), - [aux_sym_preproc_if_token1] = ACTIONS(3211), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3211), - [sym_interpolation_verbatim_start] = ACTIONS(3211), - [sym_interpolation_raw_start] = ACTIONS(3211), - [sym_raw_string_start] = ACTIONS(3211), + [sym__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), @@ -363280,122 +370745,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1959), [sym_preproc_define] = STATE(1959), [sym_preproc_undef] = STATE(1959), - [ts_builtin_sym_end] = ACTIONS(3157), - [sym__identifier_token] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym_alias] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_global] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_ref] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3155), - [anon_sym_delegate] = ACTIONS(3155), - [anon_sym_record] = ACTIONS(3155), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_file] = ACTIONS(3155), - [anon_sym_fixed] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_partial] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_readonly] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_sealed] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_where] = ACTIONS(3155), - [anon_sym_notnull] = ACTIONS(3155), - [anon_sym_unmanaged] = ACTIONS(3155), - [anon_sym_checked] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_true] = ACTIONS(3155), - [anon_sym_false] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_this] = ACTIONS(3155), - [anon_sym_scoped] = ACTIONS(3155), - [anon_sym_base] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [sym_predefined_type] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_unchecked] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_yield] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_when] = ACTIONS(3155), - [anon_sym_await] = ACTIONS(3155), - [anon_sym_foreach] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_DOT_DOT] = ACTIONS(3157), - [anon_sym_from] = ACTIONS(3155), - [anon_sym_into] = ACTIONS(3155), - [anon_sym_join] = ACTIONS(3155), - [anon_sym_on] = ACTIONS(3155), - [anon_sym_equals] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_orderby] = ACTIONS(3155), - [anon_sym_ascending] = ACTIONS(3155), - [anon_sym_descending] = ACTIONS(3155), - [anon_sym_group] = ACTIONS(3155), - [anon_sym_by] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_stackalloc] = ACTIONS(3155), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym_typeof] = ACTIONS(3155), - [anon_sym___makeref] = ACTIONS(3155), - [anon_sym___reftype] = ACTIONS(3155), - [anon_sym___refvalue] = ACTIONS(3155), - [sym_null_literal] = ACTIONS(3155), - [anon_sym_SQUOTE] = ACTIONS(3157), - [sym_integer_literal] = ACTIONS(3155), - [sym_real_literal] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_verbatim_string_literal] = ACTIONS(3157), - [aux_sym_preproc_if_token1] = ACTIONS(3157), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3157), - [sym_interpolation_verbatim_start] = ACTIONS(3157), - [sym_interpolation_raw_start] = ACTIONS(3157), - [sym_raw_string_start] = ACTIONS(3157), + [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), @@ -363407,122 +370874,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1960), [sym_preproc_define] = STATE(1960), [sym_preproc_undef] = STATE(1960), - [ts_builtin_sym_end] = ACTIONS(3117), - [sym__identifier_token] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym_alias] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_global] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_unsafe] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_class] = ACTIONS(3115), - [anon_sym_ref] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3115), - [anon_sym_enum] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3115), - [anon_sym_delegate] = ACTIONS(3115), - [anon_sym_record] = ACTIONS(3115), - [anon_sym_abstract] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_file] = ACTIONS(3115), - [anon_sym_fixed] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_partial] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_sealed] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_where] = ACTIONS(3115), - [anon_sym_notnull] = ACTIONS(3115), - [anon_sym_unmanaged] = ACTIONS(3115), - [anon_sym_checked] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3115), - [anon_sym_false] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_this] = ACTIONS(3115), - [anon_sym_scoped] = ACTIONS(3115), - [anon_sym_base] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [sym_predefined_type] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_unchecked] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_lock] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_when] = ACTIONS(3115), - [anon_sym_await] = ACTIONS(3115), - [anon_sym_foreach] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3115), - [anon_sym_DOT_DOT] = ACTIONS(3117), - [anon_sym_from] = ACTIONS(3115), - [anon_sym_into] = ACTIONS(3115), - [anon_sym_join] = ACTIONS(3115), - [anon_sym_on] = ACTIONS(3115), - [anon_sym_equals] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_orderby] = ACTIONS(3115), - [anon_sym_ascending] = ACTIONS(3115), - [anon_sym_descending] = ACTIONS(3115), - [anon_sym_group] = ACTIONS(3115), - [anon_sym_by] = ACTIONS(3115), - [anon_sym_select] = ACTIONS(3115), - [anon_sym_stackalloc] = ACTIONS(3115), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym_typeof] = ACTIONS(3115), - [anon_sym___makeref] = ACTIONS(3115), - [anon_sym___reftype] = ACTIONS(3115), - [anon_sym___refvalue] = ACTIONS(3115), - [sym_null_literal] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3117), - [sym_integer_literal] = ACTIONS(3115), - [sym_real_literal] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_verbatim_string_literal] = ACTIONS(3117), - [aux_sym_preproc_if_token1] = ACTIONS(3117), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3117), - [sym_interpolation_verbatim_start] = ACTIONS(3117), - [sym_interpolation_raw_start] = ACTIONS(3117), - [sym_raw_string_start] = ACTIONS(3117), + [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), @@ -363534,122 +371003,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1961), [sym_preproc_define] = STATE(1961), [sym_preproc_undef] = STATE(1961), - [ts_builtin_sym_end] = ACTIONS(3125), - [sym__identifier_token] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym_alias] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_global] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_namespace] = ACTIONS(3123), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_ref] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3123), - [anon_sym_enum] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3123), - [anon_sym_delegate] = ACTIONS(3123), - [anon_sym_record] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_file] = ACTIONS(3123), - [anon_sym_fixed] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_partial] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_readonly] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_notnull] = ACTIONS(3123), - [anon_sym_unmanaged] = ACTIONS(3123), - [anon_sym_checked] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_scoped] = ACTIONS(3123), - [anon_sym_base] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [sym_predefined_type] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_unchecked] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_yield] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_await] = ACTIONS(3123), - [anon_sym_foreach] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_from] = ACTIONS(3123), - [anon_sym_into] = ACTIONS(3123), - [anon_sym_join] = ACTIONS(3123), - [anon_sym_on] = ACTIONS(3123), - [anon_sym_equals] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_orderby] = ACTIONS(3123), - [anon_sym_ascending] = ACTIONS(3123), - [anon_sym_descending] = ACTIONS(3123), - [anon_sym_group] = ACTIONS(3123), - [anon_sym_by] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_stackalloc] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym_typeof] = ACTIONS(3123), - [anon_sym___makeref] = ACTIONS(3123), - [anon_sym___reftype] = ACTIONS(3123), - [anon_sym___refvalue] = ACTIONS(3123), - [sym_null_literal] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_verbatim_string_literal] = ACTIONS(3125), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3125), - [sym_interpolation_verbatim_start] = ACTIONS(3125), - [sym_interpolation_raw_start] = ACTIONS(3125), - [sym_raw_string_start] = ACTIONS(3125), + [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), @@ -363661,122 +371132,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1962), [sym_preproc_define] = STATE(1962), [sym_preproc_undef] = STATE(1962), - [ts_builtin_sym_end] = ACTIONS(3169), - [sym__identifier_token] = ACTIONS(3167), - [anon_sym_extern] = ACTIONS(3167), - [anon_sym_alias] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_global] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_ref] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_delegate] = ACTIONS(3167), - [anon_sym_record] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_file] = ACTIONS(3167), - [anon_sym_fixed] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_partial] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_sealed] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_where] = ACTIONS(3167), - [anon_sym_notnull] = ACTIONS(3167), - [anon_sym_unmanaged] = ACTIONS(3167), - [anon_sym_checked] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3167), - [anon_sym_false] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_this] = ACTIONS(3167), - [anon_sym_scoped] = ACTIONS(3167), - [anon_sym_base] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [sym_predefined_type] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_unchecked] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_when] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_foreach] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_from] = ACTIONS(3167), - [anon_sym_into] = ACTIONS(3167), - [anon_sym_join] = ACTIONS(3167), - [anon_sym_on] = ACTIONS(3167), - [anon_sym_equals] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_orderby] = ACTIONS(3167), - [anon_sym_ascending] = ACTIONS(3167), - [anon_sym_descending] = ACTIONS(3167), - [anon_sym_group] = ACTIONS(3167), - [anon_sym_by] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_stackalloc] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym___makeref] = ACTIONS(3167), - [anon_sym___reftype] = ACTIONS(3167), - [anon_sym___refvalue] = ACTIONS(3167), - [sym_null_literal] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3169), - [sym_integer_literal] = ACTIONS(3167), - [sym_real_literal] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(3169), - [sym_verbatim_string_literal] = ACTIONS(3169), - [aux_sym_preproc_if_token1] = ACTIONS(3169), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3169), - [sym_interpolation_verbatim_start] = ACTIONS(3169), - [sym_interpolation_raw_start] = ACTIONS(3169), - [sym_raw_string_start] = ACTIONS(3169), + [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), }, [1963] = { [sym_preproc_region] = STATE(1963), @@ -363788,122 +371261,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1963), [sym_preproc_define] = STATE(1963), [sym_preproc_undef] = STATE(1963), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym__identifier_token] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym_alias] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_global] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_namespace] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_ref] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3127), - [anon_sym_enum] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3127), - [anon_sym_delegate] = ACTIONS(3127), - [anon_sym_record] = ACTIONS(3127), - [anon_sym_abstract] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_file] = ACTIONS(3127), - [anon_sym_fixed] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_partial] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_protected] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_readonly] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_sealed] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_where] = ACTIONS(3127), - [anon_sym_notnull] = ACTIONS(3127), - [anon_sym_unmanaged] = ACTIONS(3127), - [anon_sym_checked] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_this] = ACTIONS(3127), - [anon_sym_scoped] = ACTIONS(3127), - [anon_sym_base] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [sym_predefined_type] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_unchecked] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_when] = ACTIONS(3127), - [anon_sym_await] = ACTIONS(3127), - [anon_sym_foreach] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_DOT_DOT] = ACTIONS(3129), - [anon_sym_from] = ACTIONS(3127), - [anon_sym_into] = ACTIONS(3127), - [anon_sym_join] = ACTIONS(3127), - [anon_sym_on] = ACTIONS(3127), - [anon_sym_equals] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_orderby] = ACTIONS(3127), - [anon_sym_ascending] = ACTIONS(3127), - [anon_sym_descending] = ACTIONS(3127), - [anon_sym_group] = ACTIONS(3127), - [anon_sym_by] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_stackalloc] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym_typeof] = ACTIONS(3127), - [anon_sym___makeref] = ACTIONS(3127), - [anon_sym___reftype] = ACTIONS(3127), - [anon_sym___refvalue] = ACTIONS(3127), - [sym_null_literal] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3129), - [sym_integer_literal] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_verbatim_string_literal] = ACTIONS(3129), - [aux_sym_preproc_if_token1] = ACTIONS(3129), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3129), - [sym_interpolation_verbatim_start] = ACTIONS(3129), - [sym_interpolation_raw_start] = ACTIONS(3129), - [sym_raw_string_start] = ACTIONS(3129), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -363915,122 +371390,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1964), [sym_preproc_define] = STATE(1964), [sym_preproc_undef] = STATE(1964), - [ts_builtin_sym_end] = ACTIONS(3137), - [sym__identifier_token] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym_alias] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_namespace] = ACTIONS(3135), - [anon_sym_class] = ACTIONS(3135), - [anon_sym_ref] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_delegate] = ACTIONS(3135), - [anon_sym_record] = ACTIONS(3135), - [anon_sym_abstract] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_file] = ACTIONS(3135), - [anon_sym_fixed] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_partial] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_readonly] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_sealed] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_where] = ACTIONS(3135), - [anon_sym_notnull] = ACTIONS(3135), - [anon_sym_unmanaged] = ACTIONS(3135), - [anon_sym_checked] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3135), - [anon_sym_false] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_this] = ACTIONS(3135), - [anon_sym_scoped] = ACTIONS(3135), - [anon_sym_base] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [sym_predefined_type] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_unchecked] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_when] = ACTIONS(3135), - [anon_sym_await] = ACTIONS(3135), - [anon_sym_foreach] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_DOT_DOT] = ACTIONS(3137), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_into] = ACTIONS(3135), - [anon_sym_join] = ACTIONS(3135), - [anon_sym_on] = ACTIONS(3135), - [anon_sym_equals] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_orderby] = ACTIONS(3135), - [anon_sym_ascending] = ACTIONS(3135), - [anon_sym_descending] = ACTIONS(3135), - [anon_sym_group] = ACTIONS(3135), - [anon_sym_by] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_stackalloc] = ACTIONS(3135), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym_typeof] = ACTIONS(3135), - [anon_sym___makeref] = ACTIONS(3135), - [anon_sym___reftype] = ACTIONS(3135), - [anon_sym___refvalue] = ACTIONS(3135), - [sym_null_literal] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3137), - [sym_integer_literal] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_verbatim_string_literal] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3137), - [sym_interpolation_verbatim_start] = ACTIONS(3137), - [sym_interpolation_raw_start] = ACTIONS(3137), - [sym_raw_string_start] = ACTIONS(3137), + [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), @@ -364042,122 +371519,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1965), [sym_preproc_define] = STATE(1965), [sym_preproc_undef] = STATE(1965), - [ts_builtin_sym_end] = ACTIONS(3141), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_namespace] = ACTIONS(3139), - [anon_sym_class] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3139), - [anon_sym_enum] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3139), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_record] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [sym__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), @@ -364169,122 +371648,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1966), [sym_preproc_define] = STATE(1966), [sym_preproc_undef] = STATE(1966), - [ts_builtin_sym_end] = ACTIONS(3043), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_namespace] = ACTIONS(3041), - [anon_sym_class] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_record] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), @@ -364296,122 +371777,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1967), [sym_preproc_define] = STATE(1967), [sym_preproc_undef] = STATE(1967), - [ts_builtin_sym_end] = ACTIONS(3133), - [sym__identifier_token] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym_alias] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_global] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_namespace] = ACTIONS(3131), - [anon_sym_class] = ACTIONS(3131), - [anon_sym_ref] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3131), - [anon_sym_enum] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3131), - [anon_sym_delegate] = ACTIONS(3131), - [anon_sym_record] = ACTIONS(3131), - [anon_sym_abstract] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_file] = ACTIONS(3131), - [anon_sym_fixed] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_partial] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_protected] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_sealed] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_where] = ACTIONS(3131), - [anon_sym_notnull] = ACTIONS(3131), - [anon_sym_unmanaged] = ACTIONS(3131), - [anon_sym_checked] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3131), - [anon_sym_false] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_this] = ACTIONS(3131), - [anon_sym_scoped] = ACTIONS(3131), - [anon_sym_base] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [sym_predefined_type] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_unchecked] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_when] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_foreach] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_from] = ACTIONS(3131), - [anon_sym_into] = ACTIONS(3131), - [anon_sym_join] = ACTIONS(3131), - [anon_sym_on] = ACTIONS(3131), - [anon_sym_equals] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_orderby] = ACTIONS(3131), - [anon_sym_ascending] = ACTIONS(3131), - [anon_sym_descending] = ACTIONS(3131), - [anon_sym_group] = ACTIONS(3131), - [anon_sym_by] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_stackalloc] = ACTIONS(3131), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3131), - [anon_sym___makeref] = ACTIONS(3131), - [anon_sym___reftype] = ACTIONS(3131), - [anon_sym___refvalue] = ACTIONS(3131), - [sym_null_literal] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3133), - [sym_integer_literal] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_verbatim_string_literal] = ACTIONS(3133), - [aux_sym_preproc_if_token1] = ACTIONS(3133), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3133), - [sym_interpolation_verbatim_start] = ACTIONS(3133), - [sym_interpolation_raw_start] = ACTIONS(3133), - [sym_raw_string_start] = ACTIONS(3133), + [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), @@ -364423,122 +371906,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1968), [sym_preproc_define] = STATE(1968), [sym_preproc_undef] = STATE(1968), - [ts_builtin_sym_end] = ACTIONS(3219), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_record] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), + [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), @@ -364550,122 +372035,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1969), [sym_preproc_define] = STATE(1969), [sym_preproc_undef] = STATE(1969), - [ts_builtin_sym_end] = ACTIONS(3109), - [sym__identifier_token] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym_alias] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_global] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_unsafe] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_ref] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_delegate] = ACTIONS(3107), - [anon_sym_record] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_file] = ACTIONS(3107), - [anon_sym_fixed] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_partial] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_sealed] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_where] = ACTIONS(3107), - [anon_sym_notnull] = ACTIONS(3107), - [anon_sym_unmanaged] = ACTIONS(3107), - [anon_sym_checked] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3107), - [anon_sym_scoped] = ACTIONS(3107), - [anon_sym_base] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [sym_predefined_type] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_unchecked] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_lock] = ACTIONS(3107), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_when] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_foreach] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_DOT_DOT] = ACTIONS(3109), - [anon_sym_from] = ACTIONS(3107), - [anon_sym_into] = ACTIONS(3107), - [anon_sym_join] = ACTIONS(3107), - [anon_sym_on] = ACTIONS(3107), - [anon_sym_equals] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_orderby] = ACTIONS(3107), - [anon_sym_ascending] = ACTIONS(3107), - [anon_sym_descending] = ACTIONS(3107), - [anon_sym_group] = ACTIONS(3107), - [anon_sym_by] = ACTIONS(3107), - [anon_sym_select] = ACTIONS(3107), - [anon_sym_stackalloc] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym___makeref] = ACTIONS(3107), - [anon_sym___reftype] = ACTIONS(3107), - [anon_sym___refvalue] = ACTIONS(3107), - [sym_null_literal] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3109), - [sym_integer_literal] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_verbatim_string_literal] = ACTIONS(3109), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3109), - [sym_interpolation_verbatim_start] = ACTIONS(3109), - [sym_interpolation_raw_start] = ACTIONS(3109), - [sym_raw_string_start] = ACTIONS(3109), + [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), @@ -364677,122 +372164,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1970), [sym_preproc_define] = STATE(1970), [sym_preproc_undef] = STATE(1970), - [ts_builtin_sym_end] = ACTIONS(3121), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_namespace] = ACTIONS(3119), - [anon_sym_class] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3119), - [anon_sym_enum] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3119), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_record] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_when] = ACTIONS(3119), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), + [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), @@ -364804,122 +372293,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1971), [sym_preproc_define] = STATE(1971), [sym_preproc_undef] = STATE(1971), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym__identifier_token] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym_alias] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_global] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_ref] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_delegate] = ACTIONS(3163), - [anon_sym_record] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_file] = ACTIONS(3163), - [anon_sym_fixed] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_partial] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_sealed] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_where] = ACTIONS(3163), - [anon_sym_notnull] = ACTIONS(3163), - [anon_sym_unmanaged] = ACTIONS(3163), - [anon_sym_checked] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3163), - [anon_sym_false] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_this] = ACTIONS(3163), - [anon_sym_scoped] = ACTIONS(3163), - [anon_sym_base] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [sym_predefined_type] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_unchecked] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_when] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_foreach] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_from] = ACTIONS(3163), - [anon_sym_into] = ACTIONS(3163), - [anon_sym_join] = ACTIONS(3163), - [anon_sym_on] = ACTIONS(3163), - [anon_sym_equals] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_orderby] = ACTIONS(3163), - [anon_sym_ascending] = ACTIONS(3163), - [anon_sym_descending] = ACTIONS(3163), - [anon_sym_group] = ACTIONS(3163), - [anon_sym_by] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_stackalloc] = ACTIONS(3163), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym___makeref] = ACTIONS(3163), - [anon_sym___reftype] = ACTIONS(3163), - [anon_sym___refvalue] = ACTIONS(3163), - [sym_null_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3165), - [sym_integer_literal] = ACTIONS(3163), - [sym_real_literal] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [sym_verbatim_string_literal] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3165), - [sym_interpolation_verbatim_start] = ACTIONS(3165), - [sym_interpolation_raw_start] = ACTIONS(3165), - [sym_raw_string_start] = ACTIONS(3165), + [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), @@ -364931,122 +372422,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1972), [sym_preproc_define] = STATE(1972), [sym_preproc_undef] = STATE(1972), - [ts_builtin_sym_end] = ACTIONS(3145), - [sym__identifier_token] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym_alias] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_global] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_ref] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_delegate] = ACTIONS(3143), - [anon_sym_record] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_file] = ACTIONS(3143), - [anon_sym_fixed] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_partial] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_sealed] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_notnull] = ACTIONS(3143), - [anon_sym_unmanaged] = ACTIONS(3143), - [anon_sym_checked] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3143), - [anon_sym_false] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_this] = ACTIONS(3143), - [anon_sym_scoped] = ACTIONS(3143), - [anon_sym_base] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [sym_predefined_type] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_unchecked] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_foreach] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3145), - [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_ascending] = ACTIONS(3143), - [anon_sym_descending] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_stackalloc] = ACTIONS(3143), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym___makeref] = ACTIONS(3143), - [anon_sym___reftype] = ACTIONS(3143), - [anon_sym___refvalue] = ACTIONS(3143), - [sym_null_literal] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3145), - [sym_integer_literal] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_verbatim_string_literal] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3145), - [sym_interpolation_verbatim_start] = ACTIONS(3145), - [sym_interpolation_raw_start] = ACTIONS(3145), - [sym_raw_string_start] = ACTIONS(3145), + [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), @@ -365058,122 +372551,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1973), [sym_preproc_define] = STATE(1973), [sym_preproc_undef] = STATE(1973), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym__identifier_token] = ACTIONS(3225), - [anon_sym_extern] = ACTIONS(3225), - [anon_sym_alias] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_global] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_unsafe] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_ref] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_delegate] = ACTIONS(3225), - [anon_sym_record] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_file] = ACTIONS(3225), - [anon_sym_fixed] = ACTIONS(3225), - [anon_sym_internal] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_partial] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_required] = ACTIONS(3225), - [anon_sym_sealed] = ACTIONS(3225), - [anon_sym_virtual] = ACTIONS(3225), - [anon_sym_volatile] = ACTIONS(3225), - [anon_sym_where] = ACTIONS(3225), - [anon_sym_notnull] = ACTIONS(3225), - [anon_sym_unmanaged] = ACTIONS(3225), - [anon_sym_checked] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_true] = ACTIONS(3225), - [anon_sym_false] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_this] = ACTIONS(3225), - [anon_sym_scoped] = ACTIONS(3225), - [anon_sym_base] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [sym_predefined_type] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_unchecked] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_lock] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_when] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_foreach] = ACTIONS(3225), - [anon_sym_goto] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_DOT_DOT] = ACTIONS(3227), - [anon_sym_from] = ACTIONS(3225), - [anon_sym_into] = ACTIONS(3225), - [anon_sym_join] = ACTIONS(3225), - [anon_sym_on] = ACTIONS(3225), - [anon_sym_equals] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_orderby] = ACTIONS(3225), - [anon_sym_ascending] = ACTIONS(3225), - [anon_sym_descending] = ACTIONS(3225), - [anon_sym_group] = ACTIONS(3225), - [anon_sym_by] = ACTIONS(3225), - [anon_sym_select] = ACTIONS(3225), - [anon_sym_stackalloc] = ACTIONS(3225), - [anon_sym_sizeof] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym___makeref] = ACTIONS(3225), - [anon_sym___reftype] = ACTIONS(3225), - [anon_sym___refvalue] = ACTIONS(3225), - [sym_null_literal] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3227), - [sym_integer_literal] = ACTIONS(3225), - [sym_real_literal] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [sym_verbatim_string_literal] = ACTIONS(3227), - [aux_sym_preproc_if_token1] = ACTIONS(3227), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3227), - [sym_interpolation_verbatim_start] = ACTIONS(3227), - [sym_interpolation_raw_start] = ACTIONS(3227), - [sym_raw_string_start] = ACTIONS(3227), + [sym__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), @@ -365185,122 +372680,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1974), [sym_preproc_define] = STATE(1974), [sym_preproc_undef] = STATE(1974), - [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), + [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), @@ -365312,122 +372809,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1975), [sym_preproc_define] = STATE(1975), [sym_preproc_undef] = STATE(1975), - [ts_builtin_sym_end] = ACTIONS(3207), - [sym__identifier_token] = ACTIONS(3205), - [anon_sym_extern] = ACTIONS(3205), - [anon_sym_alias] = ACTIONS(3205), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_global] = ACTIONS(3205), - [anon_sym_using] = ACTIONS(3205), - [anon_sym_unsafe] = ACTIONS(3205), - [anon_sym_static] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3205), - [anon_sym_namespace] = ACTIONS(3205), - [anon_sym_class] = ACTIONS(3205), - [anon_sym_ref] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3205), - [anon_sym_enum] = ACTIONS(3205), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3205), - [anon_sym_delegate] = ACTIONS(3205), - [anon_sym_record] = ACTIONS(3205), - [anon_sym_abstract] = ACTIONS(3205), - [anon_sym_async] = ACTIONS(3205), - [anon_sym_const] = ACTIONS(3205), - [anon_sym_file] = ACTIONS(3205), - [anon_sym_fixed] = ACTIONS(3205), - [anon_sym_internal] = ACTIONS(3205), - [anon_sym_new] = ACTIONS(3205), - [anon_sym_override] = ACTIONS(3205), - [anon_sym_partial] = ACTIONS(3205), - [anon_sym_private] = ACTIONS(3205), - [anon_sym_protected] = ACTIONS(3205), - [anon_sym_public] = ACTIONS(3205), - [anon_sym_readonly] = ACTIONS(3205), - [anon_sym_required] = ACTIONS(3205), - [anon_sym_sealed] = ACTIONS(3205), - [anon_sym_virtual] = ACTIONS(3205), - [anon_sym_volatile] = ACTIONS(3205), - [anon_sym_where] = ACTIONS(3205), - [anon_sym_notnull] = ACTIONS(3205), - [anon_sym_unmanaged] = ACTIONS(3205), - [anon_sym_checked] = ACTIONS(3205), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [anon_sym_PLUS] = ACTIONS(3205), - [anon_sym_DASH] = ACTIONS(3205), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_this] = ACTIONS(3205), - [anon_sym_scoped] = ACTIONS(3205), - [anon_sym_base] = ACTIONS(3205), - [anon_sym_var] = ACTIONS(3205), - [sym_predefined_type] = ACTIONS(3205), - [anon_sym_break] = ACTIONS(3205), - [anon_sym_unchecked] = ACTIONS(3205), - [anon_sym_continue] = ACTIONS(3205), - [anon_sym_do] = ACTIONS(3205), - [anon_sym_while] = ACTIONS(3205), - [anon_sym_for] = ACTIONS(3205), - [anon_sym_lock] = ACTIONS(3205), - [anon_sym_yield] = ACTIONS(3205), - [anon_sym_switch] = ACTIONS(3205), - [anon_sym_default] = ACTIONS(3205), - [anon_sym_throw] = ACTIONS(3205), - [anon_sym_try] = ACTIONS(3205), - [anon_sym_when] = ACTIONS(3205), - [anon_sym_await] = ACTIONS(3205), - [anon_sym_foreach] = ACTIONS(3205), - [anon_sym_goto] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3205), - [anon_sym_else] = ACTIONS(3205), - [anon_sym_DOT_DOT] = ACTIONS(3207), - [anon_sym_from] = ACTIONS(3205), - [anon_sym_into] = ACTIONS(3205), - [anon_sym_join] = ACTIONS(3205), - [anon_sym_on] = ACTIONS(3205), - [anon_sym_equals] = ACTIONS(3205), - [anon_sym_let] = ACTIONS(3205), - [anon_sym_orderby] = ACTIONS(3205), - [anon_sym_ascending] = ACTIONS(3205), - [anon_sym_descending] = ACTIONS(3205), - [anon_sym_group] = ACTIONS(3205), - [anon_sym_by] = ACTIONS(3205), - [anon_sym_select] = ACTIONS(3205), - [anon_sym_stackalloc] = ACTIONS(3205), - [anon_sym_sizeof] = ACTIONS(3205), - [anon_sym_typeof] = ACTIONS(3205), - [anon_sym___makeref] = ACTIONS(3205), - [anon_sym___reftype] = ACTIONS(3205), - [anon_sym___refvalue] = ACTIONS(3205), - [sym_null_literal] = ACTIONS(3205), - [anon_sym_SQUOTE] = ACTIONS(3207), - [sym_integer_literal] = ACTIONS(3205), - [sym_real_literal] = ACTIONS(3207), - [anon_sym_DQUOTE] = ACTIONS(3207), - [sym_verbatim_string_literal] = ACTIONS(3207), - [aux_sym_preproc_if_token1] = ACTIONS(3207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3207), - [sym_interpolation_verbatim_start] = ACTIONS(3207), - [sym_interpolation_raw_start] = ACTIONS(3207), - [sym_raw_string_start] = ACTIONS(3207), + [sym__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), @@ -365439,122 +372938,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1976), [sym_preproc_define] = STATE(1976), [sym_preproc_undef] = STATE(1976), - [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_when] = ACTIONS(3103), - [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), + [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), @@ -365566,122 +373067,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1977), [sym_preproc_define] = STATE(1977), [sym_preproc_undef] = STATE(1977), - [ts_builtin_sym_end] = ACTIONS(3161), - [sym__identifier_token] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym_alias] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_global] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_namespace] = ACTIONS(3159), - [anon_sym_class] = ACTIONS(3159), - [anon_sym_ref] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3159), - [anon_sym_enum] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3159), - [anon_sym_delegate] = ACTIONS(3159), - [anon_sym_record] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_file] = ACTIONS(3159), - [anon_sym_fixed] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_partial] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_readonly] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_notnull] = ACTIONS(3159), - [anon_sym_unmanaged] = ACTIONS(3159), - [anon_sym_checked] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_scoped] = ACTIONS(3159), - [anon_sym_base] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [sym_predefined_type] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_unchecked] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_await] = ACTIONS(3159), - [anon_sym_foreach] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_from] = ACTIONS(3159), - [anon_sym_into] = ACTIONS(3159), - [anon_sym_join] = ACTIONS(3159), - [anon_sym_on] = ACTIONS(3159), - [anon_sym_equals] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_orderby] = ACTIONS(3159), - [anon_sym_ascending] = ACTIONS(3159), - [anon_sym_descending] = ACTIONS(3159), - [anon_sym_group] = ACTIONS(3159), - [anon_sym_by] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_stackalloc] = ACTIONS(3159), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym_typeof] = ACTIONS(3159), - [anon_sym___makeref] = ACTIONS(3159), - [anon_sym___reftype] = ACTIONS(3159), - [anon_sym___refvalue] = ACTIONS(3159), - [sym_null_literal] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_real_literal] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_verbatim_string_literal] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3161), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3161), - [sym_interpolation_verbatim_start] = ACTIONS(3161), - [sym_interpolation_raw_start] = ACTIONS(3161), - [sym_raw_string_start] = ACTIONS(3161), + [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), }, [1978] = { [sym_preproc_region] = STATE(1978), @@ -365693,122 +373196,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1978), [sym_preproc_define] = STATE(1978), [sym_preproc_undef] = STATE(1978), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_namespace] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_ref] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3201), - [anon_sym_enum] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3201), - [anon_sym_delegate] = ACTIONS(3201), - [anon_sym_record] = ACTIONS(3201), - [anon_sym_abstract] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_file] = ACTIONS(3201), - [anon_sym_fixed] = ACTIONS(3201), - [anon_sym_internal] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_override] = ACTIONS(3201), - [anon_sym_partial] = ACTIONS(3201), - [anon_sym_private] = ACTIONS(3201), - [anon_sym_protected] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3201), - [anon_sym_readonly] = ACTIONS(3201), - [anon_sym_required] = ACTIONS(3201), - [anon_sym_sealed] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_notnull] = ACTIONS(3201), - [anon_sym_unmanaged] = ACTIONS(3201), - [anon_sym_checked] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_this] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_base] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_unchecked] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_await] = ACTIONS(3201), - [anon_sym_foreach] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3203), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_orderby] = ACTIONS(3201), - [anon_sym_ascending] = ACTIONS(3201), - [anon_sym_descending] = ACTIONS(3201), - [anon_sym_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_stackalloc] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym_typeof] = ACTIONS(3201), - [anon_sym___makeref] = ACTIONS(3201), - [anon_sym___reftype] = ACTIONS(3201), - [anon_sym___refvalue] = ACTIONS(3201), - [sym_null_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3201), - [sym_real_literal] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_verbatim_string_literal] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3203), - [sym_interpolation_verbatim_start] = ACTIONS(3203), - [sym_interpolation_raw_start] = ACTIONS(3203), - [sym_raw_string_start] = ACTIONS(3203), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1979] = { [sym_preproc_region] = STATE(1979), @@ -365820,122 +373325,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1979), [sym_preproc_define] = STATE(1979), [sym_preproc_undef] = STATE(1979), - [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_when] = ACTIONS(3091), - [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), + [sym__identifier_token] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_alias] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_unsafe] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_ref] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_delegate] = ACTIONS(3323), + [anon_sym_record] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_file] = ACTIONS(3323), + [anon_sym_fixed] = ACTIONS(3323), + [anon_sym_internal] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_partial] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_required] = ACTIONS(3323), + [anon_sym_sealed] = ACTIONS(3323), + [anon_sym_virtual] = ACTIONS(3323), + [anon_sym_volatile] = ACTIONS(3323), + [anon_sym_where] = ACTIONS(3323), + [anon_sym_notnull] = ACTIONS(3323), + [anon_sym_unmanaged] = ACTIONS(3323), + [anon_sym_checked] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_scoped] = ACTIONS(3323), + [anon_sym_base] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [sym_predefined_type] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_unchecked] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_lock] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_when] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_foreach] = ACTIONS(3323), + [anon_sym_goto] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_into] = ACTIONS(3323), + [anon_sym_join] = ACTIONS(3323), + [anon_sym_on] = ACTIONS(3323), + [anon_sym_equals] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_orderby] = ACTIONS(3323), + [anon_sym_ascending] = ACTIONS(3323), + [anon_sym_descending] = ACTIONS(3323), + [anon_sym_group] = ACTIONS(3323), + [anon_sym_by] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_stackalloc] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym___makeref] = ACTIONS(3323), + [anon_sym___reftype] = ACTIONS(3323), + [anon_sym___refvalue] = ACTIONS(3323), + [sym_null_literal] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3325), + [sym_integer_literal] = ACTIONS(3323), + [sym_real_literal] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [sym_verbatim_string_literal] = ACTIONS(3325), + [aux_sym_preproc_if_token1] = ACTIONS(3325), + [aux_sym_preproc_if_token3] = ACTIONS(3325), + [aux_sym_preproc_else_token1] = ACTIONS(3325), + [aux_sym_preproc_elif_token1] = ACTIONS(3325), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, [1980] = { [sym_preproc_region] = STATE(1980), @@ -365947,142 +373454,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1980), [sym_preproc_define] = STATE(1980), [sym_preproc_undef] = STATE(1980), - [ts_builtin_sym_end] = ACTIONS(3263), - [sym__identifier_token] = ACTIONS(3261), - [anon_sym_extern] = ACTIONS(3261), - [anon_sym_alias] = ACTIONS(3261), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_global] = ACTIONS(3261), - [anon_sym_using] = ACTIONS(3261), - [anon_sym_unsafe] = ACTIONS(3261), - [anon_sym_static] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3261), - [anon_sym_namespace] = ACTIONS(3261), - [anon_sym_class] = ACTIONS(3261), - [anon_sym_ref] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3261), - [anon_sym_enum] = ACTIONS(3261), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3261), - [anon_sym_delegate] = ACTIONS(3261), - [anon_sym_record] = ACTIONS(3261), - [anon_sym_abstract] = ACTIONS(3261), - [anon_sym_async] = ACTIONS(3261), - [anon_sym_const] = ACTIONS(3261), - [anon_sym_file] = ACTIONS(3261), - [anon_sym_fixed] = ACTIONS(3261), - [anon_sym_internal] = ACTIONS(3261), - [anon_sym_new] = ACTIONS(3261), - [anon_sym_override] = ACTIONS(3261), - [anon_sym_partial] = ACTIONS(3261), - [anon_sym_private] = ACTIONS(3261), - [anon_sym_protected] = ACTIONS(3261), - [anon_sym_public] = ACTIONS(3261), - [anon_sym_readonly] = ACTIONS(3261), - [anon_sym_required] = ACTIONS(3261), - [anon_sym_sealed] = ACTIONS(3261), - [anon_sym_virtual] = ACTIONS(3261), - [anon_sym_volatile] = ACTIONS(3261), - [anon_sym_where] = ACTIONS(3261), - [anon_sym_notnull] = ACTIONS(3261), - [anon_sym_unmanaged] = ACTIONS(3261), - [anon_sym_checked] = ACTIONS(3261), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_true] = ACTIONS(3261), - [anon_sym_false] = ACTIONS(3261), - [anon_sym_PLUS] = ACTIONS(3261), - [anon_sym_DASH] = ACTIONS(3261), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_this] = ACTIONS(3261), - [anon_sym_scoped] = ACTIONS(3261), - [anon_sym_base] = ACTIONS(3261), - [anon_sym_var] = ACTIONS(3261), - [sym_predefined_type] = ACTIONS(3261), - [anon_sym_break] = ACTIONS(3261), - [anon_sym_unchecked] = ACTIONS(3261), - [anon_sym_continue] = ACTIONS(3261), - [anon_sym_do] = ACTIONS(3261), - [anon_sym_while] = ACTIONS(3261), - [anon_sym_for] = ACTIONS(3261), - [anon_sym_lock] = ACTIONS(3261), - [anon_sym_yield] = ACTIONS(3261), - [anon_sym_switch] = ACTIONS(3261), - [anon_sym_default] = ACTIONS(3261), - [anon_sym_throw] = ACTIONS(3261), - [anon_sym_try] = ACTIONS(3261), - [anon_sym_when] = ACTIONS(3261), - [anon_sym_await] = ACTIONS(3261), - [anon_sym_foreach] = ACTIONS(3261), - [anon_sym_goto] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3261), - [anon_sym_else] = ACTIONS(3261), - [anon_sym_DOT_DOT] = ACTIONS(3263), - [anon_sym_from] = ACTIONS(3261), - [anon_sym_into] = ACTIONS(3261), - [anon_sym_join] = ACTIONS(3261), - [anon_sym_on] = ACTIONS(3261), - [anon_sym_equals] = ACTIONS(3261), - [anon_sym_let] = ACTIONS(3261), - [anon_sym_orderby] = ACTIONS(3261), - [anon_sym_ascending] = ACTIONS(3261), - [anon_sym_descending] = ACTIONS(3261), - [anon_sym_group] = ACTIONS(3261), - [anon_sym_by] = ACTIONS(3261), - [anon_sym_select] = ACTIONS(3261), - [anon_sym_stackalloc] = ACTIONS(3261), - [anon_sym_sizeof] = ACTIONS(3261), - [anon_sym_typeof] = ACTIONS(3261), - [anon_sym___makeref] = ACTIONS(3261), - [anon_sym___reftype] = ACTIONS(3261), - [anon_sym___refvalue] = ACTIONS(3261), - [sym_null_literal] = ACTIONS(3261), - [anon_sym_SQUOTE] = ACTIONS(3263), - [sym_integer_literal] = ACTIONS(3261), - [sym_real_literal] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [sym_verbatim_string_literal] = ACTIONS(3263), - [aux_sym_preproc_if_token1] = ACTIONS(3263), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3263), - [sym_interpolation_verbatim_start] = ACTIONS(3263), - [sym_interpolation_raw_start] = ACTIONS(3263), - [sym_raw_string_start] = ACTIONS(3263), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), }, [1981] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5946), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5606), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(1981), [sym_preproc_endregion] = STATE(1981), [sym_preproc_line] = STATE(1981), @@ -366092,104 +373582,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1981), [sym_preproc_define] = STATE(1981), [sym_preproc_undef] = STATE(1981), - [sym__identifier_token] = ACTIONS(3387), - [anon_sym_alias] = ACTIONS(3390), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3390), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3390), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3390), - [anon_sym_unmanaged] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3404), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3407), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(3390), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3390), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3390), - [anon_sym_into] = ACTIONS(3390), - [anon_sym_join] = ACTIONS(3390), - [anon_sym_on] = ACTIONS(3390), - [anon_sym_equals] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3390), - [anon_sym_orderby] = ACTIONS(3390), - [anon_sym_ascending] = ACTIONS(3390), - [anon_sym_descending] = ACTIONS(3390), - [anon_sym_group] = ACTIONS(3390), - [anon_sym_by] = ACTIONS(3390), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1982] = { [sym_preproc_region] = STATE(1982), @@ -366201,122 +373710,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1982), [sym_preproc_define] = STATE(1982), [sym_preproc_undef] = STATE(1982), - [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), + [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), }, [1983] = { [sym_preproc_region] = STATE(1983), @@ -366328,122 +373838,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1983), [sym_preproc_define] = STATE(1983), [sym_preproc_undef] = STATE(1983), - [ts_builtin_sym_end] = ACTIONS(3239), - [sym__identifier_token] = ACTIONS(3237), - [anon_sym_extern] = ACTIONS(3237), - [anon_sym_alias] = ACTIONS(3237), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_global] = ACTIONS(3237), - [anon_sym_using] = ACTIONS(3237), - [anon_sym_unsafe] = ACTIONS(3237), - [anon_sym_static] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3237), - [anon_sym_namespace] = ACTIONS(3237), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_ref] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3237), - [anon_sym_enum] = ACTIONS(3237), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3237), - [anon_sym_delegate] = ACTIONS(3237), - [anon_sym_record] = ACTIONS(3237), - [anon_sym_abstract] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3237), - [anon_sym_const] = ACTIONS(3237), - [anon_sym_file] = ACTIONS(3237), - [anon_sym_fixed] = ACTIONS(3237), - [anon_sym_internal] = ACTIONS(3237), - [anon_sym_new] = ACTIONS(3237), - [anon_sym_override] = ACTIONS(3237), - [anon_sym_partial] = ACTIONS(3237), - [anon_sym_private] = ACTIONS(3237), - [anon_sym_protected] = ACTIONS(3237), - [anon_sym_public] = ACTIONS(3237), - [anon_sym_readonly] = ACTIONS(3237), - [anon_sym_required] = ACTIONS(3237), - [anon_sym_sealed] = ACTIONS(3237), - [anon_sym_virtual] = ACTIONS(3237), - [anon_sym_volatile] = ACTIONS(3237), - [anon_sym_where] = ACTIONS(3237), - [anon_sym_notnull] = ACTIONS(3237), - [anon_sym_unmanaged] = ACTIONS(3237), - [anon_sym_checked] = ACTIONS(3237), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_true] = ACTIONS(3237), - [anon_sym_false] = ACTIONS(3237), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_this] = ACTIONS(3237), - [anon_sym_scoped] = ACTIONS(3237), - [anon_sym_base] = ACTIONS(3237), - [anon_sym_var] = ACTIONS(3237), - [sym_predefined_type] = ACTIONS(3237), - [anon_sym_break] = ACTIONS(3237), - [anon_sym_unchecked] = ACTIONS(3237), - [anon_sym_continue] = ACTIONS(3237), - [anon_sym_do] = ACTIONS(3237), - [anon_sym_while] = ACTIONS(3237), - [anon_sym_for] = ACTIONS(3237), - [anon_sym_lock] = ACTIONS(3237), - [anon_sym_yield] = ACTIONS(3237), - [anon_sym_switch] = ACTIONS(3237), - [anon_sym_default] = ACTIONS(3237), - [anon_sym_throw] = ACTIONS(3237), - [anon_sym_try] = ACTIONS(3237), - [anon_sym_when] = ACTIONS(3237), - [anon_sym_await] = ACTIONS(3237), - [anon_sym_foreach] = ACTIONS(3237), - [anon_sym_goto] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3237), - [anon_sym_else] = ACTIONS(3237), - [anon_sym_DOT_DOT] = ACTIONS(3239), - [anon_sym_from] = ACTIONS(3237), - [anon_sym_into] = ACTIONS(3237), - [anon_sym_join] = ACTIONS(3237), - [anon_sym_on] = ACTIONS(3237), - [anon_sym_equals] = ACTIONS(3237), - [anon_sym_let] = ACTIONS(3237), - [anon_sym_orderby] = ACTIONS(3237), - [anon_sym_ascending] = ACTIONS(3237), - [anon_sym_descending] = ACTIONS(3237), - [anon_sym_group] = ACTIONS(3237), - [anon_sym_by] = ACTIONS(3237), - [anon_sym_select] = ACTIONS(3237), - [anon_sym_stackalloc] = ACTIONS(3237), - [anon_sym_sizeof] = ACTIONS(3237), - [anon_sym_typeof] = ACTIONS(3237), - [anon_sym___makeref] = ACTIONS(3237), - [anon_sym___reftype] = ACTIONS(3237), - [anon_sym___refvalue] = ACTIONS(3237), - [sym_null_literal] = ACTIONS(3237), - [anon_sym_SQUOTE] = ACTIONS(3239), - [sym_integer_literal] = ACTIONS(3237), - [sym_real_literal] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [sym_verbatim_string_literal] = ACTIONS(3239), - [aux_sym_preproc_if_token1] = ACTIONS(3239), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3239), - [sym_interpolation_verbatim_start] = ACTIONS(3239), - [sym_interpolation_raw_start] = ACTIONS(3239), - [sym_raw_string_start] = ACTIONS(3239), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1984] = { [sym_preproc_region] = STATE(1984), @@ -366455,122 +373966,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1984), [sym_preproc_define] = STATE(1984), [sym_preproc_undef] = STATE(1984), - [ts_builtin_sym_end] = ACTIONS(3173), - [sym__identifier_token] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym_alias] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_global] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3171), - [anon_sym_delegate] = ACTIONS(3171), - [anon_sym_record] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_file] = ACTIONS(3171), - [anon_sym_fixed] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_partial] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_sealed] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_where] = ACTIONS(3171), - [anon_sym_notnull] = ACTIONS(3171), - [anon_sym_unmanaged] = ACTIONS(3171), - [anon_sym_checked] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3171), - [anon_sym_false] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_this] = ACTIONS(3171), - [anon_sym_scoped] = ACTIONS(3171), - [anon_sym_base] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [sym_predefined_type] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_unchecked] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_when] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_foreach] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_DOT_DOT] = ACTIONS(3173), - [anon_sym_from] = ACTIONS(3171), - [anon_sym_into] = ACTIONS(3171), - [anon_sym_join] = ACTIONS(3171), - [anon_sym_on] = ACTIONS(3171), - [anon_sym_equals] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_orderby] = ACTIONS(3171), - [anon_sym_ascending] = ACTIONS(3171), - [anon_sym_descending] = ACTIONS(3171), - [anon_sym_group] = ACTIONS(3171), - [anon_sym_by] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_stackalloc] = ACTIONS(3171), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym___makeref] = ACTIONS(3171), - [anon_sym___reftype] = ACTIONS(3171), - [anon_sym___refvalue] = ACTIONS(3171), - [sym_null_literal] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3173), - [sym_integer_literal] = ACTIONS(3171), - [sym_real_literal] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_verbatim_string_literal] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3173), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3173), - [sym_interpolation_verbatim_start] = ACTIONS(3173), - [sym_interpolation_raw_start] = ACTIONS(3173), - [sym_raw_string_start] = ACTIONS(3173), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, [1985] = { [sym_preproc_region] = STATE(1985), @@ -366582,122 +374094,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1985), [sym_preproc_define] = STATE(1985), [sym_preproc_undef] = STATE(1985), - [ts_builtin_sym_end] = ACTIONS(3189), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_extern] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_class] = ACTIONS(3187), - [anon_sym_ref] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_delegate] = ACTIONS(3187), - [anon_sym_record] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_fixed] = ACTIONS(3187), - [anon_sym_internal] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_partial] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_required] = ACTIONS(3187), - [anon_sym_sealed] = ACTIONS(3187), - [anon_sym_virtual] = ACTIONS(3187), - [anon_sym_volatile] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_checked] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3187), - [anon_sym_false] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_base] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [sym_predefined_type] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_unchecked] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_default] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_foreach] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_from] = ACTIONS(3187), - [anon_sym_into] = ACTIONS(3187), - [anon_sym_join] = ACTIONS(3187), - [anon_sym_on] = ACTIONS(3187), - [anon_sym_equals] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_orderby] = ACTIONS(3187), - [anon_sym_ascending] = ACTIONS(3187), - [anon_sym_descending] = ACTIONS(3187), - [anon_sym_group] = ACTIONS(3187), - [anon_sym_by] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_stackalloc] = ACTIONS(3187), - [anon_sym_sizeof] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym___makeref] = ACTIONS(3187), - [anon_sym___reftype] = ACTIONS(3187), - [anon_sym___refvalue] = ACTIONS(3187), - [sym_null_literal] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3189), - [sym_integer_literal] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [sym_verbatim_string_literal] = ACTIONS(3189), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3189), - [sym_interpolation_verbatim_start] = ACTIONS(3189), - [sym_interpolation_raw_start] = ACTIONS(3189), - [sym_raw_string_start] = ACTIONS(3189), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, [1986] = { [sym_preproc_region] = STATE(1986), @@ -366709,122 +374222,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1986), [sym_preproc_define] = STATE(1986), [sym_preproc_undef] = STATE(1986), - [ts_builtin_sym_end] = ACTIONS(3259), - [sym__identifier_token] = ACTIONS(3257), - [anon_sym_extern] = ACTIONS(3257), - [anon_sym_alias] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_global] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_unsafe] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_ref] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_delegate] = ACTIONS(3257), - [anon_sym_record] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_file] = ACTIONS(3257), - [anon_sym_fixed] = ACTIONS(3257), - [anon_sym_internal] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_partial] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_required] = ACTIONS(3257), - [anon_sym_sealed] = ACTIONS(3257), - [anon_sym_virtual] = ACTIONS(3257), - [anon_sym_volatile] = ACTIONS(3257), - [anon_sym_where] = ACTIONS(3257), - [anon_sym_notnull] = ACTIONS(3257), - [anon_sym_unmanaged] = ACTIONS(3257), - [anon_sym_checked] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_true] = ACTIONS(3257), - [anon_sym_false] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_this] = ACTIONS(3257), - [anon_sym_scoped] = ACTIONS(3257), - [anon_sym_base] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [sym_predefined_type] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_unchecked] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_lock] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_when] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_foreach] = ACTIONS(3257), - [anon_sym_goto] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_DOT_DOT] = ACTIONS(3259), - [anon_sym_from] = ACTIONS(3257), - [anon_sym_into] = ACTIONS(3257), - [anon_sym_join] = ACTIONS(3257), - [anon_sym_on] = ACTIONS(3257), - [anon_sym_equals] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_orderby] = ACTIONS(3257), - [anon_sym_ascending] = ACTIONS(3257), - [anon_sym_descending] = ACTIONS(3257), - [anon_sym_group] = ACTIONS(3257), - [anon_sym_by] = ACTIONS(3257), - [anon_sym_select] = ACTIONS(3257), - [anon_sym_stackalloc] = ACTIONS(3257), - [anon_sym_sizeof] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym___makeref] = ACTIONS(3257), - [anon_sym___reftype] = ACTIONS(3257), - [anon_sym___refvalue] = ACTIONS(3257), - [sym_null_literal] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3259), - [sym_integer_literal] = ACTIONS(3257), - [sym_real_literal] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [sym_verbatim_string_literal] = ACTIONS(3259), - [aux_sym_preproc_if_token1] = ACTIONS(3259), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3259), - [sym_interpolation_verbatim_start] = ACTIONS(3259), - [sym_interpolation_raw_start] = ACTIONS(3259), - [sym_raw_string_start] = ACTIONS(3259), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1987] = { [sym_preproc_region] = STATE(1987), @@ -366836,122 +374350,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1987), [sym_preproc_define] = STATE(1987), [sym_preproc_undef] = STATE(1987), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1988] = { [sym_preproc_region] = STATE(1988), @@ -366963,121 +374478,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1988), [sym_preproc_define] = STATE(1988), [sym_preproc_undef] = STATE(1988), - [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_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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1989] = { [sym_preproc_region] = STATE(1989), @@ -367089,121 +374606,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1989), [sym_preproc_define] = STATE(1989), [sym_preproc_undef] = STATE(1989), - [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_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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1990] = { [sym_preproc_region] = STATE(1990), @@ -367215,121 +374734,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1990), [sym_preproc_define] = STATE(1990), [sym_preproc_undef] = STATE(1990), - [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_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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1991] = { [sym_preproc_region] = STATE(1991), @@ -367341,121 +374862,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1991), [sym_preproc_define] = STATE(1991), [sym_preproc_undef] = STATE(1991), - [ts_builtin_sym_end] = ACTIONS(3347), - [sym__identifier_token] = ACTIONS(3345), - [anon_sym_extern] = ACTIONS(3345), - [anon_sym_alias] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_global] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_unsafe] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_ref] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_delegate] = ACTIONS(3345), - [anon_sym_record] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_file] = ACTIONS(3345), - [anon_sym_fixed] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_partial] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_sealed] = ACTIONS(3345), - [anon_sym_virtual] = ACTIONS(3345), - [anon_sym_volatile] = ACTIONS(3345), - [anon_sym_where] = ACTIONS(3345), - [anon_sym_notnull] = ACTIONS(3345), - [anon_sym_unmanaged] = ACTIONS(3345), - [anon_sym_checked] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_this] = ACTIONS(3345), - [anon_sym_scoped] = ACTIONS(3345), - [anon_sym_base] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [sym_predefined_type] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_unchecked] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_lock] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_when] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_foreach] = ACTIONS(3345), - [anon_sym_goto] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_into] = ACTIONS(3345), - [anon_sym_join] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_equals] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_orderby] = ACTIONS(3345), - [anon_sym_ascending] = ACTIONS(3345), - [anon_sym_descending] = ACTIONS(3345), - [anon_sym_group] = ACTIONS(3345), - [anon_sym_by] = ACTIONS(3345), - [anon_sym_select] = ACTIONS(3345), - [anon_sym_stackalloc] = ACTIONS(3345), - [anon_sym_sizeof] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym___makeref] = ACTIONS(3345), - [anon_sym___reftype] = ACTIONS(3345), - [anon_sym___refvalue] = ACTIONS(3345), - [sym_null_literal] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3347), - [sym_integer_literal] = ACTIONS(3345), - [sym_real_literal] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_verbatim_string_literal] = ACTIONS(3347), - [aux_sym_preproc_if_token1] = ACTIONS(3347), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3347), - [sym_interpolation_verbatim_start] = ACTIONS(3347), - [sym_interpolation_raw_start] = ACTIONS(3347), - [sym_raw_string_start] = ACTIONS(3347), + [sym__identifier_token] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_alias] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_global] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_unsafe] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_ref] = ACTIONS(3371), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_delegate] = ACTIONS(3371), + [anon_sym_record] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_file] = ACTIONS(3371), + [anon_sym_fixed] = ACTIONS(3371), + [anon_sym_internal] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_partial] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_required] = ACTIONS(3371), + [anon_sym_sealed] = ACTIONS(3371), + [anon_sym_virtual] = ACTIONS(3371), + [anon_sym_volatile] = ACTIONS(3371), + [anon_sym_where] = ACTIONS(3371), + [anon_sym_notnull] = ACTIONS(3371), + [anon_sym_unmanaged] = ACTIONS(3371), + [anon_sym_checked] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_CARET] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_this] = ACTIONS(3371), + [anon_sym_scoped] = ACTIONS(3371), + [anon_sym_base] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [sym_predefined_type] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_unchecked] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_lock] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_when] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_foreach] = ACTIONS(3371), + [anon_sym_goto] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_DOT_DOT] = ACTIONS(3373), + [anon_sym_from] = ACTIONS(3371), + [anon_sym_into] = ACTIONS(3371), + [anon_sym_join] = ACTIONS(3371), + [anon_sym_on] = ACTIONS(3371), + [anon_sym_equals] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_orderby] = ACTIONS(3371), + [anon_sym_ascending] = ACTIONS(3371), + [anon_sym_descending] = ACTIONS(3371), + [anon_sym_group] = ACTIONS(3371), + [anon_sym_by] = ACTIONS(3371), + [anon_sym_select] = ACTIONS(3371), + [anon_sym_stackalloc] = ACTIONS(3371), + [anon_sym_sizeof] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym___makeref] = ACTIONS(3371), + [anon_sym___reftype] = ACTIONS(3371), + [anon_sym___refvalue] = ACTIONS(3371), + [sym_null_literal] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3373), + [sym_integer_literal] = ACTIONS(3371), + [sym_real_literal] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [sym_verbatim_string_literal] = ACTIONS(3373), + [aux_sym_preproc_if_token1] = ACTIONS(3373), + [aux_sym_preproc_if_token3] = ACTIONS(3373), + [aux_sym_preproc_else_token1] = ACTIONS(3373), + [aux_sym_preproc_elif_token1] = ACTIONS(3373), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), }, [1992] = { [sym_preproc_region] = STATE(1992), @@ -367467,121 +374990,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1992), [sym_preproc_define] = STATE(1992), [sym_preproc_undef] = STATE(1992), - [ts_builtin_sym_end] = ACTIONS(3355), - [sym__identifier_token] = ACTIONS(3353), - [anon_sym_extern] = ACTIONS(3353), - [anon_sym_alias] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_global] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_unsafe] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_ref] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_delegate] = ACTIONS(3353), - [anon_sym_record] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_file] = ACTIONS(3353), - [anon_sym_fixed] = ACTIONS(3353), - [anon_sym_internal] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_partial] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_required] = ACTIONS(3353), - [anon_sym_sealed] = ACTIONS(3353), - [anon_sym_virtual] = ACTIONS(3353), - [anon_sym_volatile] = ACTIONS(3353), - [anon_sym_where] = ACTIONS(3353), - [anon_sym_notnull] = ACTIONS(3353), - [anon_sym_unmanaged] = ACTIONS(3353), - [anon_sym_checked] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_this] = ACTIONS(3353), - [anon_sym_scoped] = ACTIONS(3353), - [anon_sym_base] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [sym_predefined_type] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_unchecked] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_lock] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_when] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_foreach] = ACTIONS(3353), - [anon_sym_goto] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_DOT_DOT] = ACTIONS(3355), - [anon_sym_from] = ACTIONS(3353), - [anon_sym_into] = ACTIONS(3353), - [anon_sym_join] = ACTIONS(3353), - [anon_sym_on] = ACTIONS(3353), - [anon_sym_equals] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_orderby] = ACTIONS(3353), - [anon_sym_ascending] = ACTIONS(3353), - [anon_sym_descending] = ACTIONS(3353), - [anon_sym_group] = ACTIONS(3353), - [anon_sym_by] = ACTIONS(3353), - [anon_sym_select] = ACTIONS(3353), - [anon_sym_stackalloc] = ACTIONS(3353), - [anon_sym_sizeof] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym___makeref] = ACTIONS(3353), - [anon_sym___reftype] = ACTIONS(3353), - [anon_sym___refvalue] = ACTIONS(3353), - [sym_null_literal] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3355), - [sym_integer_literal] = ACTIONS(3353), - [sym_real_literal] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_verbatim_string_literal] = ACTIONS(3355), - [aux_sym_preproc_if_token1] = ACTIONS(3355), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3355), - [sym_interpolation_verbatim_start] = ACTIONS(3355), - [sym_interpolation_raw_start] = ACTIONS(3355), - [sym_raw_string_start] = ACTIONS(3355), + [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), }, [1993] = { [sym_preproc_region] = STATE(1993), @@ -367593,121 +375118,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1993), [sym_preproc_define] = STATE(1993), [sym_preproc_undef] = STATE(1993), - [ts_builtin_sym_end] = ACTIONS(3343), - [sym__identifier_token] = ACTIONS(3341), - [anon_sym_extern] = ACTIONS(3341), - [anon_sym_alias] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_global] = ACTIONS(3341), - [anon_sym_using] = ACTIONS(3341), - [anon_sym_unsafe] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3341), - [anon_sym_namespace] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_ref] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_delegate] = ACTIONS(3341), - [anon_sym_record] = ACTIONS(3341), - [anon_sym_abstract] = ACTIONS(3341), - [anon_sym_async] = ACTIONS(3341), - [anon_sym_const] = ACTIONS(3341), - [anon_sym_file] = ACTIONS(3341), - [anon_sym_fixed] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_partial] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_protected] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_readonly] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_sealed] = ACTIONS(3341), - [anon_sym_virtual] = ACTIONS(3341), - [anon_sym_volatile] = ACTIONS(3341), - [anon_sym_where] = ACTIONS(3341), - [anon_sym_notnull] = ACTIONS(3341), - [anon_sym_unmanaged] = ACTIONS(3341), - [anon_sym_checked] = ACTIONS(3341), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_this] = ACTIONS(3341), - [anon_sym_scoped] = ACTIONS(3341), - [anon_sym_base] = ACTIONS(3341), - [anon_sym_var] = ACTIONS(3341), - [sym_predefined_type] = ACTIONS(3341), - [anon_sym_break] = ACTIONS(3341), - [anon_sym_unchecked] = ACTIONS(3341), - [anon_sym_continue] = ACTIONS(3341), - [anon_sym_do] = ACTIONS(3341), - [anon_sym_while] = ACTIONS(3341), - [anon_sym_for] = ACTIONS(3341), - [anon_sym_lock] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3341), - [anon_sym_switch] = ACTIONS(3341), - [anon_sym_default] = ACTIONS(3341), - [anon_sym_throw] = ACTIONS(3341), - [anon_sym_try] = ACTIONS(3341), - [anon_sym_when] = ACTIONS(3341), - [anon_sym_await] = ACTIONS(3341), - [anon_sym_foreach] = ACTIONS(3341), - [anon_sym_goto] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3341), - [anon_sym_DOT_DOT] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3341), - [anon_sym_into] = ACTIONS(3341), - [anon_sym_join] = ACTIONS(3341), - [anon_sym_on] = ACTIONS(3341), - [anon_sym_equals] = ACTIONS(3341), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_orderby] = ACTIONS(3341), - [anon_sym_ascending] = ACTIONS(3341), - [anon_sym_descending] = ACTIONS(3341), - [anon_sym_group] = ACTIONS(3341), - [anon_sym_by] = ACTIONS(3341), - [anon_sym_select] = ACTIONS(3341), - [anon_sym_stackalloc] = ACTIONS(3341), - [anon_sym_sizeof] = ACTIONS(3341), - [anon_sym_typeof] = ACTIONS(3341), - [anon_sym___makeref] = ACTIONS(3341), - [anon_sym___reftype] = ACTIONS(3341), - [anon_sym___refvalue] = ACTIONS(3341), - [sym_null_literal] = ACTIONS(3341), - [anon_sym_SQUOTE] = ACTIONS(3343), - [sym_integer_literal] = ACTIONS(3341), - [sym_real_literal] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_verbatim_string_literal] = ACTIONS(3343), - [aux_sym_preproc_if_token1] = ACTIONS(3343), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3343), - [sym_interpolation_verbatim_start] = ACTIONS(3343), - [sym_interpolation_raw_start] = ACTIONS(3343), - [sym_raw_string_start] = ACTIONS(3343), + [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), }, [1994] = { [sym_preproc_region] = STATE(1994), @@ -367719,121 +375246,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1994), [sym_preproc_define] = STATE(1994), [sym_preproc_undef] = STATE(1994), - [ts_builtin_sym_end] = ACTIONS(3327), - [sym__identifier_token] = ACTIONS(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym_alias] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_global] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_unsafe] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_ref] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_delegate] = ACTIONS(3325), - [anon_sym_record] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_file] = ACTIONS(3325), - [anon_sym_fixed] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_partial] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_sealed] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_where] = ACTIONS(3325), - [anon_sym_notnull] = ACTIONS(3325), - [anon_sym_unmanaged] = ACTIONS(3325), - [anon_sym_checked] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_this] = ACTIONS(3325), - [anon_sym_scoped] = ACTIONS(3325), - [anon_sym_base] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [sym_predefined_type] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_unchecked] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_lock] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_when] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_foreach] = ACTIONS(3325), - [anon_sym_goto] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_DOT_DOT] = ACTIONS(3327), - [anon_sym_from] = ACTIONS(3325), - [anon_sym_into] = ACTIONS(3325), - [anon_sym_join] = ACTIONS(3325), - [anon_sym_on] = ACTIONS(3325), - [anon_sym_equals] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_orderby] = ACTIONS(3325), - [anon_sym_ascending] = ACTIONS(3325), - [anon_sym_descending] = ACTIONS(3325), - [anon_sym_group] = ACTIONS(3325), - [anon_sym_by] = ACTIONS(3325), - [anon_sym_select] = ACTIONS(3325), - [anon_sym_stackalloc] = ACTIONS(3325), - [anon_sym_sizeof] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym___makeref] = ACTIONS(3325), - [anon_sym___reftype] = ACTIONS(3325), - [anon_sym___refvalue] = ACTIONS(3325), - [sym_null_literal] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3327), - [sym_integer_literal] = ACTIONS(3325), - [sym_real_literal] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_verbatim_string_literal] = ACTIONS(3327), - [aux_sym_preproc_if_token1] = ACTIONS(3327), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3327), - [sym_interpolation_verbatim_start] = ACTIONS(3327), - [sym_interpolation_raw_start] = ACTIONS(3327), - [sym_raw_string_start] = ACTIONS(3327), + [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), }, [1995] = { [sym_preproc_region] = STATE(1995), @@ -367845,121 +375374,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1995), [sym_preproc_define] = STATE(1995), [sym_preproc_undef] = STATE(1995), - [ts_builtin_sym_end] = ACTIONS(3319), - [sym__identifier_token] = ACTIONS(3317), - [anon_sym_extern] = ACTIONS(3317), - [anon_sym_alias] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_global] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_unsafe] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_ref] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_delegate] = ACTIONS(3317), - [anon_sym_record] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_file] = ACTIONS(3317), - [anon_sym_fixed] = ACTIONS(3317), - [anon_sym_internal] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_partial] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_required] = ACTIONS(3317), - [anon_sym_sealed] = ACTIONS(3317), - [anon_sym_virtual] = ACTIONS(3317), - [anon_sym_volatile] = ACTIONS(3317), - [anon_sym_where] = ACTIONS(3317), - [anon_sym_notnull] = ACTIONS(3317), - [anon_sym_unmanaged] = ACTIONS(3317), - [anon_sym_checked] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_this] = ACTIONS(3317), - [anon_sym_scoped] = ACTIONS(3317), - [anon_sym_base] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [sym_predefined_type] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_unchecked] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_lock] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_when] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_foreach] = ACTIONS(3317), - [anon_sym_goto] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_DOT_DOT] = ACTIONS(3319), - [anon_sym_from] = ACTIONS(3317), - [anon_sym_into] = ACTIONS(3317), - [anon_sym_join] = ACTIONS(3317), - [anon_sym_on] = ACTIONS(3317), - [anon_sym_equals] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_orderby] = ACTIONS(3317), - [anon_sym_ascending] = ACTIONS(3317), - [anon_sym_descending] = ACTIONS(3317), - [anon_sym_group] = ACTIONS(3317), - [anon_sym_by] = ACTIONS(3317), - [anon_sym_select] = ACTIONS(3317), - [anon_sym_stackalloc] = ACTIONS(3317), - [anon_sym_sizeof] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym___makeref] = ACTIONS(3317), - [anon_sym___reftype] = ACTIONS(3317), - [anon_sym___refvalue] = ACTIONS(3317), - [sym_null_literal] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3319), - [sym_integer_literal] = ACTIONS(3317), - [sym_real_literal] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_verbatim_string_literal] = ACTIONS(3319), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3319), - [sym_interpolation_verbatim_start] = ACTIONS(3319), - [sym_interpolation_raw_start] = ACTIONS(3319), - [sym_raw_string_start] = ACTIONS(3319), + [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), }, [1996] = { [sym_preproc_region] = STATE(1996), @@ -367971,121 +375502,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1996), [sym_preproc_define] = STATE(1996), [sym_preproc_undef] = STATE(1996), - [ts_builtin_sym_end] = ACTIONS(3379), - [sym__identifier_token] = ACTIONS(3377), - [anon_sym_extern] = ACTIONS(3377), - [anon_sym_alias] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_global] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_unsafe] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_ref] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_delegate] = ACTIONS(3377), - [anon_sym_record] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_file] = ACTIONS(3377), - [anon_sym_fixed] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_partial] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_sealed] = ACTIONS(3377), - [anon_sym_virtual] = ACTIONS(3377), - [anon_sym_volatile] = ACTIONS(3377), - [anon_sym_where] = ACTIONS(3377), - [anon_sym_notnull] = ACTIONS(3377), - [anon_sym_unmanaged] = ACTIONS(3377), - [anon_sym_checked] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_this] = ACTIONS(3377), - [anon_sym_scoped] = ACTIONS(3377), - [anon_sym_base] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [sym_predefined_type] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_unchecked] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_lock] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_when] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_foreach] = ACTIONS(3377), - [anon_sym_goto] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_DOT_DOT] = ACTIONS(3379), - [anon_sym_from] = ACTIONS(3377), - [anon_sym_into] = ACTIONS(3377), - [anon_sym_join] = ACTIONS(3377), - [anon_sym_on] = ACTIONS(3377), - [anon_sym_equals] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_orderby] = ACTIONS(3377), - [anon_sym_ascending] = ACTIONS(3377), - [anon_sym_descending] = ACTIONS(3377), - [anon_sym_group] = ACTIONS(3377), - [anon_sym_by] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [anon_sym_stackalloc] = ACTIONS(3377), - [anon_sym_sizeof] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym___makeref] = ACTIONS(3377), - [anon_sym___reftype] = ACTIONS(3377), - [anon_sym___refvalue] = ACTIONS(3377), - [sym_null_literal] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3379), - [sym_integer_literal] = ACTIONS(3377), - [sym_real_literal] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_verbatim_string_literal] = ACTIONS(3379), - [aux_sym_preproc_if_token1] = ACTIONS(3379), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3379), - [sym_interpolation_verbatim_start] = ACTIONS(3379), - [sym_interpolation_raw_start] = ACTIONS(3379), - [sym_raw_string_start] = ACTIONS(3379), + [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), }, [1997] = { [sym_preproc_region] = STATE(1997), @@ -368097,121 +375630,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1997), [sym_preproc_define] = STATE(1997), [sym_preproc_undef] = STATE(1997), - [ts_builtin_sym_end] = ACTIONS(3375), - [sym__identifier_token] = ACTIONS(3373), - [anon_sym_extern] = ACTIONS(3373), - [anon_sym_alias] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_global] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_unsafe] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_ref] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_delegate] = ACTIONS(3373), - [anon_sym_record] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_file] = ACTIONS(3373), - [anon_sym_fixed] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_partial] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_sealed] = ACTIONS(3373), - [anon_sym_virtual] = ACTIONS(3373), - [anon_sym_volatile] = ACTIONS(3373), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_notnull] = ACTIONS(3373), - [anon_sym_unmanaged] = ACTIONS(3373), - [anon_sym_checked] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_this] = ACTIONS(3373), - [anon_sym_scoped] = ACTIONS(3373), - [anon_sym_base] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [sym_predefined_type] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_unchecked] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_lock] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_when] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_foreach] = ACTIONS(3373), - [anon_sym_goto] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_DOT_DOT] = ACTIONS(3375), - [anon_sym_from] = ACTIONS(3373), - [anon_sym_into] = ACTIONS(3373), - [anon_sym_join] = ACTIONS(3373), - [anon_sym_on] = ACTIONS(3373), - [anon_sym_equals] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_orderby] = ACTIONS(3373), - [anon_sym_ascending] = ACTIONS(3373), - [anon_sym_descending] = ACTIONS(3373), - [anon_sym_group] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [anon_sym_stackalloc] = ACTIONS(3373), - [anon_sym_sizeof] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym___makeref] = ACTIONS(3373), - [anon_sym___reftype] = ACTIONS(3373), - [anon_sym___refvalue] = ACTIONS(3373), - [sym_null_literal] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3375), - [sym_integer_literal] = ACTIONS(3373), - [sym_real_literal] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_verbatim_string_literal] = ACTIONS(3375), - [aux_sym_preproc_if_token1] = ACTIONS(3375), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3375), - [sym_interpolation_verbatim_start] = ACTIONS(3375), - [sym_interpolation_raw_start] = ACTIONS(3375), - [sym_raw_string_start] = ACTIONS(3375), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), }, [1998] = { [sym_preproc_region] = STATE(1998), @@ -368223,121 +375758,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1998), [sym_preproc_define] = STATE(1998), [sym_preproc_undef] = STATE(1998), - [ts_builtin_sym_end] = ACTIONS(3367), - [sym__identifier_token] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(3365), - [anon_sym_alias] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_global] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_unsafe] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_ref] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_delegate] = ACTIONS(3365), - [anon_sym_record] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_file] = ACTIONS(3365), - [anon_sym_fixed] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_partial] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_sealed] = ACTIONS(3365), - [anon_sym_virtual] = ACTIONS(3365), - [anon_sym_volatile] = ACTIONS(3365), - [anon_sym_where] = ACTIONS(3365), - [anon_sym_notnull] = ACTIONS(3365), - [anon_sym_unmanaged] = ACTIONS(3365), - [anon_sym_checked] = ACTIONS(3365), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_this] = ACTIONS(3365), - [anon_sym_scoped] = ACTIONS(3365), - [anon_sym_base] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [sym_predefined_type] = ACTIONS(3365), - [anon_sym_break] = ACTIONS(3365), - [anon_sym_unchecked] = ACTIONS(3365), - [anon_sym_continue] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_while] = ACTIONS(3365), - [anon_sym_for] = ACTIONS(3365), - [anon_sym_lock] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_switch] = ACTIONS(3365), - [anon_sym_default] = ACTIONS(3365), - [anon_sym_throw] = ACTIONS(3365), - [anon_sym_try] = ACTIONS(3365), - [anon_sym_when] = ACTIONS(3365), - [anon_sym_await] = ACTIONS(3365), - [anon_sym_foreach] = ACTIONS(3365), - [anon_sym_goto] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3365), - [anon_sym_DOT_DOT] = ACTIONS(3367), - [anon_sym_from] = ACTIONS(3365), - [anon_sym_into] = ACTIONS(3365), - [anon_sym_join] = ACTIONS(3365), - [anon_sym_on] = ACTIONS(3365), - [anon_sym_equals] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_orderby] = ACTIONS(3365), - [anon_sym_ascending] = ACTIONS(3365), - [anon_sym_descending] = ACTIONS(3365), - [anon_sym_group] = ACTIONS(3365), - [anon_sym_by] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [anon_sym_stackalloc] = ACTIONS(3365), - [anon_sym_sizeof] = ACTIONS(3365), - [anon_sym_typeof] = ACTIONS(3365), - [anon_sym___makeref] = ACTIONS(3365), - [anon_sym___reftype] = ACTIONS(3365), - [anon_sym___refvalue] = ACTIONS(3365), - [sym_null_literal] = ACTIONS(3365), - [anon_sym_SQUOTE] = ACTIONS(3367), - [sym_integer_literal] = ACTIONS(3365), - [sym_real_literal] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_verbatim_string_literal] = ACTIONS(3367), - [aux_sym_preproc_if_token1] = ACTIONS(3367), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3367), - [sym_interpolation_verbatim_start] = ACTIONS(3367), - [sym_interpolation_raw_start] = ACTIONS(3367), - [sym_raw_string_start] = ACTIONS(3367), + [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), }, [1999] = { [sym_preproc_region] = STATE(1999), @@ -368349,121 +375886,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1999), [sym_preproc_define] = STATE(1999), [sym_preproc_undef] = STATE(1999), - [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_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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, [2000] = { [sym_preproc_region] = STATE(2000), @@ -368475,121 +376014,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2000), [sym_preproc_define] = STATE(2000), [sym_preproc_undef] = STATE(2000), - [ts_builtin_sym_end] = ACTIONS(3335), - [sym__identifier_token] = ACTIONS(3333), - [anon_sym_extern] = ACTIONS(3333), - [anon_sym_alias] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_global] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_unsafe] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_ref] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_delegate] = ACTIONS(3333), - [anon_sym_record] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_file] = ACTIONS(3333), - [anon_sym_fixed] = ACTIONS(3333), - [anon_sym_internal] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_partial] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_required] = ACTIONS(3333), - [anon_sym_sealed] = ACTIONS(3333), - [anon_sym_virtual] = ACTIONS(3333), - [anon_sym_volatile] = ACTIONS(3333), - [anon_sym_where] = ACTIONS(3333), - [anon_sym_notnull] = ACTIONS(3333), - [anon_sym_unmanaged] = ACTIONS(3333), - [anon_sym_checked] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_this] = ACTIONS(3333), - [anon_sym_scoped] = ACTIONS(3333), - [anon_sym_base] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [sym_predefined_type] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_unchecked] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_lock] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_when] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_foreach] = ACTIONS(3333), - [anon_sym_goto] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_DOT_DOT] = ACTIONS(3335), - [anon_sym_from] = ACTIONS(3333), - [anon_sym_into] = ACTIONS(3333), - [anon_sym_join] = ACTIONS(3333), - [anon_sym_on] = ACTIONS(3333), - [anon_sym_equals] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_orderby] = ACTIONS(3333), - [anon_sym_ascending] = ACTIONS(3333), - [anon_sym_descending] = ACTIONS(3333), - [anon_sym_group] = ACTIONS(3333), - [anon_sym_by] = ACTIONS(3333), - [anon_sym_select] = ACTIONS(3333), - [anon_sym_stackalloc] = ACTIONS(3333), - [anon_sym_sizeof] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym___makeref] = ACTIONS(3333), - [anon_sym___reftype] = ACTIONS(3333), - [anon_sym___refvalue] = ACTIONS(3333), - [sym_null_literal] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3335), - [sym_integer_literal] = ACTIONS(3333), - [sym_real_literal] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_verbatim_string_literal] = ACTIONS(3335), - [aux_sym_preproc_if_token1] = ACTIONS(3335), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3335), - [sym_interpolation_verbatim_start] = ACTIONS(3335), - [sym_interpolation_raw_start] = ACTIONS(3335), - [sym_raw_string_start] = ACTIONS(3335), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2001] = { [sym_preproc_region] = STATE(2001), @@ -368601,121 +376142,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2001), [sym_preproc_define] = STATE(2001), [sym_preproc_undef] = STATE(2001), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym__identifier_token] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym_alias] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_global] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_ref] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_delegate] = ACTIONS(3412), - [anon_sym_record] = ACTIONS(3412), - [anon_sym_abstract] = ACTIONS(3412), - [anon_sym_async] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_file] = ACTIONS(3412), - [anon_sym_fixed] = ACTIONS(3412), - [anon_sym_internal] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_override] = ACTIONS(3412), - [anon_sym_partial] = ACTIONS(3412), - [anon_sym_private] = ACTIONS(3412), - [anon_sym_protected] = ACTIONS(3412), - [anon_sym_public] = ACTIONS(3412), - [anon_sym_readonly] = ACTIONS(3412), - [anon_sym_required] = ACTIONS(3412), - [anon_sym_sealed] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_where] = ACTIONS(3412), - [anon_sym_notnull] = ACTIONS(3412), - [anon_sym_unmanaged] = ACTIONS(3412), - [anon_sym_checked] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_CARET] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_this] = ACTIONS(3412), - [anon_sym_scoped] = ACTIONS(3412), - [anon_sym_base] = ACTIONS(3412), - [anon_sym_var] = ACTIONS(3412), - [sym_predefined_type] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_unchecked] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_yield] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_when] = ACTIONS(3412), - [anon_sym_await] = ACTIONS(3412), - [anon_sym_foreach] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOT_DOT] = ACTIONS(3410), - [anon_sym_from] = ACTIONS(3412), - [anon_sym_into] = ACTIONS(3412), - [anon_sym_join] = ACTIONS(3412), - [anon_sym_on] = ACTIONS(3412), - [anon_sym_equals] = ACTIONS(3412), - [anon_sym_let] = ACTIONS(3412), - [anon_sym_orderby] = ACTIONS(3412), - [anon_sym_ascending] = ACTIONS(3412), - [anon_sym_descending] = ACTIONS(3412), - [anon_sym_group] = ACTIONS(3412), - [anon_sym_by] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_stackalloc] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym_typeof] = ACTIONS(3412), - [anon_sym___makeref] = ACTIONS(3412), - [anon_sym___reftype] = ACTIONS(3412), - [anon_sym___refvalue] = ACTIONS(3412), - [sym_null_literal] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3410), - [sym_integer_literal] = ACTIONS(3412), - [sym_real_literal] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_verbatim_string_literal] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3410), - [sym_interpolation_verbatim_start] = ACTIONS(3410), - [sym_interpolation_raw_start] = ACTIONS(3410), - [sym_raw_string_start] = ACTIONS(3410), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2002] = { [sym_preproc_region] = STATE(2002), @@ -368727,121 +376270,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2002), [sym_preproc_define] = STATE(2002), [sym_preproc_undef] = STATE(2002), - [ts_builtin_sym_end] = ACTIONS(3359), - [sym__identifier_token] = ACTIONS(3357), - [anon_sym_extern] = ACTIONS(3357), - [anon_sym_alias] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_global] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_unsafe] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_ref] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_delegate] = ACTIONS(3357), - [anon_sym_record] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_file] = ACTIONS(3357), - [anon_sym_fixed] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_partial] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_sealed] = ACTIONS(3357), - [anon_sym_virtual] = ACTIONS(3357), - [anon_sym_volatile] = ACTIONS(3357), - [anon_sym_where] = ACTIONS(3357), - [anon_sym_notnull] = ACTIONS(3357), - [anon_sym_unmanaged] = ACTIONS(3357), - [anon_sym_checked] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_this] = ACTIONS(3357), - [anon_sym_scoped] = ACTIONS(3357), - [anon_sym_base] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [sym_predefined_type] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_unchecked] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_lock] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_foreach] = ACTIONS(3357), - [anon_sym_goto] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_DOT_DOT] = ACTIONS(3359), - [anon_sym_from] = ACTIONS(3357), - [anon_sym_into] = ACTIONS(3357), - [anon_sym_join] = ACTIONS(3357), - [anon_sym_on] = ACTIONS(3357), - [anon_sym_equals] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_orderby] = ACTIONS(3357), - [anon_sym_ascending] = ACTIONS(3357), - [anon_sym_descending] = ACTIONS(3357), - [anon_sym_group] = ACTIONS(3357), - [anon_sym_by] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [anon_sym_stackalloc] = ACTIONS(3357), - [anon_sym_sizeof] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym___makeref] = ACTIONS(3357), - [anon_sym___reftype] = ACTIONS(3357), - [anon_sym___refvalue] = ACTIONS(3357), - [sym_null_literal] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3359), - [sym_integer_literal] = ACTIONS(3357), - [sym_real_literal] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_verbatim_string_literal] = ACTIONS(3359), - [aux_sym_preproc_if_token1] = ACTIONS(3359), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3359), - [sym_interpolation_verbatim_start] = ACTIONS(3359), - [sym_interpolation_raw_start] = ACTIONS(3359), - [sym_raw_string_start] = ACTIONS(3359), + [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), @@ -368853,121 +376398,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2003), [sym_preproc_define] = STATE(2003), [sym_preproc_undef] = STATE(2003), - [ts_builtin_sym_end] = ACTIONS(3351), - [sym__identifier_token] = ACTIONS(3349), - [anon_sym_extern] = ACTIONS(3349), - [anon_sym_alias] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_global] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_unsafe] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_ref] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_delegate] = ACTIONS(3349), - [anon_sym_record] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_file] = ACTIONS(3349), - [anon_sym_fixed] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_partial] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_sealed] = ACTIONS(3349), - [anon_sym_virtual] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_where] = ACTIONS(3349), - [anon_sym_notnull] = ACTIONS(3349), - [anon_sym_unmanaged] = ACTIONS(3349), - [anon_sym_checked] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_this] = ACTIONS(3349), - [anon_sym_scoped] = ACTIONS(3349), - [anon_sym_base] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [sym_predefined_type] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_unchecked] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_lock] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_when] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_foreach] = ACTIONS(3349), - [anon_sym_goto] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_DOT_DOT] = ACTIONS(3351), - [anon_sym_from] = ACTIONS(3349), - [anon_sym_into] = ACTIONS(3349), - [anon_sym_join] = ACTIONS(3349), - [anon_sym_on] = ACTIONS(3349), - [anon_sym_equals] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_orderby] = ACTIONS(3349), - [anon_sym_ascending] = ACTIONS(3349), - [anon_sym_descending] = ACTIONS(3349), - [anon_sym_group] = ACTIONS(3349), - [anon_sym_by] = ACTIONS(3349), - [anon_sym_select] = ACTIONS(3349), - [anon_sym_stackalloc] = ACTIONS(3349), - [anon_sym_sizeof] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym___makeref] = ACTIONS(3349), - [anon_sym___reftype] = ACTIONS(3349), - [anon_sym___refvalue] = ACTIONS(3349), - [sym_null_literal] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3351), - [sym_integer_literal] = ACTIONS(3349), - [sym_real_literal] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_verbatim_string_literal] = ACTIONS(3351), - [aux_sym_preproc_if_token1] = ACTIONS(3351), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3351), - [sym_interpolation_verbatim_start] = ACTIONS(3351), - [sym_interpolation_raw_start] = ACTIONS(3351), - [sym_raw_string_start] = ACTIONS(3351), + [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), @@ -368979,1032 +376526,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2004), [sym_preproc_define] = STATE(2004), [sym_preproc_undef] = STATE(2004), - [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_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), - }, - [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(3331), - [sym__identifier_token] = ACTIONS(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym_alias] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_global] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_unsafe] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_ref] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_delegate] = ACTIONS(3329), - [anon_sym_record] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_file] = ACTIONS(3329), - [anon_sym_fixed] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_partial] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_sealed] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_where] = ACTIONS(3329), - [anon_sym_notnull] = ACTIONS(3329), - [anon_sym_unmanaged] = ACTIONS(3329), - [anon_sym_checked] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_this] = ACTIONS(3329), - [anon_sym_scoped] = ACTIONS(3329), - [anon_sym_base] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [sym_predefined_type] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_unchecked] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_lock] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_when] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_foreach] = ACTIONS(3329), - [anon_sym_goto] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_DOT_DOT] = ACTIONS(3331), - [anon_sym_from] = ACTIONS(3329), - [anon_sym_into] = ACTIONS(3329), - [anon_sym_join] = ACTIONS(3329), - [anon_sym_on] = ACTIONS(3329), - [anon_sym_equals] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_orderby] = ACTIONS(3329), - [anon_sym_ascending] = ACTIONS(3329), - [anon_sym_descending] = ACTIONS(3329), - [anon_sym_group] = ACTIONS(3329), - [anon_sym_by] = ACTIONS(3329), - [anon_sym_select] = ACTIONS(3329), - [anon_sym_stackalloc] = ACTIONS(3329), - [anon_sym_sizeof] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym___makeref] = ACTIONS(3329), - [anon_sym___reftype] = ACTIONS(3329), - [anon_sym___refvalue] = ACTIONS(3329), - [sym_null_literal] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3331), - [sym_integer_literal] = ACTIONS(3329), - [sym_real_literal] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_verbatim_string_literal] = ACTIONS(3331), - [aux_sym_preproc_if_token1] = ACTIONS(3331), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3331), - [sym_interpolation_verbatim_start] = ACTIONS(3331), - [sym_interpolation_raw_start] = ACTIONS(3331), - [sym_raw_string_start] = ACTIONS(3331), - }, - [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(3410), - [sym__identifier_token] = ACTIONS(3412), - [anon_sym_extern] = ACTIONS(3412), - [anon_sym_alias] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_global] = ACTIONS(3412), - [anon_sym_using] = ACTIONS(3412), - [anon_sym_unsafe] = ACTIONS(3412), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_ref] = ACTIONS(3412), - [anon_sym_struct] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_delegate] = ACTIONS(3412), - [anon_sym_record] = ACTIONS(3412), - [anon_sym_abstract] = ACTIONS(3412), - [anon_sym_async] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_file] = ACTIONS(3412), - [anon_sym_fixed] = ACTIONS(3412), - [anon_sym_internal] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_override] = ACTIONS(3412), - [anon_sym_partial] = ACTIONS(3412), - [anon_sym_private] = ACTIONS(3412), - [anon_sym_protected] = ACTIONS(3412), - [anon_sym_public] = ACTIONS(3412), - [anon_sym_readonly] = ACTIONS(3412), - [anon_sym_required] = ACTIONS(3412), - [anon_sym_sealed] = ACTIONS(3412), - [anon_sym_virtual] = ACTIONS(3412), - [anon_sym_volatile] = ACTIONS(3412), - [anon_sym_where] = ACTIONS(3412), - [anon_sym_notnull] = ACTIONS(3412), - [anon_sym_unmanaged] = ACTIONS(3412), - [anon_sym_checked] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_true] = ACTIONS(3412), - [anon_sym_false] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_CARET] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_this] = ACTIONS(3412), - [anon_sym_scoped] = ACTIONS(3412), - [anon_sym_base] = ACTIONS(3412), - [anon_sym_var] = ACTIONS(3412), - [sym_predefined_type] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_unchecked] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_lock] = ACTIONS(3412), - [anon_sym_yield] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_when] = ACTIONS(3412), - [anon_sym_await] = ACTIONS(3412), - [anon_sym_foreach] = ACTIONS(3412), - [anon_sym_goto] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_DOT_DOT] = ACTIONS(3410), - [anon_sym_from] = ACTIONS(3412), - [anon_sym_into] = ACTIONS(3412), - [anon_sym_join] = ACTIONS(3412), - [anon_sym_on] = ACTIONS(3412), - [anon_sym_equals] = ACTIONS(3412), - [anon_sym_let] = ACTIONS(3412), - [anon_sym_orderby] = ACTIONS(3412), - [anon_sym_ascending] = ACTIONS(3412), - [anon_sym_descending] = ACTIONS(3412), - [anon_sym_group] = ACTIONS(3412), - [anon_sym_by] = ACTIONS(3412), - [anon_sym_select] = ACTIONS(3412), - [anon_sym_stackalloc] = ACTIONS(3412), - [anon_sym_sizeof] = ACTIONS(3412), - [anon_sym_typeof] = ACTIONS(3412), - [anon_sym___makeref] = ACTIONS(3412), - [anon_sym___reftype] = ACTIONS(3412), - [anon_sym___refvalue] = ACTIONS(3412), - [sym_null_literal] = ACTIONS(3412), - [anon_sym_SQUOTE] = ACTIONS(3410), - [sym_integer_literal] = ACTIONS(3412), - [sym_real_literal] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_verbatim_string_literal] = ACTIONS(3410), - [aux_sym_preproc_if_token1] = ACTIONS(3410), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3410), - [sym_interpolation_verbatim_start] = ACTIONS(3410), - [sym_interpolation_raw_start] = ACTIONS(3410), - [sym_raw_string_start] = ACTIONS(3410), - }, - [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(3414), - [sym__identifier_token] = ACTIONS(3416), - [anon_sym_extern] = ACTIONS(3416), - [anon_sym_alias] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_global] = ACTIONS(3416), - [anon_sym_using] = ACTIONS(3416), - [anon_sym_unsafe] = ACTIONS(3416), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_ref] = ACTIONS(3416), - [anon_sym_struct] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_delegate] = ACTIONS(3416), - [anon_sym_record] = ACTIONS(3416), - [anon_sym_abstract] = ACTIONS(3416), - [anon_sym_async] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_file] = ACTIONS(3416), - [anon_sym_fixed] = ACTIONS(3416), - [anon_sym_internal] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_override] = ACTIONS(3416), - [anon_sym_partial] = ACTIONS(3416), - [anon_sym_private] = ACTIONS(3416), - [anon_sym_protected] = ACTIONS(3416), - [anon_sym_public] = ACTIONS(3416), - [anon_sym_readonly] = ACTIONS(3416), - [anon_sym_required] = ACTIONS(3416), - [anon_sym_sealed] = ACTIONS(3416), - [anon_sym_virtual] = ACTIONS(3416), - [anon_sym_volatile] = ACTIONS(3416), - [anon_sym_where] = ACTIONS(3416), - [anon_sym_notnull] = ACTIONS(3416), - [anon_sym_unmanaged] = ACTIONS(3416), - [anon_sym_checked] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_true] = ACTIONS(3416), - [anon_sym_false] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_STAR] = ACTIONS(3414), - [anon_sym_CARET] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - [anon_sym_this] = ACTIONS(3416), - [anon_sym_scoped] = ACTIONS(3416), - [anon_sym_base] = ACTIONS(3416), - [anon_sym_var] = ACTIONS(3416), - [sym_predefined_type] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_unchecked] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_lock] = ACTIONS(3416), - [anon_sym_yield] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_when] = ACTIONS(3416), - [anon_sym_await] = ACTIONS(3416), - [anon_sym_foreach] = ACTIONS(3416), - [anon_sym_goto] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_DOT_DOT] = ACTIONS(3414), - [anon_sym_from] = ACTIONS(3416), - [anon_sym_into] = ACTIONS(3416), - [anon_sym_join] = ACTIONS(3416), - [anon_sym_on] = ACTIONS(3416), - [anon_sym_equals] = ACTIONS(3416), - [anon_sym_let] = ACTIONS(3416), - [anon_sym_orderby] = ACTIONS(3416), - [anon_sym_ascending] = ACTIONS(3416), - [anon_sym_descending] = ACTIONS(3416), - [anon_sym_group] = ACTIONS(3416), - [anon_sym_by] = ACTIONS(3416), - [anon_sym_select] = ACTIONS(3416), - [anon_sym_stackalloc] = ACTIONS(3416), - [anon_sym_sizeof] = ACTIONS(3416), - [anon_sym_typeof] = ACTIONS(3416), - [anon_sym___makeref] = ACTIONS(3416), - [anon_sym___reftype] = ACTIONS(3416), - [anon_sym___refvalue] = ACTIONS(3416), - [sym_null_literal] = ACTIONS(3416), - [anon_sym_SQUOTE] = ACTIONS(3414), - [sym_integer_literal] = ACTIONS(3416), - [sym_real_literal] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [sym_verbatim_string_literal] = ACTIONS(3414), - [aux_sym_preproc_if_token1] = ACTIONS(3414), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3414), - [sym_interpolation_verbatim_start] = ACTIONS(3414), - [sym_interpolation_raw_start] = ACTIONS(3414), - [sym_raw_string_start] = ACTIONS(3414), - }, - [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(3323), - [sym__identifier_token] = ACTIONS(3321), - [anon_sym_extern] = ACTIONS(3321), - [anon_sym_alias] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_global] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_unsafe] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_ref] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_delegate] = ACTIONS(3321), - [anon_sym_record] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_file] = ACTIONS(3321), - [anon_sym_fixed] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_partial] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_sealed] = ACTIONS(3321), - [anon_sym_virtual] = ACTIONS(3321), - [anon_sym_volatile] = ACTIONS(3321), - [anon_sym_where] = ACTIONS(3321), - [anon_sym_notnull] = ACTIONS(3321), - [anon_sym_unmanaged] = ACTIONS(3321), - [anon_sym_checked] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_this] = ACTIONS(3321), - [anon_sym_scoped] = ACTIONS(3321), - [anon_sym_base] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [sym_predefined_type] = ACTIONS(3321), - [anon_sym_break] = ACTIONS(3321), - [anon_sym_unchecked] = ACTIONS(3321), - [anon_sym_continue] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_while] = ACTIONS(3321), - [anon_sym_for] = ACTIONS(3321), - [anon_sym_lock] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_switch] = ACTIONS(3321), - [anon_sym_default] = ACTIONS(3321), - [anon_sym_throw] = ACTIONS(3321), - [anon_sym_try] = ACTIONS(3321), - [anon_sym_when] = ACTIONS(3321), - [anon_sym_await] = ACTIONS(3321), - [anon_sym_foreach] = ACTIONS(3321), - [anon_sym_goto] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3321), - [anon_sym_DOT_DOT] = ACTIONS(3323), - [anon_sym_from] = ACTIONS(3321), - [anon_sym_into] = ACTIONS(3321), - [anon_sym_join] = ACTIONS(3321), - [anon_sym_on] = ACTIONS(3321), - [anon_sym_equals] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_orderby] = ACTIONS(3321), - [anon_sym_ascending] = ACTIONS(3321), - [anon_sym_descending] = ACTIONS(3321), - [anon_sym_group] = ACTIONS(3321), - [anon_sym_by] = ACTIONS(3321), - [anon_sym_select] = ACTIONS(3321), - [anon_sym_stackalloc] = ACTIONS(3321), - [anon_sym_sizeof] = ACTIONS(3321), - [anon_sym_typeof] = ACTIONS(3321), - [anon_sym___makeref] = ACTIONS(3321), - [anon_sym___reftype] = ACTIONS(3321), - [anon_sym___refvalue] = ACTIONS(3321), - [sym_null_literal] = ACTIONS(3321), - [anon_sym_SQUOTE] = ACTIONS(3323), - [sym_integer_literal] = ACTIONS(3321), - [sym_real_literal] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_verbatim_string_literal] = ACTIONS(3323), - [aux_sym_preproc_if_token1] = ACTIONS(3323), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3323), - [sym_interpolation_verbatim_start] = ACTIONS(3323), - [sym_interpolation_raw_start] = ACTIONS(3323), - [sym_raw_string_start] = ACTIONS(3323), - }, - [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(3371), - [sym__identifier_token] = ACTIONS(3369), - [anon_sym_extern] = ACTIONS(3369), - [anon_sym_alias] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_global] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_unsafe] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_ref] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_delegate] = ACTIONS(3369), - [anon_sym_record] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_file] = ACTIONS(3369), - [anon_sym_fixed] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_partial] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_sealed] = ACTIONS(3369), - [anon_sym_virtual] = ACTIONS(3369), - [anon_sym_volatile] = ACTIONS(3369), - [anon_sym_where] = ACTIONS(3369), - [anon_sym_notnull] = ACTIONS(3369), - [anon_sym_unmanaged] = ACTIONS(3369), - [anon_sym_checked] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_this] = ACTIONS(3369), - [anon_sym_scoped] = ACTIONS(3369), - [anon_sym_base] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [sym_predefined_type] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_unchecked] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_lock] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_when] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_foreach] = ACTIONS(3369), - [anon_sym_goto] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_DOT_DOT] = ACTIONS(3371), - [anon_sym_from] = ACTIONS(3369), - [anon_sym_into] = ACTIONS(3369), - [anon_sym_join] = ACTIONS(3369), - [anon_sym_on] = ACTIONS(3369), - [anon_sym_equals] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_orderby] = ACTIONS(3369), - [anon_sym_ascending] = ACTIONS(3369), - [anon_sym_descending] = ACTIONS(3369), - [anon_sym_group] = ACTIONS(3369), - [anon_sym_by] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [anon_sym_stackalloc] = ACTIONS(3369), - [anon_sym_sizeof] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym___makeref] = ACTIONS(3369), - [anon_sym___reftype] = ACTIONS(3369), - [anon_sym___refvalue] = ACTIONS(3369), - [sym_null_literal] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3371), - [sym_integer_literal] = ACTIONS(3369), - [sym_real_literal] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_verbatim_string_literal] = ACTIONS(3371), - [aux_sym_preproc_if_token1] = ACTIONS(3371), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3371), - [sym_interpolation_verbatim_start] = ACTIONS(3371), - [sym_interpolation_raw_start] = ACTIONS(3371), - [sym_raw_string_start] = ACTIONS(3371), - }, - [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(3339), - [sym__identifier_token] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym_alias] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_global] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_unsafe] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_ref] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_delegate] = ACTIONS(3337), - [anon_sym_record] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_file] = ACTIONS(3337), - [anon_sym_fixed] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_partial] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_sealed] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_where] = ACTIONS(3337), - [anon_sym_notnull] = ACTIONS(3337), - [anon_sym_unmanaged] = ACTIONS(3337), - [anon_sym_checked] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_this] = ACTIONS(3337), - [anon_sym_scoped] = ACTIONS(3337), - [anon_sym_base] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [sym_predefined_type] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_unchecked] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_lock] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_when] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_foreach] = ACTIONS(3337), - [anon_sym_goto] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_DOT_DOT] = ACTIONS(3339), - [anon_sym_from] = ACTIONS(3337), - [anon_sym_into] = ACTIONS(3337), - [anon_sym_join] = ACTIONS(3337), - [anon_sym_on] = ACTIONS(3337), - [anon_sym_equals] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_orderby] = ACTIONS(3337), - [anon_sym_ascending] = ACTIONS(3337), - [anon_sym_descending] = ACTIONS(3337), - [anon_sym_group] = ACTIONS(3337), - [anon_sym_by] = ACTIONS(3337), - [anon_sym_select] = ACTIONS(3337), - [anon_sym_stackalloc] = ACTIONS(3337), - [anon_sym_sizeof] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym___makeref] = ACTIONS(3337), - [anon_sym___reftype] = ACTIONS(3337), - [anon_sym___refvalue] = ACTIONS(3337), - [sym_null_literal] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3339), - [sym_integer_literal] = ACTIONS(3337), - [sym_real_literal] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_verbatim_string_literal] = ACTIONS(3339), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3339), - [sym_interpolation_verbatim_start] = ACTIONS(3339), - [sym_interpolation_raw_start] = ACTIONS(3339), - [sym_raw_string_start] = ACTIONS(3339), - }, - [2011] = { - [sym_catch_clause] = STATE(2019), - [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), - [aux_sym_try_statement_repeat1] = STATE(2011), - [sym__identifier_token] = ACTIONS(3053), - [anon_sym_extern] = ACTIONS(3053), - [anon_sym_alias] = ACTIONS(3053), - [anon_sym_SEMI] = ACTIONS(3055), - [anon_sym_global] = ACTIONS(3053), - [anon_sym_using] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_static] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_ref] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_RBRACE] = ACTIONS(3055), - [anon_sym_delegate] = ACTIONS(3053), - [anon_sym_abstract] = ACTIONS(3053), - [anon_sym_async] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_file] = ACTIONS(3053), - [anon_sym_fixed] = ACTIONS(3053), - [anon_sym_internal] = ACTIONS(3053), - [anon_sym_new] = ACTIONS(3053), - [anon_sym_override] = ACTIONS(3053), - [anon_sym_partial] = ACTIONS(3053), - [anon_sym_private] = ACTIONS(3053), - [anon_sym_protected] = ACTIONS(3053), - [anon_sym_public] = ACTIONS(3053), - [anon_sym_readonly] = ACTIONS(3053), - [anon_sym_required] = ACTIONS(3053), - [anon_sym_sealed] = ACTIONS(3053), - [anon_sym_virtual] = ACTIONS(3053), - [anon_sym_volatile] = ACTIONS(3053), - [anon_sym_where] = ACTIONS(3053), - [anon_sym_notnull] = ACTIONS(3053), - [anon_sym_unmanaged] = ACTIONS(3053), - [anon_sym_checked] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3055), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_true] = ACTIONS(3053), - [anon_sym_false] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3055), - [anon_sym_this] = ACTIONS(3053), - [anon_sym_scoped] = ACTIONS(3053), - [anon_sym_base] = ACTIONS(3053), - [anon_sym_var] = ACTIONS(3053), - [sym_predefined_type] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_unchecked] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_do] = ACTIONS(3053), - [anon_sym_while] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_yield] = ACTIONS(3053), - [anon_sym_switch] = ACTIONS(3053), - [anon_sym_case] = ACTIONS(3053), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_throw] = ACTIONS(3053), - [anon_sym_try] = ACTIONS(3053), - [anon_sym_catch] = ACTIONS(3418), - [anon_sym_when] = ACTIONS(3053), - [anon_sym_finally] = ACTIONS(3053), - [anon_sym_await] = ACTIONS(3053), - [anon_sym_foreach] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_else] = ACTIONS(3053), - [anon_sym_DOT_DOT] = ACTIONS(3055), - [anon_sym_from] = ACTIONS(3053), - [anon_sym_into] = ACTIONS(3053), - [anon_sym_join] = ACTIONS(3053), - [anon_sym_on] = ACTIONS(3053), - [anon_sym_equals] = ACTIONS(3053), - [anon_sym_let] = ACTIONS(3053), - [anon_sym_orderby] = ACTIONS(3053), - [anon_sym_ascending] = ACTIONS(3053), - [anon_sym_descending] = ACTIONS(3053), - [anon_sym_group] = ACTIONS(3053), - [anon_sym_by] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_stackalloc] = ACTIONS(3053), - [anon_sym_sizeof] = ACTIONS(3053), - [anon_sym_typeof] = ACTIONS(3053), - [anon_sym___makeref] = ACTIONS(3053), - [anon_sym___reftype] = ACTIONS(3053), - [anon_sym___refvalue] = ACTIONS(3053), - [sym_null_literal] = ACTIONS(3053), - [anon_sym_SQUOTE] = ACTIONS(3055), - [sym_integer_literal] = ACTIONS(3053), - [sym_real_literal] = ACTIONS(3055), - [anon_sym_DQUOTE] = ACTIONS(3055), - [sym_verbatim_string_literal] = ACTIONS(3055), - [aux_sym_preproc_if_token1] = ACTIONS(3055), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3055), - [sym_interpolation_verbatim_start] = ACTIONS(3055), - [sym_interpolation_raw_start] = ACTIONS(3055), - [sym_raw_string_start] = ACTIONS(3055), - }, - [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(3421), [sym__identifier_token] = ACTIONS(3423), [anon_sym_extern] = ACTIONS(3423), [anon_sym_alias] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3421), + [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(3421), - [anon_sym_LPAREN] = ACTIONS(3421), + [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(3421), + [anon_sym_LBRACE] = ACTIONS(3425), [anon_sym_interface] = ACTIONS(3423), [anon_sym_delegate] = ACTIONS(3423), [anon_sym_record] = ACTIONS(3423), @@ -370029,17 +376567,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3423), [anon_sym_unmanaged] = ACTIONS(3423), [anon_sym_checked] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), + [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(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), + [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), @@ -370062,7 +376600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_foreach] = ACTIONS(3423), [anon_sym_goto] = ACTIONS(3423), [anon_sym_if] = ACTIONS(3423), - [anon_sym_DOT_DOT] = ACTIONS(3421), + [anon_sym_DOT_DOT] = ACTIONS(3425), [anon_sym_from] = ACTIONS(3423), [anon_sym_into] = ACTIONS(3423), [anon_sym_join] = ACTIONS(3423), @@ -370082,12 +376620,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___reftype] = ACTIONS(3423), [anon_sym___refvalue] = ACTIONS(3423), [sym_null_literal] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3425), [sym_integer_literal] = ACTIONS(3423), - [sym_real_literal] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [sym_verbatim_string_literal] = ACTIONS(3421), - [aux_sym_preproc_if_token1] = ACTIONS(3421), + [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), @@ -370098,10 +376639,1029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3421), - [sym_interpolation_verbatim_start] = ACTIONS(3421), - [sym_interpolation_raw_start] = ACTIONS(3421), - [sym_raw_string_start] = ACTIONS(3421), + [sym_interpolation_regular_start] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3433), + [sym_interpolation_verbatim_start] = ACTIONS(3433), + [sym_interpolation_raw_start] = ACTIONS(3433), + [sym_raw_string_start] = ACTIONS(3433), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), }, [2013] = { [sym_preproc_region] = STATE(2013), @@ -370113,121 +377673,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2013), [sym_preproc_define] = STATE(2013), [sym_preproc_undef] = STATE(2013), - [ts_builtin_sym_end] = ACTIONS(3363), - [sym__identifier_token] = ACTIONS(3361), - [anon_sym_extern] = ACTIONS(3361), - [anon_sym_alias] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_global] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_unsafe] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_ref] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_delegate] = ACTIONS(3361), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_abstract] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_file] = ACTIONS(3361), - [anon_sym_fixed] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_partial] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_protected] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_sealed] = ACTIONS(3361), - [anon_sym_virtual] = ACTIONS(3361), - [anon_sym_volatile] = ACTIONS(3361), - [anon_sym_where] = ACTIONS(3361), - [anon_sym_notnull] = ACTIONS(3361), - [anon_sym_unmanaged] = ACTIONS(3361), - [anon_sym_checked] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_this] = ACTIONS(3361), - [anon_sym_scoped] = ACTIONS(3361), - [anon_sym_base] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [sym_predefined_type] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_unchecked] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_lock] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_when] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_foreach] = ACTIONS(3361), - [anon_sym_goto] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_DOT_DOT] = ACTIONS(3363), - [anon_sym_from] = ACTIONS(3361), - [anon_sym_into] = ACTIONS(3361), - [anon_sym_join] = ACTIONS(3361), - [anon_sym_on] = ACTIONS(3361), - [anon_sym_equals] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_orderby] = ACTIONS(3361), - [anon_sym_ascending] = ACTIONS(3361), - [anon_sym_descending] = ACTIONS(3361), - [anon_sym_group] = ACTIONS(3361), - [anon_sym_by] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [anon_sym_stackalloc] = ACTIONS(3361), - [anon_sym_sizeof] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym___makeref] = ACTIONS(3361), - [anon_sym___reftype] = ACTIONS(3361), - [anon_sym___refvalue] = ACTIONS(3361), - [sym_null_literal] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3363), - [sym_integer_literal] = ACTIONS(3361), - [sym_real_literal] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_verbatim_string_literal] = ACTIONS(3363), - [aux_sym_preproc_if_token1] = ACTIONS(3363), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3363), - [sym_interpolation_verbatim_start] = ACTIONS(3363), - [sym_interpolation_raw_start] = ACTIONS(3363), - [sym_raw_string_start] = ACTIONS(3363), + [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), }, [2014] = { [sym_preproc_region] = STATE(2014), @@ -370239,123 +377800,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2014), [sym_preproc_define] = STATE(2014), [sym_preproc_undef] = STATE(2014), - [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_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), + [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), }, [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), @@ -370365,123 +377929,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2015), [sym_preproc_define] = STATE(2015), [sym_preproc_undef] = STATE(2015), - [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_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), + [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), }, [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), @@ -370491,123 +378056,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2016), [sym_preproc_define] = STATE(2016), [sym_preproc_undef] = STATE(2016), - [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_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), + [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), }, [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), @@ -370617,121 +378199,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2017), [sym_preproc_define] = STATE(2017), [sym_preproc_undef] = STATE(2017), - [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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2018] = { [sym_preproc_region] = STATE(2018), @@ -370743,121 +378308,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2018), [sym_preproc_define] = STATE(2018), [sym_preproc_undef] = STATE(2018), - [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_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), + [ts_builtin_sym_end] = ACTIONS(3195), + [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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2019] = { [sym_preproc_region] = STATE(2019), @@ -370869,119 +378435,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2019), [sym_preproc_define] = STATE(2019), [sym_preproc_undef] = STATE(2019), - [sym__identifier_token] = ACTIONS(3087), - [anon_sym_extern] = ACTIONS(3087), - [anon_sym_alias] = ACTIONS(3087), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_global] = ACTIONS(3087), - [anon_sym_using] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_static] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_ref] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_delegate] = ACTIONS(3087), - [anon_sym_abstract] = ACTIONS(3087), - [anon_sym_async] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_file] = ACTIONS(3087), - [anon_sym_fixed] = ACTIONS(3087), - [anon_sym_internal] = ACTIONS(3087), - [anon_sym_new] = ACTIONS(3087), - [anon_sym_override] = ACTIONS(3087), - [anon_sym_partial] = ACTIONS(3087), - [anon_sym_private] = ACTIONS(3087), - [anon_sym_protected] = ACTIONS(3087), - [anon_sym_public] = ACTIONS(3087), - [anon_sym_readonly] = ACTIONS(3087), - [anon_sym_required] = ACTIONS(3087), - [anon_sym_sealed] = ACTIONS(3087), - [anon_sym_virtual] = ACTIONS(3087), - [anon_sym_volatile] = ACTIONS(3087), - [anon_sym_where] = ACTIONS(3087), - [anon_sym_notnull] = ACTIONS(3087), - [anon_sym_unmanaged] = ACTIONS(3087), - [anon_sym_checked] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_true] = ACTIONS(3087), - [anon_sym_false] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_this] = ACTIONS(3087), - [anon_sym_scoped] = ACTIONS(3087), - [anon_sym_base] = ACTIONS(3087), - [anon_sym_var] = ACTIONS(3087), - [sym_predefined_type] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_unchecked] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_do] = ACTIONS(3087), - [anon_sym_while] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_yield] = ACTIONS(3087), - [anon_sym_switch] = ACTIONS(3087), - [anon_sym_case] = ACTIONS(3087), - [anon_sym_default] = ACTIONS(3087), - [anon_sym_throw] = ACTIONS(3087), - [anon_sym_try] = ACTIONS(3087), - [anon_sym_catch] = ACTIONS(3087), - [anon_sym_when] = ACTIONS(3087), - [anon_sym_finally] = ACTIONS(3087), - [anon_sym_await] = ACTIONS(3087), - [anon_sym_foreach] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3087), - [anon_sym_DOT_DOT] = ACTIONS(3089), - [anon_sym_from] = ACTIONS(3087), - [anon_sym_into] = ACTIONS(3087), - [anon_sym_join] = ACTIONS(3087), - [anon_sym_on] = ACTIONS(3087), - [anon_sym_equals] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3087), - [anon_sym_orderby] = ACTIONS(3087), - [anon_sym_ascending] = ACTIONS(3087), - [anon_sym_descending] = ACTIONS(3087), - [anon_sym_group] = ACTIONS(3087), - [anon_sym_by] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_stackalloc] = ACTIONS(3087), - [anon_sym_sizeof] = ACTIONS(3087), - [anon_sym_typeof] = ACTIONS(3087), - [anon_sym___makeref] = ACTIONS(3087), - [anon_sym___reftype] = ACTIONS(3087), - [anon_sym___refvalue] = ACTIONS(3087), - [sym_null_literal] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(3087), - [sym_real_literal] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(3089), - [sym_verbatim_string_literal] = ACTIONS(3089), - [aux_sym_preproc_if_token1] = ACTIONS(3089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3089), - [sym_interpolation_verbatim_start] = ACTIONS(3089), - [sym_interpolation_raw_start] = ACTIONS(3089), - [sym_raw_string_start] = ACTIONS(3089), + [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), @@ -370993,119 +378562,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2020), [sym_preproc_define] = STATE(2020), [sym_preproc_undef] = STATE(2020), - [sym__identifier_token] = ACTIONS(3066), - [anon_sym_extern] = ACTIONS(3066), - [anon_sym_alias] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_global] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_unsafe] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_ref] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_delegate] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_file] = ACTIONS(3066), - [anon_sym_fixed] = ACTIONS(3066), - [anon_sym_internal] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_partial] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_required] = ACTIONS(3066), - [anon_sym_sealed] = ACTIONS(3066), - [anon_sym_virtual] = ACTIONS(3066), - [anon_sym_volatile] = ACTIONS(3066), - [anon_sym_where] = ACTIONS(3066), - [anon_sym_notnull] = ACTIONS(3066), - [anon_sym_unmanaged] = ACTIONS(3066), - [anon_sym_checked] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [anon_sym_true] = ACTIONS(3066), - [anon_sym_false] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_STAR] = ACTIONS(3068), - [anon_sym_CARET] = ACTIONS(3068), - [anon_sym_AMP] = ACTIONS(3068), - [anon_sym_this] = ACTIONS(3066), - [anon_sym_scoped] = ACTIONS(3066), - [anon_sym_base] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [sym_predefined_type] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_unchecked] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_lock] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_catch] = ACTIONS(3066), - [anon_sym_when] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_foreach] = ACTIONS(3066), - [anon_sym_goto] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_DOT_DOT] = ACTIONS(3068), - [anon_sym_from] = ACTIONS(3066), - [anon_sym_into] = ACTIONS(3066), - [anon_sym_join] = ACTIONS(3066), - [anon_sym_on] = ACTIONS(3066), - [anon_sym_equals] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_orderby] = ACTIONS(3066), - [anon_sym_ascending] = ACTIONS(3066), - [anon_sym_descending] = ACTIONS(3066), - [anon_sym_group] = ACTIONS(3066), - [anon_sym_by] = ACTIONS(3066), - [anon_sym_select] = ACTIONS(3066), - [anon_sym_stackalloc] = ACTIONS(3066), - [anon_sym_sizeof] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym___makeref] = ACTIONS(3066), - [anon_sym___reftype] = ACTIONS(3066), - [anon_sym___refvalue] = ACTIONS(3066), - [sym_null_literal] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3068), - [sym_integer_literal] = ACTIONS(3066), - [sym_real_literal] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [sym_verbatim_string_literal] = ACTIONS(3068), - [aux_sym_preproc_if_token1] = ACTIONS(3068), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3068), - [sym_interpolation_verbatim_start] = ACTIONS(3068), - [sym_interpolation_raw_start] = ACTIONS(3068), - [sym_raw_string_start] = ACTIONS(3068), + [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), }, [2021] = { [sym_preproc_region] = STATE(2021), @@ -371117,119 +378689,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2021), [sym_preproc_define] = STATE(2021), [sym_preproc_undef] = STATE(2021), - [sym__identifier_token] = ACTIONS(3081), - [anon_sym_extern] = ACTIONS(3081), - [anon_sym_alias] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_global] = ACTIONS(3081), - [anon_sym_using] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_ref] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_delegate] = ACTIONS(3081), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_file] = ACTIONS(3081), - [anon_sym_fixed] = ACTIONS(3081), - [anon_sym_internal] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_partial] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_required] = ACTIONS(3081), - [anon_sym_sealed] = ACTIONS(3081), - [anon_sym_virtual] = ACTIONS(3081), - [anon_sym_volatile] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3081), - [anon_sym_notnull] = ACTIONS(3081), - [anon_sym_unmanaged] = ACTIONS(3081), - [anon_sym_checked] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3083), - [anon_sym_this] = ACTIONS(3081), - [anon_sym_scoped] = ACTIONS(3081), - [anon_sym_base] = ACTIONS(3081), - [anon_sym_var] = ACTIONS(3081), - [sym_predefined_type] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_unchecked] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_do] = ACTIONS(3081), - [anon_sym_while] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3081), - [anon_sym_switch] = ACTIONS(3081), - [anon_sym_case] = ACTIONS(3081), - [anon_sym_default] = ACTIONS(3081), - [anon_sym_throw] = ACTIONS(3081), - [anon_sym_try] = ACTIONS(3081), - [anon_sym_catch] = ACTIONS(3081), - [anon_sym_when] = ACTIONS(3081), - [anon_sym_finally] = ACTIONS(3081), - [anon_sym_await] = ACTIONS(3081), - [anon_sym_foreach] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3081), - [anon_sym_into] = ACTIONS(3081), - [anon_sym_join] = ACTIONS(3081), - [anon_sym_on] = ACTIONS(3081), - [anon_sym_equals] = ACTIONS(3081), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_orderby] = ACTIONS(3081), - [anon_sym_ascending] = ACTIONS(3081), - [anon_sym_descending] = ACTIONS(3081), - [anon_sym_group] = ACTIONS(3081), - [anon_sym_by] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_stackalloc] = ACTIONS(3081), - [anon_sym_sizeof] = ACTIONS(3081), - [anon_sym_typeof] = ACTIONS(3081), - [anon_sym___makeref] = ACTIONS(3081), - [anon_sym___reftype] = ACTIONS(3081), - [anon_sym___refvalue] = ACTIONS(3081), - [sym_null_literal] = ACTIONS(3081), - [anon_sym_SQUOTE] = ACTIONS(3083), - [sym_integer_literal] = ACTIONS(3081), - [sym_real_literal] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_verbatim_string_literal] = ACTIONS(3083), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3083), - [sym_interpolation_verbatim_start] = ACTIONS(3083), - [sym_interpolation_raw_start] = ACTIONS(3083), - [sym_raw_string_start] = ACTIONS(3083), + [ts_builtin_sym_end] = ACTIONS(3325), + [sym__identifier_token] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_alias] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_global] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_unsafe] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_ref] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_delegate] = ACTIONS(3323), + [anon_sym_record] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_file] = ACTIONS(3323), + [anon_sym_fixed] = ACTIONS(3323), + [anon_sym_internal] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_partial] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_required] = ACTIONS(3323), + [anon_sym_sealed] = ACTIONS(3323), + [anon_sym_virtual] = ACTIONS(3323), + [anon_sym_volatile] = ACTIONS(3323), + [anon_sym_where] = ACTIONS(3323), + [anon_sym_notnull] = ACTIONS(3323), + [anon_sym_unmanaged] = ACTIONS(3323), + [anon_sym_checked] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_scoped] = ACTIONS(3323), + [anon_sym_base] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [sym_predefined_type] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_unchecked] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_lock] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_when] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_foreach] = ACTIONS(3323), + [anon_sym_goto] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_from] = ACTIONS(3323), + [anon_sym_into] = ACTIONS(3323), + [anon_sym_join] = ACTIONS(3323), + [anon_sym_on] = ACTIONS(3323), + [anon_sym_equals] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_orderby] = ACTIONS(3323), + [anon_sym_ascending] = ACTIONS(3323), + [anon_sym_descending] = ACTIONS(3323), + [anon_sym_group] = ACTIONS(3323), + [anon_sym_by] = ACTIONS(3323), + [anon_sym_select] = ACTIONS(3323), + [anon_sym_stackalloc] = ACTIONS(3323), + [anon_sym_sizeof] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym___makeref] = ACTIONS(3323), + [anon_sym___reftype] = ACTIONS(3323), + [anon_sym___refvalue] = ACTIONS(3323), + [sym_null_literal] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3325), + [sym_integer_literal] = ACTIONS(3323), + [sym_real_literal] = ACTIONS(3325), + [anon_sym_DQUOTE] = ACTIONS(3325), + [sym_verbatim_string_literal] = ACTIONS(3325), + [aux_sym_preproc_if_token1] = ACTIONS(3325), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, [2022] = { [sym_preproc_region] = STATE(2022), @@ -371241,119 +378816,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2022), [sym_preproc_define] = STATE(2022), [sym_preproc_undef] = STATE(2022), - [sym__identifier_token] = ACTIONS(3070), - [anon_sym_extern] = ACTIONS(3070), - [anon_sym_alias] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_global] = ACTIONS(3070), - [anon_sym_using] = ACTIONS(3070), - [anon_sym_unsafe] = ACTIONS(3070), - [anon_sym_static] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3070), - [anon_sym_ref] = ACTIONS(3070), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_delegate] = ACTIONS(3070), - [anon_sym_abstract] = ACTIONS(3070), - [anon_sym_async] = ACTIONS(3070), - [anon_sym_const] = ACTIONS(3070), - [anon_sym_file] = ACTIONS(3070), - [anon_sym_fixed] = ACTIONS(3070), - [anon_sym_internal] = ACTIONS(3070), - [anon_sym_new] = ACTIONS(3070), - [anon_sym_override] = ACTIONS(3070), - [anon_sym_partial] = ACTIONS(3070), - [anon_sym_private] = ACTIONS(3070), - [anon_sym_protected] = ACTIONS(3070), - [anon_sym_public] = ACTIONS(3070), - [anon_sym_readonly] = ACTIONS(3070), - [anon_sym_required] = ACTIONS(3070), - [anon_sym_sealed] = ACTIONS(3070), - [anon_sym_virtual] = ACTIONS(3070), - [anon_sym_volatile] = ACTIONS(3070), - [anon_sym_where] = ACTIONS(3070), - [anon_sym_notnull] = ACTIONS(3070), - [anon_sym_unmanaged] = ACTIONS(3070), - [anon_sym_checked] = ACTIONS(3070), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [anon_sym_true] = ACTIONS(3070), - [anon_sym_false] = ACTIONS(3070), - [anon_sym_PLUS] = ACTIONS(3070), - [anon_sym_DASH] = ACTIONS(3070), - [anon_sym_STAR] = ACTIONS(3072), - [anon_sym_CARET] = ACTIONS(3072), - [anon_sym_AMP] = ACTIONS(3072), - [anon_sym_this] = ACTIONS(3070), - [anon_sym_scoped] = ACTIONS(3070), - [anon_sym_base] = ACTIONS(3070), - [anon_sym_var] = ACTIONS(3070), - [sym_predefined_type] = ACTIONS(3070), - [anon_sym_break] = ACTIONS(3070), - [anon_sym_unchecked] = ACTIONS(3070), - [anon_sym_continue] = ACTIONS(3070), - [anon_sym_do] = ACTIONS(3070), - [anon_sym_while] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(3070), - [anon_sym_lock] = ACTIONS(3070), - [anon_sym_yield] = ACTIONS(3070), - [anon_sym_switch] = ACTIONS(3070), - [anon_sym_case] = ACTIONS(3070), - [anon_sym_default] = ACTIONS(3070), - [anon_sym_throw] = ACTIONS(3070), - [anon_sym_try] = ACTIONS(3070), - [anon_sym_catch] = ACTIONS(3070), - [anon_sym_when] = ACTIONS(3070), - [anon_sym_finally] = ACTIONS(3070), - [anon_sym_await] = ACTIONS(3070), - [anon_sym_foreach] = ACTIONS(3070), - [anon_sym_goto] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3070), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_DOT_DOT] = ACTIONS(3072), - [anon_sym_from] = ACTIONS(3070), - [anon_sym_into] = ACTIONS(3070), - [anon_sym_join] = ACTIONS(3070), - [anon_sym_on] = ACTIONS(3070), - [anon_sym_equals] = ACTIONS(3070), - [anon_sym_let] = ACTIONS(3070), - [anon_sym_orderby] = ACTIONS(3070), - [anon_sym_ascending] = ACTIONS(3070), - [anon_sym_descending] = ACTIONS(3070), - [anon_sym_group] = ACTIONS(3070), - [anon_sym_by] = ACTIONS(3070), - [anon_sym_select] = ACTIONS(3070), - [anon_sym_stackalloc] = ACTIONS(3070), - [anon_sym_sizeof] = ACTIONS(3070), - [anon_sym_typeof] = ACTIONS(3070), - [anon_sym___makeref] = ACTIONS(3070), - [anon_sym___reftype] = ACTIONS(3070), - [anon_sym___refvalue] = ACTIONS(3070), - [sym_null_literal] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3072), - [sym_integer_literal] = ACTIONS(3070), - [sym_real_literal] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_verbatim_string_literal] = ACTIONS(3072), - [aux_sym_preproc_if_token1] = ACTIONS(3072), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3072), - [sym_interpolation_verbatim_start] = ACTIONS(3072), - [sym_interpolation_raw_start] = ACTIONS(3072), - [sym_raw_string_start] = ACTIONS(3072), + [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), @@ -371365,119 +378943,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2023), [sym_preproc_define] = STATE(2023), [sym_preproc_undef] = STATE(2023), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_checked] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_true] = ACTIONS(2909), - [anon_sym_false] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_this] = ACTIONS(2909), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_base] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_unchecked] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_do] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2909), - [anon_sym_case] = ACTIONS(2909), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_throw] = ACTIONS(2909), - [anon_sym_try] = ACTIONS(2909), - [anon_sym_catch] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_finally] = ACTIONS(2909), - [anon_sym_await] = ACTIONS(2909), - [anon_sym_foreach] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2909), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_stackalloc] = ACTIONS(2909), - [anon_sym_sizeof] = ACTIONS(2909), - [anon_sym_typeof] = ACTIONS(2909), - [anon_sym___makeref] = ACTIONS(2909), - [anon_sym___reftype] = ACTIONS(2909), - [anon_sym___refvalue] = ACTIONS(2909), - [sym_null_literal] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2911), - [sym_integer_literal] = ACTIONS(2909), - [sym_real_literal] = ACTIONS(2911), - [anon_sym_DQUOTE] = ACTIONS(2911), - [sym_verbatim_string_literal] = ACTIONS(2911), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(2911), - [sym_interpolation_verbatim_start] = ACTIONS(2911), - [sym_interpolation_raw_start] = ACTIONS(2911), - [sym_raw_string_start] = ACTIONS(2911), + [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), }, [2024] = { [sym_preproc_region] = STATE(2024), @@ -371489,118 +379070,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2024), [sym_preproc_define] = STATE(2024), [sym_preproc_undef] = STATE(2024), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2025] = { [sym_preproc_region] = STATE(2025), @@ -371612,117 +379197,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2025), [sym_preproc_define] = STATE(2025), [sym_preproc_undef] = STATE(2025), - [sym__identifier_token] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym_alias] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_global] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_unsafe] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_ref] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_delegate] = ACTIONS(3171), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_async] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_file] = ACTIONS(3171), - [anon_sym_fixed] = ACTIONS(3171), - [anon_sym_internal] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_override] = ACTIONS(3171), - [anon_sym_partial] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_readonly] = ACTIONS(3171), - [anon_sym_required] = ACTIONS(3171), - [anon_sym_sealed] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_where] = ACTIONS(3171), - [anon_sym_notnull] = ACTIONS(3171), - [anon_sym_unmanaged] = ACTIONS(3171), - [anon_sym_checked] = ACTIONS(3171), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3171), - [anon_sym_false] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_this] = ACTIONS(3171), - [anon_sym_scoped] = ACTIONS(3171), - [anon_sym_base] = ACTIONS(3171), - [anon_sym_var] = ACTIONS(3171), - [sym_predefined_type] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_unchecked] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_lock] = ACTIONS(3171), - [anon_sym_yield] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_when] = ACTIONS(3171), - [anon_sym_await] = ACTIONS(3171), - [anon_sym_foreach] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_DOT_DOT] = ACTIONS(3173), - [anon_sym_from] = ACTIONS(3171), - [anon_sym_into] = ACTIONS(3171), - [anon_sym_join] = ACTIONS(3171), - [anon_sym_on] = ACTIONS(3171), - [anon_sym_equals] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3171), - [anon_sym_orderby] = ACTIONS(3171), - [anon_sym_ascending] = ACTIONS(3171), - [anon_sym_descending] = ACTIONS(3171), - [anon_sym_group] = ACTIONS(3171), - [anon_sym_by] = ACTIONS(3171), - [anon_sym_select] = ACTIONS(3171), - [anon_sym_stackalloc] = ACTIONS(3171), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym_typeof] = ACTIONS(3171), - [anon_sym___makeref] = ACTIONS(3171), - [anon_sym___reftype] = ACTIONS(3171), - [anon_sym___refvalue] = ACTIONS(3171), - [sym_null_literal] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3173), - [sym_integer_literal] = ACTIONS(3171), - [sym_real_literal] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_verbatim_string_literal] = ACTIONS(3173), - [aux_sym_preproc_if_token1] = ACTIONS(3173), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3173), - [sym_interpolation_verbatim_start] = ACTIONS(3173), - [sym_interpolation_raw_start] = ACTIONS(3173), - [sym_raw_string_start] = ACTIONS(3173), + [ts_builtin_sym_end] = ACTIONS(3211), + [sym__identifier_token] = ACTIONS(3209), + [anon_sym_extern] = ACTIONS(3209), + [anon_sym_alias] = ACTIONS(3209), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3209), + [anon_sym_using] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_static] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3209), + [anon_sym_namespace] = ACTIONS(3209), + [anon_sym_class] = ACTIONS(3209), + [anon_sym_ref] = ACTIONS(3209), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3209), + [anon_sym_delegate] = ACTIONS(3209), + [anon_sym_record] = ACTIONS(3209), + [anon_sym_abstract] = ACTIONS(3209), + [anon_sym_async] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_file] = ACTIONS(3209), + [anon_sym_fixed] = ACTIONS(3209), + [anon_sym_internal] = ACTIONS(3209), + [anon_sym_new] = ACTIONS(3209), + [anon_sym_override] = ACTIONS(3209), + [anon_sym_partial] = ACTIONS(3209), + [anon_sym_private] = ACTIONS(3209), + [anon_sym_protected] = ACTIONS(3209), + [anon_sym_public] = ACTIONS(3209), + [anon_sym_readonly] = ACTIONS(3209), + [anon_sym_required] = ACTIONS(3209), + [anon_sym_sealed] = ACTIONS(3209), + [anon_sym_virtual] = ACTIONS(3209), + [anon_sym_volatile] = ACTIONS(3209), + [anon_sym_where] = ACTIONS(3209), + [anon_sym_notnull] = ACTIONS(3209), + [anon_sym_unmanaged] = ACTIONS(3209), + [anon_sym_checked] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_true] = ACTIONS(3209), + [anon_sym_false] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_this] = ACTIONS(3209), + [anon_sym_scoped] = ACTIONS(3209), + [anon_sym_base] = ACTIONS(3209), + [anon_sym_var] = ACTIONS(3209), + [sym_predefined_type] = ACTIONS(3209), + [anon_sym_break] = ACTIONS(3209), + [anon_sym_unchecked] = ACTIONS(3209), + [anon_sym_continue] = ACTIONS(3209), + [anon_sym_do] = ACTIONS(3209), + [anon_sym_while] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_yield] = ACTIONS(3209), + [anon_sym_switch] = ACTIONS(3209), + [anon_sym_default] = ACTIONS(3209), + [anon_sym_throw] = ACTIONS(3209), + [anon_sym_try] = ACTIONS(3209), + [anon_sym_when] = ACTIONS(3209), + [anon_sym_await] = ACTIONS(3209), + [anon_sym_foreach] = ACTIONS(3209), + [anon_sym_goto] = ACTIONS(3209), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_else] = ACTIONS(3209), + [anon_sym_DOT_DOT] = ACTIONS(3211), + [anon_sym_from] = ACTIONS(3209), + [anon_sym_into] = ACTIONS(3209), + [anon_sym_join] = ACTIONS(3209), + [anon_sym_on] = ACTIONS(3209), + [anon_sym_equals] = ACTIONS(3209), + [anon_sym_let] = ACTIONS(3209), + [anon_sym_orderby] = ACTIONS(3209), + [anon_sym_ascending] = ACTIONS(3209), + [anon_sym_descending] = ACTIONS(3209), + [anon_sym_group] = ACTIONS(3209), + [anon_sym_by] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_stackalloc] = ACTIONS(3209), + [anon_sym_sizeof] = ACTIONS(3209), + [anon_sym_typeof] = ACTIONS(3209), + [anon_sym___makeref] = ACTIONS(3209), + [anon_sym___reftype] = ACTIONS(3209), + [anon_sym___refvalue] = ACTIONS(3209), + [sym_null_literal] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3211), + [sym_integer_literal] = ACTIONS(3209), + [sym_real_literal] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [sym_verbatim_string_literal] = ACTIONS(3211), + [aux_sym_preproc_if_token1] = ACTIONS(3211), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, [2026] = { [sym_preproc_region] = STATE(2026), @@ -371734,117 +379324,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2026), [sym_preproc_define] = STATE(2026), [sym_preproc_undef] = STATE(2026), - [sym__identifier_token] = ACTIONS(3131), - [anon_sym_extern] = ACTIONS(3131), - [anon_sym_alias] = ACTIONS(3131), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_global] = ACTIONS(3131), - [anon_sym_using] = ACTIONS(3131), - [anon_sym_unsafe] = ACTIONS(3131), - [anon_sym_static] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3131), - [anon_sym_ref] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_delegate] = ACTIONS(3131), - [anon_sym_abstract] = ACTIONS(3131), - [anon_sym_async] = ACTIONS(3131), - [anon_sym_const] = ACTIONS(3131), - [anon_sym_file] = ACTIONS(3131), - [anon_sym_fixed] = ACTIONS(3131), - [anon_sym_internal] = ACTIONS(3131), - [anon_sym_new] = ACTIONS(3131), - [anon_sym_override] = ACTIONS(3131), - [anon_sym_partial] = ACTIONS(3131), - [anon_sym_private] = ACTIONS(3131), - [anon_sym_protected] = ACTIONS(3131), - [anon_sym_public] = ACTIONS(3131), - [anon_sym_readonly] = ACTIONS(3131), - [anon_sym_required] = ACTIONS(3131), - [anon_sym_sealed] = ACTIONS(3131), - [anon_sym_virtual] = ACTIONS(3131), - [anon_sym_volatile] = ACTIONS(3131), - [anon_sym_where] = ACTIONS(3131), - [anon_sym_notnull] = ACTIONS(3131), - [anon_sym_unmanaged] = ACTIONS(3131), - [anon_sym_checked] = ACTIONS(3131), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3131), - [anon_sym_false] = ACTIONS(3131), - [anon_sym_PLUS] = ACTIONS(3131), - [anon_sym_DASH] = ACTIONS(3131), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_this] = ACTIONS(3131), - [anon_sym_scoped] = ACTIONS(3131), - [anon_sym_base] = ACTIONS(3131), - [anon_sym_var] = ACTIONS(3131), - [sym_predefined_type] = ACTIONS(3131), - [anon_sym_break] = ACTIONS(3131), - [anon_sym_unchecked] = ACTIONS(3131), - [anon_sym_continue] = ACTIONS(3131), - [anon_sym_do] = ACTIONS(3131), - [anon_sym_while] = ACTIONS(3131), - [anon_sym_for] = ACTIONS(3131), - [anon_sym_lock] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3131), - [anon_sym_switch] = ACTIONS(3131), - [anon_sym_case] = ACTIONS(3131), - [anon_sym_default] = ACTIONS(3131), - [anon_sym_throw] = ACTIONS(3131), - [anon_sym_try] = ACTIONS(3131), - [anon_sym_when] = ACTIONS(3131), - [anon_sym_await] = ACTIONS(3131), - [anon_sym_foreach] = ACTIONS(3131), - [anon_sym_goto] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3131), - [anon_sym_else] = ACTIONS(3131), - [anon_sym_DOT_DOT] = ACTIONS(3133), - [anon_sym_from] = ACTIONS(3131), - [anon_sym_into] = ACTIONS(3131), - [anon_sym_join] = ACTIONS(3131), - [anon_sym_on] = ACTIONS(3131), - [anon_sym_equals] = ACTIONS(3131), - [anon_sym_let] = ACTIONS(3131), - [anon_sym_orderby] = ACTIONS(3131), - [anon_sym_ascending] = ACTIONS(3131), - [anon_sym_descending] = ACTIONS(3131), - [anon_sym_group] = ACTIONS(3131), - [anon_sym_by] = ACTIONS(3131), - [anon_sym_select] = ACTIONS(3131), - [anon_sym_stackalloc] = ACTIONS(3131), - [anon_sym_sizeof] = ACTIONS(3131), - [anon_sym_typeof] = ACTIONS(3131), - [anon_sym___makeref] = ACTIONS(3131), - [anon_sym___reftype] = ACTIONS(3131), - [anon_sym___refvalue] = ACTIONS(3131), - [sym_null_literal] = ACTIONS(3131), - [anon_sym_SQUOTE] = ACTIONS(3133), - [sym_integer_literal] = ACTIONS(3131), - [sym_real_literal] = ACTIONS(3133), - [anon_sym_DQUOTE] = ACTIONS(3133), - [sym_verbatim_string_literal] = ACTIONS(3133), - [aux_sym_preproc_if_token1] = ACTIONS(3133), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3133), - [sym_interpolation_verbatim_start] = ACTIONS(3133), - [sym_interpolation_raw_start] = ACTIONS(3133), - [sym_raw_string_start] = ACTIONS(3133), + [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), }, [2027] = { [sym_preproc_region] = STATE(2027), @@ -371856,117 +379451,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2027), [sym_preproc_define] = STATE(2027), [sym_preproc_undef] = STATE(2027), - [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), + [ts_builtin_sym_end] = ACTIONS(3183), + [sym__identifier_token] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_alias] = ACTIONS(3181), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_global] = ACTIONS(3181), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_namespace] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_ref] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_delegate] = ACTIONS(3181), + [anon_sym_record] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_async] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_file] = ACTIONS(3181), + [anon_sym_fixed] = ACTIONS(3181), + [anon_sym_internal] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_override] = ACTIONS(3181), + [anon_sym_partial] = ACTIONS(3181), + [anon_sym_private] = ACTIONS(3181), + [anon_sym_protected] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_readonly] = ACTIONS(3181), + [anon_sym_required] = ACTIONS(3181), + [anon_sym_sealed] = ACTIONS(3181), + [anon_sym_virtual] = ACTIONS(3181), + [anon_sym_volatile] = ACTIONS(3181), + [anon_sym_where] = ACTIONS(3181), + [anon_sym_notnull] = ACTIONS(3181), + [anon_sym_unmanaged] = ACTIONS(3181), + [anon_sym_checked] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3183), + [anon_sym_this] = ACTIONS(3181), + [anon_sym_scoped] = ACTIONS(3181), + [anon_sym_base] = ACTIONS(3181), + [anon_sym_var] = ACTIONS(3181), + [sym_predefined_type] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_unchecked] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3181), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_when] = ACTIONS(3181), + [anon_sym_await] = ACTIONS(3181), + [anon_sym_foreach] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_DOT_DOT] = ACTIONS(3183), + [anon_sym_from] = ACTIONS(3181), + [anon_sym_into] = ACTIONS(3181), + [anon_sym_join] = ACTIONS(3181), + [anon_sym_on] = ACTIONS(3181), + [anon_sym_equals] = ACTIONS(3181), + [anon_sym_let] = ACTIONS(3181), + [anon_sym_orderby] = ACTIONS(3181), + [anon_sym_ascending] = ACTIONS(3181), + [anon_sym_descending] = ACTIONS(3181), + [anon_sym_group] = ACTIONS(3181), + [anon_sym_by] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_stackalloc] = ACTIONS(3181), + [anon_sym_sizeof] = ACTIONS(3181), + [anon_sym_typeof] = ACTIONS(3181), + [anon_sym___makeref] = ACTIONS(3181), + [anon_sym___reftype] = ACTIONS(3181), + [anon_sym___refvalue] = ACTIONS(3181), + [sym_null_literal] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3183), + [sym_integer_literal] = ACTIONS(3181), + [sym_real_literal] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [sym_verbatim_string_literal] = ACTIONS(3183), + [aux_sym_preproc_if_token1] = ACTIONS(3183), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, [2028] = { [sym_preproc_region] = STATE(2028), @@ -371978,117 +379578,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2028), [sym_preproc_define] = STATE(2028), [sym_preproc_undef] = STATE(2028), - [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), + [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), @@ -372100,117 +379705,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2029), [sym_preproc_define] = STATE(2029), [sym_preproc_undef] = STATE(2029), - [sym__identifier_token] = ACTIONS(3187), - [anon_sym_extern] = ACTIONS(3187), - [anon_sym_alias] = ACTIONS(3187), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_global] = ACTIONS(3187), - [anon_sym_using] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_static] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_ref] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_delegate] = ACTIONS(3187), - [anon_sym_abstract] = ACTIONS(3187), - [anon_sym_async] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_file] = ACTIONS(3187), - [anon_sym_fixed] = ACTIONS(3187), - [anon_sym_internal] = ACTIONS(3187), - [anon_sym_new] = ACTIONS(3187), - [anon_sym_override] = ACTIONS(3187), - [anon_sym_partial] = ACTIONS(3187), - [anon_sym_private] = ACTIONS(3187), - [anon_sym_protected] = ACTIONS(3187), - [anon_sym_public] = ACTIONS(3187), - [anon_sym_readonly] = ACTIONS(3187), - [anon_sym_required] = ACTIONS(3187), - [anon_sym_sealed] = ACTIONS(3187), - [anon_sym_virtual] = ACTIONS(3187), - [anon_sym_volatile] = ACTIONS(3187), - [anon_sym_where] = ACTIONS(3187), - [anon_sym_notnull] = ACTIONS(3187), - [anon_sym_unmanaged] = ACTIONS(3187), - [anon_sym_checked] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3187), - [anon_sym_false] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_scoped] = ACTIONS(3187), - [anon_sym_base] = ACTIONS(3187), - [anon_sym_var] = ACTIONS(3187), - [sym_predefined_type] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_unchecked] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_do] = ACTIONS(3187), - [anon_sym_while] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_yield] = ACTIONS(3187), - [anon_sym_switch] = ACTIONS(3187), - [anon_sym_case] = ACTIONS(3187), - [anon_sym_default] = ACTIONS(3187), - [anon_sym_throw] = ACTIONS(3187), - [anon_sym_try] = ACTIONS(3187), - [anon_sym_when] = ACTIONS(3187), - [anon_sym_await] = ACTIONS(3187), - [anon_sym_foreach] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3187), - [anon_sym_DOT_DOT] = ACTIONS(3189), - [anon_sym_from] = ACTIONS(3187), - [anon_sym_into] = ACTIONS(3187), - [anon_sym_join] = ACTIONS(3187), - [anon_sym_on] = ACTIONS(3187), - [anon_sym_equals] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3187), - [anon_sym_orderby] = ACTIONS(3187), - [anon_sym_ascending] = ACTIONS(3187), - [anon_sym_descending] = ACTIONS(3187), - [anon_sym_group] = ACTIONS(3187), - [anon_sym_by] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_stackalloc] = ACTIONS(3187), - [anon_sym_sizeof] = ACTIONS(3187), - [anon_sym_typeof] = ACTIONS(3187), - [anon_sym___makeref] = ACTIONS(3187), - [anon_sym___reftype] = ACTIONS(3187), - [anon_sym___refvalue] = ACTIONS(3187), - [sym_null_literal] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3189), - [sym_integer_literal] = ACTIONS(3187), - [sym_real_literal] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(3189), - [sym_verbatim_string_literal] = ACTIONS(3189), - [aux_sym_preproc_if_token1] = ACTIONS(3189), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3189), - [sym_interpolation_verbatim_start] = ACTIONS(3189), - [sym_interpolation_raw_start] = ACTIONS(3189), - [sym_raw_string_start] = ACTIONS(3189), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3199), + [sym_interpolation_verbatim_start] = ACTIONS(3199), + [sym_interpolation_raw_start] = ACTIONS(3199), + [sym_raw_string_start] = ACTIONS(3199), }, [2030] = { [sym_preproc_region] = STATE(2030), @@ -372222,117 +379832,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2030), [sym_preproc_define] = STATE(2030), [sym_preproc_undef] = STATE(2030), - [sym__identifier_token] = ACTIONS(3183), - [anon_sym_extern] = ACTIONS(3183), - [anon_sym_alias] = ACTIONS(3183), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_global] = ACTIONS(3183), - [anon_sym_using] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_static] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_ref] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_delegate] = ACTIONS(3183), - [anon_sym_abstract] = ACTIONS(3183), - [anon_sym_async] = ACTIONS(3183), - [anon_sym_const] = ACTIONS(3183), - [anon_sym_file] = ACTIONS(3183), - [anon_sym_fixed] = ACTIONS(3183), - [anon_sym_internal] = ACTIONS(3183), - [anon_sym_new] = ACTIONS(3183), - [anon_sym_override] = ACTIONS(3183), - [anon_sym_partial] = ACTIONS(3183), - [anon_sym_private] = ACTIONS(3183), - [anon_sym_protected] = ACTIONS(3183), - [anon_sym_public] = ACTIONS(3183), - [anon_sym_readonly] = ACTIONS(3183), - [anon_sym_required] = ACTIONS(3183), - [anon_sym_sealed] = ACTIONS(3183), - [anon_sym_virtual] = ACTIONS(3183), - [anon_sym_volatile] = ACTIONS(3183), - [anon_sym_where] = ACTIONS(3183), - [anon_sym_notnull] = ACTIONS(3183), - [anon_sym_unmanaged] = ACTIONS(3183), - [anon_sym_checked] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3183), - [anon_sym_false] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_this] = ACTIONS(3183), - [anon_sym_scoped] = ACTIONS(3183), - [anon_sym_base] = ACTIONS(3183), - [anon_sym_var] = ACTIONS(3183), - [sym_predefined_type] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_unchecked] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_do] = ACTIONS(3183), - [anon_sym_while] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_yield] = ACTIONS(3183), - [anon_sym_switch] = ACTIONS(3183), - [anon_sym_case] = ACTIONS(3183), - [anon_sym_default] = ACTIONS(3183), - [anon_sym_throw] = ACTIONS(3183), - [anon_sym_try] = ACTIONS(3183), - [anon_sym_when] = ACTIONS(3183), - [anon_sym_await] = ACTIONS(3183), - [anon_sym_foreach] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3183), - [anon_sym_DOT_DOT] = ACTIONS(3185), - [anon_sym_from] = ACTIONS(3183), - [anon_sym_into] = ACTIONS(3183), - [anon_sym_join] = ACTIONS(3183), - [anon_sym_on] = ACTIONS(3183), - [anon_sym_equals] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3183), - [anon_sym_orderby] = ACTIONS(3183), - [anon_sym_ascending] = ACTIONS(3183), - [anon_sym_descending] = ACTIONS(3183), - [anon_sym_group] = ACTIONS(3183), - [anon_sym_by] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_stackalloc] = ACTIONS(3183), - [anon_sym_sizeof] = ACTIONS(3183), - [anon_sym_typeof] = ACTIONS(3183), - [anon_sym___makeref] = ACTIONS(3183), - [anon_sym___reftype] = ACTIONS(3183), - [anon_sym___refvalue] = ACTIONS(3183), - [sym_null_literal] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3185), - [sym_integer_literal] = ACTIONS(3183), - [sym_real_literal] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [sym_verbatim_string_literal] = ACTIONS(3185), - [aux_sym_preproc_if_token1] = ACTIONS(3185), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3185), - [sym_interpolation_verbatim_start] = ACTIONS(3185), - [sym_interpolation_raw_start] = ACTIONS(3185), - [sym_raw_string_start] = ACTIONS(3185), + [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), @@ -372344,117 +379959,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2031), [sym_preproc_define] = STATE(2031), [sym_preproc_undef] = STATE(2031), - [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), + [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), @@ -372466,117 +380086,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2032), [sym_preproc_define] = STATE(2032), [sym_preproc_undef] = STATE(2032), - [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), + [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), @@ -372588,117 +380213,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2033), [sym_preproc_define] = STATE(2033), [sym_preproc_undef] = STATE(2033), - [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_when] = ACTIONS(3091), - [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), + [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), @@ -372710,117 +380340,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2034), [sym_preproc_define] = STATE(2034), [sym_preproc_undef] = STATE(2034), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_using] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3201), - [anon_sym_ref] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_delegate] = ACTIONS(3201), - [anon_sym_abstract] = ACTIONS(3201), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_const] = ACTIONS(3201), - [anon_sym_file] = ACTIONS(3201), - [anon_sym_fixed] = ACTIONS(3201), - [anon_sym_internal] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_override] = ACTIONS(3201), - [anon_sym_partial] = ACTIONS(3201), - [anon_sym_private] = ACTIONS(3201), - [anon_sym_protected] = ACTIONS(3201), - [anon_sym_public] = ACTIONS(3201), - [anon_sym_readonly] = ACTIONS(3201), - [anon_sym_required] = ACTIONS(3201), - [anon_sym_sealed] = ACTIONS(3201), - [anon_sym_virtual] = ACTIONS(3201), - [anon_sym_volatile] = ACTIONS(3201), - [anon_sym_where] = ACTIONS(3201), - [anon_sym_notnull] = ACTIONS(3201), - [anon_sym_unmanaged] = ACTIONS(3201), - [anon_sym_checked] = ACTIONS(3201), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_this] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_base] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_break] = ACTIONS(3201), - [anon_sym_unchecked] = ACTIONS(3201), - [anon_sym_continue] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_for] = ACTIONS(3201), - [anon_sym_lock] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_switch] = ACTIONS(3201), - [anon_sym_case] = ACTIONS(3201), - [anon_sym_default] = ACTIONS(3201), - [anon_sym_throw] = ACTIONS(3201), - [anon_sym_try] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_await] = ACTIONS(3201), - [anon_sym_foreach] = ACTIONS(3201), - [anon_sym_goto] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_DOT_DOT] = ACTIONS(3203), - [anon_sym_from] = ACTIONS(3201), - [anon_sym_into] = ACTIONS(3201), - [anon_sym_join] = ACTIONS(3201), - [anon_sym_on] = ACTIONS(3201), - [anon_sym_equals] = ACTIONS(3201), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_orderby] = ACTIONS(3201), - [anon_sym_ascending] = ACTIONS(3201), - [anon_sym_descending] = ACTIONS(3201), - [anon_sym_group] = ACTIONS(3201), - [anon_sym_by] = ACTIONS(3201), - [anon_sym_select] = ACTIONS(3201), - [anon_sym_stackalloc] = ACTIONS(3201), - [anon_sym_sizeof] = ACTIONS(3201), - [anon_sym_typeof] = ACTIONS(3201), - [anon_sym___makeref] = ACTIONS(3201), - [anon_sym___reftype] = ACTIONS(3201), - [anon_sym___refvalue] = ACTIONS(3201), - [sym_null_literal] = ACTIONS(3201), - [anon_sym_SQUOTE] = ACTIONS(3203), - [sym_integer_literal] = ACTIONS(3201), - [sym_real_literal] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_verbatim_string_literal] = ACTIONS(3203), - [aux_sym_preproc_if_token1] = ACTIONS(3203), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3203), - [sym_interpolation_verbatim_start] = ACTIONS(3203), - [sym_interpolation_raw_start] = ACTIONS(3203), - [sym_raw_string_start] = ACTIONS(3203), + [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), }, [2035] = { [sym_preproc_region] = STATE(2035), @@ -372832,117 +380467,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2035), [sym_preproc_define] = STATE(2035), [sym_preproc_undef] = STATE(2035), - [sym__identifier_token] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym_alias] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_global] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_ref] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_delegate] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_file] = ACTIONS(3163), - [anon_sym_fixed] = ACTIONS(3163), - [anon_sym_internal] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_partial] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_required] = ACTIONS(3163), - [anon_sym_sealed] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_where] = ACTIONS(3163), - [anon_sym_notnull] = ACTIONS(3163), - [anon_sym_unmanaged] = ACTIONS(3163), - [anon_sym_checked] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3163), - [anon_sym_false] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_this] = ACTIONS(3163), - [anon_sym_scoped] = ACTIONS(3163), - [anon_sym_base] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [sym_predefined_type] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_unchecked] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_lock] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_when] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_foreach] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [anon_sym_from] = ACTIONS(3163), - [anon_sym_into] = ACTIONS(3163), - [anon_sym_join] = ACTIONS(3163), - [anon_sym_on] = ACTIONS(3163), - [anon_sym_equals] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_orderby] = ACTIONS(3163), - [anon_sym_ascending] = ACTIONS(3163), - [anon_sym_descending] = ACTIONS(3163), - [anon_sym_group] = ACTIONS(3163), - [anon_sym_by] = ACTIONS(3163), - [anon_sym_select] = ACTIONS(3163), - [anon_sym_stackalloc] = ACTIONS(3163), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym___makeref] = ACTIONS(3163), - [anon_sym___reftype] = ACTIONS(3163), - [anon_sym___refvalue] = ACTIONS(3163), - [sym_null_literal] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3165), - [sym_integer_literal] = ACTIONS(3163), - [sym_real_literal] = ACTIONS(3165), - [anon_sym_DQUOTE] = ACTIONS(3165), - [sym_verbatim_string_literal] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3165), - [sym_interpolation_verbatim_start] = ACTIONS(3165), - [sym_interpolation_raw_start] = ACTIONS(3165), - [sym_raw_string_start] = ACTIONS(3165), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2036] = { [sym_preproc_region] = STATE(2036), @@ -372954,117 +380594,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2036), [sym_preproc_define] = STATE(2036), [sym_preproc_undef] = STATE(2036), - [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), + [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), @@ -373076,117 +380721,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2037), [sym_preproc_define] = STATE(2037), [sym_preproc_undef] = STATE(2037), - [sym__identifier_token] = ACTIONS(3213), - [anon_sym_extern] = ACTIONS(3213), - [anon_sym_alias] = ACTIONS(3213), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_global] = ACTIONS(3213), - [anon_sym_using] = ACTIONS(3213), - [anon_sym_unsafe] = ACTIONS(3213), - [anon_sym_static] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3213), - [anon_sym_ref] = ACTIONS(3213), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_delegate] = ACTIONS(3213), - [anon_sym_abstract] = ACTIONS(3213), - [anon_sym_async] = ACTIONS(3213), - [anon_sym_const] = ACTIONS(3213), - [anon_sym_file] = ACTIONS(3213), - [anon_sym_fixed] = ACTIONS(3213), - [anon_sym_internal] = ACTIONS(3213), - [anon_sym_new] = ACTIONS(3213), - [anon_sym_override] = ACTIONS(3213), - [anon_sym_partial] = ACTIONS(3213), - [anon_sym_private] = ACTIONS(3213), - [anon_sym_protected] = ACTIONS(3213), - [anon_sym_public] = ACTIONS(3213), - [anon_sym_readonly] = ACTIONS(3213), - [anon_sym_required] = ACTIONS(3213), - [anon_sym_sealed] = ACTIONS(3213), - [anon_sym_virtual] = ACTIONS(3213), - [anon_sym_volatile] = ACTIONS(3213), - [anon_sym_where] = ACTIONS(3213), - [anon_sym_notnull] = ACTIONS(3213), - [anon_sym_unmanaged] = ACTIONS(3213), - [anon_sym_checked] = ACTIONS(3213), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_DASH] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_this] = ACTIONS(3213), - [anon_sym_scoped] = ACTIONS(3213), - [anon_sym_base] = ACTIONS(3213), - [anon_sym_var] = ACTIONS(3213), - [sym_predefined_type] = ACTIONS(3213), - [anon_sym_break] = ACTIONS(3213), - [anon_sym_unchecked] = ACTIONS(3213), - [anon_sym_continue] = ACTIONS(3213), - [anon_sym_do] = ACTIONS(3213), - [anon_sym_while] = ACTIONS(3213), - [anon_sym_for] = ACTIONS(3213), - [anon_sym_lock] = ACTIONS(3213), - [anon_sym_yield] = ACTIONS(3213), - [anon_sym_switch] = ACTIONS(3213), - [anon_sym_case] = ACTIONS(3213), - [anon_sym_default] = ACTIONS(3213), - [anon_sym_throw] = ACTIONS(3213), - [anon_sym_try] = ACTIONS(3213), - [anon_sym_when] = ACTIONS(3213), - [anon_sym_await] = ACTIONS(3213), - [anon_sym_foreach] = ACTIONS(3213), - [anon_sym_goto] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3213), - [anon_sym_else] = ACTIONS(3213), - [anon_sym_DOT_DOT] = ACTIONS(3215), - [anon_sym_from] = ACTIONS(3213), - [anon_sym_into] = ACTIONS(3213), - [anon_sym_join] = ACTIONS(3213), - [anon_sym_on] = ACTIONS(3213), - [anon_sym_equals] = ACTIONS(3213), - [anon_sym_let] = ACTIONS(3213), - [anon_sym_orderby] = ACTIONS(3213), - [anon_sym_ascending] = ACTIONS(3213), - [anon_sym_descending] = ACTIONS(3213), - [anon_sym_group] = ACTIONS(3213), - [anon_sym_by] = ACTIONS(3213), - [anon_sym_select] = ACTIONS(3213), - [anon_sym_stackalloc] = ACTIONS(3213), - [anon_sym_sizeof] = ACTIONS(3213), - [anon_sym_typeof] = ACTIONS(3213), - [anon_sym___makeref] = ACTIONS(3213), - [anon_sym___reftype] = ACTIONS(3213), - [anon_sym___refvalue] = ACTIONS(3213), - [sym_null_literal] = ACTIONS(3213), - [anon_sym_SQUOTE] = ACTIONS(3215), - [sym_integer_literal] = ACTIONS(3213), - [sym_real_literal] = ACTIONS(3215), - [anon_sym_DQUOTE] = ACTIONS(3215), - [sym_verbatim_string_literal] = ACTIONS(3215), - [aux_sym_preproc_if_token1] = ACTIONS(3215), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3215), - [sym_interpolation_verbatim_start] = ACTIONS(3215), - [sym_interpolation_raw_start] = ACTIONS(3215), - [sym_raw_string_start] = ACTIONS(3215), + [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), }, [2038] = { [sym_preproc_region] = STATE(2038), @@ -373198,117 +380848,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2038), [sym_preproc_define] = STATE(2038), [sym_preproc_undef] = STATE(2038), - [sym__identifier_token] = ACTIONS(3159), - [anon_sym_extern] = ACTIONS(3159), - [anon_sym_alias] = ACTIONS(3159), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_global] = ACTIONS(3159), - [anon_sym_using] = ACTIONS(3159), - [anon_sym_unsafe] = ACTIONS(3159), - [anon_sym_static] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3159), - [anon_sym_ref] = ACTIONS(3159), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_delegate] = ACTIONS(3159), - [anon_sym_abstract] = ACTIONS(3159), - [anon_sym_async] = ACTIONS(3159), - [anon_sym_const] = ACTIONS(3159), - [anon_sym_file] = ACTIONS(3159), - [anon_sym_fixed] = ACTIONS(3159), - [anon_sym_internal] = ACTIONS(3159), - [anon_sym_new] = ACTIONS(3159), - [anon_sym_override] = ACTIONS(3159), - [anon_sym_partial] = ACTIONS(3159), - [anon_sym_private] = ACTIONS(3159), - [anon_sym_protected] = ACTIONS(3159), - [anon_sym_public] = ACTIONS(3159), - [anon_sym_readonly] = ACTIONS(3159), - [anon_sym_required] = ACTIONS(3159), - [anon_sym_sealed] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3159), - [anon_sym_volatile] = ACTIONS(3159), - [anon_sym_where] = ACTIONS(3159), - [anon_sym_notnull] = ACTIONS(3159), - [anon_sym_unmanaged] = ACTIONS(3159), - [anon_sym_checked] = ACTIONS(3159), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3159), - [anon_sym_false] = ACTIONS(3159), - [anon_sym_PLUS] = ACTIONS(3159), - [anon_sym_DASH] = ACTIONS(3159), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_this] = ACTIONS(3159), - [anon_sym_scoped] = ACTIONS(3159), - [anon_sym_base] = ACTIONS(3159), - [anon_sym_var] = ACTIONS(3159), - [sym_predefined_type] = ACTIONS(3159), - [anon_sym_break] = ACTIONS(3159), - [anon_sym_unchecked] = ACTIONS(3159), - [anon_sym_continue] = ACTIONS(3159), - [anon_sym_do] = ACTIONS(3159), - [anon_sym_while] = ACTIONS(3159), - [anon_sym_for] = ACTIONS(3159), - [anon_sym_lock] = ACTIONS(3159), - [anon_sym_yield] = ACTIONS(3159), - [anon_sym_switch] = ACTIONS(3159), - [anon_sym_case] = ACTIONS(3159), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_throw] = ACTIONS(3159), - [anon_sym_try] = ACTIONS(3159), - [anon_sym_when] = ACTIONS(3159), - [anon_sym_await] = ACTIONS(3159), - [anon_sym_foreach] = ACTIONS(3159), - [anon_sym_goto] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3159), - [anon_sym_else] = ACTIONS(3159), - [anon_sym_DOT_DOT] = ACTIONS(3161), - [anon_sym_from] = ACTIONS(3159), - [anon_sym_into] = ACTIONS(3159), - [anon_sym_join] = ACTIONS(3159), - [anon_sym_on] = ACTIONS(3159), - [anon_sym_equals] = ACTIONS(3159), - [anon_sym_let] = ACTIONS(3159), - [anon_sym_orderby] = ACTIONS(3159), - [anon_sym_ascending] = ACTIONS(3159), - [anon_sym_descending] = ACTIONS(3159), - [anon_sym_group] = ACTIONS(3159), - [anon_sym_by] = ACTIONS(3159), - [anon_sym_select] = ACTIONS(3159), - [anon_sym_stackalloc] = ACTIONS(3159), - [anon_sym_sizeof] = ACTIONS(3159), - [anon_sym_typeof] = ACTIONS(3159), - [anon_sym___makeref] = ACTIONS(3159), - [anon_sym___reftype] = ACTIONS(3159), - [anon_sym___refvalue] = ACTIONS(3159), - [sym_null_literal] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3161), - [sym_integer_literal] = ACTIONS(3159), - [sym_real_literal] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_verbatim_string_literal] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3161), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3161), - [sym_interpolation_verbatim_start] = ACTIONS(3161), - [sym_interpolation_raw_start] = ACTIONS(3161), - [sym_raw_string_start] = ACTIONS(3161), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2039] = { [sym_preproc_region] = STATE(2039), @@ -373320,117 +380975,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2039), [sym_preproc_define] = STATE(2039), [sym_preproc_undef] = STATE(2039), - [sym__identifier_token] = ACTIONS(3107), - [anon_sym_extern] = ACTIONS(3107), - [anon_sym_alias] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_global] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_unsafe] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_ref] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_delegate] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_file] = ACTIONS(3107), - [anon_sym_fixed] = ACTIONS(3107), - [anon_sym_internal] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_partial] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_required] = ACTIONS(3107), - [anon_sym_sealed] = ACTIONS(3107), - [anon_sym_virtual] = ACTIONS(3107), - [anon_sym_volatile] = ACTIONS(3107), - [anon_sym_where] = ACTIONS(3107), - [anon_sym_notnull] = ACTIONS(3107), - [anon_sym_unmanaged] = ACTIONS(3107), - [anon_sym_checked] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_true] = ACTIONS(3107), - [anon_sym_false] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_this] = ACTIONS(3107), - [anon_sym_scoped] = ACTIONS(3107), - [anon_sym_base] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [sym_predefined_type] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_unchecked] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_lock] = ACTIONS(3107), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_when] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_foreach] = ACTIONS(3107), - [anon_sym_goto] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), - [anon_sym_DOT_DOT] = ACTIONS(3109), - [anon_sym_from] = ACTIONS(3107), - [anon_sym_into] = ACTIONS(3107), - [anon_sym_join] = ACTIONS(3107), - [anon_sym_on] = ACTIONS(3107), - [anon_sym_equals] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_orderby] = ACTIONS(3107), - [anon_sym_ascending] = ACTIONS(3107), - [anon_sym_descending] = ACTIONS(3107), - [anon_sym_group] = ACTIONS(3107), - [anon_sym_by] = ACTIONS(3107), - [anon_sym_select] = ACTIONS(3107), - [anon_sym_stackalloc] = ACTIONS(3107), - [anon_sym_sizeof] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym___makeref] = ACTIONS(3107), - [anon_sym___reftype] = ACTIONS(3107), - [anon_sym___refvalue] = ACTIONS(3107), - [sym_null_literal] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3109), - [sym_integer_literal] = ACTIONS(3107), - [sym_real_literal] = ACTIONS(3109), - [anon_sym_DQUOTE] = ACTIONS(3109), - [sym_verbatim_string_literal] = ACTIONS(3109), - [aux_sym_preproc_if_token1] = ACTIONS(3109), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3109), - [sym_interpolation_verbatim_start] = ACTIONS(3109), - [sym_interpolation_raw_start] = ACTIONS(3109), - [sym_raw_string_start] = ACTIONS(3109), + [ts_builtin_sym_end] = ACTIONS(3179), + [sym__identifier_token] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_alias] = ACTIONS(3177), + [anon_sym_SEMI] = ACTIONS(3179), + [anon_sym_global] = ACTIONS(3177), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_namespace] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_ref] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_delegate] = ACTIONS(3177), + [anon_sym_record] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_async] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_file] = ACTIONS(3177), + [anon_sym_fixed] = ACTIONS(3177), + [anon_sym_internal] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_partial] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_protected] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_readonly] = ACTIONS(3177), + [anon_sym_required] = ACTIONS(3177), + [anon_sym_sealed] = ACTIONS(3177), + [anon_sym_virtual] = ACTIONS(3177), + [anon_sym_volatile] = ACTIONS(3177), + [anon_sym_where] = ACTIONS(3177), + [anon_sym_notnull] = ACTIONS(3177), + [anon_sym_unmanaged] = ACTIONS(3177), + [anon_sym_checked] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3179), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_scoped] = ACTIONS(3177), + [anon_sym_base] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [sym_predefined_type] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_unchecked] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_yield] = ACTIONS(3177), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_default] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_when] = ACTIONS(3177), + [anon_sym_await] = ACTIONS(3177), + [anon_sym_foreach] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3179), + [anon_sym_from] = ACTIONS(3177), + [anon_sym_into] = ACTIONS(3177), + [anon_sym_join] = ACTIONS(3177), + [anon_sym_on] = ACTIONS(3177), + [anon_sym_equals] = ACTIONS(3177), + [anon_sym_let] = ACTIONS(3177), + [anon_sym_orderby] = ACTIONS(3177), + [anon_sym_ascending] = ACTIONS(3177), + [anon_sym_descending] = ACTIONS(3177), + [anon_sym_group] = ACTIONS(3177), + [anon_sym_by] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_stackalloc] = ACTIONS(3177), + [anon_sym_sizeof] = ACTIONS(3177), + [anon_sym_typeof] = ACTIONS(3177), + [anon_sym___makeref] = ACTIONS(3177), + [anon_sym___reftype] = ACTIONS(3177), + [anon_sym___refvalue] = ACTIONS(3177), + [sym_null_literal] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3179), + [sym_integer_literal] = ACTIONS(3177), + [sym_real_literal] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(3179), + [sym_verbatim_string_literal] = ACTIONS(3179), + [aux_sym_preproc_if_token1] = ACTIONS(3179), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3179), + [sym_interpolation_verbatim_start] = ACTIONS(3179), + [sym_interpolation_raw_start] = ACTIONS(3179), + [sym_raw_string_start] = ACTIONS(3179), }, [2040] = { [sym_preproc_region] = STATE(2040), @@ -373442,117 +381102,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2040), [sym_preproc_define] = STATE(2040), [sym_preproc_undef] = STATE(2040), - [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), + [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), }, [2041] = { [sym_preproc_region] = STATE(2041), @@ -373564,117 +381229,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2041), [sym_preproc_define] = STATE(2041), [sym_preproc_undef] = STATE(2041), - [sym__identifier_token] = ACTIONS(3041), - [anon_sym_extern] = ACTIONS(3041), - [anon_sym_alias] = ACTIONS(3041), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_global] = ACTIONS(3041), - [anon_sym_using] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_static] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_ref] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_RBRACE] = ACTIONS(3043), - [anon_sym_delegate] = ACTIONS(3041), - [anon_sym_abstract] = ACTIONS(3041), - [anon_sym_async] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_file] = ACTIONS(3041), - [anon_sym_fixed] = ACTIONS(3041), - [anon_sym_internal] = ACTIONS(3041), - [anon_sym_new] = ACTIONS(3041), - [anon_sym_override] = ACTIONS(3041), - [anon_sym_partial] = ACTIONS(3041), - [anon_sym_private] = ACTIONS(3041), - [anon_sym_protected] = ACTIONS(3041), - [anon_sym_public] = ACTIONS(3041), - [anon_sym_readonly] = ACTIONS(3041), - [anon_sym_required] = ACTIONS(3041), - [anon_sym_sealed] = ACTIONS(3041), - [anon_sym_virtual] = ACTIONS(3041), - [anon_sym_volatile] = ACTIONS(3041), - [anon_sym_where] = ACTIONS(3041), - [anon_sym_notnull] = ACTIONS(3041), - [anon_sym_unmanaged] = ACTIONS(3041), - [anon_sym_checked] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3043), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_true] = ACTIONS(3041), - [anon_sym_false] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3043), - [anon_sym_this] = ACTIONS(3041), - [anon_sym_scoped] = ACTIONS(3041), - [anon_sym_base] = ACTIONS(3041), - [anon_sym_var] = ACTIONS(3041), - [sym_predefined_type] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_unchecked] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_do] = ACTIONS(3041), - [anon_sym_while] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_yield] = ACTIONS(3041), - [anon_sym_switch] = ACTIONS(3041), - [anon_sym_case] = ACTIONS(3041), - [anon_sym_default] = ACTIONS(3041), - [anon_sym_throw] = ACTIONS(3041), - [anon_sym_try] = ACTIONS(3041), - [anon_sym_when] = ACTIONS(3041), - [anon_sym_await] = ACTIONS(3041), - [anon_sym_foreach] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_else] = ACTIONS(3041), - [anon_sym_DOT_DOT] = ACTIONS(3043), - [anon_sym_from] = ACTIONS(3041), - [anon_sym_into] = ACTIONS(3041), - [anon_sym_join] = ACTIONS(3041), - [anon_sym_on] = ACTIONS(3041), - [anon_sym_equals] = ACTIONS(3041), - [anon_sym_let] = ACTIONS(3041), - [anon_sym_orderby] = ACTIONS(3041), - [anon_sym_ascending] = ACTIONS(3041), - [anon_sym_descending] = ACTIONS(3041), - [anon_sym_group] = ACTIONS(3041), - [anon_sym_by] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_stackalloc] = ACTIONS(3041), - [anon_sym_sizeof] = ACTIONS(3041), - [anon_sym_typeof] = ACTIONS(3041), - [anon_sym___makeref] = ACTIONS(3041), - [anon_sym___reftype] = ACTIONS(3041), - [anon_sym___refvalue] = ACTIONS(3041), - [sym_null_literal] = ACTIONS(3041), - [anon_sym_SQUOTE] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(3041), - [sym_real_literal] = ACTIONS(3043), - [anon_sym_DQUOTE] = ACTIONS(3043), - [sym_verbatim_string_literal] = ACTIONS(3043), - [aux_sym_preproc_if_token1] = ACTIONS(3043), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3043), - [sym_interpolation_verbatim_start] = ACTIONS(3043), - [sym_interpolation_raw_start] = ACTIONS(3043), - [sym_raw_string_start] = ACTIONS(3043), + [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), @@ -373686,117 +381356,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2042), [sym_preproc_define] = STATE(2042), [sym_preproc_undef] = STATE(2042), - [sym__identifier_token] = ACTIONS(3143), - [anon_sym_extern] = ACTIONS(3143), - [anon_sym_alias] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_global] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_unsafe] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_ref] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_delegate] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_file] = ACTIONS(3143), - [anon_sym_fixed] = ACTIONS(3143), - [anon_sym_internal] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_partial] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_required] = ACTIONS(3143), - [anon_sym_sealed] = ACTIONS(3143), - [anon_sym_virtual] = ACTIONS(3143), - [anon_sym_volatile] = ACTIONS(3143), - [anon_sym_where] = ACTIONS(3143), - [anon_sym_notnull] = ACTIONS(3143), - [anon_sym_unmanaged] = ACTIONS(3143), - [anon_sym_checked] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3143), - [anon_sym_false] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_this] = ACTIONS(3143), - [anon_sym_scoped] = ACTIONS(3143), - [anon_sym_base] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [sym_predefined_type] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_unchecked] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_lock] = ACTIONS(3143), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_when] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_foreach] = ACTIONS(3143), - [anon_sym_goto] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_DOT_DOT] = ACTIONS(3145), - [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_ascending] = ACTIONS(3143), - [anon_sym_descending] = ACTIONS(3143), - [anon_sym_group] = ACTIONS(3143), - [anon_sym_by] = ACTIONS(3143), - [anon_sym_select] = ACTIONS(3143), - [anon_sym_stackalloc] = ACTIONS(3143), - [anon_sym_sizeof] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym___makeref] = ACTIONS(3143), - [anon_sym___reftype] = ACTIONS(3143), - [anon_sym___refvalue] = ACTIONS(3143), - [sym_null_literal] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3145), - [sym_integer_literal] = ACTIONS(3143), - [sym_real_literal] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(3145), - [sym_verbatim_string_literal] = ACTIONS(3145), - [aux_sym_preproc_if_token1] = ACTIONS(3145), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3145), - [sym_interpolation_verbatim_start] = ACTIONS(3145), - [sym_interpolation_raw_start] = ACTIONS(3145), - [sym_raw_string_start] = ACTIONS(3145), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2043] = { [sym_preproc_region] = STATE(2043), @@ -373808,117 +381483,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2043), [sym_preproc_define] = STATE(2043), [sym_preproc_undef] = STATE(2043), - [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), + [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), }, [2044] = { [sym_preproc_region] = STATE(2044), @@ -373930,117 +381610,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2044), [sym_preproc_define] = STATE(2044), [sym_preproc_undef] = STATE(2044), - [sym__identifier_token] = ACTIONS(3175), - [anon_sym_extern] = ACTIONS(3175), - [anon_sym_alias] = ACTIONS(3175), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_global] = ACTIONS(3175), - [anon_sym_using] = ACTIONS(3175), - [anon_sym_unsafe] = ACTIONS(3175), - [anon_sym_static] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3175), - [anon_sym_ref] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_delegate] = ACTIONS(3175), - [anon_sym_abstract] = ACTIONS(3175), - [anon_sym_async] = ACTIONS(3175), - [anon_sym_const] = ACTIONS(3175), - [anon_sym_file] = ACTIONS(3175), - [anon_sym_fixed] = ACTIONS(3175), - [anon_sym_internal] = ACTIONS(3175), - [anon_sym_new] = ACTIONS(3175), - [anon_sym_override] = ACTIONS(3175), - [anon_sym_partial] = ACTIONS(3175), - [anon_sym_private] = ACTIONS(3175), - [anon_sym_protected] = ACTIONS(3175), - [anon_sym_public] = ACTIONS(3175), - [anon_sym_readonly] = ACTIONS(3175), - [anon_sym_required] = ACTIONS(3175), - [anon_sym_sealed] = ACTIONS(3175), - [anon_sym_virtual] = ACTIONS(3175), - [anon_sym_volatile] = ACTIONS(3175), - [anon_sym_where] = ACTIONS(3175), - [anon_sym_notnull] = ACTIONS(3175), - [anon_sym_unmanaged] = ACTIONS(3175), - [anon_sym_checked] = ACTIONS(3175), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3175), - [anon_sym_false] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3175), - [anon_sym_DASH] = ACTIONS(3175), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_this] = ACTIONS(3175), - [anon_sym_scoped] = ACTIONS(3175), - [anon_sym_base] = ACTIONS(3175), - [anon_sym_var] = ACTIONS(3175), - [sym_predefined_type] = ACTIONS(3175), - [anon_sym_break] = ACTIONS(3175), - [anon_sym_unchecked] = ACTIONS(3175), - [anon_sym_continue] = ACTIONS(3175), - [anon_sym_do] = ACTIONS(3175), - [anon_sym_while] = ACTIONS(3175), - [anon_sym_for] = ACTIONS(3175), - [anon_sym_lock] = ACTIONS(3175), - [anon_sym_yield] = ACTIONS(3175), - [anon_sym_switch] = ACTIONS(3175), - [anon_sym_case] = ACTIONS(3175), - [anon_sym_default] = ACTIONS(3175), - [anon_sym_throw] = ACTIONS(3175), - [anon_sym_try] = ACTIONS(3175), - [anon_sym_when] = ACTIONS(3175), - [anon_sym_await] = ACTIONS(3175), - [anon_sym_foreach] = ACTIONS(3175), - [anon_sym_goto] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3175), - [anon_sym_DOT_DOT] = ACTIONS(3177), - [anon_sym_from] = ACTIONS(3175), - [anon_sym_into] = ACTIONS(3175), - [anon_sym_join] = ACTIONS(3175), - [anon_sym_on] = ACTIONS(3175), - [anon_sym_equals] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3175), - [anon_sym_orderby] = ACTIONS(3175), - [anon_sym_ascending] = ACTIONS(3175), - [anon_sym_descending] = ACTIONS(3175), - [anon_sym_group] = ACTIONS(3175), - [anon_sym_by] = ACTIONS(3175), - [anon_sym_select] = ACTIONS(3175), - [anon_sym_stackalloc] = ACTIONS(3175), - [anon_sym_sizeof] = ACTIONS(3175), - [anon_sym_typeof] = ACTIONS(3175), - [anon_sym___makeref] = ACTIONS(3175), - [anon_sym___reftype] = ACTIONS(3175), - [anon_sym___refvalue] = ACTIONS(3175), - [sym_null_literal] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3177), - [sym_integer_literal] = ACTIONS(3175), - [sym_real_literal] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(3177), - [sym_verbatim_string_literal] = ACTIONS(3177), - [aux_sym_preproc_if_token1] = ACTIONS(3177), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3177), - [sym_interpolation_verbatim_start] = ACTIONS(3177), - [sym_interpolation_raw_start] = ACTIONS(3177), - [sym_raw_string_start] = ACTIONS(3177), + [ts_builtin_sym_end] = ACTIONS(3187), + [sym__identifier_token] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_alias] = ACTIONS(3185), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_global] = ACTIONS(3185), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_namespace] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_ref] = ACTIONS(3185), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_delegate] = ACTIONS(3185), + [anon_sym_record] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_async] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_file] = ACTIONS(3185), + [anon_sym_fixed] = ACTIONS(3185), + [anon_sym_internal] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_partial] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_protected] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_readonly] = ACTIONS(3185), + [anon_sym_required] = ACTIONS(3185), + [anon_sym_sealed] = ACTIONS(3185), + [anon_sym_virtual] = ACTIONS(3185), + [anon_sym_volatile] = ACTIONS(3185), + [anon_sym_where] = ACTIONS(3185), + [anon_sym_notnull] = ACTIONS(3185), + [anon_sym_unmanaged] = ACTIONS(3185), + [anon_sym_checked] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_scoped] = ACTIONS(3185), + [anon_sym_base] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [sym_predefined_type] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_unchecked] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_yield] = ACTIONS(3185), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_when] = ACTIONS(3185), + [anon_sym_await] = ACTIONS(3185), + [anon_sym_foreach] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_DOT_DOT] = ACTIONS(3187), + [anon_sym_from] = ACTIONS(3185), + [anon_sym_into] = ACTIONS(3185), + [anon_sym_join] = ACTIONS(3185), + [anon_sym_on] = ACTIONS(3185), + [anon_sym_equals] = ACTIONS(3185), + [anon_sym_let] = ACTIONS(3185), + [anon_sym_orderby] = ACTIONS(3185), + [anon_sym_ascending] = ACTIONS(3185), + [anon_sym_descending] = ACTIONS(3185), + [anon_sym_group] = ACTIONS(3185), + [anon_sym_by] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_stackalloc] = ACTIONS(3185), + [anon_sym_sizeof] = ACTIONS(3185), + [anon_sym_typeof] = ACTIONS(3185), + [anon_sym___makeref] = ACTIONS(3185), + [anon_sym___reftype] = ACTIONS(3185), + [anon_sym___refvalue] = ACTIONS(3185), + [sym_null_literal] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3187), + [sym_integer_literal] = ACTIONS(3185), + [sym_real_literal] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [sym_verbatim_string_literal] = ACTIONS(3187), + [aux_sym_preproc_if_token1] = ACTIONS(3187), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3187), + [sym_interpolation_verbatim_start] = ACTIONS(3187), + [sym_interpolation_raw_start] = ACTIONS(3187), + [sym_raw_string_start] = ACTIONS(3187), }, [2045] = { [sym_preproc_region] = STATE(2045), @@ -374052,117 +381737,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2045), [sym_preproc_define] = STATE(2045), [sym_preproc_undef] = STATE(2045), - [sym__identifier_token] = ACTIONS(3139), - [anon_sym_extern] = ACTIONS(3139), - [anon_sym_alias] = ACTIONS(3139), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_global] = ACTIONS(3139), - [anon_sym_using] = ACTIONS(3139), - [anon_sym_unsafe] = ACTIONS(3139), - [anon_sym_static] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3139), - [anon_sym_ref] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_delegate] = ACTIONS(3139), - [anon_sym_abstract] = ACTIONS(3139), - [anon_sym_async] = ACTIONS(3139), - [anon_sym_const] = ACTIONS(3139), - [anon_sym_file] = ACTIONS(3139), - [anon_sym_fixed] = ACTIONS(3139), - [anon_sym_internal] = ACTIONS(3139), - [anon_sym_new] = ACTIONS(3139), - [anon_sym_override] = ACTIONS(3139), - [anon_sym_partial] = ACTIONS(3139), - [anon_sym_private] = ACTIONS(3139), - [anon_sym_protected] = ACTIONS(3139), - [anon_sym_public] = ACTIONS(3139), - [anon_sym_readonly] = ACTIONS(3139), - [anon_sym_required] = ACTIONS(3139), - [anon_sym_sealed] = ACTIONS(3139), - [anon_sym_virtual] = ACTIONS(3139), - [anon_sym_volatile] = ACTIONS(3139), - [anon_sym_where] = ACTIONS(3139), - [anon_sym_notnull] = ACTIONS(3139), - [anon_sym_unmanaged] = ACTIONS(3139), - [anon_sym_checked] = ACTIONS(3139), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3139), - [anon_sym_false] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3139), - [anon_sym_DASH] = ACTIONS(3139), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_this] = ACTIONS(3139), - [anon_sym_scoped] = ACTIONS(3139), - [anon_sym_base] = ACTIONS(3139), - [anon_sym_var] = ACTIONS(3139), - [sym_predefined_type] = ACTIONS(3139), - [anon_sym_break] = ACTIONS(3139), - [anon_sym_unchecked] = ACTIONS(3139), - [anon_sym_continue] = ACTIONS(3139), - [anon_sym_do] = ACTIONS(3139), - [anon_sym_while] = ACTIONS(3139), - [anon_sym_for] = ACTIONS(3139), - [anon_sym_lock] = ACTIONS(3139), - [anon_sym_yield] = ACTIONS(3139), - [anon_sym_switch] = ACTIONS(3139), - [anon_sym_case] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3139), - [anon_sym_throw] = ACTIONS(3139), - [anon_sym_try] = ACTIONS(3139), - [anon_sym_when] = ACTIONS(3139), - [anon_sym_await] = ACTIONS(3139), - [anon_sym_foreach] = ACTIONS(3139), - [anon_sym_goto] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3139), - [anon_sym_else] = ACTIONS(3139), - [anon_sym_DOT_DOT] = ACTIONS(3141), - [anon_sym_from] = ACTIONS(3139), - [anon_sym_into] = ACTIONS(3139), - [anon_sym_join] = ACTIONS(3139), - [anon_sym_on] = ACTIONS(3139), - [anon_sym_equals] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3139), - [anon_sym_orderby] = ACTIONS(3139), - [anon_sym_ascending] = ACTIONS(3139), - [anon_sym_descending] = ACTIONS(3139), - [anon_sym_group] = ACTIONS(3139), - [anon_sym_by] = ACTIONS(3139), - [anon_sym_select] = ACTIONS(3139), - [anon_sym_stackalloc] = ACTIONS(3139), - [anon_sym_sizeof] = ACTIONS(3139), - [anon_sym_typeof] = ACTIONS(3139), - [anon_sym___makeref] = ACTIONS(3139), - [anon_sym___reftype] = ACTIONS(3139), - [anon_sym___refvalue] = ACTIONS(3139), - [sym_null_literal] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3141), - [sym_integer_literal] = ACTIONS(3139), - [sym_real_literal] = ACTIONS(3141), - [anon_sym_DQUOTE] = ACTIONS(3141), - [sym_verbatim_string_literal] = ACTIONS(3141), - [aux_sym_preproc_if_token1] = ACTIONS(3141), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3141), - [sym_interpolation_verbatim_start] = ACTIONS(3141), - [sym_interpolation_raw_start] = ACTIONS(3141), - [sym_raw_string_start] = ACTIONS(3141), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2046] = { [sym_preproc_region] = STATE(2046), @@ -374174,117 +381864,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2046), [sym_preproc_define] = STATE(2046), [sym_preproc_undef] = STATE(2046), - [sym__identifier_token] = ACTIONS(3135), - [anon_sym_extern] = ACTIONS(3135), - [anon_sym_alias] = ACTIONS(3135), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_global] = ACTIONS(3135), - [anon_sym_using] = ACTIONS(3135), - [anon_sym_unsafe] = ACTIONS(3135), - [anon_sym_static] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3135), - [anon_sym_ref] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_delegate] = ACTIONS(3135), - [anon_sym_abstract] = ACTIONS(3135), - [anon_sym_async] = ACTIONS(3135), - [anon_sym_const] = ACTIONS(3135), - [anon_sym_file] = ACTIONS(3135), - [anon_sym_fixed] = ACTIONS(3135), - [anon_sym_internal] = ACTIONS(3135), - [anon_sym_new] = ACTIONS(3135), - [anon_sym_override] = ACTIONS(3135), - [anon_sym_partial] = ACTIONS(3135), - [anon_sym_private] = ACTIONS(3135), - [anon_sym_protected] = ACTIONS(3135), - [anon_sym_public] = ACTIONS(3135), - [anon_sym_readonly] = ACTIONS(3135), - [anon_sym_required] = ACTIONS(3135), - [anon_sym_sealed] = ACTIONS(3135), - [anon_sym_virtual] = ACTIONS(3135), - [anon_sym_volatile] = ACTIONS(3135), - [anon_sym_where] = ACTIONS(3135), - [anon_sym_notnull] = ACTIONS(3135), - [anon_sym_unmanaged] = ACTIONS(3135), - [anon_sym_checked] = ACTIONS(3135), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3135), - [anon_sym_false] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3135), - [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_this] = ACTIONS(3135), - [anon_sym_scoped] = ACTIONS(3135), - [anon_sym_base] = ACTIONS(3135), - [anon_sym_var] = ACTIONS(3135), - [sym_predefined_type] = ACTIONS(3135), - [anon_sym_break] = ACTIONS(3135), - [anon_sym_unchecked] = ACTIONS(3135), - [anon_sym_continue] = ACTIONS(3135), - [anon_sym_do] = ACTIONS(3135), - [anon_sym_while] = ACTIONS(3135), - [anon_sym_for] = ACTIONS(3135), - [anon_sym_lock] = ACTIONS(3135), - [anon_sym_yield] = ACTIONS(3135), - [anon_sym_switch] = ACTIONS(3135), - [anon_sym_case] = ACTIONS(3135), - [anon_sym_default] = ACTIONS(3135), - [anon_sym_throw] = ACTIONS(3135), - [anon_sym_try] = ACTIONS(3135), - [anon_sym_when] = ACTIONS(3135), - [anon_sym_await] = ACTIONS(3135), - [anon_sym_foreach] = ACTIONS(3135), - [anon_sym_goto] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3135), - [anon_sym_else] = ACTIONS(3135), - [anon_sym_DOT_DOT] = ACTIONS(3137), - [anon_sym_from] = ACTIONS(3135), - [anon_sym_into] = ACTIONS(3135), - [anon_sym_join] = ACTIONS(3135), - [anon_sym_on] = ACTIONS(3135), - [anon_sym_equals] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3135), - [anon_sym_orderby] = ACTIONS(3135), - [anon_sym_ascending] = ACTIONS(3135), - [anon_sym_descending] = ACTIONS(3135), - [anon_sym_group] = ACTIONS(3135), - [anon_sym_by] = ACTIONS(3135), - [anon_sym_select] = ACTIONS(3135), - [anon_sym_stackalloc] = ACTIONS(3135), - [anon_sym_sizeof] = ACTIONS(3135), - [anon_sym_typeof] = ACTIONS(3135), - [anon_sym___makeref] = ACTIONS(3135), - [anon_sym___reftype] = ACTIONS(3135), - [anon_sym___refvalue] = ACTIONS(3135), - [sym_null_literal] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3137), - [sym_integer_literal] = ACTIONS(3135), - [sym_real_literal] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(3137), - [sym_verbatim_string_literal] = ACTIONS(3137), - [aux_sym_preproc_if_token1] = ACTIONS(3137), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3137), - [sym_interpolation_verbatim_start] = ACTIONS(3137), - [sym_interpolation_raw_start] = ACTIONS(3137), - [sym_raw_string_start] = ACTIONS(3137), + [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), @@ -374296,117 +381991,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2047), [sym_preproc_define] = STATE(2047), [sym_preproc_undef] = STATE(2047), - [sym__identifier_token] = ACTIONS(3127), - [anon_sym_extern] = ACTIONS(3127), - [anon_sym_alias] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_global] = ACTIONS(3127), - [anon_sym_using] = ACTIONS(3127), - [anon_sym_unsafe] = ACTIONS(3127), - [anon_sym_static] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3127), - [anon_sym_ref] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_delegate] = ACTIONS(3127), - [anon_sym_abstract] = ACTIONS(3127), - [anon_sym_async] = ACTIONS(3127), - [anon_sym_const] = ACTIONS(3127), - [anon_sym_file] = ACTIONS(3127), - [anon_sym_fixed] = ACTIONS(3127), - [anon_sym_internal] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_override] = ACTIONS(3127), - [anon_sym_partial] = ACTIONS(3127), - [anon_sym_private] = ACTIONS(3127), - [anon_sym_protected] = ACTIONS(3127), - [anon_sym_public] = ACTIONS(3127), - [anon_sym_readonly] = ACTIONS(3127), - [anon_sym_required] = ACTIONS(3127), - [anon_sym_sealed] = ACTIONS(3127), - [anon_sym_virtual] = ACTIONS(3127), - [anon_sym_volatile] = ACTIONS(3127), - [anon_sym_where] = ACTIONS(3127), - [anon_sym_notnull] = ACTIONS(3127), - [anon_sym_unmanaged] = ACTIONS(3127), - [anon_sym_checked] = ACTIONS(3127), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_this] = ACTIONS(3127), - [anon_sym_scoped] = ACTIONS(3127), - [anon_sym_base] = ACTIONS(3127), - [anon_sym_var] = ACTIONS(3127), - [sym_predefined_type] = ACTIONS(3127), - [anon_sym_break] = ACTIONS(3127), - [anon_sym_unchecked] = ACTIONS(3127), - [anon_sym_continue] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_while] = ACTIONS(3127), - [anon_sym_for] = ACTIONS(3127), - [anon_sym_lock] = ACTIONS(3127), - [anon_sym_yield] = ACTIONS(3127), - [anon_sym_switch] = ACTIONS(3127), - [anon_sym_case] = ACTIONS(3127), - [anon_sym_default] = ACTIONS(3127), - [anon_sym_throw] = ACTIONS(3127), - [anon_sym_try] = ACTIONS(3127), - [anon_sym_when] = ACTIONS(3127), - [anon_sym_await] = ACTIONS(3127), - [anon_sym_foreach] = ACTIONS(3127), - [anon_sym_goto] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_DOT_DOT] = ACTIONS(3129), - [anon_sym_from] = ACTIONS(3127), - [anon_sym_into] = ACTIONS(3127), - [anon_sym_join] = ACTIONS(3127), - [anon_sym_on] = ACTIONS(3127), - [anon_sym_equals] = ACTIONS(3127), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_orderby] = ACTIONS(3127), - [anon_sym_ascending] = ACTIONS(3127), - [anon_sym_descending] = ACTIONS(3127), - [anon_sym_group] = ACTIONS(3127), - [anon_sym_by] = ACTIONS(3127), - [anon_sym_select] = ACTIONS(3127), - [anon_sym_stackalloc] = ACTIONS(3127), - [anon_sym_sizeof] = ACTIONS(3127), - [anon_sym_typeof] = ACTIONS(3127), - [anon_sym___makeref] = ACTIONS(3127), - [anon_sym___reftype] = ACTIONS(3127), - [anon_sym___refvalue] = ACTIONS(3127), - [sym_null_literal] = ACTIONS(3127), - [anon_sym_SQUOTE] = ACTIONS(3129), - [sym_integer_literal] = ACTIONS(3127), - [sym_real_literal] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_verbatim_string_literal] = ACTIONS(3129), - [aux_sym_preproc_if_token1] = ACTIONS(3129), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3129), - [sym_interpolation_verbatim_start] = ACTIONS(3129), - [sym_interpolation_raw_start] = ACTIONS(3129), - [sym_raw_string_start] = ACTIONS(3129), + [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), @@ -374418,117 +382118,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2048), [sym_preproc_define] = STATE(2048), [sym_preproc_undef] = STATE(2048), - [sym__identifier_token] = ACTIONS(3123), - [anon_sym_extern] = ACTIONS(3123), - [anon_sym_alias] = ACTIONS(3123), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_global] = ACTIONS(3123), - [anon_sym_using] = ACTIONS(3123), - [anon_sym_unsafe] = ACTIONS(3123), - [anon_sym_static] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3123), - [anon_sym_ref] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_delegate] = ACTIONS(3123), - [anon_sym_abstract] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3123), - [anon_sym_const] = ACTIONS(3123), - [anon_sym_file] = ACTIONS(3123), - [anon_sym_fixed] = ACTIONS(3123), - [anon_sym_internal] = ACTIONS(3123), - [anon_sym_new] = ACTIONS(3123), - [anon_sym_override] = ACTIONS(3123), - [anon_sym_partial] = ACTIONS(3123), - [anon_sym_private] = ACTIONS(3123), - [anon_sym_protected] = ACTIONS(3123), - [anon_sym_public] = ACTIONS(3123), - [anon_sym_readonly] = ACTIONS(3123), - [anon_sym_required] = ACTIONS(3123), - [anon_sym_sealed] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3123), - [anon_sym_volatile] = ACTIONS(3123), - [anon_sym_where] = ACTIONS(3123), - [anon_sym_notnull] = ACTIONS(3123), - [anon_sym_unmanaged] = ACTIONS(3123), - [anon_sym_checked] = ACTIONS(3123), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_true] = ACTIONS(3123), - [anon_sym_false] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3123), - [anon_sym_DASH] = ACTIONS(3123), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_this] = ACTIONS(3123), - [anon_sym_scoped] = ACTIONS(3123), - [anon_sym_base] = ACTIONS(3123), - [anon_sym_var] = ACTIONS(3123), - [sym_predefined_type] = ACTIONS(3123), - [anon_sym_break] = ACTIONS(3123), - [anon_sym_unchecked] = ACTIONS(3123), - [anon_sym_continue] = ACTIONS(3123), - [anon_sym_do] = ACTIONS(3123), - [anon_sym_while] = ACTIONS(3123), - [anon_sym_for] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3123), - [anon_sym_yield] = ACTIONS(3123), - [anon_sym_switch] = ACTIONS(3123), - [anon_sym_case] = ACTIONS(3123), - [anon_sym_default] = ACTIONS(3123), - [anon_sym_throw] = ACTIONS(3123), - [anon_sym_try] = ACTIONS(3123), - [anon_sym_when] = ACTIONS(3123), - [anon_sym_await] = ACTIONS(3123), - [anon_sym_foreach] = ACTIONS(3123), - [anon_sym_goto] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3123), - [anon_sym_else] = ACTIONS(3123), - [anon_sym_DOT_DOT] = ACTIONS(3125), - [anon_sym_from] = ACTIONS(3123), - [anon_sym_into] = ACTIONS(3123), - [anon_sym_join] = ACTIONS(3123), - [anon_sym_on] = ACTIONS(3123), - [anon_sym_equals] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3123), - [anon_sym_orderby] = ACTIONS(3123), - [anon_sym_ascending] = ACTIONS(3123), - [anon_sym_descending] = ACTIONS(3123), - [anon_sym_group] = ACTIONS(3123), - [anon_sym_by] = ACTIONS(3123), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_stackalloc] = ACTIONS(3123), - [anon_sym_sizeof] = ACTIONS(3123), - [anon_sym_typeof] = ACTIONS(3123), - [anon_sym___makeref] = ACTIONS(3123), - [anon_sym___reftype] = ACTIONS(3123), - [anon_sym___refvalue] = ACTIONS(3123), - [sym_null_literal] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3125), - [sym_integer_literal] = ACTIONS(3123), - [sym_real_literal] = ACTIONS(3125), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym_verbatim_string_literal] = ACTIONS(3125), - [aux_sym_preproc_if_token1] = ACTIONS(3125), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3125), - [sym_interpolation_verbatim_start] = ACTIONS(3125), - [sym_interpolation_raw_start] = ACTIONS(3125), - [sym_raw_string_start] = ACTIONS(3125), + [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), }, [2049] = { [sym_preproc_region] = STATE(2049), @@ -374540,117 +382245,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2049), [sym_preproc_define] = STATE(2049), [sym_preproc_undef] = STATE(2049), - [sym__identifier_token] = ACTIONS(3115), - [anon_sym_extern] = ACTIONS(3115), - [anon_sym_alias] = ACTIONS(3115), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_global] = ACTIONS(3115), - [anon_sym_using] = ACTIONS(3115), - [anon_sym_unsafe] = ACTIONS(3115), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3115), - [anon_sym_ref] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_delegate] = ACTIONS(3115), - [anon_sym_abstract] = ACTIONS(3115), - [anon_sym_async] = ACTIONS(3115), - [anon_sym_const] = ACTIONS(3115), - [anon_sym_file] = ACTIONS(3115), - [anon_sym_fixed] = ACTIONS(3115), - [anon_sym_internal] = ACTIONS(3115), - [anon_sym_new] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_partial] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_required] = ACTIONS(3115), - [anon_sym_sealed] = ACTIONS(3115), - [anon_sym_virtual] = ACTIONS(3115), - [anon_sym_volatile] = ACTIONS(3115), - [anon_sym_where] = ACTIONS(3115), - [anon_sym_notnull] = ACTIONS(3115), - [anon_sym_unmanaged] = ACTIONS(3115), - [anon_sym_checked] = ACTIONS(3115), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3115), - [anon_sym_false] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3115), - [anon_sym_DASH] = ACTIONS(3115), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_this] = ACTIONS(3115), - [anon_sym_scoped] = ACTIONS(3115), - [anon_sym_base] = ACTIONS(3115), - [anon_sym_var] = ACTIONS(3115), - [sym_predefined_type] = ACTIONS(3115), - [anon_sym_break] = ACTIONS(3115), - [anon_sym_unchecked] = ACTIONS(3115), - [anon_sym_continue] = ACTIONS(3115), - [anon_sym_do] = ACTIONS(3115), - [anon_sym_while] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(3115), - [anon_sym_lock] = ACTIONS(3115), - [anon_sym_yield] = ACTIONS(3115), - [anon_sym_switch] = ACTIONS(3115), - [anon_sym_case] = ACTIONS(3115), - [anon_sym_default] = ACTIONS(3115), - [anon_sym_throw] = ACTIONS(3115), - [anon_sym_try] = ACTIONS(3115), - [anon_sym_when] = ACTIONS(3115), - [anon_sym_await] = ACTIONS(3115), - [anon_sym_foreach] = ACTIONS(3115), - [anon_sym_goto] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3115), - [anon_sym_DOT_DOT] = ACTIONS(3117), - [anon_sym_from] = ACTIONS(3115), - [anon_sym_into] = ACTIONS(3115), - [anon_sym_join] = ACTIONS(3115), - [anon_sym_on] = ACTIONS(3115), - [anon_sym_equals] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), - [anon_sym_orderby] = ACTIONS(3115), - [anon_sym_ascending] = ACTIONS(3115), - [anon_sym_descending] = ACTIONS(3115), - [anon_sym_group] = ACTIONS(3115), - [anon_sym_by] = ACTIONS(3115), - [anon_sym_select] = ACTIONS(3115), - [anon_sym_stackalloc] = ACTIONS(3115), - [anon_sym_sizeof] = ACTIONS(3115), - [anon_sym_typeof] = ACTIONS(3115), - [anon_sym___makeref] = ACTIONS(3115), - [anon_sym___reftype] = ACTIONS(3115), - [anon_sym___refvalue] = ACTIONS(3115), - [sym_null_literal] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3117), - [sym_integer_literal] = ACTIONS(3115), - [sym_real_literal] = ACTIONS(3117), - [anon_sym_DQUOTE] = ACTIONS(3117), - [sym_verbatim_string_literal] = ACTIONS(3117), - [aux_sym_preproc_if_token1] = ACTIONS(3117), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3117), - [sym_interpolation_verbatim_start] = ACTIONS(3117), - [sym_interpolation_raw_start] = ACTIONS(3117), - [sym_raw_string_start] = ACTIONS(3117), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2050] = { [sym_preproc_region] = STATE(2050), @@ -374662,117 +382372,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2050), [sym_preproc_define] = STATE(2050), [sym_preproc_undef] = STATE(2050), - [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), + [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), @@ -374784,117 +382499,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2051), [sym_preproc_define] = STATE(2051), [sym_preproc_undef] = STATE(2051), - [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), + [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), }, [2052] = { [sym_preproc_region] = STATE(2052), @@ -374906,117 +382626,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2052), [sym_preproc_define] = STATE(2052), [sym_preproc_undef] = STATE(2052), - [sym__identifier_token] = ACTIONS(3191), - [anon_sym_extern] = ACTIONS(3191), - [anon_sym_alias] = ACTIONS(3191), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_global] = ACTIONS(3191), - [anon_sym_using] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_static] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_ref] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_delegate] = ACTIONS(3191), - [anon_sym_abstract] = ACTIONS(3191), - [anon_sym_async] = ACTIONS(3191), - [anon_sym_const] = ACTIONS(3191), - [anon_sym_file] = ACTIONS(3191), - [anon_sym_fixed] = ACTIONS(3191), - [anon_sym_internal] = ACTIONS(3191), - [anon_sym_new] = ACTIONS(3191), - [anon_sym_override] = ACTIONS(3191), - [anon_sym_partial] = ACTIONS(3191), - [anon_sym_private] = ACTIONS(3191), - [anon_sym_protected] = ACTIONS(3191), - [anon_sym_public] = ACTIONS(3191), - [anon_sym_readonly] = ACTIONS(3191), - [anon_sym_required] = ACTIONS(3191), - [anon_sym_sealed] = ACTIONS(3191), - [anon_sym_virtual] = ACTIONS(3191), - [anon_sym_volatile] = ACTIONS(3191), - [anon_sym_where] = ACTIONS(3191), - [anon_sym_notnull] = ACTIONS(3191), - [anon_sym_unmanaged] = ACTIONS(3191), - [anon_sym_checked] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3191), - [anon_sym_false] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_this] = ACTIONS(3191), - [anon_sym_scoped] = ACTIONS(3191), - [anon_sym_base] = ACTIONS(3191), - [anon_sym_var] = ACTIONS(3191), - [sym_predefined_type] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_unchecked] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_when] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_foreach] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3193), - [anon_sym_from] = ACTIONS(3191), - [anon_sym_into] = ACTIONS(3191), - [anon_sym_join] = ACTIONS(3191), - [anon_sym_on] = ACTIONS(3191), - [anon_sym_equals] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3191), - [anon_sym_orderby] = ACTIONS(3191), - [anon_sym_ascending] = ACTIONS(3191), - [anon_sym_descending] = ACTIONS(3191), - [anon_sym_group] = ACTIONS(3191), - [anon_sym_by] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_stackalloc] = ACTIONS(3191), - [anon_sym_sizeof] = ACTIONS(3191), - [anon_sym_typeof] = ACTIONS(3191), - [anon_sym___makeref] = ACTIONS(3191), - [anon_sym___reftype] = ACTIONS(3191), - [anon_sym___refvalue] = ACTIONS(3191), - [sym_null_literal] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3193), - [sym_integer_literal] = ACTIONS(3191), - [sym_real_literal] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [sym_verbatim_string_literal] = ACTIONS(3193), - [aux_sym_preproc_if_token1] = ACTIONS(3193), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3193), - [sym_interpolation_verbatim_start] = ACTIONS(3193), - [sym_interpolation_raw_start] = ACTIONS(3193), - [sym_raw_string_start] = ACTIONS(3193), + [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), @@ -375028,117 +382753,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2053), [sym_preproc_define] = STATE(2053), [sym_preproc_undef] = STATE(2053), - [sym__identifier_token] = ACTIONS(3195), - [anon_sym_extern] = ACTIONS(3195), - [anon_sym_alias] = ACTIONS(3195), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_global] = ACTIONS(3195), - [anon_sym_using] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_static] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_ref] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_delegate] = ACTIONS(3195), - [anon_sym_abstract] = ACTIONS(3195), - [anon_sym_async] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_file] = ACTIONS(3195), - [anon_sym_fixed] = ACTIONS(3195), - [anon_sym_internal] = ACTIONS(3195), - [anon_sym_new] = ACTIONS(3195), - [anon_sym_override] = ACTIONS(3195), - [anon_sym_partial] = ACTIONS(3195), - [anon_sym_private] = ACTIONS(3195), - [anon_sym_protected] = ACTIONS(3195), - [anon_sym_public] = ACTIONS(3195), - [anon_sym_readonly] = ACTIONS(3195), - [anon_sym_required] = ACTIONS(3195), - [anon_sym_sealed] = ACTIONS(3195), - [anon_sym_virtual] = ACTIONS(3195), - [anon_sym_volatile] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(3195), - [anon_sym_notnull] = ACTIONS(3195), - [anon_sym_unmanaged] = ACTIONS(3195), - [anon_sym_checked] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3195), - [anon_sym_false] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_this] = ACTIONS(3195), - [anon_sym_scoped] = ACTIONS(3195), - [anon_sym_base] = ACTIONS(3195), - [anon_sym_var] = ACTIONS(3195), - [sym_predefined_type] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_unchecked] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_do] = ACTIONS(3195), - [anon_sym_while] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_yield] = ACTIONS(3195), - [anon_sym_switch] = ACTIONS(3195), - [anon_sym_case] = ACTIONS(3195), - [anon_sym_default] = ACTIONS(3195), - [anon_sym_throw] = ACTIONS(3195), - [anon_sym_try] = ACTIONS(3195), - [anon_sym_when] = ACTIONS(3195), - [anon_sym_await] = ACTIONS(3195), - [anon_sym_foreach] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_DOT_DOT] = ACTIONS(3197), - [anon_sym_from] = ACTIONS(3195), - [anon_sym_into] = ACTIONS(3195), - [anon_sym_join] = ACTIONS(3195), - [anon_sym_on] = ACTIONS(3195), - [anon_sym_equals] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3195), - [anon_sym_orderby] = ACTIONS(3195), - [anon_sym_ascending] = ACTIONS(3195), - [anon_sym_descending] = ACTIONS(3195), - [anon_sym_group] = ACTIONS(3195), - [anon_sym_by] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_stackalloc] = ACTIONS(3195), - [anon_sym_sizeof] = ACTIONS(3195), - [anon_sym_typeof] = ACTIONS(3195), - [anon_sym___makeref] = ACTIONS(3195), - [anon_sym___reftype] = ACTIONS(3195), - [anon_sym___refvalue] = ACTIONS(3195), - [sym_null_literal] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3197), - [sym_integer_literal] = ACTIONS(3195), - [sym_real_literal] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3197), - [sym_verbatim_string_literal] = ACTIONS(3197), - [aux_sym_preproc_if_token1] = ACTIONS(3197), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3197), - [sym_interpolation_verbatim_start] = ACTIONS(3197), - [sym_interpolation_raw_start] = ACTIONS(3197), - [sym_raw_string_start] = ACTIONS(3197), + [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), @@ -375150,117 +382880,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2054), [sym_preproc_define] = STATE(2054), [sym_preproc_undef] = STATE(2054), - [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), + [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), @@ -375272,117 +383007,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2055), [sym_preproc_define] = STATE(2055), [sym_preproc_undef] = STATE(2055), - [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), + [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), @@ -375394,117 +383134,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2056), [sym_preproc_define] = STATE(2056), [sym_preproc_undef] = STATE(2056), - [sym__identifier_token] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym_alias] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_global] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_unsafe] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_ref] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_delegate] = ACTIONS(3155), - [anon_sym_abstract] = ACTIONS(3155), - [anon_sym_async] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_file] = ACTIONS(3155), - [anon_sym_fixed] = ACTIONS(3155), - [anon_sym_internal] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_partial] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_readonly] = ACTIONS(3155), - [anon_sym_required] = ACTIONS(3155), - [anon_sym_sealed] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_where] = ACTIONS(3155), - [anon_sym_notnull] = ACTIONS(3155), - [anon_sym_unmanaged] = ACTIONS(3155), - [anon_sym_checked] = ACTIONS(3155), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_true] = ACTIONS(3155), - [anon_sym_false] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_this] = ACTIONS(3155), - [anon_sym_scoped] = ACTIONS(3155), - [anon_sym_base] = ACTIONS(3155), - [anon_sym_var] = ACTIONS(3155), - [sym_predefined_type] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_unchecked] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_lock] = ACTIONS(3155), - [anon_sym_yield] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_when] = ACTIONS(3155), - [anon_sym_await] = ACTIONS(3155), - [anon_sym_foreach] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_DOT_DOT] = ACTIONS(3157), - [anon_sym_from] = ACTIONS(3155), - [anon_sym_into] = ACTIONS(3155), - [anon_sym_join] = ACTIONS(3155), - [anon_sym_on] = ACTIONS(3155), - [anon_sym_equals] = ACTIONS(3155), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_orderby] = ACTIONS(3155), - [anon_sym_ascending] = ACTIONS(3155), - [anon_sym_descending] = ACTIONS(3155), - [anon_sym_group] = ACTIONS(3155), - [anon_sym_by] = ACTIONS(3155), - [anon_sym_select] = ACTIONS(3155), - [anon_sym_stackalloc] = ACTIONS(3155), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym_typeof] = ACTIONS(3155), - [anon_sym___makeref] = ACTIONS(3155), - [anon_sym___reftype] = ACTIONS(3155), - [anon_sym___refvalue] = ACTIONS(3155), - [sym_null_literal] = ACTIONS(3155), - [anon_sym_SQUOTE] = ACTIONS(3157), - [sym_integer_literal] = ACTIONS(3155), - [sym_real_literal] = ACTIONS(3157), - [anon_sym_DQUOTE] = ACTIONS(3157), - [sym_verbatim_string_literal] = ACTIONS(3157), - [aux_sym_preproc_if_token1] = ACTIONS(3157), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3157), - [sym_interpolation_verbatim_start] = ACTIONS(3157), - [sym_interpolation_raw_start] = ACTIONS(3157), - [sym_raw_string_start] = ACTIONS(3157), + [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), @@ -375516,117 +383261,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2057), [sym_preproc_define] = STATE(2057), [sym_preproc_undef] = STATE(2057), - [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), + [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), @@ -375638,117 +383387,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2058), [sym_preproc_define] = STATE(2058), [sym_preproc_undef] = STATE(2058), - [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), + [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), @@ -375760,117 +383513,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2059), [sym_preproc_define] = STATE(2059), [sym_preproc_undef] = STATE(2059), - [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_when] = 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), + [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), @@ -375882,117 +383639,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2060), [sym_preproc_define] = STATE(2060), [sym_preproc_undef] = STATE(2060), - [sym__identifier_token] = ACTIONS(3151), - [anon_sym_extern] = ACTIONS(3151), - [anon_sym_alias] = ACTIONS(3151), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_global] = ACTIONS(3151), - [anon_sym_using] = ACTIONS(3151), - [anon_sym_unsafe] = ACTIONS(3151), - [anon_sym_static] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3151), - [anon_sym_ref] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_delegate] = ACTIONS(3151), - [anon_sym_abstract] = ACTIONS(3151), - [anon_sym_async] = ACTIONS(3151), - [anon_sym_const] = ACTIONS(3151), - [anon_sym_file] = ACTIONS(3151), - [anon_sym_fixed] = ACTIONS(3151), - [anon_sym_internal] = ACTIONS(3151), - [anon_sym_new] = ACTIONS(3151), - [anon_sym_override] = ACTIONS(3151), - [anon_sym_partial] = ACTIONS(3151), - [anon_sym_private] = ACTIONS(3151), - [anon_sym_protected] = ACTIONS(3151), - [anon_sym_public] = ACTIONS(3151), - [anon_sym_readonly] = ACTIONS(3151), - [anon_sym_required] = ACTIONS(3151), - [anon_sym_sealed] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3151), - [anon_sym_volatile] = ACTIONS(3151), - [anon_sym_where] = ACTIONS(3151), - [anon_sym_notnull] = ACTIONS(3151), - [anon_sym_unmanaged] = ACTIONS(3151), - [anon_sym_checked] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_true] = ACTIONS(3151), - [anon_sym_false] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3151), - [anon_sym_DASH] = ACTIONS(3151), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_this] = ACTIONS(3151), - [anon_sym_scoped] = ACTIONS(3151), - [anon_sym_base] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3151), - [sym_predefined_type] = ACTIONS(3151), - [anon_sym_break] = ACTIONS(3151), - [anon_sym_unchecked] = ACTIONS(3151), - [anon_sym_continue] = ACTIONS(3151), - [anon_sym_do] = ACTIONS(3151), - [anon_sym_while] = ACTIONS(3151), - [anon_sym_for] = ACTIONS(3151), - [anon_sym_lock] = ACTIONS(3151), - [anon_sym_yield] = ACTIONS(3151), - [anon_sym_switch] = ACTIONS(3151), - [anon_sym_case] = ACTIONS(3151), - [anon_sym_default] = ACTIONS(3151), - [anon_sym_throw] = ACTIONS(3151), - [anon_sym_try] = ACTIONS(3151), - [anon_sym_when] = ACTIONS(3151), - [anon_sym_await] = ACTIONS(3151), - [anon_sym_foreach] = ACTIONS(3151), - [anon_sym_goto] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3151), - [anon_sym_else] = ACTIONS(3151), - [anon_sym_DOT_DOT] = ACTIONS(3153), - [anon_sym_from] = ACTIONS(3151), - [anon_sym_into] = ACTIONS(3151), - [anon_sym_join] = ACTIONS(3151), - [anon_sym_on] = ACTIONS(3151), - [anon_sym_equals] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3151), - [anon_sym_orderby] = ACTIONS(3151), - [anon_sym_ascending] = ACTIONS(3151), - [anon_sym_descending] = ACTIONS(3151), - [anon_sym_group] = ACTIONS(3151), - [anon_sym_by] = ACTIONS(3151), - [anon_sym_select] = ACTIONS(3151), - [anon_sym_stackalloc] = ACTIONS(3151), - [anon_sym_sizeof] = ACTIONS(3151), - [anon_sym_typeof] = ACTIONS(3151), - [anon_sym___makeref] = ACTIONS(3151), - [anon_sym___reftype] = ACTIONS(3151), - [anon_sym___refvalue] = ACTIONS(3151), - [sym_null_literal] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3153), - [sym_integer_literal] = ACTIONS(3151), - [sym_real_literal] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_verbatim_string_literal] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3153), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3153), - [sym_interpolation_verbatim_start] = ACTIONS(3153), - [sym_interpolation_raw_start] = ACTIONS(3153), - [sym_raw_string_start] = ACTIONS(3153), + [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), @@ -376004,117 +383765,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2061), [sym_preproc_define] = STATE(2061), [sym_preproc_undef] = STATE(2061), - [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_when] = ACTIONS(3103), - [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), + [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), @@ -376126,117 +383891,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2062), [sym_preproc_define] = STATE(2062), [sym_preproc_undef] = STATE(2062), - [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), + [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), @@ -376248,117 +384017,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2063), [sym_preproc_define] = STATE(2063), [sym_preproc_undef] = STATE(2063), - [sym__identifier_token] = ACTIONS(3119), - [anon_sym_extern] = ACTIONS(3119), - [anon_sym_alias] = ACTIONS(3119), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_global] = ACTIONS(3119), - [anon_sym_using] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(3119), - [anon_sym_static] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3119), - [anon_sym_ref] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_delegate] = ACTIONS(3119), - [anon_sym_abstract] = ACTIONS(3119), - [anon_sym_async] = ACTIONS(3119), - [anon_sym_const] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(3119), - [anon_sym_fixed] = ACTIONS(3119), - [anon_sym_internal] = ACTIONS(3119), - [anon_sym_new] = ACTIONS(3119), - [anon_sym_override] = ACTIONS(3119), - [anon_sym_partial] = ACTIONS(3119), - [anon_sym_private] = ACTIONS(3119), - [anon_sym_protected] = ACTIONS(3119), - [anon_sym_public] = ACTIONS(3119), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_required] = ACTIONS(3119), - [anon_sym_sealed] = ACTIONS(3119), - [anon_sym_virtual] = ACTIONS(3119), - [anon_sym_volatile] = ACTIONS(3119), - [anon_sym_where] = ACTIONS(3119), - [anon_sym_notnull] = ACTIONS(3119), - [anon_sym_unmanaged] = ACTIONS(3119), - [anon_sym_checked] = ACTIONS(3119), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3119), - [anon_sym_false] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3119), - [anon_sym_DASH] = ACTIONS(3119), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_this] = ACTIONS(3119), - [anon_sym_scoped] = ACTIONS(3119), - [anon_sym_base] = ACTIONS(3119), - [anon_sym_var] = ACTIONS(3119), - [sym_predefined_type] = ACTIONS(3119), - [anon_sym_break] = ACTIONS(3119), - [anon_sym_unchecked] = ACTIONS(3119), - [anon_sym_continue] = ACTIONS(3119), - [anon_sym_do] = ACTIONS(3119), - [anon_sym_while] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(3119), - [anon_sym_lock] = ACTIONS(3119), - [anon_sym_yield] = ACTIONS(3119), - [anon_sym_switch] = ACTIONS(3119), - [anon_sym_case] = ACTIONS(3119), - [anon_sym_default] = ACTIONS(3119), - [anon_sym_throw] = ACTIONS(3119), - [anon_sym_try] = ACTIONS(3119), - [anon_sym_when] = ACTIONS(3119), - [anon_sym_await] = ACTIONS(3119), - [anon_sym_foreach] = ACTIONS(3119), - [anon_sym_goto] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3119), - [anon_sym_DOT_DOT] = ACTIONS(3121), - [anon_sym_from] = ACTIONS(3119), - [anon_sym_into] = ACTIONS(3119), - [anon_sym_join] = ACTIONS(3119), - [anon_sym_on] = ACTIONS(3119), - [anon_sym_equals] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3119), - [anon_sym_orderby] = ACTIONS(3119), - [anon_sym_ascending] = ACTIONS(3119), - [anon_sym_descending] = ACTIONS(3119), - [anon_sym_group] = ACTIONS(3119), - [anon_sym_by] = ACTIONS(3119), - [anon_sym_select] = ACTIONS(3119), - [anon_sym_stackalloc] = ACTIONS(3119), - [anon_sym_sizeof] = ACTIONS(3119), - [anon_sym_typeof] = ACTIONS(3119), - [anon_sym___makeref] = ACTIONS(3119), - [anon_sym___reftype] = ACTIONS(3119), - [anon_sym___refvalue] = ACTIONS(3119), - [sym_null_literal] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3121), - [sym_integer_literal] = ACTIONS(3119), - [sym_real_literal] = ACTIONS(3121), - [anon_sym_DQUOTE] = ACTIONS(3121), - [sym_verbatim_string_literal] = ACTIONS(3121), - [aux_sym_preproc_if_token1] = ACTIONS(3121), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3121), - [sym_interpolation_verbatim_start] = ACTIONS(3121), - [sym_interpolation_raw_start] = ACTIONS(3121), - [sym_raw_string_start] = ACTIONS(3121), + [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), @@ -376370,117 +384143,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2064), [sym_preproc_define] = STATE(2064), [sym_preproc_undef] = STATE(2064), - [sym__identifier_token] = ACTIONS(3179), - [anon_sym_extern] = ACTIONS(3179), - [anon_sym_alias] = ACTIONS(3179), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_global] = ACTIONS(3179), - [anon_sym_using] = ACTIONS(3179), - [anon_sym_unsafe] = ACTIONS(3179), - [anon_sym_static] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3179), - [anon_sym_ref] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_delegate] = ACTIONS(3179), - [anon_sym_abstract] = ACTIONS(3179), - [anon_sym_async] = ACTIONS(3179), - [anon_sym_const] = ACTIONS(3179), - [anon_sym_file] = ACTIONS(3179), - [anon_sym_fixed] = ACTIONS(3179), - [anon_sym_internal] = ACTIONS(3179), - [anon_sym_new] = ACTIONS(3179), - [anon_sym_override] = ACTIONS(3179), - [anon_sym_partial] = ACTIONS(3179), - [anon_sym_private] = ACTIONS(3179), - [anon_sym_protected] = ACTIONS(3179), - [anon_sym_public] = ACTIONS(3179), - [anon_sym_readonly] = ACTIONS(3179), - [anon_sym_required] = ACTIONS(3179), - [anon_sym_sealed] = ACTIONS(3179), - [anon_sym_virtual] = ACTIONS(3179), - [anon_sym_volatile] = ACTIONS(3179), - [anon_sym_where] = ACTIONS(3179), - [anon_sym_notnull] = ACTIONS(3179), - [anon_sym_unmanaged] = ACTIONS(3179), - [anon_sym_checked] = ACTIONS(3179), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3179), - [anon_sym_false] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3179), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_this] = ACTIONS(3179), - [anon_sym_scoped] = ACTIONS(3179), - [anon_sym_base] = ACTIONS(3179), - [anon_sym_var] = ACTIONS(3179), - [sym_predefined_type] = ACTIONS(3179), - [anon_sym_break] = ACTIONS(3179), - [anon_sym_unchecked] = ACTIONS(3179), - [anon_sym_continue] = ACTIONS(3179), - [anon_sym_do] = ACTIONS(3179), - [anon_sym_while] = ACTIONS(3179), - [anon_sym_for] = ACTIONS(3179), - [anon_sym_lock] = ACTIONS(3179), - [anon_sym_yield] = ACTIONS(3179), - [anon_sym_switch] = ACTIONS(3179), - [anon_sym_case] = ACTIONS(3179), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_throw] = ACTIONS(3179), - [anon_sym_try] = ACTIONS(3179), - [anon_sym_when] = ACTIONS(3179), - [anon_sym_await] = ACTIONS(3179), - [anon_sym_foreach] = ACTIONS(3179), - [anon_sym_goto] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3179), - [anon_sym_DOT_DOT] = ACTIONS(3181), - [anon_sym_from] = ACTIONS(3179), - [anon_sym_into] = ACTIONS(3179), - [anon_sym_join] = ACTIONS(3179), - [anon_sym_on] = ACTIONS(3179), - [anon_sym_equals] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3179), - [anon_sym_orderby] = ACTIONS(3179), - [anon_sym_ascending] = ACTIONS(3179), - [anon_sym_descending] = ACTIONS(3179), - [anon_sym_group] = ACTIONS(3179), - [anon_sym_by] = ACTIONS(3179), - [anon_sym_select] = ACTIONS(3179), - [anon_sym_stackalloc] = ACTIONS(3179), - [anon_sym_sizeof] = ACTIONS(3179), - [anon_sym_typeof] = ACTIONS(3179), - [anon_sym___makeref] = ACTIONS(3179), - [anon_sym___reftype] = ACTIONS(3179), - [anon_sym___refvalue] = ACTIONS(3179), - [sym_null_literal] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3181), - [sym_integer_literal] = ACTIONS(3179), - [sym_real_literal] = ACTIONS(3181), - [anon_sym_DQUOTE] = ACTIONS(3181), - [sym_verbatim_string_literal] = ACTIONS(3181), - [aux_sym_preproc_if_token1] = ACTIONS(3181), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3181), - [sym_interpolation_verbatim_start] = ACTIONS(3181), - [sym_interpolation_raw_start] = ACTIONS(3181), - [sym_raw_string_start] = ACTIONS(3181), + [ts_builtin_sym_end] = ACTIONS(3345), + [sym__identifier_token] = ACTIONS(3343), + [anon_sym_extern] = ACTIONS(3343), + [anon_sym_alias] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_global] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_ref] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_delegate] = ACTIONS(3343), + [anon_sym_record] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_file] = ACTIONS(3343), + [anon_sym_fixed] = ACTIONS(3343), + [anon_sym_internal] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_partial] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_required] = ACTIONS(3343), + [anon_sym_sealed] = ACTIONS(3343), + [anon_sym_virtual] = ACTIONS(3343), + [anon_sym_volatile] = ACTIONS(3343), + [anon_sym_where] = ACTIONS(3343), + [anon_sym_notnull] = ACTIONS(3343), + [anon_sym_unmanaged] = ACTIONS(3343), + [anon_sym_checked] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_CARET] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_this] = ACTIONS(3343), + [anon_sym_scoped] = ACTIONS(3343), + [anon_sym_base] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [sym_predefined_type] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_unchecked] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_lock] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_when] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_foreach] = ACTIONS(3343), + [anon_sym_goto] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_from] = ACTIONS(3343), + [anon_sym_into] = ACTIONS(3343), + [anon_sym_join] = ACTIONS(3343), + [anon_sym_on] = ACTIONS(3343), + [anon_sym_equals] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_orderby] = ACTIONS(3343), + [anon_sym_ascending] = ACTIONS(3343), + [anon_sym_descending] = ACTIONS(3343), + [anon_sym_group] = ACTIONS(3343), + [anon_sym_by] = ACTIONS(3343), + [anon_sym_select] = ACTIONS(3343), + [anon_sym_stackalloc] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym___makeref] = ACTIONS(3343), + [anon_sym___reftype] = ACTIONS(3343), + [anon_sym___refvalue] = ACTIONS(3343), + [sym_null_literal] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3345), + [sym_integer_literal] = ACTIONS(3343), + [sym_real_literal] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [sym_verbatim_string_literal] = ACTIONS(3345), + [aux_sym_preproc_if_token1] = ACTIONS(3345), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3345), + [sym_interpolation_verbatim_start] = ACTIONS(3345), + [sym_interpolation_raw_start] = ACTIONS(3345), + [sym_raw_string_start] = ACTIONS(3345), }, [2065] = { [sym_preproc_region] = STATE(2065), @@ -376492,117 +384269,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2065), [sym_preproc_define] = STATE(2065), [sym_preproc_undef] = STATE(2065), - [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), + [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), @@ -376614,117 +384395,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2066), [sym_preproc_define] = STATE(2066), [sym_preproc_undef] = STATE(2066), - [sym__identifier_token] = ACTIONS(3167), - [anon_sym_extern] = ACTIONS(3167), - [anon_sym_alias] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_global] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_unsafe] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_ref] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_delegate] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_file] = ACTIONS(3167), - [anon_sym_fixed] = ACTIONS(3167), - [anon_sym_internal] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_partial] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_required] = ACTIONS(3167), - [anon_sym_sealed] = ACTIONS(3167), - [anon_sym_virtual] = ACTIONS(3167), - [anon_sym_volatile] = ACTIONS(3167), - [anon_sym_where] = ACTIONS(3167), - [anon_sym_notnull] = ACTIONS(3167), - [anon_sym_unmanaged] = ACTIONS(3167), - [anon_sym_checked] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3167), - [anon_sym_false] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_this] = ACTIONS(3167), - [anon_sym_scoped] = ACTIONS(3167), - [anon_sym_base] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [sym_predefined_type] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_unchecked] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_lock] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_when] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_foreach] = ACTIONS(3167), - [anon_sym_goto] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3167), - [anon_sym_DOT_DOT] = ACTIONS(3169), - [anon_sym_from] = ACTIONS(3167), - [anon_sym_into] = ACTIONS(3167), - [anon_sym_join] = ACTIONS(3167), - [anon_sym_on] = ACTIONS(3167), - [anon_sym_equals] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_orderby] = ACTIONS(3167), - [anon_sym_ascending] = ACTIONS(3167), - [anon_sym_descending] = ACTIONS(3167), - [anon_sym_group] = ACTIONS(3167), - [anon_sym_by] = ACTIONS(3167), - [anon_sym_select] = ACTIONS(3167), - [anon_sym_stackalloc] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym___makeref] = ACTIONS(3167), - [anon_sym___reftype] = ACTIONS(3167), - [anon_sym___refvalue] = ACTIONS(3167), - [sym_null_literal] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3169), - [sym_integer_literal] = ACTIONS(3167), - [sym_real_literal] = ACTIONS(3169), - [anon_sym_DQUOTE] = ACTIONS(3169), - [sym_verbatim_string_literal] = ACTIONS(3169), - [aux_sym_preproc_if_token1] = ACTIONS(3169), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3169), - [sym_interpolation_verbatim_start] = ACTIONS(3169), - [sym_interpolation_raw_start] = ACTIONS(3169), - [sym_raw_string_start] = ACTIONS(3169), + [ts_builtin_sym_end] = ACTIONS(3365), + [sym__identifier_token] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_alias] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_global] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_unsafe] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_ref] = ACTIONS(3363), + [anon_sym_struct] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_delegate] = ACTIONS(3363), + [anon_sym_record] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_file] = ACTIONS(3363), + [anon_sym_fixed] = ACTIONS(3363), + [anon_sym_internal] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_partial] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_required] = ACTIONS(3363), + [anon_sym_sealed] = ACTIONS(3363), + [anon_sym_virtual] = ACTIONS(3363), + [anon_sym_volatile] = ACTIONS(3363), + [anon_sym_where] = ACTIONS(3363), + [anon_sym_notnull] = ACTIONS(3363), + [anon_sym_unmanaged] = ACTIONS(3363), + [anon_sym_checked] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_CARET] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_scoped] = ACTIONS(3363), + [anon_sym_base] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [sym_predefined_type] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_unchecked] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_lock] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_when] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_foreach] = ACTIONS(3363), + [anon_sym_goto] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_DOT_DOT] = ACTIONS(3365), + [anon_sym_from] = ACTIONS(3363), + [anon_sym_into] = ACTIONS(3363), + [anon_sym_join] = ACTIONS(3363), + [anon_sym_on] = ACTIONS(3363), + [anon_sym_equals] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_orderby] = ACTIONS(3363), + [anon_sym_ascending] = ACTIONS(3363), + [anon_sym_descending] = ACTIONS(3363), + [anon_sym_group] = ACTIONS(3363), + [anon_sym_by] = ACTIONS(3363), + [anon_sym_select] = ACTIONS(3363), + [anon_sym_stackalloc] = ACTIONS(3363), + [anon_sym_sizeof] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym___makeref] = ACTIONS(3363), + [anon_sym___reftype] = ACTIONS(3363), + [anon_sym___refvalue] = ACTIONS(3363), + [sym_null_literal] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3365), + [sym_integer_literal] = ACTIONS(3363), + [sym_real_literal] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [sym_verbatim_string_literal] = ACTIONS(3365), + [aux_sym_preproc_if_token1] = ACTIONS(3365), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2067] = { [sym_preproc_region] = STATE(2067), @@ -376736,117 +384521,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2067), [sym_preproc_define] = STATE(2067), [sym_preproc_undef] = STATE(2067), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2068] = { [sym_preproc_region] = STATE(2068), @@ -376858,117 +384647,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2068), [sym_preproc_define] = STATE(2068), [sym_preproc_undef] = STATE(2068), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3349), + [sym_interpolation_verbatim_start] = ACTIONS(3349), + [sym_interpolation_raw_start] = ACTIONS(3349), + [sym_raw_string_start] = ACTIONS(3349), }, [2069] = { [sym_preproc_region] = STATE(2069), @@ -376980,117 +384773,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2069), [sym_preproc_define] = STATE(2069), [sym_preproc_undef] = STATE(2069), - [sym__identifier_token] = ACTIONS(3147), - [anon_sym_extern] = ACTIONS(3147), - [anon_sym_alias] = ACTIONS(3147), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_global] = ACTIONS(3147), - [anon_sym_using] = ACTIONS(3147), - [anon_sym_unsafe] = ACTIONS(3147), - [anon_sym_static] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3147), - [anon_sym_ref] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_delegate] = ACTIONS(3147), - [anon_sym_abstract] = ACTIONS(3147), - [anon_sym_async] = ACTIONS(3147), - [anon_sym_const] = ACTIONS(3147), - [anon_sym_file] = ACTIONS(3147), - [anon_sym_fixed] = ACTIONS(3147), - [anon_sym_internal] = ACTIONS(3147), - [anon_sym_new] = ACTIONS(3147), - [anon_sym_override] = ACTIONS(3147), - [anon_sym_partial] = ACTIONS(3147), - [anon_sym_private] = ACTIONS(3147), - [anon_sym_protected] = ACTIONS(3147), - [anon_sym_public] = ACTIONS(3147), - [anon_sym_readonly] = ACTIONS(3147), - [anon_sym_required] = ACTIONS(3147), - [anon_sym_sealed] = ACTIONS(3147), - [anon_sym_virtual] = ACTIONS(3147), - [anon_sym_volatile] = ACTIONS(3147), - [anon_sym_where] = ACTIONS(3147), - [anon_sym_notnull] = ACTIONS(3147), - [anon_sym_unmanaged] = ACTIONS(3147), - [anon_sym_checked] = ACTIONS(3147), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3147), - [anon_sym_false] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3147), - [anon_sym_DASH] = ACTIONS(3147), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_this] = ACTIONS(3147), - [anon_sym_scoped] = ACTIONS(3147), - [anon_sym_base] = ACTIONS(3147), - [anon_sym_var] = ACTIONS(3147), - [sym_predefined_type] = ACTIONS(3147), - [anon_sym_break] = ACTIONS(3147), - [anon_sym_unchecked] = ACTIONS(3147), - [anon_sym_continue] = ACTIONS(3147), - [anon_sym_do] = ACTIONS(3147), - [anon_sym_while] = ACTIONS(3147), - [anon_sym_for] = ACTIONS(3147), - [anon_sym_lock] = ACTIONS(3147), - [anon_sym_yield] = ACTIONS(3147), - [anon_sym_switch] = ACTIONS(3147), - [anon_sym_case] = ACTIONS(3147), - [anon_sym_default] = ACTIONS(3147), - [anon_sym_throw] = ACTIONS(3147), - [anon_sym_try] = ACTIONS(3147), - [anon_sym_when] = ACTIONS(3147), - [anon_sym_await] = ACTIONS(3147), - [anon_sym_foreach] = ACTIONS(3147), - [anon_sym_goto] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3147), - [anon_sym_else] = ACTIONS(3147), - [anon_sym_DOT_DOT] = ACTIONS(3149), - [anon_sym_from] = ACTIONS(3147), - [anon_sym_into] = ACTIONS(3147), - [anon_sym_join] = ACTIONS(3147), - [anon_sym_on] = ACTIONS(3147), - [anon_sym_equals] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3147), - [anon_sym_orderby] = ACTIONS(3147), - [anon_sym_ascending] = ACTIONS(3147), - [anon_sym_descending] = ACTIONS(3147), - [anon_sym_group] = ACTIONS(3147), - [anon_sym_by] = ACTIONS(3147), - [anon_sym_select] = ACTIONS(3147), - [anon_sym_stackalloc] = ACTIONS(3147), - [anon_sym_sizeof] = ACTIONS(3147), - [anon_sym_typeof] = ACTIONS(3147), - [anon_sym___makeref] = ACTIONS(3147), - [anon_sym___reftype] = ACTIONS(3147), - [anon_sym___refvalue] = ACTIONS(3147), - [sym_null_literal] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3149), - [sym_integer_literal] = ACTIONS(3147), - [sym_real_literal] = ACTIONS(3149), - [anon_sym_DQUOTE] = ACTIONS(3149), - [sym_verbatim_string_literal] = ACTIONS(3149), - [aux_sym_preproc_if_token1] = ACTIONS(3149), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3149), - [sym_interpolation_verbatim_start] = ACTIONS(3149), - [sym_interpolation_raw_start] = ACTIONS(3149), - [sym_raw_string_start] = ACTIONS(3149), + [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), }, [2070] = { [sym_preproc_region] = STATE(2070), @@ -377102,117 +384899,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2070), [sym_preproc_define] = STATE(2070), [sym_preproc_undef] = STATE(2070), - [sym__identifier_token] = ACTIONS(3217), - [anon_sym_extern] = ACTIONS(3217), - [anon_sym_alias] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_global] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_unsafe] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_ref] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_delegate] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_file] = ACTIONS(3217), - [anon_sym_fixed] = ACTIONS(3217), - [anon_sym_internal] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_partial] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_required] = ACTIONS(3217), - [anon_sym_sealed] = ACTIONS(3217), - [anon_sym_virtual] = ACTIONS(3217), - [anon_sym_volatile] = ACTIONS(3217), - [anon_sym_where] = ACTIONS(3217), - [anon_sym_notnull] = ACTIONS(3217), - [anon_sym_unmanaged] = ACTIONS(3217), - [anon_sym_checked] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_this] = ACTIONS(3217), - [anon_sym_scoped] = ACTIONS(3217), - [anon_sym_base] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [sym_predefined_type] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_unchecked] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_lock] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_when] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_foreach] = ACTIONS(3217), - [anon_sym_goto] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(3219), - [anon_sym_from] = ACTIONS(3217), - [anon_sym_into] = ACTIONS(3217), - [anon_sym_join] = ACTIONS(3217), - [anon_sym_on] = ACTIONS(3217), - [anon_sym_equals] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_orderby] = ACTIONS(3217), - [anon_sym_ascending] = ACTIONS(3217), - [anon_sym_descending] = ACTIONS(3217), - [anon_sym_group] = ACTIONS(3217), - [anon_sym_by] = ACTIONS(3217), - [anon_sym_select] = ACTIONS(3217), - [anon_sym_stackalloc] = ACTIONS(3217), - [anon_sym_sizeof] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym___makeref] = ACTIONS(3217), - [anon_sym___reftype] = ACTIONS(3217), - [anon_sym___refvalue] = ACTIONS(3217), - [sym_null_literal] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3219), - [sym_integer_literal] = ACTIONS(3217), - [sym_real_literal] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [sym_verbatim_string_literal] = ACTIONS(3219), - [aux_sym_preproc_if_token1] = ACTIONS(3219), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3219), - [sym_interpolation_verbatim_start] = ACTIONS(3219), - [sym_interpolation_raw_start] = ACTIONS(3219), - [sym_raw_string_start] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym__identifier_token] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_alias] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_ref] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_delegate] = ACTIONS(3367), + [anon_sym_record] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_file] = ACTIONS(3367), + [anon_sym_fixed] = ACTIONS(3367), + [anon_sym_internal] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_partial] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_required] = ACTIONS(3367), + [anon_sym_sealed] = ACTIONS(3367), + [anon_sym_virtual] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [anon_sym_where] = ACTIONS(3367), + [anon_sym_notnull] = ACTIONS(3367), + [anon_sym_unmanaged] = ACTIONS(3367), + [anon_sym_checked] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3367), + [anon_sym_false] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_CARET] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_this] = ACTIONS(3367), + [anon_sym_scoped] = ACTIONS(3367), + [anon_sym_base] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [sym_predefined_type] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_unchecked] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_lock] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_foreach] = ACTIONS(3367), + [anon_sym_goto] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_DOT_DOT] = ACTIONS(3369), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_into] = ACTIONS(3367), + [anon_sym_join] = ACTIONS(3367), + [anon_sym_on] = ACTIONS(3367), + [anon_sym_equals] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_orderby] = ACTIONS(3367), + [anon_sym_ascending] = ACTIONS(3367), + [anon_sym_descending] = ACTIONS(3367), + [anon_sym_group] = ACTIONS(3367), + [anon_sym_by] = ACTIONS(3367), + [anon_sym_select] = ACTIONS(3367), + [anon_sym_stackalloc] = ACTIONS(3367), + [anon_sym_sizeof] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym___makeref] = ACTIONS(3367), + [anon_sym___reftype] = ACTIONS(3367), + [anon_sym___refvalue] = ACTIONS(3367), + [sym_null_literal] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3369), + [sym_integer_literal] = ACTIONS(3367), + [sym_real_literal] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [sym_verbatim_string_literal] = ACTIONS(3369), + [aux_sym_preproc_if_token1] = ACTIONS(3369), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2071] = { [sym_preproc_region] = STATE(2071), @@ -377224,118 +385025,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2071), [sym_preproc_define] = STATE(2071), [sym_preproc_undef] = STATE(2071), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym__identifier_token] = ACTIONS(3355), + [anon_sym_extern] = ACTIONS(3355), + [anon_sym_alias] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_global] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_unsafe] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_ref] = ACTIONS(3355), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_delegate] = ACTIONS(3355), + [anon_sym_record] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_file] = ACTIONS(3355), + [anon_sym_fixed] = ACTIONS(3355), + [anon_sym_internal] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_partial] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_required] = ACTIONS(3355), + [anon_sym_sealed] = ACTIONS(3355), + [anon_sym_virtual] = ACTIONS(3355), + [anon_sym_volatile] = ACTIONS(3355), + [anon_sym_where] = ACTIONS(3355), + [anon_sym_notnull] = ACTIONS(3355), + [anon_sym_unmanaged] = ACTIONS(3355), + [anon_sym_checked] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3355), + [anon_sym_false] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3355), + [anon_sym_scoped] = ACTIONS(3355), + [anon_sym_base] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [sym_predefined_type] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_unchecked] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_lock] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_when] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_foreach] = ACTIONS(3355), + [anon_sym_goto] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_DOT_DOT] = ACTIONS(3357), + [anon_sym_from] = ACTIONS(3355), + [anon_sym_into] = ACTIONS(3355), + [anon_sym_join] = ACTIONS(3355), + [anon_sym_on] = ACTIONS(3355), + [anon_sym_equals] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_orderby] = ACTIONS(3355), + [anon_sym_ascending] = ACTIONS(3355), + [anon_sym_descending] = ACTIONS(3355), + [anon_sym_group] = ACTIONS(3355), + [anon_sym_by] = ACTIONS(3355), + [anon_sym_select] = ACTIONS(3355), + [anon_sym_stackalloc] = ACTIONS(3355), + [anon_sym_sizeof] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym___makeref] = ACTIONS(3355), + [anon_sym___reftype] = ACTIONS(3355), + [anon_sym___refvalue] = ACTIONS(3355), + [sym_null_literal] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3357), + [sym_integer_literal] = ACTIONS(3355), + [sym_real_literal] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [sym_verbatim_string_literal] = ACTIONS(3357), + [aux_sym_preproc_if_token1] = ACTIONS(3357), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2072] = { + [sym_catch_clause] = STATE(2089), [sym_preproc_region] = STATE(2072), [sym_preproc_endregion] = STATE(2072), [sym_preproc_line] = STATE(2072), @@ -377345,136 +385152,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2072), [sym_preproc_define] = STATE(2072), [sym_preproc_undef] = STATE(2072), - [sym__identifier_token] = ACTIONS(3435), - [anon_sym_extern] = ACTIONS(3435), - [anon_sym_alias] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_global] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_unsafe] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_ref] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_delegate] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_file] = ACTIONS(3435), - [anon_sym_fixed] = ACTIONS(3435), - [anon_sym_internal] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_partial] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_required] = ACTIONS(3435), - [anon_sym_sealed] = ACTIONS(3435), - [anon_sym_virtual] = ACTIONS(3435), - [anon_sym_volatile] = ACTIONS(3435), - [anon_sym_where] = ACTIONS(3435), - [anon_sym_notnull] = ACTIONS(3435), - [anon_sym_unmanaged] = ACTIONS(3435), - [anon_sym_checked] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3435), - [anon_sym_false] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_this] = ACTIONS(3435), - [anon_sym_scoped] = ACTIONS(3435), - [anon_sym_base] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [sym_predefined_type] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_unchecked] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_lock] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_when] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_foreach] = ACTIONS(3435), - [anon_sym_goto] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_DOT_DOT] = ACTIONS(3437), - [anon_sym_from] = ACTIONS(3435), - [anon_sym_into] = ACTIONS(3435), - [anon_sym_join] = ACTIONS(3435), - [anon_sym_on] = ACTIONS(3435), - [anon_sym_equals] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_orderby] = ACTIONS(3435), - [anon_sym_ascending] = ACTIONS(3435), - [anon_sym_descending] = ACTIONS(3435), - [anon_sym_group] = ACTIONS(3435), - [anon_sym_by] = ACTIONS(3435), - [anon_sym_select] = ACTIONS(3435), - [anon_sym_stackalloc] = ACTIONS(3435), - [anon_sym_sizeof] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym___makeref] = ACTIONS(3435), - [anon_sym___reftype] = ACTIONS(3435), - [anon_sym___refvalue] = ACTIONS(3435), - [sym_null_literal] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3437), - [sym_integer_literal] = ACTIONS(3435), - [sym_real_literal] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [sym_verbatim_string_literal] = ACTIONS(3437), - [aux_sym_preproc_if_token1] = ACTIONS(3437), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3437), - [sym_interpolation_verbatim_start] = ACTIONS(3437), - [sym_interpolation_raw_start] = ACTIONS(3437), - [sym_raw_string_start] = ACTIONS(3437), + [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), }, [2073] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5946), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5606), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2073), [sym_preproc_endregion] = STATE(2073), [sym_preproc_line] = STATE(2073), @@ -377484,86 +385277,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2073), [sym_preproc_define] = STATE(2073), [sym_preproc_undef] = STATE(2073), - [sym__identifier_token] = ACTIONS(3387), - [anon_sym_alias] = ACTIONS(3390), - [anon_sym_global] = ACTIONS(3390), - [anon_sym_EQ] = ACTIONS(3395), + [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_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_ref] = ACTIONS(3400), + [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_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3390), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3390), - [anon_sym_unmanaged] = ACTIONS(3390), - [anon_sym_BANG] = ACTIONS(3395), + [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_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3404), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3407), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(3390), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3390), - [sym_discard] = ACTIONS(3395), + [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_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3390), - [anon_sym_into] = ACTIONS(3390), - [anon_sym_join] = ACTIONS(3390), - [anon_sym_on] = ACTIONS(3390), - [anon_sym_equals] = ACTIONS(3390), - [anon_sym_let] = ACTIONS(3390), - [anon_sym_orderby] = ACTIONS(3390), - [anon_sym_ascending] = ACTIONS(3390), - [anon_sym_descending] = ACTIONS(3390), - [anon_sym_group] = ACTIONS(3390), - [anon_sym_by] = ACTIONS(3390), - [anon_sym_select] = ACTIONS(3390), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -377574,7 +385388,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(3393), + [sym_interpolation_regular_start] = ACTIONS(3393), + [sym_interpolation_verbatim_start] = ACTIONS(3393), + [sym_interpolation_raw_start] = ACTIONS(3393), + [sym_raw_string_start] = ACTIONS(3393), }, [2074] = { [sym_preproc_region] = STATE(2074), @@ -377586,219 +385403,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2074), [sym_preproc_define] = STATE(2074), [sym_preproc_undef] = STATE(2074), - [sym__identifier_token] = ACTIONS(3439), - [anon_sym_extern] = ACTIONS(3439), - [anon_sym_alias] = ACTIONS(3439), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_global] = ACTIONS(3439), - [anon_sym_using] = ACTIONS(3439), - [anon_sym_unsafe] = ACTIONS(3439), - [anon_sym_static] = ACTIONS(3439), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3439), - [anon_sym_ref] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_delegate] = ACTIONS(3439), - [anon_sym_abstract] = ACTIONS(3439), - [anon_sym_async] = ACTIONS(3439), - [anon_sym_const] = ACTIONS(3439), - [anon_sym_file] = ACTIONS(3439), - [anon_sym_fixed] = ACTIONS(3439), - [anon_sym_internal] = ACTIONS(3439), - [anon_sym_new] = ACTIONS(3439), - [anon_sym_override] = ACTIONS(3439), - [anon_sym_partial] = ACTIONS(3439), - [anon_sym_private] = ACTIONS(3439), - [anon_sym_protected] = ACTIONS(3439), - [anon_sym_public] = ACTIONS(3439), - [anon_sym_readonly] = ACTIONS(3439), - [anon_sym_required] = ACTIONS(3439), - [anon_sym_sealed] = ACTIONS(3439), - [anon_sym_virtual] = ACTIONS(3439), - [anon_sym_volatile] = ACTIONS(3439), - [anon_sym_where] = ACTIONS(3439), - [anon_sym_notnull] = ACTIONS(3439), - [anon_sym_unmanaged] = ACTIONS(3439), - [anon_sym_checked] = ACTIONS(3439), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3439), - [anon_sym_DASH] = ACTIONS(3439), - [anon_sym_STAR] = ACTIONS(3441), - [anon_sym_CARET] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_this] = ACTIONS(3439), - [anon_sym_scoped] = ACTIONS(3439), - [anon_sym_base] = ACTIONS(3439), - [anon_sym_var] = ACTIONS(3439), - [sym_predefined_type] = ACTIONS(3439), - [anon_sym_break] = ACTIONS(3439), - [anon_sym_unchecked] = ACTIONS(3439), - [anon_sym_continue] = ACTIONS(3439), - [anon_sym_do] = ACTIONS(3439), - [anon_sym_while] = ACTIONS(3439), - [anon_sym_for] = ACTIONS(3439), - [anon_sym_lock] = ACTIONS(3439), - [anon_sym_yield] = ACTIONS(3439), - [anon_sym_switch] = ACTIONS(3439), - [anon_sym_default] = ACTIONS(3439), - [anon_sym_throw] = ACTIONS(3439), - [anon_sym_try] = ACTIONS(3439), - [anon_sym_when] = ACTIONS(3439), - [anon_sym_await] = ACTIONS(3439), - [anon_sym_foreach] = ACTIONS(3439), - [anon_sym_goto] = ACTIONS(3439), - [anon_sym_if] = ACTIONS(3439), - [anon_sym_DOT_DOT] = ACTIONS(3441), - [anon_sym_from] = ACTIONS(3439), - [anon_sym_into] = ACTIONS(3439), - [anon_sym_join] = ACTIONS(3439), - [anon_sym_on] = ACTIONS(3439), - [anon_sym_equals] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3439), - [anon_sym_orderby] = ACTIONS(3439), - [anon_sym_ascending] = ACTIONS(3439), - [anon_sym_descending] = ACTIONS(3439), - [anon_sym_group] = ACTIONS(3439), - [anon_sym_by] = ACTIONS(3439), - [anon_sym_select] = ACTIONS(3439), - [anon_sym_stackalloc] = ACTIONS(3439), - [anon_sym_sizeof] = ACTIONS(3439), - [anon_sym_typeof] = ACTIONS(3439), - [anon_sym___makeref] = ACTIONS(3439), - [anon_sym___reftype] = ACTIONS(3439), - [anon_sym___refvalue] = ACTIONS(3439), - [sym_null_literal] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3441), - [sym_integer_literal] = ACTIONS(3439), - [sym_real_literal] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [sym_verbatim_string_literal] = ACTIONS(3441), - [aux_sym_preproc_if_token1] = ACTIONS(3441), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3441), - [sym_interpolation_verbatim_start] = ACTIONS(3441), - [sym_interpolation_raw_start] = ACTIONS(3441), - [sym_raw_string_start] = ACTIONS(3441), - }, - [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), - [sym__identifier_token] = ACTIONS(3443), - [anon_sym_extern] = ACTIONS(3443), - [anon_sym_alias] = ACTIONS(3443), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_global] = ACTIONS(3443), - [anon_sym_using] = ACTIONS(3443), - [anon_sym_unsafe] = ACTIONS(3443), - [anon_sym_static] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3443), - [anon_sym_ref] = ACTIONS(3443), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_delegate] = ACTIONS(3443), - [anon_sym_abstract] = ACTIONS(3443), - [anon_sym_async] = ACTIONS(3443), - [anon_sym_const] = ACTIONS(3443), - [anon_sym_file] = ACTIONS(3443), - [anon_sym_fixed] = ACTIONS(3443), - [anon_sym_internal] = ACTIONS(3443), - [anon_sym_new] = ACTIONS(3443), - [anon_sym_override] = ACTIONS(3443), - [anon_sym_partial] = ACTIONS(3443), - [anon_sym_private] = ACTIONS(3443), - [anon_sym_protected] = ACTIONS(3443), - [anon_sym_public] = ACTIONS(3443), - [anon_sym_readonly] = ACTIONS(3443), - [anon_sym_required] = ACTIONS(3443), - [anon_sym_sealed] = ACTIONS(3443), - [anon_sym_virtual] = ACTIONS(3443), - [anon_sym_volatile] = ACTIONS(3443), - [anon_sym_where] = ACTIONS(3443), - [anon_sym_notnull] = ACTIONS(3443), - [anon_sym_unmanaged] = ACTIONS(3443), - [anon_sym_checked] = ACTIONS(3443), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3443), - [anon_sym_false] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3443), - [anon_sym_DASH] = ACTIONS(3443), - [anon_sym_STAR] = ACTIONS(3445), - [anon_sym_CARET] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_this] = ACTIONS(3443), - [anon_sym_scoped] = ACTIONS(3443), - [anon_sym_base] = ACTIONS(3443), - [anon_sym_var] = ACTIONS(3443), - [sym_predefined_type] = ACTIONS(3443), - [anon_sym_break] = ACTIONS(3443), - [anon_sym_unchecked] = ACTIONS(3443), - [anon_sym_continue] = ACTIONS(3443), - [anon_sym_do] = ACTIONS(3443), - [anon_sym_while] = ACTIONS(3443), - [anon_sym_for] = ACTIONS(3443), - [anon_sym_lock] = ACTIONS(3443), - [anon_sym_yield] = ACTIONS(3443), - [anon_sym_switch] = ACTIONS(3443), - [anon_sym_default] = ACTIONS(3443), - [anon_sym_throw] = ACTIONS(3443), - [anon_sym_try] = ACTIONS(3443), - [anon_sym_when] = ACTIONS(3443), - [anon_sym_await] = ACTIONS(3443), - [anon_sym_foreach] = ACTIONS(3443), - [anon_sym_goto] = ACTIONS(3443), - [anon_sym_if] = ACTIONS(3443), - [anon_sym_DOT_DOT] = ACTIONS(3445), - [anon_sym_from] = ACTIONS(3443), - [anon_sym_into] = ACTIONS(3443), - [anon_sym_join] = ACTIONS(3443), - [anon_sym_on] = ACTIONS(3443), - [anon_sym_equals] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3443), - [anon_sym_orderby] = ACTIONS(3443), - [anon_sym_ascending] = ACTIONS(3443), - [anon_sym_descending] = ACTIONS(3443), - [anon_sym_group] = ACTIONS(3443), - [anon_sym_by] = ACTIONS(3443), - [anon_sym_select] = ACTIONS(3443), - [anon_sym_stackalloc] = ACTIONS(3443), - [anon_sym_sizeof] = ACTIONS(3443), - [anon_sym_typeof] = ACTIONS(3443), - [anon_sym___makeref] = ACTIONS(3443), - [anon_sym___reftype] = ACTIONS(3443), - [anon_sym___refvalue] = ACTIONS(3443), - [sym_null_literal] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3445), - [sym_integer_literal] = ACTIONS(3443), - [sym_real_literal] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [sym_verbatim_string_literal] = ACTIONS(3445), - [aux_sym_preproc_if_token1] = ACTIONS(3445), + [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), @@ -377809,10 +385514,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(3445), - [sym_interpolation_verbatim_start] = ACTIONS(3445), - [sym_interpolation_raw_start] = ACTIONS(3445), - [sym_raw_string_start] = ACTIONS(3445), + [sym_interpolation_regular_start] = ACTIONS(3425), + [sym_interpolation_verbatim_start] = ACTIONS(3425), + [sym_interpolation_raw_start] = ACTIONS(3425), + [sym_raw_string_start] = ACTIONS(3425), + }, + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2076] = { [sym_preproc_region] = STATE(2076), @@ -377824,114 +385655,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2076), [sym_preproc_define] = STATE(2076), [sym_preproc_undef] = STATE(2076), - [sym__identifier_token] = ACTIONS(3447), - [anon_sym_extern] = ACTIONS(3447), - [anon_sym_alias] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_global] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_unsafe] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_ref] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_delegate] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_file] = ACTIONS(3447), - [anon_sym_fixed] = ACTIONS(3447), - [anon_sym_internal] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_partial] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_required] = ACTIONS(3447), - [anon_sym_sealed] = ACTIONS(3447), - [anon_sym_virtual] = ACTIONS(3447), - [anon_sym_volatile] = ACTIONS(3447), - [anon_sym_where] = ACTIONS(3447), - [anon_sym_notnull] = ACTIONS(3447), - [anon_sym_unmanaged] = ACTIONS(3447), - [anon_sym_checked] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [anon_sym_true] = ACTIONS(3447), - [anon_sym_false] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_CARET] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_this] = ACTIONS(3447), - [anon_sym_scoped] = ACTIONS(3447), - [anon_sym_base] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [sym_predefined_type] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_unchecked] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_lock] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_when] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_foreach] = ACTIONS(3447), - [anon_sym_goto] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_DOT_DOT] = ACTIONS(3449), - [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_stackalloc] = ACTIONS(3447), - [anon_sym_sizeof] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym___makeref] = ACTIONS(3447), - [anon_sym___reftype] = ACTIONS(3447), - [anon_sym___refvalue] = ACTIONS(3447), - [sym_null_literal] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3449), - [sym_integer_literal] = ACTIONS(3447), - [sym_real_literal] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [sym_verbatim_string_literal] = ACTIONS(3449), - [aux_sym_preproc_if_token1] = ACTIONS(3449), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3449), - [sym_interpolation_verbatim_start] = ACTIONS(3449), - [sym_interpolation_raw_start] = ACTIONS(3449), - [sym_raw_string_start] = ACTIONS(3449), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2077] = { [sym_preproc_region] = STATE(2077), @@ -377943,114 +385781,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2077), [sym_preproc_define] = STATE(2077), [sym_preproc_undef] = STATE(2077), - [sym__identifier_token] = ACTIONS(3451), - [anon_sym_extern] = ACTIONS(3451), - [anon_sym_alias] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_global] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_unsafe] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_ref] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_delegate] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_file] = ACTIONS(3451), - [anon_sym_fixed] = ACTIONS(3451), - [anon_sym_internal] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_partial] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_required] = ACTIONS(3451), - [anon_sym_sealed] = ACTIONS(3451), - [anon_sym_virtual] = ACTIONS(3451), - [anon_sym_volatile] = ACTIONS(3451), - [anon_sym_where] = ACTIONS(3451), - [anon_sym_notnull] = ACTIONS(3451), - [anon_sym_unmanaged] = ACTIONS(3451), - [anon_sym_checked] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), - [anon_sym_true] = ACTIONS(3451), - [anon_sym_false] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_STAR] = ACTIONS(3453), - [anon_sym_CARET] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_this] = ACTIONS(3451), - [anon_sym_scoped] = ACTIONS(3451), - [anon_sym_base] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [sym_predefined_type] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_unchecked] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_lock] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_when] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_foreach] = ACTIONS(3451), - [anon_sym_goto] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_DOT_DOT] = ACTIONS(3453), - [anon_sym_from] = ACTIONS(3451), - [anon_sym_into] = ACTIONS(3451), - [anon_sym_join] = ACTIONS(3451), - [anon_sym_on] = ACTIONS(3451), - [anon_sym_equals] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_orderby] = ACTIONS(3451), - [anon_sym_ascending] = ACTIONS(3451), - [anon_sym_descending] = ACTIONS(3451), - [anon_sym_group] = ACTIONS(3451), - [anon_sym_by] = ACTIONS(3451), - [anon_sym_select] = ACTIONS(3451), - [anon_sym_stackalloc] = ACTIONS(3451), - [anon_sym_sizeof] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym___makeref] = ACTIONS(3451), - [anon_sym___reftype] = ACTIONS(3451), - [anon_sym___refvalue] = ACTIONS(3451), - [sym_null_literal] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3453), - [sym_integer_literal] = ACTIONS(3451), - [sym_real_literal] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [sym_verbatim_string_literal] = ACTIONS(3453), - [aux_sym_preproc_if_token1] = ACTIONS(3453), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3453), - [sym_interpolation_verbatim_start] = ACTIONS(3453), - [sym_interpolation_raw_start] = ACTIONS(3453), - [sym_raw_string_start] = ACTIONS(3453), + [ts_builtin_sym_end] = ACTIONS(3433), + [sym__identifier_token] = ACTIONS(3431), + [anon_sym_extern] = ACTIONS(3431), + [anon_sym_alias] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_global] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_unsafe] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_ref] = ACTIONS(3431), + [anon_sym_struct] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_delegate] = ACTIONS(3431), + [anon_sym_record] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_file] = ACTIONS(3431), + [anon_sym_fixed] = ACTIONS(3431), + [anon_sym_internal] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_partial] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_required] = ACTIONS(3431), + [anon_sym_sealed] = ACTIONS(3431), + [anon_sym_virtual] = ACTIONS(3431), + [anon_sym_volatile] = ACTIONS(3431), + [anon_sym_where] = ACTIONS(3431), + [anon_sym_notnull] = ACTIONS(3431), + [anon_sym_unmanaged] = ACTIONS(3431), + [anon_sym_checked] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), + [anon_sym_true] = ACTIONS(3431), + [anon_sym_false] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_STAR] = ACTIONS(3433), + [anon_sym_CARET] = ACTIONS(3433), + [anon_sym_AMP] = ACTIONS(3433), + [anon_sym_this] = ACTIONS(3431), + [anon_sym_scoped] = ACTIONS(3431), + [anon_sym_base] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [sym_predefined_type] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_unchecked] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_lock] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_when] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_foreach] = ACTIONS(3431), + [anon_sym_goto] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_DOT_DOT] = ACTIONS(3433), + [anon_sym_from] = ACTIONS(3431), + [anon_sym_into] = ACTIONS(3431), + [anon_sym_join] = ACTIONS(3431), + [anon_sym_on] = ACTIONS(3431), + [anon_sym_equals] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_orderby] = ACTIONS(3431), + [anon_sym_ascending] = ACTIONS(3431), + [anon_sym_descending] = ACTIONS(3431), + [anon_sym_group] = ACTIONS(3431), + [anon_sym_by] = ACTIONS(3431), + [anon_sym_select] = ACTIONS(3431), + [anon_sym_stackalloc] = ACTIONS(3431), + [anon_sym_sizeof] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym___makeref] = ACTIONS(3431), + [anon_sym___reftype] = ACTIONS(3431), + [anon_sym___refvalue] = ACTIONS(3431), + [sym_null_literal] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3433), + [sym_integer_literal] = ACTIONS(3431), + [sym_real_literal] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [sym_verbatim_string_literal] = ACTIONS(3433), + [aux_sym_preproc_if_token1] = ACTIONS(3433), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3433), + [sym_interpolation_verbatim_start] = ACTIONS(3433), + [sym_interpolation_raw_start] = ACTIONS(3433), + [sym_raw_string_start] = ACTIONS(3433), }, [2078] = { [sym_preproc_region] = STATE(2078), @@ -378062,114 +385907,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2078), [sym_preproc_define] = STATE(2078), [sym_preproc_undef] = STATE(2078), - [sym__identifier_token] = ACTIONS(3455), - [anon_sym_extern] = ACTIONS(3455), - [anon_sym_alias] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_global] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_unsafe] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_ref] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_delegate] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_file] = ACTIONS(3455), - [anon_sym_fixed] = ACTIONS(3455), - [anon_sym_internal] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_partial] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_required] = ACTIONS(3455), - [anon_sym_sealed] = ACTIONS(3455), - [anon_sym_virtual] = ACTIONS(3455), - [anon_sym_volatile] = ACTIONS(3455), - [anon_sym_where] = ACTIONS(3455), - [anon_sym_notnull] = ACTIONS(3455), - [anon_sym_unmanaged] = ACTIONS(3455), - [anon_sym_checked] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3455), - [anon_sym_false] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_this] = ACTIONS(3455), - [anon_sym_scoped] = ACTIONS(3455), - [anon_sym_base] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [sym_predefined_type] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_unchecked] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_lock] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_default] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_when] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_foreach] = ACTIONS(3455), - [anon_sym_goto] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_DOT_DOT] = ACTIONS(3457), - [anon_sym_from] = ACTIONS(3455), - [anon_sym_into] = ACTIONS(3455), - [anon_sym_join] = ACTIONS(3455), - [anon_sym_on] = ACTIONS(3455), - [anon_sym_equals] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_orderby] = ACTIONS(3455), - [anon_sym_ascending] = ACTIONS(3455), - [anon_sym_descending] = ACTIONS(3455), - [anon_sym_group] = ACTIONS(3455), - [anon_sym_by] = ACTIONS(3455), - [anon_sym_select] = ACTIONS(3455), - [anon_sym_stackalloc] = ACTIONS(3455), - [anon_sym_sizeof] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym___makeref] = ACTIONS(3455), - [anon_sym___reftype] = ACTIONS(3455), - [anon_sym___refvalue] = ACTIONS(3455), - [sym_null_literal] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3457), - [sym_integer_literal] = ACTIONS(3455), - [sym_real_literal] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [sym_verbatim_string_literal] = ACTIONS(3457), - [aux_sym_preproc_if_token1] = ACTIONS(3457), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3457), - [sym_interpolation_verbatim_start] = ACTIONS(3457), - [sym_interpolation_raw_start] = ACTIONS(3457), - [sym_raw_string_start] = ACTIONS(3457), + [ts_builtin_sym_end] = ACTIONS(3397), + [sym__identifier_token] = ACTIONS(3395), + [anon_sym_extern] = ACTIONS(3395), + [anon_sym_alias] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3397), + [anon_sym_global] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_unsafe] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_ref] = ACTIONS(3395), + [anon_sym_struct] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_delegate] = ACTIONS(3395), + [anon_sym_record] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_file] = ACTIONS(3395), + [anon_sym_fixed] = ACTIONS(3395), + [anon_sym_internal] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_partial] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_required] = ACTIONS(3395), + [anon_sym_sealed] = ACTIONS(3395), + [anon_sym_virtual] = ACTIONS(3395), + [anon_sym_volatile] = ACTIONS(3395), + [anon_sym_where] = ACTIONS(3395), + [anon_sym_notnull] = ACTIONS(3395), + [anon_sym_unmanaged] = ACTIONS(3395), + [anon_sym_checked] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3397), + [anon_sym_DASH_DASH] = ACTIONS(3397), + [anon_sym_true] = ACTIONS(3395), + [anon_sym_false] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_STAR] = ACTIONS(3397), + [anon_sym_CARET] = ACTIONS(3397), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_this] = ACTIONS(3395), + [anon_sym_scoped] = ACTIONS(3395), + [anon_sym_base] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [sym_predefined_type] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_unchecked] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_lock] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_when] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_foreach] = ACTIONS(3395), + [anon_sym_goto] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_DOT_DOT] = ACTIONS(3397), + [anon_sym_from] = ACTIONS(3395), + [anon_sym_into] = ACTIONS(3395), + [anon_sym_join] = ACTIONS(3395), + [anon_sym_on] = ACTIONS(3395), + [anon_sym_equals] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_orderby] = ACTIONS(3395), + [anon_sym_ascending] = ACTIONS(3395), + [anon_sym_descending] = ACTIONS(3395), + [anon_sym_group] = ACTIONS(3395), + [anon_sym_by] = ACTIONS(3395), + [anon_sym_select] = ACTIONS(3395), + [anon_sym_stackalloc] = ACTIONS(3395), + [anon_sym_sizeof] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym___makeref] = ACTIONS(3395), + [anon_sym___reftype] = ACTIONS(3395), + [anon_sym___refvalue] = ACTIONS(3395), + [sym_null_literal] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3397), + [sym_integer_literal] = ACTIONS(3395), + [sym_real_literal] = ACTIONS(3397), + [anon_sym_DQUOTE] = ACTIONS(3397), + [sym_verbatim_string_literal] = ACTIONS(3397), + [aux_sym_preproc_if_token1] = ACTIONS(3397), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3397), + [sym_interpolation_verbatim_start] = ACTIONS(3397), + [sym_interpolation_raw_start] = ACTIONS(3397), + [sym_raw_string_start] = ACTIONS(3397), }, [2079] = { [sym_preproc_region] = STATE(2079), @@ -378181,114 +386033,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2079), [sym_preproc_define] = STATE(2079), [sym_preproc_undef] = STATE(2079), - [sym__identifier_token] = ACTIONS(3459), - [anon_sym_extern] = ACTIONS(3459), - [anon_sym_alias] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_global] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_unsafe] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_ref] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_delegate] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_file] = ACTIONS(3459), - [anon_sym_fixed] = ACTIONS(3459), - [anon_sym_internal] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_partial] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_required] = ACTIONS(3459), - [anon_sym_sealed] = ACTIONS(3459), - [anon_sym_virtual] = ACTIONS(3459), - [anon_sym_volatile] = ACTIONS(3459), - [anon_sym_where] = ACTIONS(3459), - [anon_sym_notnull] = ACTIONS(3459), - [anon_sym_unmanaged] = ACTIONS(3459), - [anon_sym_checked] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [anon_sym_true] = ACTIONS(3459), - [anon_sym_false] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_STAR] = ACTIONS(3461), - [anon_sym_CARET] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_this] = ACTIONS(3459), - [anon_sym_scoped] = ACTIONS(3459), - [anon_sym_base] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [sym_predefined_type] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_unchecked] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_lock] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_when] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_foreach] = ACTIONS(3459), - [anon_sym_goto] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_DOT_DOT] = ACTIONS(3461), - [anon_sym_from] = ACTIONS(3459), - [anon_sym_into] = ACTIONS(3459), - [anon_sym_join] = ACTIONS(3459), - [anon_sym_on] = ACTIONS(3459), - [anon_sym_equals] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_orderby] = ACTIONS(3459), - [anon_sym_ascending] = ACTIONS(3459), - [anon_sym_descending] = ACTIONS(3459), - [anon_sym_group] = ACTIONS(3459), - [anon_sym_by] = ACTIONS(3459), - [anon_sym_select] = ACTIONS(3459), - [anon_sym_stackalloc] = ACTIONS(3459), - [anon_sym_sizeof] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym___makeref] = ACTIONS(3459), - [anon_sym___reftype] = ACTIONS(3459), - [anon_sym___refvalue] = ACTIONS(3459), - [sym_null_literal] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3461), - [sym_integer_literal] = ACTIONS(3459), - [sym_real_literal] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [sym_verbatim_string_literal] = ACTIONS(3461), - [aux_sym_preproc_if_token1] = ACTIONS(3461), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3461), - [sym_interpolation_verbatim_start] = ACTIONS(3461), - [sym_interpolation_raw_start] = ACTIONS(3461), - [sym_raw_string_start] = ACTIONS(3461), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2080] = { [sym_preproc_region] = STATE(2080), @@ -378300,114 +386159,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2080), [sym_preproc_define] = STATE(2080), [sym_preproc_undef] = STATE(2080), - [sym__identifier_token] = ACTIONS(3463), - [anon_sym_extern] = ACTIONS(3463), - [anon_sym_alias] = ACTIONS(3463), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_global] = ACTIONS(3463), - [anon_sym_using] = ACTIONS(3463), - [anon_sym_unsafe] = ACTIONS(3463), - [anon_sym_static] = ACTIONS(3463), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3465), - [anon_sym_return] = ACTIONS(3463), - [anon_sym_ref] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_delegate] = ACTIONS(3463), - [anon_sym_abstract] = ACTIONS(3463), - [anon_sym_async] = ACTIONS(3463), - [anon_sym_const] = ACTIONS(3463), - [anon_sym_file] = ACTIONS(3463), - [anon_sym_fixed] = ACTIONS(3463), - [anon_sym_internal] = ACTIONS(3463), - [anon_sym_new] = ACTIONS(3463), - [anon_sym_override] = ACTIONS(3463), - [anon_sym_partial] = ACTIONS(3463), - [anon_sym_private] = ACTIONS(3463), - [anon_sym_protected] = ACTIONS(3463), - [anon_sym_public] = ACTIONS(3463), - [anon_sym_readonly] = ACTIONS(3463), - [anon_sym_required] = ACTIONS(3463), - [anon_sym_sealed] = ACTIONS(3463), - [anon_sym_virtual] = ACTIONS(3463), - [anon_sym_volatile] = ACTIONS(3463), - [anon_sym_where] = ACTIONS(3463), - [anon_sym_notnull] = ACTIONS(3463), - [anon_sym_unmanaged] = ACTIONS(3463), - [anon_sym_checked] = ACTIONS(3463), - [anon_sym_BANG] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_PLUS_PLUS] = ACTIONS(3465), - [anon_sym_DASH_DASH] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3463), - [anon_sym_false] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3463), - [anon_sym_DASH] = ACTIONS(3463), - [anon_sym_STAR] = ACTIONS(3465), - [anon_sym_CARET] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_this] = ACTIONS(3463), - [anon_sym_scoped] = ACTIONS(3463), - [anon_sym_base] = ACTIONS(3463), - [anon_sym_var] = ACTIONS(3463), - [sym_predefined_type] = ACTIONS(3463), - [anon_sym_break] = ACTIONS(3463), - [anon_sym_unchecked] = ACTIONS(3463), - [anon_sym_continue] = ACTIONS(3463), - [anon_sym_do] = ACTIONS(3463), - [anon_sym_while] = ACTIONS(3463), - [anon_sym_for] = ACTIONS(3463), - [anon_sym_lock] = ACTIONS(3463), - [anon_sym_yield] = ACTIONS(3463), - [anon_sym_switch] = ACTIONS(3463), - [anon_sym_default] = ACTIONS(3463), - [anon_sym_throw] = ACTIONS(3463), - [anon_sym_try] = ACTIONS(3463), - [anon_sym_when] = ACTIONS(3463), - [anon_sym_await] = ACTIONS(3463), - [anon_sym_foreach] = ACTIONS(3463), - [anon_sym_goto] = ACTIONS(3463), - [anon_sym_if] = ACTIONS(3463), - [anon_sym_DOT_DOT] = ACTIONS(3465), - [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_stackalloc] = ACTIONS(3463), - [anon_sym_sizeof] = ACTIONS(3463), - [anon_sym_typeof] = ACTIONS(3463), - [anon_sym___makeref] = ACTIONS(3463), - [anon_sym___reftype] = ACTIONS(3463), - [anon_sym___refvalue] = ACTIONS(3463), - [sym_null_literal] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3465), - [sym_integer_literal] = ACTIONS(3463), - [sym_real_literal] = ACTIONS(3465), - [anon_sym_DQUOTE] = ACTIONS(3465), - [sym_verbatim_string_literal] = ACTIONS(3465), - [aux_sym_preproc_if_token1] = ACTIONS(3465), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3465), - [sym_interpolation_verbatim_start] = ACTIONS(3465), - [sym_interpolation_raw_start] = ACTIONS(3465), - [sym_raw_string_start] = ACTIONS(3465), + [ts_builtin_sym_end] = ACTIONS(3417), + [sym__identifier_token] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym_alias] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_unsafe] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_ref] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_delegate] = ACTIONS(3415), + [anon_sym_record] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_file] = ACTIONS(3415), + [anon_sym_fixed] = ACTIONS(3415), + [anon_sym_internal] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_partial] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_required] = ACTIONS(3415), + [anon_sym_sealed] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_where] = ACTIONS(3415), + [anon_sym_notnull] = ACTIONS(3415), + [anon_sym_unmanaged] = ACTIONS(3415), + [anon_sym_checked] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [anon_sym_true] = ACTIONS(3415), + [anon_sym_false] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_STAR] = ACTIONS(3417), + [anon_sym_CARET] = ACTIONS(3417), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_this] = ACTIONS(3415), + [anon_sym_scoped] = ACTIONS(3415), + [anon_sym_base] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [sym_predefined_type] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_unchecked] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_lock] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_foreach] = ACTIONS(3415), + [anon_sym_goto] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_DOT_DOT] = ACTIONS(3417), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_into] = ACTIONS(3415), + [anon_sym_join] = ACTIONS(3415), + [anon_sym_on] = ACTIONS(3415), + [anon_sym_equals] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_orderby] = ACTIONS(3415), + [anon_sym_ascending] = ACTIONS(3415), + [anon_sym_descending] = ACTIONS(3415), + [anon_sym_group] = ACTIONS(3415), + [anon_sym_by] = ACTIONS(3415), + [anon_sym_select] = ACTIONS(3415), + [anon_sym_stackalloc] = ACTIONS(3415), + [anon_sym_sizeof] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym___makeref] = ACTIONS(3415), + [anon_sym___reftype] = ACTIONS(3415), + [anon_sym___refvalue] = ACTIONS(3415), + [sym_null_literal] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3417), + [sym_integer_literal] = ACTIONS(3415), + [sym_real_literal] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [sym_verbatim_string_literal] = ACTIONS(3417), + [aux_sym_preproc_if_token1] = ACTIONS(3417), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3417), + [sym_interpolation_verbatim_start] = ACTIONS(3417), + [sym_interpolation_raw_start] = ACTIONS(3417), + [sym_raw_string_start] = ACTIONS(3417), }, [2081] = { [sym_preproc_region] = STATE(2081), @@ -378419,114 +386285,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2081), [sym_preproc_define] = STATE(2081), [sym_preproc_undef] = STATE(2081), - [sym__identifier_token] = ACTIONS(3467), - [anon_sym_extern] = ACTIONS(3467), - [anon_sym_alias] = ACTIONS(3467), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_global] = ACTIONS(3467), - [anon_sym_using] = ACTIONS(3467), - [anon_sym_unsafe] = ACTIONS(3467), - [anon_sym_static] = ACTIONS(3467), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3469), - [anon_sym_return] = ACTIONS(3467), - [anon_sym_ref] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_delegate] = ACTIONS(3467), - [anon_sym_abstract] = ACTIONS(3467), - [anon_sym_async] = ACTIONS(3467), - [anon_sym_const] = ACTIONS(3467), - [anon_sym_file] = ACTIONS(3467), - [anon_sym_fixed] = ACTIONS(3467), - [anon_sym_internal] = ACTIONS(3467), - [anon_sym_new] = ACTIONS(3467), - [anon_sym_override] = ACTIONS(3467), - [anon_sym_partial] = ACTIONS(3467), - [anon_sym_private] = ACTIONS(3467), - [anon_sym_protected] = ACTIONS(3467), - [anon_sym_public] = ACTIONS(3467), - [anon_sym_readonly] = ACTIONS(3467), - [anon_sym_required] = ACTIONS(3467), - [anon_sym_sealed] = ACTIONS(3467), - [anon_sym_virtual] = ACTIONS(3467), - [anon_sym_volatile] = ACTIONS(3467), - [anon_sym_where] = ACTIONS(3467), - [anon_sym_notnull] = ACTIONS(3467), - [anon_sym_unmanaged] = ACTIONS(3467), - [anon_sym_checked] = ACTIONS(3467), - [anon_sym_BANG] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_PLUS_PLUS] = ACTIONS(3469), - [anon_sym_DASH_DASH] = ACTIONS(3469), - [anon_sym_true] = ACTIONS(3467), - [anon_sym_false] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3467), - [anon_sym_DASH] = ACTIONS(3467), - [anon_sym_STAR] = ACTIONS(3469), - [anon_sym_CARET] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_this] = ACTIONS(3467), - [anon_sym_scoped] = ACTIONS(3467), - [anon_sym_base] = ACTIONS(3467), - [anon_sym_var] = ACTIONS(3467), - [sym_predefined_type] = ACTIONS(3467), - [anon_sym_break] = ACTIONS(3467), - [anon_sym_unchecked] = ACTIONS(3467), - [anon_sym_continue] = ACTIONS(3467), - [anon_sym_do] = ACTIONS(3467), - [anon_sym_while] = ACTIONS(3467), - [anon_sym_for] = ACTIONS(3467), - [anon_sym_lock] = ACTIONS(3467), - [anon_sym_yield] = ACTIONS(3467), - [anon_sym_switch] = ACTIONS(3467), - [anon_sym_default] = ACTIONS(3467), - [anon_sym_throw] = ACTIONS(3467), - [anon_sym_try] = ACTIONS(3467), - [anon_sym_when] = ACTIONS(3467), - [anon_sym_await] = ACTIONS(3467), - [anon_sym_foreach] = ACTIONS(3467), - [anon_sym_goto] = ACTIONS(3467), - [anon_sym_if] = ACTIONS(3467), - [anon_sym_DOT_DOT] = ACTIONS(3469), - [anon_sym_from] = ACTIONS(3467), - [anon_sym_into] = ACTIONS(3467), - [anon_sym_join] = ACTIONS(3467), - [anon_sym_on] = ACTIONS(3467), - [anon_sym_equals] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3467), - [anon_sym_orderby] = ACTIONS(3467), - [anon_sym_ascending] = ACTIONS(3467), - [anon_sym_descending] = ACTIONS(3467), - [anon_sym_group] = ACTIONS(3467), - [anon_sym_by] = ACTIONS(3467), - [anon_sym_select] = ACTIONS(3467), - [anon_sym_stackalloc] = ACTIONS(3467), - [anon_sym_sizeof] = ACTIONS(3467), - [anon_sym_typeof] = ACTIONS(3467), - [anon_sym___makeref] = ACTIONS(3467), - [anon_sym___reftype] = ACTIONS(3467), - [anon_sym___refvalue] = ACTIONS(3467), - [sym_null_literal] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3469), - [sym_integer_literal] = ACTIONS(3467), - [sym_real_literal] = ACTIONS(3469), - [anon_sym_DQUOTE] = ACTIONS(3469), - [sym_verbatim_string_literal] = ACTIONS(3469), - [aux_sym_preproc_if_token1] = ACTIONS(3469), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3469), - [sym_interpolation_verbatim_start] = ACTIONS(3469), - [sym_interpolation_raw_start] = ACTIONS(3469), - [sym_raw_string_start] = ACTIONS(3469), + [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), }, [2082] = { [sym_preproc_region] = STATE(2082), @@ -378538,114 +386411,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2082), [sym_preproc_define] = STATE(2082), [sym_preproc_undef] = STATE(2082), - [sym__identifier_token] = ACTIONS(3471), - [anon_sym_extern] = ACTIONS(3471), - [anon_sym_alias] = ACTIONS(3471), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_global] = ACTIONS(3471), - [anon_sym_using] = ACTIONS(3471), - [anon_sym_unsafe] = ACTIONS(3471), - [anon_sym_static] = ACTIONS(3471), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_return] = ACTIONS(3471), - [anon_sym_ref] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_delegate] = ACTIONS(3471), - [anon_sym_abstract] = ACTIONS(3471), - [anon_sym_async] = ACTIONS(3471), - [anon_sym_const] = ACTIONS(3471), - [anon_sym_file] = ACTIONS(3471), - [anon_sym_fixed] = ACTIONS(3471), - [anon_sym_internal] = ACTIONS(3471), - [anon_sym_new] = ACTIONS(3471), - [anon_sym_override] = ACTIONS(3471), - [anon_sym_partial] = ACTIONS(3471), - [anon_sym_private] = ACTIONS(3471), - [anon_sym_protected] = ACTIONS(3471), - [anon_sym_public] = ACTIONS(3471), - [anon_sym_readonly] = ACTIONS(3471), - [anon_sym_required] = ACTIONS(3471), - [anon_sym_sealed] = ACTIONS(3471), - [anon_sym_virtual] = ACTIONS(3471), - [anon_sym_volatile] = ACTIONS(3471), - [anon_sym_where] = ACTIONS(3471), - [anon_sym_notnull] = ACTIONS(3471), - [anon_sym_unmanaged] = ACTIONS(3471), - [anon_sym_checked] = ACTIONS(3471), - [anon_sym_BANG] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_PLUS_PLUS] = ACTIONS(3473), - [anon_sym_DASH_DASH] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3471), - [anon_sym_false] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3471), - [anon_sym_DASH] = ACTIONS(3471), - [anon_sym_STAR] = ACTIONS(3473), - [anon_sym_CARET] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_this] = ACTIONS(3471), - [anon_sym_scoped] = ACTIONS(3471), - [anon_sym_base] = ACTIONS(3471), - [anon_sym_var] = ACTIONS(3471), - [sym_predefined_type] = ACTIONS(3471), - [anon_sym_break] = ACTIONS(3471), - [anon_sym_unchecked] = ACTIONS(3471), - [anon_sym_continue] = ACTIONS(3471), - [anon_sym_do] = ACTIONS(3471), - [anon_sym_while] = ACTIONS(3471), - [anon_sym_for] = ACTIONS(3471), - [anon_sym_lock] = ACTIONS(3471), - [anon_sym_yield] = ACTIONS(3471), - [anon_sym_switch] = ACTIONS(3471), - [anon_sym_default] = ACTIONS(3471), - [anon_sym_throw] = ACTIONS(3471), - [anon_sym_try] = ACTIONS(3471), - [anon_sym_when] = ACTIONS(3471), - [anon_sym_await] = ACTIONS(3471), - [anon_sym_foreach] = ACTIONS(3471), - [anon_sym_goto] = ACTIONS(3471), - [anon_sym_if] = ACTIONS(3471), - [anon_sym_DOT_DOT] = ACTIONS(3473), - [anon_sym_from] = ACTIONS(3471), - [anon_sym_into] = ACTIONS(3471), - [anon_sym_join] = ACTIONS(3471), - [anon_sym_on] = ACTIONS(3471), - [anon_sym_equals] = ACTIONS(3471), - [anon_sym_let] = ACTIONS(3471), - [anon_sym_orderby] = ACTIONS(3471), - [anon_sym_ascending] = ACTIONS(3471), - [anon_sym_descending] = ACTIONS(3471), - [anon_sym_group] = ACTIONS(3471), - [anon_sym_by] = ACTIONS(3471), - [anon_sym_select] = ACTIONS(3471), - [anon_sym_stackalloc] = ACTIONS(3471), - [anon_sym_sizeof] = ACTIONS(3471), - [anon_sym_typeof] = ACTIONS(3471), - [anon_sym___makeref] = ACTIONS(3471), - [anon_sym___reftype] = ACTIONS(3471), - [anon_sym___refvalue] = ACTIONS(3471), - [sym_null_literal] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3473), - [sym_integer_literal] = ACTIONS(3471), - [sym_real_literal] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [sym_verbatim_string_literal] = ACTIONS(3473), - [aux_sym_preproc_if_token1] = ACTIONS(3473), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3473), - [sym_interpolation_verbatim_start] = ACTIONS(3473), - [sym_interpolation_raw_start] = ACTIONS(3473), - [sym_raw_string_start] = ACTIONS(3473), + [ts_builtin_sym_end] = ACTIONS(3405), + [sym__identifier_token] = ACTIONS(3403), + [anon_sym_extern] = ACTIONS(3403), + [anon_sym_alias] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_global] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_unsafe] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_ref] = ACTIONS(3403), + [anon_sym_struct] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_delegate] = ACTIONS(3403), + [anon_sym_record] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_file] = ACTIONS(3403), + [anon_sym_fixed] = ACTIONS(3403), + [anon_sym_internal] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_partial] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_required] = ACTIONS(3403), + [anon_sym_sealed] = ACTIONS(3403), + [anon_sym_virtual] = ACTIONS(3403), + [anon_sym_volatile] = ACTIONS(3403), + [anon_sym_where] = ACTIONS(3403), + [anon_sym_notnull] = ACTIONS(3403), + [anon_sym_unmanaged] = ACTIONS(3403), + [anon_sym_checked] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [anon_sym_true] = ACTIONS(3403), + [anon_sym_false] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_STAR] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3405), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_this] = ACTIONS(3403), + [anon_sym_scoped] = ACTIONS(3403), + [anon_sym_base] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [sym_predefined_type] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_unchecked] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_lock] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_when] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_foreach] = ACTIONS(3403), + [anon_sym_goto] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_DOT_DOT] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3403), + [anon_sym_into] = ACTIONS(3403), + [anon_sym_join] = ACTIONS(3403), + [anon_sym_on] = ACTIONS(3403), + [anon_sym_equals] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_orderby] = ACTIONS(3403), + [anon_sym_ascending] = ACTIONS(3403), + [anon_sym_descending] = ACTIONS(3403), + [anon_sym_group] = ACTIONS(3403), + [anon_sym_by] = ACTIONS(3403), + [anon_sym_select] = ACTIONS(3403), + [anon_sym_stackalloc] = ACTIONS(3403), + [anon_sym_sizeof] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym___makeref] = ACTIONS(3403), + [anon_sym___reftype] = ACTIONS(3403), + [anon_sym___refvalue] = ACTIONS(3403), + [sym_null_literal] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3405), + [sym_integer_literal] = ACTIONS(3403), + [sym_real_literal] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [sym_verbatim_string_literal] = ACTIONS(3405), + [aux_sym_preproc_if_token1] = ACTIONS(3405), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3405), + [sym_interpolation_verbatim_start] = ACTIONS(3405), + [sym_interpolation_raw_start] = ACTIONS(3405), + [sym_raw_string_start] = ACTIONS(3405), }, [2083] = { [sym_preproc_region] = STATE(2083), @@ -378657,114 +386537,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2083), [sym_preproc_define] = STATE(2083), [sym_preproc_undef] = STATE(2083), - [sym__identifier_token] = ACTIONS(3475), - [anon_sym_extern] = ACTIONS(3475), - [anon_sym_alias] = ACTIONS(3475), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_global] = ACTIONS(3475), - [anon_sym_using] = ACTIONS(3475), - [anon_sym_unsafe] = ACTIONS(3475), - [anon_sym_static] = ACTIONS(3475), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_return] = ACTIONS(3475), - [anon_sym_ref] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_delegate] = ACTIONS(3475), - [anon_sym_abstract] = ACTIONS(3475), - [anon_sym_async] = ACTIONS(3475), - [anon_sym_const] = ACTIONS(3475), - [anon_sym_file] = ACTIONS(3475), - [anon_sym_fixed] = ACTIONS(3475), - [anon_sym_internal] = ACTIONS(3475), - [anon_sym_new] = ACTIONS(3475), - [anon_sym_override] = ACTIONS(3475), - [anon_sym_partial] = ACTIONS(3475), - [anon_sym_private] = ACTIONS(3475), - [anon_sym_protected] = ACTIONS(3475), - [anon_sym_public] = ACTIONS(3475), - [anon_sym_readonly] = ACTIONS(3475), - [anon_sym_required] = ACTIONS(3475), - [anon_sym_sealed] = ACTIONS(3475), - [anon_sym_virtual] = ACTIONS(3475), - [anon_sym_volatile] = ACTIONS(3475), - [anon_sym_where] = ACTIONS(3475), - [anon_sym_notnull] = ACTIONS(3475), - [anon_sym_unmanaged] = ACTIONS(3475), - [anon_sym_checked] = ACTIONS(3475), - [anon_sym_BANG] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_PLUS_PLUS] = ACTIONS(3477), - [anon_sym_DASH_DASH] = ACTIONS(3477), - [anon_sym_true] = ACTIONS(3475), - [anon_sym_false] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3475), - [anon_sym_DASH] = ACTIONS(3475), - [anon_sym_STAR] = ACTIONS(3477), - [anon_sym_CARET] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_this] = ACTIONS(3475), - [anon_sym_scoped] = ACTIONS(3475), - [anon_sym_base] = ACTIONS(3475), - [anon_sym_var] = ACTIONS(3475), - [sym_predefined_type] = ACTIONS(3475), - [anon_sym_break] = ACTIONS(3475), - [anon_sym_unchecked] = ACTIONS(3475), - [anon_sym_continue] = ACTIONS(3475), - [anon_sym_do] = ACTIONS(3475), - [anon_sym_while] = ACTIONS(3475), - [anon_sym_for] = ACTIONS(3475), - [anon_sym_lock] = ACTIONS(3475), - [anon_sym_yield] = ACTIONS(3475), - [anon_sym_switch] = ACTIONS(3475), - [anon_sym_default] = ACTIONS(3475), - [anon_sym_throw] = ACTIONS(3475), - [anon_sym_try] = ACTIONS(3475), - [anon_sym_when] = ACTIONS(3475), - [anon_sym_await] = ACTIONS(3475), - [anon_sym_foreach] = ACTIONS(3475), - [anon_sym_goto] = ACTIONS(3475), - [anon_sym_if] = ACTIONS(3475), - [anon_sym_DOT_DOT] = ACTIONS(3477), - [anon_sym_from] = ACTIONS(3475), - [anon_sym_into] = ACTIONS(3475), - [anon_sym_join] = ACTIONS(3475), - [anon_sym_on] = ACTIONS(3475), - [anon_sym_equals] = ACTIONS(3475), - [anon_sym_let] = ACTIONS(3475), - [anon_sym_orderby] = ACTIONS(3475), - [anon_sym_ascending] = ACTIONS(3475), - [anon_sym_descending] = ACTIONS(3475), - [anon_sym_group] = ACTIONS(3475), - [anon_sym_by] = ACTIONS(3475), - [anon_sym_select] = ACTIONS(3475), - [anon_sym_stackalloc] = ACTIONS(3475), - [anon_sym_sizeof] = ACTIONS(3475), - [anon_sym_typeof] = ACTIONS(3475), - [anon_sym___makeref] = ACTIONS(3475), - [anon_sym___reftype] = ACTIONS(3475), - [anon_sym___refvalue] = ACTIONS(3475), - [sym_null_literal] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3477), - [sym_integer_literal] = ACTIONS(3475), - [sym_real_literal] = ACTIONS(3477), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym_verbatim_string_literal] = ACTIONS(3477), - [aux_sym_preproc_if_token1] = ACTIONS(3477), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3477), - [sym_interpolation_verbatim_start] = ACTIONS(3477), - [sym_interpolation_raw_start] = ACTIONS(3477), - [sym_raw_string_start] = ACTIONS(3477), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3329), + [sym_interpolation_verbatim_start] = ACTIONS(3329), + [sym_interpolation_raw_start] = ACTIONS(3329), + [sym_raw_string_start] = ACTIONS(3329), }, [2084] = { [sym_preproc_region] = STATE(2084), @@ -378776,114 +386663,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2084), [sym_preproc_define] = STATE(2084), [sym_preproc_undef] = STATE(2084), - [sym__identifier_token] = ACTIONS(3479), - [anon_sym_extern] = ACTIONS(3479), - [anon_sym_alias] = ACTIONS(3479), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_global] = ACTIONS(3479), - [anon_sym_using] = ACTIONS(3479), - [anon_sym_unsafe] = ACTIONS(3479), - [anon_sym_static] = ACTIONS(3479), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3481), - [anon_sym_return] = ACTIONS(3479), - [anon_sym_ref] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_delegate] = ACTIONS(3479), - [anon_sym_abstract] = ACTIONS(3479), - [anon_sym_async] = ACTIONS(3479), - [anon_sym_const] = ACTIONS(3479), - [anon_sym_file] = ACTIONS(3479), - [anon_sym_fixed] = ACTIONS(3479), - [anon_sym_internal] = ACTIONS(3479), - [anon_sym_new] = ACTIONS(3479), - [anon_sym_override] = ACTIONS(3479), - [anon_sym_partial] = ACTIONS(3479), - [anon_sym_private] = ACTIONS(3479), - [anon_sym_protected] = ACTIONS(3479), - [anon_sym_public] = ACTIONS(3479), - [anon_sym_readonly] = ACTIONS(3479), - [anon_sym_required] = ACTIONS(3479), - [anon_sym_sealed] = ACTIONS(3479), - [anon_sym_virtual] = ACTIONS(3479), - [anon_sym_volatile] = ACTIONS(3479), - [anon_sym_where] = ACTIONS(3479), - [anon_sym_notnull] = ACTIONS(3479), - [anon_sym_unmanaged] = ACTIONS(3479), - [anon_sym_checked] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_PLUS_PLUS] = ACTIONS(3481), - [anon_sym_DASH_DASH] = ACTIONS(3481), - [anon_sym_true] = ACTIONS(3479), - [anon_sym_false] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3479), - [anon_sym_DASH] = ACTIONS(3479), - [anon_sym_STAR] = ACTIONS(3481), - [anon_sym_CARET] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_this] = ACTIONS(3479), - [anon_sym_scoped] = ACTIONS(3479), - [anon_sym_base] = ACTIONS(3479), - [anon_sym_var] = ACTIONS(3479), - [sym_predefined_type] = ACTIONS(3479), - [anon_sym_break] = ACTIONS(3479), - [anon_sym_unchecked] = ACTIONS(3479), - [anon_sym_continue] = ACTIONS(3479), - [anon_sym_do] = ACTIONS(3479), - [anon_sym_while] = ACTIONS(3479), - [anon_sym_for] = ACTIONS(3479), - [anon_sym_lock] = ACTIONS(3479), - [anon_sym_yield] = ACTIONS(3479), - [anon_sym_switch] = ACTIONS(3479), - [anon_sym_default] = ACTIONS(3479), - [anon_sym_throw] = ACTIONS(3479), - [anon_sym_try] = ACTIONS(3479), - [anon_sym_when] = ACTIONS(3479), - [anon_sym_await] = ACTIONS(3479), - [anon_sym_foreach] = ACTIONS(3479), - [anon_sym_goto] = ACTIONS(3479), - [anon_sym_if] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3481), - [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_stackalloc] = ACTIONS(3479), - [anon_sym_sizeof] = ACTIONS(3479), - [anon_sym_typeof] = ACTIONS(3479), - [anon_sym___makeref] = ACTIONS(3479), - [anon_sym___reftype] = ACTIONS(3479), - [anon_sym___refvalue] = ACTIONS(3479), - [sym_null_literal] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3481), - [sym_integer_literal] = ACTIONS(3479), - [sym_real_literal] = ACTIONS(3481), - [anon_sym_DQUOTE] = ACTIONS(3481), - [sym_verbatim_string_literal] = ACTIONS(3481), - [aux_sym_preproc_if_token1] = ACTIONS(3481), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3481), - [sym_interpolation_verbatim_start] = ACTIONS(3481), - [sym_interpolation_raw_start] = ACTIONS(3481), - [sym_raw_string_start] = ACTIONS(3481), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3373), + [sym_interpolation_verbatim_start] = ACTIONS(3373), + [sym_interpolation_raw_start] = ACTIONS(3373), + [sym_raw_string_start] = ACTIONS(3373), }, [2085] = { [sym_preproc_region] = STATE(2085), @@ -378895,114 +386789,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2085), [sym_preproc_define] = STATE(2085), [sym_preproc_undef] = STATE(2085), - [sym__identifier_token] = ACTIONS(3483), - [anon_sym_extern] = ACTIONS(3483), - [anon_sym_alias] = ACTIONS(3483), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_global] = ACTIONS(3483), - [anon_sym_using] = ACTIONS(3483), - [anon_sym_unsafe] = ACTIONS(3483), - [anon_sym_static] = ACTIONS(3483), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3485), - [anon_sym_return] = ACTIONS(3483), - [anon_sym_ref] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_delegate] = ACTIONS(3483), - [anon_sym_abstract] = ACTIONS(3483), - [anon_sym_async] = ACTIONS(3483), - [anon_sym_const] = ACTIONS(3483), - [anon_sym_file] = ACTIONS(3483), - [anon_sym_fixed] = ACTIONS(3483), - [anon_sym_internal] = ACTIONS(3483), - [anon_sym_new] = ACTIONS(3483), - [anon_sym_override] = ACTIONS(3483), - [anon_sym_partial] = ACTIONS(3483), - [anon_sym_private] = ACTIONS(3483), - [anon_sym_protected] = ACTIONS(3483), - [anon_sym_public] = ACTIONS(3483), - [anon_sym_readonly] = ACTIONS(3483), - [anon_sym_required] = ACTIONS(3483), - [anon_sym_sealed] = ACTIONS(3483), - [anon_sym_virtual] = ACTIONS(3483), - [anon_sym_volatile] = ACTIONS(3483), - [anon_sym_where] = ACTIONS(3483), - [anon_sym_notnull] = ACTIONS(3483), - [anon_sym_unmanaged] = ACTIONS(3483), - [anon_sym_checked] = ACTIONS(3483), - [anon_sym_BANG] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_PLUS_PLUS] = ACTIONS(3485), - [anon_sym_DASH_DASH] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3483), - [anon_sym_false] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3483), - [anon_sym_DASH] = ACTIONS(3483), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_this] = ACTIONS(3483), - [anon_sym_scoped] = ACTIONS(3483), - [anon_sym_base] = ACTIONS(3483), - [anon_sym_var] = ACTIONS(3483), - [sym_predefined_type] = ACTIONS(3483), - [anon_sym_break] = ACTIONS(3483), - [anon_sym_unchecked] = ACTIONS(3483), - [anon_sym_continue] = ACTIONS(3483), - [anon_sym_do] = ACTIONS(3483), - [anon_sym_while] = ACTIONS(3483), - [anon_sym_for] = ACTIONS(3483), - [anon_sym_lock] = ACTIONS(3483), - [anon_sym_yield] = ACTIONS(3483), - [anon_sym_switch] = ACTIONS(3483), - [anon_sym_default] = ACTIONS(3483), - [anon_sym_throw] = ACTIONS(3483), - [anon_sym_try] = ACTIONS(3483), - [anon_sym_when] = ACTIONS(3483), - [anon_sym_await] = ACTIONS(3483), - [anon_sym_foreach] = ACTIONS(3483), - [anon_sym_goto] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3483), - [anon_sym_DOT_DOT] = ACTIONS(3485), - [anon_sym_from] = ACTIONS(3483), - [anon_sym_into] = ACTIONS(3483), - [anon_sym_join] = ACTIONS(3483), - [anon_sym_on] = ACTIONS(3483), - [anon_sym_equals] = ACTIONS(3483), - [anon_sym_let] = ACTIONS(3483), - [anon_sym_orderby] = ACTIONS(3483), - [anon_sym_ascending] = ACTIONS(3483), - [anon_sym_descending] = ACTIONS(3483), - [anon_sym_group] = ACTIONS(3483), - [anon_sym_by] = ACTIONS(3483), - [anon_sym_select] = ACTIONS(3483), - [anon_sym_stackalloc] = ACTIONS(3483), - [anon_sym_sizeof] = ACTIONS(3483), - [anon_sym_typeof] = ACTIONS(3483), - [anon_sym___makeref] = ACTIONS(3483), - [anon_sym___reftype] = ACTIONS(3483), - [anon_sym___refvalue] = ACTIONS(3483), - [sym_null_literal] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3485), - [sym_integer_literal] = ACTIONS(3483), - [sym_real_literal] = ACTIONS(3485), - [anon_sym_DQUOTE] = ACTIONS(3485), - [sym_verbatim_string_literal] = ACTIONS(3485), - [aux_sym_preproc_if_token1] = ACTIONS(3485), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3485), - [sym_interpolation_verbatim_start] = ACTIONS(3485), - [sym_interpolation_raw_start] = ACTIONS(3485), - [sym_raw_string_start] = ACTIONS(3485), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2086] = { [sym_preproc_region] = STATE(2086), @@ -379014,114 +386915,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2086), [sym_preproc_define] = STATE(2086), [sym_preproc_undef] = STATE(2086), - [sym__identifier_token] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_alias] = ACTIONS(3487), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_global] = ACTIONS(3487), - [anon_sym_using] = ACTIONS(3487), - [anon_sym_unsafe] = ACTIONS(3487), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3489), - [anon_sym_return] = ACTIONS(3487), - [anon_sym_ref] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_delegate] = ACTIONS(3487), - [anon_sym_abstract] = ACTIONS(3487), - [anon_sym_async] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_file] = ACTIONS(3487), - [anon_sym_fixed] = ACTIONS(3487), - [anon_sym_internal] = ACTIONS(3487), - [anon_sym_new] = ACTIONS(3487), - [anon_sym_override] = ACTIONS(3487), - [anon_sym_partial] = ACTIONS(3487), - [anon_sym_private] = ACTIONS(3487), - [anon_sym_protected] = ACTIONS(3487), - [anon_sym_public] = ACTIONS(3487), - [anon_sym_readonly] = ACTIONS(3487), - [anon_sym_required] = ACTIONS(3487), - [anon_sym_sealed] = ACTIONS(3487), - [anon_sym_virtual] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym_where] = ACTIONS(3487), - [anon_sym_notnull] = ACTIONS(3487), - [anon_sym_unmanaged] = ACTIONS(3487), - [anon_sym_checked] = ACTIONS(3487), - [anon_sym_BANG] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_PLUS_PLUS] = ACTIONS(3489), - [anon_sym_DASH_DASH] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3487), - [anon_sym_DASH] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_CARET] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_this] = ACTIONS(3487), - [anon_sym_scoped] = ACTIONS(3487), - [anon_sym_base] = ACTIONS(3487), - [anon_sym_var] = ACTIONS(3487), - [sym_predefined_type] = ACTIONS(3487), - [anon_sym_break] = ACTIONS(3487), - [anon_sym_unchecked] = ACTIONS(3487), - [anon_sym_continue] = ACTIONS(3487), - [anon_sym_do] = ACTIONS(3487), - [anon_sym_while] = ACTIONS(3487), - [anon_sym_for] = ACTIONS(3487), - [anon_sym_lock] = ACTIONS(3487), - [anon_sym_yield] = ACTIONS(3487), - [anon_sym_switch] = ACTIONS(3487), - [anon_sym_default] = ACTIONS(3487), - [anon_sym_throw] = ACTIONS(3487), - [anon_sym_try] = ACTIONS(3487), - [anon_sym_when] = ACTIONS(3487), - [anon_sym_await] = ACTIONS(3487), - [anon_sym_foreach] = ACTIONS(3487), - [anon_sym_goto] = ACTIONS(3487), - [anon_sym_if] = ACTIONS(3487), - [anon_sym_DOT_DOT] = ACTIONS(3489), - [anon_sym_from] = ACTIONS(3487), - [anon_sym_into] = ACTIONS(3487), - [anon_sym_join] = ACTIONS(3487), - [anon_sym_on] = ACTIONS(3487), - [anon_sym_equals] = ACTIONS(3487), - [anon_sym_let] = ACTIONS(3487), - [anon_sym_orderby] = ACTIONS(3487), - [anon_sym_ascending] = ACTIONS(3487), - [anon_sym_descending] = ACTIONS(3487), - [anon_sym_group] = ACTIONS(3487), - [anon_sym_by] = ACTIONS(3487), - [anon_sym_select] = ACTIONS(3487), - [anon_sym_stackalloc] = ACTIONS(3487), - [anon_sym_sizeof] = ACTIONS(3487), - [anon_sym_typeof] = ACTIONS(3487), - [anon_sym___makeref] = ACTIONS(3487), - [anon_sym___reftype] = ACTIONS(3487), - [anon_sym___refvalue] = ACTIONS(3487), - [sym_null_literal] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3489), - [sym_integer_literal] = ACTIONS(3487), - [sym_real_literal] = ACTIONS(3489), - [anon_sym_DQUOTE] = ACTIONS(3489), - [sym_verbatim_string_literal] = ACTIONS(3489), - [aux_sym_preproc_if_token1] = ACTIONS(3489), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3489), - [sym_interpolation_verbatim_start] = ACTIONS(3489), - [sym_interpolation_raw_start] = ACTIONS(3489), - [sym_raw_string_start] = ACTIONS(3489), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2087] = { [sym_preproc_region] = STATE(2087), @@ -379133,114 +387041,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2087), [sym_preproc_define] = STATE(2087), [sym_preproc_undef] = STATE(2087), - [sym__identifier_token] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym_alias] = ACTIONS(3491), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_global] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_unsafe] = ACTIONS(3491), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3493), - [anon_sym_return] = ACTIONS(3491), - [anon_sym_ref] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_delegate] = ACTIONS(3491), - [anon_sym_abstract] = ACTIONS(3491), - [anon_sym_async] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_file] = ACTIONS(3491), - [anon_sym_fixed] = ACTIONS(3491), - [anon_sym_internal] = ACTIONS(3491), - [anon_sym_new] = ACTIONS(3491), - [anon_sym_override] = ACTIONS(3491), - [anon_sym_partial] = ACTIONS(3491), - [anon_sym_private] = ACTIONS(3491), - [anon_sym_protected] = ACTIONS(3491), - [anon_sym_public] = ACTIONS(3491), - [anon_sym_readonly] = ACTIONS(3491), - [anon_sym_required] = ACTIONS(3491), - [anon_sym_sealed] = ACTIONS(3491), - [anon_sym_virtual] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym_where] = ACTIONS(3491), - [anon_sym_notnull] = ACTIONS(3491), - [anon_sym_unmanaged] = ACTIONS(3491), - [anon_sym_checked] = ACTIONS(3491), - [anon_sym_BANG] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_PLUS_PLUS] = ACTIONS(3493), - [anon_sym_DASH_DASH] = ACTIONS(3493), - [anon_sym_true] = ACTIONS(3491), - [anon_sym_false] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3491), - [anon_sym_DASH] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_CARET] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_this] = ACTIONS(3491), - [anon_sym_scoped] = ACTIONS(3491), - [anon_sym_base] = ACTIONS(3491), - [anon_sym_var] = ACTIONS(3491), - [sym_predefined_type] = ACTIONS(3491), - [anon_sym_break] = ACTIONS(3491), - [anon_sym_unchecked] = ACTIONS(3491), - [anon_sym_continue] = ACTIONS(3491), - [anon_sym_do] = ACTIONS(3491), - [anon_sym_while] = ACTIONS(3491), - [anon_sym_for] = ACTIONS(3491), - [anon_sym_lock] = ACTIONS(3491), - [anon_sym_yield] = ACTIONS(3491), - [anon_sym_switch] = ACTIONS(3491), - [anon_sym_default] = ACTIONS(3491), - [anon_sym_throw] = ACTIONS(3491), - [anon_sym_try] = ACTIONS(3491), - [anon_sym_when] = ACTIONS(3491), - [anon_sym_await] = ACTIONS(3491), - [anon_sym_foreach] = ACTIONS(3491), - [anon_sym_goto] = ACTIONS(3491), - [anon_sym_if] = ACTIONS(3491), - [anon_sym_DOT_DOT] = ACTIONS(3493), - [anon_sym_from] = ACTIONS(3491), - [anon_sym_into] = ACTIONS(3491), - [anon_sym_join] = ACTIONS(3491), - [anon_sym_on] = ACTIONS(3491), - [anon_sym_equals] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3491), - [anon_sym_orderby] = ACTIONS(3491), - [anon_sym_ascending] = ACTIONS(3491), - [anon_sym_descending] = ACTIONS(3491), - [anon_sym_group] = ACTIONS(3491), - [anon_sym_by] = ACTIONS(3491), - [anon_sym_select] = ACTIONS(3491), - [anon_sym_stackalloc] = ACTIONS(3491), - [anon_sym_sizeof] = ACTIONS(3491), - [anon_sym_typeof] = ACTIONS(3491), - [anon_sym___makeref] = ACTIONS(3491), - [anon_sym___reftype] = ACTIONS(3491), - [anon_sym___refvalue] = ACTIONS(3491), - [sym_null_literal] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3493), - [sym_integer_literal] = ACTIONS(3491), - [sym_real_literal] = ACTIONS(3493), - [anon_sym_DQUOTE] = ACTIONS(3493), - [sym_verbatim_string_literal] = ACTIONS(3493), - [aux_sym_preproc_if_token1] = ACTIONS(3493), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3493), - [sym_interpolation_verbatim_start] = ACTIONS(3493), - [sym_interpolation_raw_start] = ACTIONS(3493), - [sym_raw_string_start] = ACTIONS(3493), + [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), }, [2088] = { [sym_preproc_region] = STATE(2088), @@ -379252,114 +387167,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2088), [sym_preproc_define] = STATE(2088), [sym_preproc_undef] = STATE(2088), - [sym__identifier_token] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym_alias] = ACTIONS(3495), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_global] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_unsafe] = ACTIONS(3495), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_return] = ACTIONS(3495), - [anon_sym_ref] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_delegate] = ACTIONS(3495), - [anon_sym_abstract] = ACTIONS(3495), - [anon_sym_async] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_file] = ACTIONS(3495), - [anon_sym_fixed] = ACTIONS(3495), - [anon_sym_internal] = ACTIONS(3495), - [anon_sym_new] = ACTIONS(3495), - [anon_sym_override] = ACTIONS(3495), - [anon_sym_partial] = ACTIONS(3495), - [anon_sym_private] = ACTIONS(3495), - [anon_sym_protected] = ACTIONS(3495), - [anon_sym_public] = ACTIONS(3495), - [anon_sym_readonly] = ACTIONS(3495), - [anon_sym_required] = ACTIONS(3495), - [anon_sym_sealed] = ACTIONS(3495), - [anon_sym_virtual] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym_where] = ACTIONS(3495), - [anon_sym_notnull] = ACTIONS(3495), - [anon_sym_unmanaged] = ACTIONS(3495), - [anon_sym_checked] = ACTIONS(3495), - [anon_sym_BANG] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_PLUS_PLUS] = ACTIONS(3497), - [anon_sym_DASH_DASH] = ACTIONS(3497), - [anon_sym_true] = ACTIONS(3495), - [anon_sym_false] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3495), - [anon_sym_DASH] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3497), - [anon_sym_CARET] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_this] = ACTIONS(3495), - [anon_sym_scoped] = ACTIONS(3495), - [anon_sym_base] = ACTIONS(3495), - [anon_sym_var] = ACTIONS(3495), - [sym_predefined_type] = ACTIONS(3495), - [anon_sym_break] = ACTIONS(3495), - [anon_sym_unchecked] = ACTIONS(3495), - [anon_sym_continue] = ACTIONS(3495), - [anon_sym_do] = ACTIONS(3495), - [anon_sym_while] = ACTIONS(3495), - [anon_sym_for] = ACTIONS(3495), - [anon_sym_lock] = ACTIONS(3495), - [anon_sym_yield] = ACTIONS(3495), - [anon_sym_switch] = ACTIONS(3495), - [anon_sym_default] = ACTIONS(3495), - [anon_sym_throw] = ACTIONS(3495), - [anon_sym_try] = ACTIONS(3495), - [anon_sym_when] = ACTIONS(3495), - [anon_sym_await] = ACTIONS(3495), - [anon_sym_foreach] = ACTIONS(3495), - [anon_sym_goto] = ACTIONS(3495), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_DOT_DOT] = ACTIONS(3497), - [anon_sym_from] = ACTIONS(3495), - [anon_sym_into] = ACTIONS(3495), - [anon_sym_join] = ACTIONS(3495), - [anon_sym_on] = ACTIONS(3495), - [anon_sym_equals] = ACTIONS(3495), - [anon_sym_let] = ACTIONS(3495), - [anon_sym_orderby] = ACTIONS(3495), - [anon_sym_ascending] = ACTIONS(3495), - [anon_sym_descending] = ACTIONS(3495), - [anon_sym_group] = ACTIONS(3495), - [anon_sym_by] = ACTIONS(3495), - [anon_sym_select] = ACTIONS(3495), - [anon_sym_stackalloc] = ACTIONS(3495), - [anon_sym_sizeof] = ACTIONS(3495), - [anon_sym_typeof] = ACTIONS(3495), - [anon_sym___makeref] = ACTIONS(3495), - [anon_sym___reftype] = ACTIONS(3495), - [anon_sym___refvalue] = ACTIONS(3495), - [sym_null_literal] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3497), - [sym_integer_literal] = ACTIONS(3495), - [sym_real_literal] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(3497), - [sym_verbatim_string_literal] = ACTIONS(3497), - [aux_sym_preproc_if_token1] = ACTIONS(3497), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3497), - [sym_interpolation_verbatim_start] = ACTIONS(3497), - [sym_interpolation_raw_start] = ACTIONS(3497), - [sym_raw_string_start] = ACTIONS(3497), + [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), }, [2089] = { [sym_preproc_region] = STATE(2089), @@ -379371,114 +387291,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2089), [sym_preproc_define] = STATE(2089), [sym_preproc_undef] = STATE(2089), - [sym__identifier_token] = ACTIONS(3499), - [anon_sym_extern] = ACTIONS(3499), - [anon_sym_alias] = ACTIONS(3499), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_global] = ACTIONS(3499), - [anon_sym_using] = ACTIONS(3499), - [anon_sym_unsafe] = ACTIONS(3499), - [anon_sym_static] = ACTIONS(3499), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3501), - [anon_sym_return] = ACTIONS(3499), - [anon_sym_ref] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_delegate] = ACTIONS(3499), - [anon_sym_abstract] = ACTIONS(3499), - [anon_sym_async] = ACTIONS(3499), - [anon_sym_const] = ACTIONS(3499), - [anon_sym_file] = ACTIONS(3499), - [anon_sym_fixed] = ACTIONS(3499), - [anon_sym_internal] = ACTIONS(3499), - [anon_sym_new] = ACTIONS(3499), - [anon_sym_override] = ACTIONS(3499), - [anon_sym_partial] = ACTIONS(3499), - [anon_sym_private] = ACTIONS(3499), - [anon_sym_protected] = ACTIONS(3499), - [anon_sym_public] = ACTIONS(3499), - [anon_sym_readonly] = ACTIONS(3499), - [anon_sym_required] = ACTIONS(3499), - [anon_sym_sealed] = ACTIONS(3499), - [anon_sym_virtual] = ACTIONS(3499), - [anon_sym_volatile] = ACTIONS(3499), - [anon_sym_where] = ACTIONS(3499), - [anon_sym_notnull] = ACTIONS(3499), - [anon_sym_unmanaged] = ACTIONS(3499), - [anon_sym_checked] = ACTIONS(3499), - [anon_sym_BANG] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_PLUS_PLUS] = ACTIONS(3501), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_true] = ACTIONS(3499), - [anon_sym_false] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3499), - [anon_sym_DASH] = ACTIONS(3499), - [anon_sym_STAR] = ACTIONS(3501), - [anon_sym_CARET] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_this] = ACTIONS(3499), - [anon_sym_scoped] = ACTIONS(3499), - [anon_sym_base] = ACTIONS(3499), - [anon_sym_var] = ACTIONS(3499), - [sym_predefined_type] = ACTIONS(3499), - [anon_sym_break] = ACTIONS(3499), - [anon_sym_unchecked] = ACTIONS(3499), - [anon_sym_continue] = ACTIONS(3499), - [anon_sym_do] = ACTIONS(3499), - [anon_sym_while] = ACTIONS(3499), - [anon_sym_for] = ACTIONS(3499), - [anon_sym_lock] = ACTIONS(3499), - [anon_sym_yield] = ACTIONS(3499), - [anon_sym_switch] = ACTIONS(3499), - [anon_sym_default] = ACTIONS(3499), - [anon_sym_throw] = ACTIONS(3499), - [anon_sym_try] = ACTIONS(3499), - [anon_sym_when] = ACTIONS(3499), - [anon_sym_await] = ACTIONS(3499), - [anon_sym_foreach] = ACTIONS(3499), - [anon_sym_goto] = ACTIONS(3499), - [anon_sym_if] = ACTIONS(3499), - [anon_sym_DOT_DOT] = ACTIONS(3501), - [anon_sym_from] = ACTIONS(3499), - [anon_sym_into] = ACTIONS(3499), - [anon_sym_join] = ACTIONS(3499), - [anon_sym_on] = ACTIONS(3499), - [anon_sym_equals] = ACTIONS(3499), - [anon_sym_let] = ACTIONS(3499), - [anon_sym_orderby] = ACTIONS(3499), - [anon_sym_ascending] = ACTIONS(3499), - [anon_sym_descending] = ACTIONS(3499), - [anon_sym_group] = ACTIONS(3499), - [anon_sym_by] = ACTIONS(3499), - [anon_sym_select] = ACTIONS(3499), - [anon_sym_stackalloc] = ACTIONS(3499), - [anon_sym_sizeof] = ACTIONS(3499), - [anon_sym_typeof] = ACTIONS(3499), - [anon_sym___makeref] = ACTIONS(3499), - [anon_sym___reftype] = ACTIONS(3499), - [anon_sym___refvalue] = ACTIONS(3499), - [sym_null_literal] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3501), - [sym_integer_literal] = ACTIONS(3499), - [sym_real_literal] = ACTIONS(3501), - [anon_sym_DQUOTE] = ACTIONS(3501), - [sym_verbatim_string_literal] = ACTIONS(3501), - [aux_sym_preproc_if_token1] = ACTIONS(3501), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3501), - [sym_interpolation_verbatim_start] = ACTIONS(3501), - [sym_interpolation_raw_start] = ACTIONS(3501), - [sym_raw_string_start] = ACTIONS(3501), + [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), }, [2090] = { [sym_preproc_region] = STATE(2090), @@ -379490,114 +387415,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2090), [sym_preproc_define] = STATE(2090), [sym_preproc_undef] = STATE(2090), - [sym__identifier_token] = ACTIONS(3503), - [anon_sym_extern] = ACTIONS(3503), - [anon_sym_alias] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_global] = ACTIONS(3503), - [anon_sym_using] = ACTIONS(3503), - [anon_sym_unsafe] = ACTIONS(3503), - [anon_sym_static] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_return] = ACTIONS(3503), - [anon_sym_ref] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_delegate] = ACTIONS(3503), - [anon_sym_abstract] = ACTIONS(3503), - [anon_sym_async] = ACTIONS(3503), - [anon_sym_const] = ACTIONS(3503), - [anon_sym_file] = ACTIONS(3503), - [anon_sym_fixed] = ACTIONS(3503), - [anon_sym_internal] = ACTIONS(3503), - [anon_sym_new] = ACTIONS(3503), - [anon_sym_override] = ACTIONS(3503), - [anon_sym_partial] = ACTIONS(3503), - [anon_sym_private] = ACTIONS(3503), - [anon_sym_protected] = ACTIONS(3503), - [anon_sym_public] = ACTIONS(3503), - [anon_sym_readonly] = ACTIONS(3503), - [anon_sym_required] = ACTIONS(3503), - [anon_sym_sealed] = ACTIONS(3503), - [anon_sym_virtual] = ACTIONS(3503), - [anon_sym_volatile] = ACTIONS(3503), - [anon_sym_where] = ACTIONS(3503), - [anon_sym_notnull] = ACTIONS(3503), - [anon_sym_unmanaged] = ACTIONS(3503), - [anon_sym_checked] = ACTIONS(3503), - [anon_sym_BANG] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_PLUS_PLUS] = ACTIONS(3505), - [anon_sym_DASH_DASH] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3503), - [anon_sym_false] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3503), - [anon_sym_DASH] = ACTIONS(3503), - [anon_sym_STAR] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_this] = ACTIONS(3503), - [anon_sym_scoped] = ACTIONS(3503), - [anon_sym_base] = ACTIONS(3503), - [anon_sym_var] = ACTIONS(3503), - [sym_predefined_type] = ACTIONS(3503), - [anon_sym_break] = ACTIONS(3503), - [anon_sym_unchecked] = ACTIONS(3503), - [anon_sym_continue] = ACTIONS(3503), - [anon_sym_do] = ACTIONS(3503), - [anon_sym_while] = ACTIONS(3503), - [anon_sym_for] = ACTIONS(3503), - [anon_sym_lock] = ACTIONS(3503), - [anon_sym_yield] = ACTIONS(3503), - [anon_sym_switch] = ACTIONS(3503), - [anon_sym_default] = ACTIONS(3503), - [anon_sym_throw] = ACTIONS(3503), - [anon_sym_try] = ACTIONS(3503), - [anon_sym_when] = ACTIONS(3503), - [anon_sym_await] = ACTIONS(3503), - [anon_sym_foreach] = ACTIONS(3503), - [anon_sym_goto] = ACTIONS(3503), - [anon_sym_if] = ACTIONS(3503), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [anon_sym_from] = ACTIONS(3503), - [anon_sym_into] = ACTIONS(3503), - [anon_sym_join] = ACTIONS(3503), - [anon_sym_on] = ACTIONS(3503), - [anon_sym_equals] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3503), - [anon_sym_orderby] = ACTIONS(3503), - [anon_sym_ascending] = ACTIONS(3503), - [anon_sym_descending] = ACTIONS(3503), - [anon_sym_group] = ACTIONS(3503), - [anon_sym_by] = ACTIONS(3503), - [anon_sym_select] = ACTIONS(3503), - [anon_sym_stackalloc] = ACTIONS(3503), - [anon_sym_sizeof] = ACTIONS(3503), - [anon_sym_typeof] = ACTIONS(3503), - [anon_sym___makeref] = ACTIONS(3503), - [anon_sym___reftype] = ACTIONS(3503), - [anon_sym___refvalue] = ACTIONS(3503), - [sym_null_literal] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3505), - [sym_integer_literal] = ACTIONS(3503), - [sym_real_literal] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym_verbatim_string_literal] = ACTIONS(3505), - [aux_sym_preproc_if_token1] = ACTIONS(3505), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3505), - [sym_interpolation_verbatim_start] = ACTIONS(3505), - [sym_interpolation_raw_start] = ACTIONS(3505), - [sym_raw_string_start] = ACTIONS(3505), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2091] = { [sym_preproc_region] = STATE(2091), @@ -379609,114 +387539,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2091), [sym_preproc_define] = STATE(2091), [sym_preproc_undef] = STATE(2091), - [sym__identifier_token] = ACTIONS(3507), - [anon_sym_extern] = ACTIONS(3507), - [anon_sym_alias] = ACTIONS(3507), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_global] = ACTIONS(3507), - [anon_sym_using] = ACTIONS(3507), - [anon_sym_unsafe] = ACTIONS(3507), - [anon_sym_static] = ACTIONS(3507), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3509), - [anon_sym_return] = ACTIONS(3507), - [anon_sym_ref] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_delegate] = ACTIONS(3507), - [anon_sym_abstract] = ACTIONS(3507), - [anon_sym_async] = ACTIONS(3507), - [anon_sym_const] = ACTIONS(3507), - [anon_sym_file] = ACTIONS(3507), - [anon_sym_fixed] = ACTIONS(3507), - [anon_sym_internal] = ACTIONS(3507), - [anon_sym_new] = ACTIONS(3507), - [anon_sym_override] = ACTIONS(3507), - [anon_sym_partial] = ACTIONS(3507), - [anon_sym_private] = ACTIONS(3507), - [anon_sym_protected] = ACTIONS(3507), - [anon_sym_public] = ACTIONS(3507), - [anon_sym_readonly] = ACTIONS(3507), - [anon_sym_required] = ACTIONS(3507), - [anon_sym_sealed] = ACTIONS(3507), - [anon_sym_virtual] = ACTIONS(3507), - [anon_sym_volatile] = ACTIONS(3507), - [anon_sym_where] = ACTIONS(3507), - [anon_sym_notnull] = ACTIONS(3507), - [anon_sym_unmanaged] = ACTIONS(3507), - [anon_sym_checked] = ACTIONS(3507), - [anon_sym_BANG] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_PLUS_PLUS] = ACTIONS(3509), - [anon_sym_DASH_DASH] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3507), - [anon_sym_false] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3507), - [anon_sym_DASH] = ACTIONS(3507), - [anon_sym_STAR] = ACTIONS(3509), - [anon_sym_CARET] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_this] = ACTIONS(3507), - [anon_sym_scoped] = ACTIONS(3507), - [anon_sym_base] = ACTIONS(3507), - [anon_sym_var] = ACTIONS(3507), - [sym_predefined_type] = ACTIONS(3507), - [anon_sym_break] = ACTIONS(3507), - [anon_sym_unchecked] = ACTIONS(3507), - [anon_sym_continue] = ACTIONS(3507), - [anon_sym_do] = ACTIONS(3507), - [anon_sym_while] = ACTIONS(3507), - [anon_sym_for] = ACTIONS(3507), - [anon_sym_lock] = ACTIONS(3507), - [anon_sym_yield] = ACTIONS(3507), - [anon_sym_switch] = ACTIONS(3507), - [anon_sym_default] = ACTIONS(3507), - [anon_sym_throw] = ACTIONS(3507), - [anon_sym_try] = ACTIONS(3507), - [anon_sym_when] = ACTIONS(3507), - [anon_sym_await] = ACTIONS(3507), - [anon_sym_foreach] = ACTIONS(3507), - [anon_sym_goto] = ACTIONS(3507), - [anon_sym_if] = ACTIONS(3507), - [anon_sym_DOT_DOT] = ACTIONS(3509), - [anon_sym_from] = ACTIONS(3507), - [anon_sym_into] = ACTIONS(3507), - [anon_sym_join] = ACTIONS(3507), - [anon_sym_on] = ACTIONS(3507), - [anon_sym_equals] = ACTIONS(3507), - [anon_sym_let] = ACTIONS(3507), - [anon_sym_orderby] = ACTIONS(3507), - [anon_sym_ascending] = ACTIONS(3507), - [anon_sym_descending] = ACTIONS(3507), - [anon_sym_group] = ACTIONS(3507), - [anon_sym_by] = ACTIONS(3507), - [anon_sym_select] = ACTIONS(3507), - [anon_sym_stackalloc] = ACTIONS(3507), - [anon_sym_sizeof] = ACTIONS(3507), - [anon_sym_typeof] = ACTIONS(3507), - [anon_sym___makeref] = ACTIONS(3507), - [anon_sym___reftype] = ACTIONS(3507), - [anon_sym___refvalue] = ACTIONS(3507), - [sym_null_literal] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3509), - [sym_integer_literal] = ACTIONS(3507), - [sym_real_literal] = ACTIONS(3509), - [anon_sym_DQUOTE] = ACTIONS(3509), - [sym_verbatim_string_literal] = ACTIONS(3509), - [aux_sym_preproc_if_token1] = ACTIONS(3509), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3509), - [sym_interpolation_verbatim_start] = ACTIONS(3509), - [sym_interpolation_raw_start] = ACTIONS(3509), - [sym_raw_string_start] = ACTIONS(3509), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2092] = { [sym_preproc_region] = STATE(2092), @@ -379728,114 +387663,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2092), [sym_preproc_define] = STATE(2092), [sym_preproc_undef] = STATE(2092), - [sym__identifier_token] = ACTIONS(3511), - [anon_sym_extern] = ACTIONS(3511), - [anon_sym_alias] = ACTIONS(3511), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_global] = ACTIONS(3511), - [anon_sym_using] = ACTIONS(3511), - [anon_sym_unsafe] = ACTIONS(3511), - [anon_sym_static] = ACTIONS(3511), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3513), - [anon_sym_return] = ACTIONS(3511), - [anon_sym_ref] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_delegate] = ACTIONS(3511), - [anon_sym_abstract] = ACTIONS(3511), - [anon_sym_async] = ACTIONS(3511), - [anon_sym_const] = ACTIONS(3511), - [anon_sym_file] = ACTIONS(3511), - [anon_sym_fixed] = ACTIONS(3511), - [anon_sym_internal] = ACTIONS(3511), - [anon_sym_new] = ACTIONS(3511), - [anon_sym_override] = ACTIONS(3511), - [anon_sym_partial] = ACTIONS(3511), - [anon_sym_private] = ACTIONS(3511), - [anon_sym_protected] = ACTIONS(3511), - [anon_sym_public] = ACTIONS(3511), - [anon_sym_readonly] = ACTIONS(3511), - [anon_sym_required] = ACTIONS(3511), - [anon_sym_sealed] = ACTIONS(3511), - [anon_sym_virtual] = ACTIONS(3511), - [anon_sym_volatile] = ACTIONS(3511), - [anon_sym_where] = ACTIONS(3511), - [anon_sym_notnull] = ACTIONS(3511), - [anon_sym_unmanaged] = ACTIONS(3511), - [anon_sym_checked] = ACTIONS(3511), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_true] = ACTIONS(3511), - [anon_sym_false] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_CARET] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_this] = ACTIONS(3511), - [anon_sym_scoped] = ACTIONS(3511), - [anon_sym_base] = ACTIONS(3511), - [anon_sym_var] = ACTIONS(3511), - [sym_predefined_type] = ACTIONS(3511), - [anon_sym_break] = ACTIONS(3511), - [anon_sym_unchecked] = ACTIONS(3511), - [anon_sym_continue] = ACTIONS(3511), - [anon_sym_do] = ACTIONS(3511), - [anon_sym_while] = ACTIONS(3511), - [anon_sym_for] = ACTIONS(3511), - [anon_sym_lock] = ACTIONS(3511), - [anon_sym_yield] = ACTIONS(3511), - [anon_sym_switch] = ACTIONS(3511), - [anon_sym_default] = ACTIONS(3511), - [anon_sym_throw] = ACTIONS(3511), - [anon_sym_try] = ACTIONS(3511), - [anon_sym_when] = ACTIONS(3511), - [anon_sym_await] = ACTIONS(3511), - [anon_sym_foreach] = ACTIONS(3511), - [anon_sym_goto] = ACTIONS(3511), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_DOT_DOT] = ACTIONS(3513), - [anon_sym_from] = ACTIONS(3511), - [anon_sym_into] = ACTIONS(3511), - [anon_sym_join] = ACTIONS(3511), - [anon_sym_on] = ACTIONS(3511), - [anon_sym_equals] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3511), - [anon_sym_orderby] = ACTIONS(3511), - [anon_sym_ascending] = ACTIONS(3511), - [anon_sym_descending] = ACTIONS(3511), - [anon_sym_group] = ACTIONS(3511), - [anon_sym_by] = ACTIONS(3511), - [anon_sym_select] = ACTIONS(3511), - [anon_sym_stackalloc] = ACTIONS(3511), - [anon_sym_sizeof] = ACTIONS(3511), - [anon_sym_typeof] = ACTIONS(3511), - [anon_sym___makeref] = ACTIONS(3511), - [anon_sym___reftype] = ACTIONS(3511), - [anon_sym___refvalue] = ACTIONS(3511), - [sym_null_literal] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3513), - [sym_integer_literal] = ACTIONS(3511), - [sym_real_literal] = ACTIONS(3513), - [anon_sym_DQUOTE] = ACTIONS(3513), - [sym_verbatim_string_literal] = ACTIONS(3513), - [aux_sym_preproc_if_token1] = ACTIONS(3513), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3513), - [sym_interpolation_verbatim_start] = ACTIONS(3513), - [sym_interpolation_raw_start] = ACTIONS(3513), - [sym_raw_string_start] = ACTIONS(3513), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2093] = { [sym_preproc_region] = STATE(2093), @@ -379847,114 +387787,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2093), [sym_preproc_define] = STATE(2093), [sym_preproc_undef] = STATE(2093), - [sym__identifier_token] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_alias] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_global] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_unsafe] = ACTIONS(3515), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_ref] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_delegate] = ACTIONS(3515), - [anon_sym_abstract] = ACTIONS(3515), - [anon_sym_async] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_file] = ACTIONS(3515), - [anon_sym_fixed] = ACTIONS(3515), - [anon_sym_internal] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_override] = ACTIONS(3515), - [anon_sym_partial] = ACTIONS(3515), - [anon_sym_private] = ACTIONS(3515), - [anon_sym_protected] = ACTIONS(3515), - [anon_sym_public] = ACTIONS(3515), - [anon_sym_readonly] = ACTIONS(3515), - [anon_sym_required] = ACTIONS(3515), - [anon_sym_sealed] = ACTIONS(3515), - [anon_sym_virtual] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym_where] = ACTIONS(3515), - [anon_sym_notnull] = ACTIONS(3515), - [anon_sym_unmanaged] = ACTIONS(3515), - [anon_sym_checked] = ACTIONS(3515), - [anon_sym_BANG] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_PLUS_PLUS] = ACTIONS(3517), - [anon_sym_DASH_DASH] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3515), - [anon_sym_false] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_this] = ACTIONS(3515), - [anon_sym_scoped] = ACTIONS(3515), - [anon_sym_base] = ACTIONS(3515), - [anon_sym_var] = ACTIONS(3515), - [sym_predefined_type] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_unchecked] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_lock] = ACTIONS(3515), - [anon_sym_yield] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_throw] = ACTIONS(3515), - [anon_sym_try] = ACTIONS(3515), - [anon_sym_when] = ACTIONS(3515), - [anon_sym_await] = ACTIONS(3515), - [anon_sym_foreach] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_DOT_DOT] = ACTIONS(3517), - [anon_sym_from] = ACTIONS(3515), - [anon_sym_into] = ACTIONS(3515), - [anon_sym_join] = ACTIONS(3515), - [anon_sym_on] = ACTIONS(3515), - [anon_sym_equals] = ACTIONS(3515), - [anon_sym_let] = ACTIONS(3515), - [anon_sym_orderby] = ACTIONS(3515), - [anon_sym_ascending] = ACTIONS(3515), - [anon_sym_descending] = ACTIONS(3515), - [anon_sym_group] = ACTIONS(3515), - [anon_sym_by] = ACTIONS(3515), - [anon_sym_select] = ACTIONS(3515), - [anon_sym_stackalloc] = ACTIONS(3515), - [anon_sym_sizeof] = ACTIONS(3515), - [anon_sym_typeof] = ACTIONS(3515), - [anon_sym___makeref] = ACTIONS(3515), - [anon_sym___reftype] = ACTIONS(3515), - [anon_sym___refvalue] = ACTIONS(3515), - [sym_null_literal] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3517), - [sym_integer_literal] = ACTIONS(3515), - [sym_real_literal] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym_verbatim_string_literal] = ACTIONS(3517), - [aux_sym_preproc_if_token1] = ACTIONS(3517), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3517), - [sym_interpolation_verbatim_start] = ACTIONS(3517), - [sym_interpolation_raw_start] = ACTIONS(3517), - [sym_raw_string_start] = ACTIONS(3517), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2094] = { [sym_preproc_region] = STATE(2094), @@ -379966,114 +387910,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2094), [sym_preproc_define] = STATE(2094), [sym_preproc_undef] = STATE(2094), - [sym__identifier_token] = ACTIONS(3519), - [anon_sym_extern] = ACTIONS(3519), - [anon_sym_alias] = ACTIONS(3519), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_global] = ACTIONS(3519), - [anon_sym_using] = ACTIONS(3519), - [anon_sym_unsafe] = ACTIONS(3519), - [anon_sym_static] = ACTIONS(3519), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_return] = ACTIONS(3519), - [anon_sym_ref] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_delegate] = ACTIONS(3519), - [anon_sym_abstract] = ACTIONS(3519), - [anon_sym_async] = ACTIONS(3519), - [anon_sym_const] = ACTIONS(3519), - [anon_sym_file] = ACTIONS(3519), - [anon_sym_fixed] = ACTIONS(3519), - [anon_sym_internal] = ACTIONS(3519), - [anon_sym_new] = ACTIONS(3519), - [anon_sym_override] = ACTIONS(3519), - [anon_sym_partial] = ACTIONS(3519), - [anon_sym_private] = ACTIONS(3519), - [anon_sym_protected] = ACTIONS(3519), - [anon_sym_public] = ACTIONS(3519), - [anon_sym_readonly] = ACTIONS(3519), - [anon_sym_required] = ACTIONS(3519), - [anon_sym_sealed] = ACTIONS(3519), - [anon_sym_virtual] = ACTIONS(3519), - [anon_sym_volatile] = ACTIONS(3519), - [anon_sym_where] = ACTIONS(3519), - [anon_sym_notnull] = ACTIONS(3519), - [anon_sym_unmanaged] = ACTIONS(3519), - [anon_sym_checked] = ACTIONS(3519), - [anon_sym_BANG] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_PLUS_PLUS] = ACTIONS(3521), - [anon_sym_DASH_DASH] = ACTIONS(3521), - [anon_sym_true] = ACTIONS(3519), - [anon_sym_false] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3519), - [anon_sym_DASH] = ACTIONS(3519), - [anon_sym_STAR] = ACTIONS(3521), - [anon_sym_CARET] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_this] = ACTIONS(3519), - [anon_sym_scoped] = ACTIONS(3519), - [anon_sym_base] = ACTIONS(3519), - [anon_sym_var] = ACTIONS(3519), - [sym_predefined_type] = ACTIONS(3519), - [anon_sym_break] = ACTIONS(3519), - [anon_sym_unchecked] = ACTIONS(3519), - [anon_sym_continue] = ACTIONS(3519), - [anon_sym_do] = ACTIONS(3519), - [anon_sym_while] = ACTIONS(3519), - [anon_sym_for] = ACTIONS(3519), - [anon_sym_lock] = ACTIONS(3519), - [anon_sym_yield] = ACTIONS(3519), - [anon_sym_switch] = ACTIONS(3519), - [anon_sym_default] = ACTIONS(3519), - [anon_sym_throw] = ACTIONS(3519), - [anon_sym_try] = ACTIONS(3519), - [anon_sym_when] = ACTIONS(3519), - [anon_sym_await] = ACTIONS(3519), - [anon_sym_foreach] = ACTIONS(3519), - [anon_sym_goto] = ACTIONS(3519), - [anon_sym_if] = ACTIONS(3519), - [anon_sym_DOT_DOT] = ACTIONS(3521), - [anon_sym_from] = ACTIONS(3519), - [anon_sym_into] = ACTIONS(3519), - [anon_sym_join] = ACTIONS(3519), - [anon_sym_on] = ACTIONS(3519), - [anon_sym_equals] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3519), - [anon_sym_orderby] = ACTIONS(3519), - [anon_sym_ascending] = ACTIONS(3519), - [anon_sym_descending] = ACTIONS(3519), - [anon_sym_group] = ACTIONS(3519), - [anon_sym_by] = ACTIONS(3519), - [anon_sym_select] = ACTIONS(3519), - [anon_sym_stackalloc] = ACTIONS(3519), - [anon_sym_sizeof] = ACTIONS(3519), - [anon_sym_typeof] = ACTIONS(3519), - [anon_sym___makeref] = ACTIONS(3519), - [anon_sym___reftype] = ACTIONS(3519), - [anon_sym___refvalue] = ACTIONS(3519), - [sym_null_literal] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3521), - [sym_integer_literal] = ACTIONS(3519), - [sym_real_literal] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3521), - [sym_verbatim_string_literal] = ACTIONS(3521), - [aux_sym_preproc_if_token1] = ACTIONS(3521), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3521), - [sym_interpolation_verbatim_start] = ACTIONS(3521), - [sym_interpolation_raw_start] = ACTIONS(3521), - [sym_raw_string_start] = ACTIONS(3521), + [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), @@ -380085,125 +388032,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2095), [sym_preproc_define] = STATE(2095), [sym_preproc_undef] = STATE(2095), - [sym__identifier_token] = ACTIONS(3523), - [anon_sym_extern] = ACTIONS(3523), - [anon_sym_alias] = ACTIONS(3523), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_global] = ACTIONS(3523), - [anon_sym_using] = ACTIONS(3523), - [anon_sym_unsafe] = ACTIONS(3523), - [anon_sym_static] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_return] = ACTIONS(3523), - [anon_sym_ref] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_delegate] = ACTIONS(3523), - [anon_sym_abstract] = ACTIONS(3523), - [anon_sym_async] = ACTIONS(3523), - [anon_sym_const] = ACTIONS(3523), - [anon_sym_file] = ACTIONS(3523), - [anon_sym_fixed] = ACTIONS(3523), - [anon_sym_internal] = ACTIONS(3523), - [anon_sym_new] = ACTIONS(3523), - [anon_sym_override] = ACTIONS(3523), - [anon_sym_partial] = ACTIONS(3523), - [anon_sym_private] = ACTIONS(3523), - [anon_sym_protected] = ACTIONS(3523), - [anon_sym_public] = ACTIONS(3523), - [anon_sym_readonly] = ACTIONS(3523), - [anon_sym_required] = ACTIONS(3523), - [anon_sym_sealed] = ACTIONS(3523), - [anon_sym_virtual] = ACTIONS(3523), - [anon_sym_volatile] = ACTIONS(3523), - [anon_sym_where] = ACTIONS(3523), - [anon_sym_notnull] = ACTIONS(3523), - [anon_sym_unmanaged] = ACTIONS(3523), - [anon_sym_checked] = ACTIONS(3523), - [anon_sym_BANG] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_PLUS_PLUS] = ACTIONS(3525), - [anon_sym_DASH_DASH] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3523), - [anon_sym_false] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3523), - [anon_sym_DASH] = ACTIONS(3523), - [anon_sym_STAR] = ACTIONS(3525), - [anon_sym_CARET] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_this] = ACTIONS(3523), - [anon_sym_scoped] = ACTIONS(3523), - [anon_sym_base] = ACTIONS(3523), - [anon_sym_var] = ACTIONS(3523), - [sym_predefined_type] = ACTIONS(3523), - [anon_sym_break] = ACTIONS(3523), - [anon_sym_unchecked] = ACTIONS(3523), - [anon_sym_continue] = ACTIONS(3523), - [anon_sym_do] = ACTIONS(3523), - [anon_sym_while] = ACTIONS(3523), - [anon_sym_for] = ACTIONS(3523), - [anon_sym_lock] = ACTIONS(3523), - [anon_sym_yield] = ACTIONS(3523), - [anon_sym_switch] = ACTIONS(3523), - [anon_sym_default] = ACTIONS(3523), - [anon_sym_throw] = ACTIONS(3523), - [anon_sym_try] = ACTIONS(3523), - [anon_sym_when] = ACTIONS(3523), - [anon_sym_await] = ACTIONS(3523), - [anon_sym_foreach] = ACTIONS(3523), - [anon_sym_goto] = ACTIONS(3523), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_DOT_DOT] = ACTIONS(3525), - [anon_sym_from] = ACTIONS(3523), - [anon_sym_into] = ACTIONS(3523), - [anon_sym_join] = ACTIONS(3523), - [anon_sym_on] = ACTIONS(3523), - [anon_sym_equals] = ACTIONS(3523), - [anon_sym_let] = ACTIONS(3523), - [anon_sym_orderby] = ACTIONS(3523), - [anon_sym_ascending] = ACTIONS(3523), - [anon_sym_descending] = ACTIONS(3523), - [anon_sym_group] = ACTIONS(3523), - [anon_sym_by] = ACTIONS(3523), - [anon_sym_select] = ACTIONS(3523), - [anon_sym_stackalloc] = ACTIONS(3523), - [anon_sym_sizeof] = ACTIONS(3523), - [anon_sym_typeof] = ACTIONS(3523), - [anon_sym___makeref] = ACTIONS(3523), - [anon_sym___reftype] = ACTIONS(3523), - [anon_sym___refvalue] = ACTIONS(3523), - [sym_null_literal] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3525), - [sym_integer_literal] = ACTIONS(3523), - [sym_real_literal] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3525), - [sym_verbatim_string_literal] = ACTIONS(3525), - [aux_sym_preproc_if_token1] = ACTIONS(3525), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3525), - [sym_interpolation_verbatim_start] = ACTIONS(3525), - [sym_interpolation_raw_start] = ACTIONS(3525), - [sym_raw_string_start] = ACTIONS(3525), + [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__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2096), [sym_preproc_endregion] = STATE(2096), [sym_preproc_line] = STATE(2096), @@ -380213,112 +388154,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2096), [sym_preproc_define] = STATE(2096), [sym_preproc_undef] = STATE(2096), - [sym__identifier_token] = ACTIONS(3527), - [anon_sym_alias] = ACTIONS(3531), - [anon_sym_global] = ACTIONS(3531), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3535), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_file] = ACTIONS(3531), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3531), - [anon_sym_unmanaged] = ACTIONS(3531), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3531), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3531), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(3531), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3531), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3531), - [anon_sym_into] = ACTIONS(3531), - [anon_sym_join] = ACTIONS(3531), - [anon_sym_on] = ACTIONS(3531), - [anon_sym_equals] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_orderby] = ACTIONS(3531), - [anon_sym_ascending] = ACTIONS(3531), - [anon_sym_descending] = ACTIONS(3531), - [anon_sym_group] = ACTIONS(3531), - [anon_sym_by] = ACTIONS(3531), - [anon_sym_select] = ACTIONS(3531), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__name] = STATE(2363), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2097), [sym_preproc_endregion] = STATE(2097), [sym_preproc_line] = STATE(2097), @@ -380328,112 +388276,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2097), [sym_preproc_define] = STATE(2097), [sym_preproc_undef] = STATE(2097), - [sym__identifier_token] = ACTIONS(3538), - [anon_sym_alias] = ACTIONS(3541), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3541), - [anon_sym_unmanaged] = ACTIONS(3541), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3541), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3541), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(3541), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(3541), - [anon_sym_equals] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(3541), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3325), + [sym_interpolation_verbatim_start] = ACTIONS(3325), + [sym_interpolation_raw_start] = ACTIONS(3325), + [sym_raw_string_start] = ACTIONS(3325), }, [2098] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2098), [sym_preproc_endregion] = STATE(2098), [sym_preproc_line] = STATE(2098), @@ -380443,111 +388398,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2098), [sym_preproc_define] = STATE(2098), [sym_preproc_undef] = STATE(2098), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3549), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), }, [2099] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2099), [sym_preproc_endregion] = STATE(2099), [sym_preproc_line] = STATE(2099), @@ -380557,103 +388520,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2099), [sym_preproc_define] = STATE(2099), [sym_preproc_undef] = STATE(2099), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3549), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2100] = { - [sym__variable_designation] = STATE(3197), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2100), [sym_preproc_endregion] = STATE(2100), [sym_preproc_line] = STATE(2100), @@ -380663,91 +388642,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2100), [sym_preproc_define] = STATE(2100), [sym_preproc_undef] = STATE(2100), - [sym__identifier_token] = ACTIONS(3554), - [anon_sym_alias] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3558), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3558), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3558), - [anon_sym_unmanaged] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3558), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3558), - [sym_discard] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_into] = ACTIONS(3558), - [anon_sym_join] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_equals] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_orderby] = ACTIONS(3558), - [anon_sym_ascending] = ACTIONS(3558), - [anon_sym_descending] = ACTIONS(3558), - [anon_sym_group] = ACTIONS(3558), - [anon_sym_by] = ACTIONS(3558), - [anon_sym_select] = ACTIONS(3558), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [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), @@ -380758,17 +388749,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(3211), + [sym_interpolation_verbatim_start] = ACTIONS(3211), + [sym_interpolation_raw_start] = ACTIONS(3211), + [sym_raw_string_start] = ACTIONS(3211), }, [2101] = { - [sym__name] = STATE(2575), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2481), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2101), [sym_preproc_endregion] = STATE(2101), [sym_preproc_line] = STATE(2101), @@ -380778,102 +388764,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2101), [sym_preproc_define] = STATE(2101), [sym_preproc_undef] = STATE(2101), - [sym__identifier_token] = ACTIONS(3538), - [anon_sym_alias] = ACTIONS(3541), - [anon_sym_global] = ACTIONS(3541), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3541), - [anon_sym_unmanaged] = ACTIONS(3541), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3541), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3541), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(3541), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(3541), - [anon_sym_equals] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(3541), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2102), [sym_preproc_endregion] = STATE(2102), [sym_preproc_line] = STATE(2102), @@ -380883,111 +388886,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2102), [sym_preproc_define] = STATE(2102), [sym_preproc_undef] = STATE(2102), - [sym__identifier_token] = ACTIONS(3554), - [anon_sym_alias] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3558), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3558), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3558), - [anon_sym_unmanaged] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3558), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3558), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_into] = ACTIONS(3558), - [anon_sym_join] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_equals] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_orderby] = ACTIONS(3558), - [anon_sym_ascending] = ACTIONS(3558), - [anon_sym_descending] = ACTIONS(3558), - [anon_sym_group] = ACTIONS(3558), - [anon_sym_by] = ACTIONS(3558), - [anon_sym_select] = ACTIONS(3558), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__name] = STATE(2652), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2747), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2693), - [sym_ref_type] = STATE(2649), - [sym__scoped_base_type] = STATE(2743), - [sym_identifier] = STATE(2506), - [sym__reserved_identifier] = STATE(2551), [sym_preproc_region] = STATE(2103), [sym_preproc_endregion] = STATE(2103), [sym_preproc_line] = STATE(2103), @@ -380997,106 +389008,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2103), [sym_preproc_define] = STATE(2103), [sym_preproc_undef] = STATE(2103), - [sym__identifier_token] = ACTIONS(3586), - [anon_sym_alias] = ACTIONS(3589), - [anon_sym_global] = ACTIONS(3589), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3589), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3589), - [anon_sym_unmanaged] = ACTIONS(3589), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3589), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3589), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3589), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3589), - [anon_sym_into] = ACTIONS(3589), - [anon_sym_join] = ACTIONS(3589), - [anon_sym_on] = ACTIONS(3589), - [anon_sym_equals] = ACTIONS(3589), - [anon_sym_let] = ACTIONS(3589), - [anon_sym_orderby] = ACTIONS(3589), - [anon_sym_ascending] = ACTIONS(3589), - [anon_sym_descending] = ACTIONS(3589), - [anon_sym_group] = ACTIONS(3589), - [anon_sym_by] = ACTIONS(3589), - [anon_sym_select] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3393), + [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__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2104), [sym_preproc_endregion] = STATE(2104), [sym_preproc_line] = STATE(2104), @@ -381106,95 +389130,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2104), [sym_preproc_define] = STATE(2104), [sym_preproc_undef] = STATE(2104), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3549), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -381206,103 +389252,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2105), [sym_preproc_define] = STATE(2105), [sym_preproc_undef] = STATE(2105), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_operator] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), @@ -381314,103 +389374,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2106), [sym_preproc_define] = STATE(2106), [sym_preproc_undef] = STATE(2106), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_operator] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_this] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -381422,113 +389496,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2107), [sym_preproc_define] = STATE(2107), [sym_preproc_undef] = STATE(2107), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_this] = ACTIONS(3600), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__name] = STATE(5650), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(5559), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2108), [sym_preproc_endregion] = STATE(2108), [sym_preproc_line] = STATE(2108), @@ -381538,83 +389618,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2108), [sym_preproc_define] = STATE(2108), [sym_preproc_undef] = STATE(2108), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3549), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -381625,6 +389725,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(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), @@ -381636,102 +389740,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2109), [sym_preproc_define] = STATE(2109), [sym_preproc_undef] = STATE(2109), - [sym__identifier_token] = ACTIONS(3606), - [anon_sym_alias] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_global] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_notnull] = ACTIONS(3606), - [anon_sym_unmanaged] = ACTIONS(3606), - [anon_sym_operator] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_this] = ACTIONS(3606), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_scoped] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_when] = ACTIONS(3606), - [sym_discard] = ACTIONS(3606), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3606), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3606), - [anon_sym_join] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_equals] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_orderby] = ACTIONS(3606), - [anon_sym_ascending] = ACTIONS(3606), - [anon_sym_descending] = ACTIONS(3606), - [anon_sym_group] = ACTIONS(3606), - [anon_sym_by] = ACTIONS(3606), - [anon_sym_select] = ACTIONS(3606), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -381743,105 +389862,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2110), [sym_preproc_define] = STATE(2110), [sym_preproc_undef] = STATE(2110), - [sym__identifier_token] = ACTIONS(3610), - [anon_sym_alias] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_global] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_notnull] = ACTIONS(3610), - [anon_sym_unmanaged] = ACTIONS(3610), - [anon_sym_operator] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_this] = ACTIONS(3610), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_scoped] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_when] = ACTIONS(3610), - [sym_discard] = ACTIONS(3610), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3610), - [anon_sym_join] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_equals] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_orderby] = ACTIONS(3610), - [anon_sym_ascending] = ACTIONS(3610), - [anon_sym_descending] = ACTIONS(3610), - [anon_sym_group] = ACTIONS(3610), - [anon_sym_by] = ACTIONS(3610), - [anon_sym_select] = ACTIONS(3610), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2111), [sym_preproc_endregion] = STATE(2111), [sym_preproc_line] = STATE(2111), @@ -381851,101 +389984,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2111), [sym_preproc_define] = STATE(2111), [sym_preproc_undef] = STATE(2111), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2112] = { [sym_preproc_region] = STATE(2112), @@ -381957,113 +390106,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2112), [sym_preproc_define] = STATE(2112), [sym_preproc_undef] = STATE(2112), - [sym__identifier_token] = ACTIONS(3621), - [anon_sym_alias] = ACTIONS(3621), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_global] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_file] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_notnull] = ACTIONS(3621), - [anon_sym_unmanaged] = ACTIONS(3621), - [anon_sym_operator] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_this] = ACTIONS(3621), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_scoped] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_var] = ACTIONS(3621), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3621), - [anon_sym_when] = ACTIONS(3621), - [sym_discard] = ACTIONS(3621), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3621), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_from] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3621), - [anon_sym_join] = ACTIONS(3621), - [anon_sym_on] = ACTIONS(3621), - [anon_sym_equals] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_orderby] = ACTIONS(3621), - [anon_sym_ascending] = ACTIONS(3621), - [anon_sym_descending] = ACTIONS(3621), - [anon_sym_group] = ACTIONS(3621), - [anon_sym_by] = ACTIONS(3621), - [anon_sym_select] = ACTIONS(3621), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_is] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2113] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2113), [sym_preproc_endregion] = STATE(2113), [sym_preproc_line] = STATE(2113), @@ -382073,93 +390228,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2113), [sym_preproc_define] = STATE(2113), [sym_preproc_undef] = STATE(2113), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3549), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3393), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2114] = { [sym_preproc_region] = STATE(2114), @@ -382171,92 +390350,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2114), [sym_preproc_define] = STATE(2114), [sym_preproc_undef] = STATE(2114), - [sym__identifier_token] = ACTIONS(3625), - [anon_sym_alias] = ACTIONS(3625), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_global] = ACTIONS(3625), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_file] = ACTIONS(3625), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_notnull] = ACTIONS(3625), - [anon_sym_unmanaged] = ACTIONS(3625), - [anon_sym_operator] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_this] = ACTIONS(3625), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_scoped] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_var] = ACTIONS(3625), - [anon_sym_yield] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_when] = ACTIONS(3625), - [sym_discard] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3625), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_from] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3625), - [anon_sym_join] = ACTIONS(3625), - [anon_sym_on] = ACTIONS(3625), - [anon_sym_equals] = ACTIONS(3625), - [anon_sym_let] = ACTIONS(3625), - [anon_sym_orderby] = ACTIONS(3625), - [anon_sym_ascending] = ACTIONS(3625), - [anon_sym_descending] = ACTIONS(3625), - [anon_sym_group] = ACTIONS(3625), - [anon_sym_by] = ACTIONS(3625), - [anon_sym_select] = ACTIONS(3625), - [anon_sym_as] = ACTIONS(3625), - [anon_sym_is] = ACTIONS(3625), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3625), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), @@ -382267,9 +390457,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(3097), + [sym_interpolation_verbatim_start] = ACTIONS(3097), + [sym_interpolation_raw_start] = ACTIONS(3097), + [sym_raw_string_start] = ACTIONS(3097), }, [2115] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2115), [sym_preproc_endregion] = STATE(2115), [sym_preproc_line] = STATE(2115), @@ -382279,100 +390472,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2115), [sym_preproc_define] = STATE(2115), [sym_preproc_undef] = STATE(2115), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_ref] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_delegate] = 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_case] = 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), }, [2116] = { [sym_preproc_region] = STATE(2116), @@ -382384,104 +390594,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2116), [sym_preproc_define] = STATE(2116), [sym_preproc_undef] = STATE(2116), - [sym__identifier_token] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2117] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2117), [sym_preproc_endregion] = STATE(2117), [sym_preproc_line] = STATE(2117), @@ -382491,100 +390716,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2117), [sym_preproc_define] = STATE(2117), [sym_preproc_undef] = STATE(2117), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3629), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2118] = { [sym_preproc_region] = STATE(2118), @@ -382596,100 +390838,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2118), [sym_preproc_define] = STATE(2118), [sym_preproc_undef] = STATE(2118), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3633), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_RBRACK] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_in] = ACTIONS(3648), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3633), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), - [aux_sym_preproc_if_token3] = ACTIONS(3633), - [aux_sym_preproc_else_token1] = ACTIONS(3633), - [aux_sym_preproc_elif_token1] = ACTIONS(3633), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -382701,100 +390960,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2119), [sym_preproc_define] = STATE(2119), [sym_preproc_undef] = STATE(2119), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3655), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3655), - [aux_sym_preproc_else_token1] = ACTIONS(3655), - [aux_sym_preproc_elif_token1] = 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__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), @@ -382806,100 +391082,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2120), [sym_preproc_define] = STATE(2120), [sym_preproc_undef] = STATE(2120), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3633), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_RBRACK] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_in] = ACTIONS(3648), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3633), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), - [aux_sym_preproc_if_token3] = ACTIONS(3633), - [aux_sym_preproc_else_token1] = ACTIONS(3633), - [aux_sym_preproc_elif_token1] = ACTIONS(3633), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_alias] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_global] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_ref] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_delegate] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_file] = ACTIONS(3279), + [anon_sym_fixed] = ACTIONS(3279), + [anon_sym_internal] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_partial] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_required] = ACTIONS(3279), + [anon_sym_sealed] = ACTIONS(3279), + [anon_sym_virtual] = ACTIONS(3279), + [anon_sym_volatile] = ACTIONS(3279), + [anon_sym_where] = ACTIONS(3279), + [anon_sym_notnull] = ACTIONS(3279), + [anon_sym_unmanaged] = ACTIONS(3279), + [anon_sym_checked] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_this] = ACTIONS(3279), + [anon_sym_scoped] = ACTIONS(3279), + [anon_sym_base] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [sym_predefined_type] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_unchecked] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_when] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_foreach] = ACTIONS(3279), + [anon_sym_goto] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_from] = ACTIONS(3279), + [anon_sym_into] = ACTIONS(3279), + [anon_sym_join] = ACTIONS(3279), + [anon_sym_on] = ACTIONS(3279), + [anon_sym_equals] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_orderby] = ACTIONS(3279), + [anon_sym_ascending] = ACTIONS(3279), + [anon_sym_descending] = ACTIONS(3279), + [anon_sym_group] = ACTIONS(3279), + [anon_sym_by] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_stackalloc] = ACTIONS(3279), + [anon_sym_sizeof] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym___makeref] = ACTIONS(3279), + [anon_sym___reftype] = ACTIONS(3279), + [anon_sym___refvalue] = ACTIONS(3279), + [sym_null_literal] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3281), + [sym_integer_literal] = ACTIONS(3279), + [sym_real_literal] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [sym_verbatim_string_literal] = ACTIONS(3281), + [aux_sym_preproc_if_token1] = ACTIONS(3281), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3281), + [sym_interpolation_verbatim_start] = ACTIONS(3281), + [sym_interpolation_raw_start] = ACTIONS(3281), + [sym_raw_string_start] = ACTIONS(3281), }, [2121] = { [sym_preproc_region] = STATE(2121), @@ -382911,100 +391204,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2121), [sym_preproc_define] = STATE(2121), [sym_preproc_undef] = STATE(2121), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3655), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3655), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3655), - [aux_sym_preproc_else_token1] = ACTIONS(3655), - [aux_sym_preproc_elif_token1] = 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__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3183), + [sym_interpolation_verbatim_start] = ACTIONS(3183), + [sym_interpolation_raw_start] = ACTIONS(3183), + [sym_raw_string_start] = ACTIONS(3183), }, [2122] = { [sym_preproc_region] = STATE(2122), @@ -383016,106 +391326,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2122), [sym_preproc_define] = STATE(2122), [sym_preproc_undef] = STATE(2122), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3667), - [anon_sym_BANG_EQ] = ACTIONS(3667), - [anon_sym_GT_EQ] = ACTIONS(3667), - [anon_sym_LT_EQ] = ACTIONS(3667), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3667), - [anon_sym_PIPE_PIPE] = ACTIONS(3667), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_is] = ACTIONS(3670), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3670), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = 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__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__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(2525), [sym_preproc_region] = STATE(2123), [sym_preproc_endregion] = STATE(2123), [sym_preproc_line] = STATE(2123), @@ -383125,96 +391448,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2123), [sym_preproc_define] = STATE(2123), [sym_preproc_undef] = STATE(2123), - [sym__identifier_token] = ACTIONS(3673), - [anon_sym_alias] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3677), - [anon_sym_unmanaged] = ACTIONS(3677), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3677), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3677), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_ascending] = ACTIONS(3677), - [anon_sym_descending] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -383226,100 +391570,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2124), [sym_preproc_define] = STATE(2124), [sym_preproc_undef] = STATE(2124), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3197), + [anon_sym_extern] = ACTIONS(3197), + [anon_sym_alias] = ACTIONS(3197), + [anon_sym_SEMI] = ACTIONS(3199), + [anon_sym_global] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(3197), + [anon_sym_static] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_ref] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_delegate] = ACTIONS(3197), + [anon_sym_abstract] = ACTIONS(3197), + [anon_sym_async] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_file] = ACTIONS(3197), + [anon_sym_fixed] = ACTIONS(3197), + [anon_sym_internal] = ACTIONS(3197), + [anon_sym_new] = ACTIONS(3197), + [anon_sym_override] = ACTIONS(3197), + [anon_sym_partial] = ACTIONS(3197), + [anon_sym_private] = ACTIONS(3197), + [anon_sym_protected] = ACTIONS(3197), + [anon_sym_public] = ACTIONS(3197), + [anon_sym_readonly] = ACTIONS(3197), + [anon_sym_required] = ACTIONS(3197), + [anon_sym_sealed] = ACTIONS(3197), + [anon_sym_virtual] = ACTIONS(3197), + [anon_sym_volatile] = ACTIONS(3197), + [anon_sym_where] = ACTIONS(3197), + [anon_sym_notnull] = ACTIONS(3197), + [anon_sym_unmanaged] = ACTIONS(3197), + [anon_sym_checked] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_true] = ACTIONS(3197), + [anon_sym_false] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_this] = ACTIONS(3197), + [anon_sym_scoped] = ACTIONS(3197), + [anon_sym_base] = ACTIONS(3197), + [anon_sym_var] = ACTIONS(3197), + [sym_predefined_type] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_unchecked] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_do] = ACTIONS(3197), + [anon_sym_while] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_lock] = ACTIONS(3197), + [anon_sym_yield] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3197), + [anon_sym_case] = ACTIONS(3197), + [anon_sym_default] = ACTIONS(3197), + [anon_sym_throw] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3197), + [anon_sym_when] = ACTIONS(3197), + [anon_sym_await] = ACTIONS(3197), + [anon_sym_foreach] = ACTIONS(3197), + [anon_sym_goto] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_else] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_from] = ACTIONS(3197), + [anon_sym_into] = ACTIONS(3197), + [anon_sym_join] = ACTIONS(3197), + [anon_sym_on] = ACTIONS(3197), + [anon_sym_equals] = ACTIONS(3197), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_orderby] = ACTIONS(3197), + [anon_sym_ascending] = ACTIONS(3197), + [anon_sym_descending] = ACTIONS(3197), + [anon_sym_group] = ACTIONS(3197), + [anon_sym_by] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_stackalloc] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3197), + [anon_sym_typeof] = ACTIONS(3197), + [anon_sym___makeref] = ACTIONS(3197), + [anon_sym___reftype] = ACTIONS(3197), + [anon_sym___refvalue] = ACTIONS(3197), + [sym_null_literal] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3199), + [sym_integer_literal] = ACTIONS(3197), + [sym_real_literal] = ACTIONS(3199), + [anon_sym_DQUOTE] = ACTIONS(3199), + [sym_verbatim_string_literal] = ACTIONS(3199), + [aux_sym_preproc_if_token1] = ACTIONS(3199), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3199), + [sym_interpolation_verbatim_start] = ACTIONS(3199), + [sym_interpolation_raw_start] = ACTIONS(3199), + [sym_raw_string_start] = ACTIONS(3199), }, [2125] = { [sym_preproc_region] = STATE(2125), @@ -383331,90 +391692,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2125), [sym_preproc_define] = STATE(2125), [sym_preproc_undef] = STATE(2125), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_in] = ACTIONS(3653), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), @@ -383425,6 +391799,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(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), @@ -383436,99 +391814,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2126), [sym_preproc_define] = STATE(2126), [sym_preproc_undef] = STATE(2126), - [sym__identifier_token] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), }, [2127] = { [sym_preproc_region] = STATE(2127), @@ -383540,98 +391936,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2127), [sym_preproc_define] = STATE(2127), [sym_preproc_undef] = STATE(2127), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_RBRACK] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2128] = { [sym_preproc_region] = STATE(2128), @@ -383643,104 +392058,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2128), [sym_preproc_define] = STATE(2128), [sym_preproc_undef] = STATE(2128), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_RBRACK] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_RBRACE] = ACTIONS(3665), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2129] = { - [sym__variable_designation] = STATE(4590), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2129), [sym_preproc_endregion] = STATE(2129), [sym_preproc_line] = STATE(2129), @@ -383750,100 +392180,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2129), [sym_preproc_define] = STATE(2129), [sym_preproc_undef] = STATE(2129), - [sym__identifier_token] = ACTIONS(3681), - [anon_sym_alias] = ACTIONS(3685), - [anon_sym_global] = ACTIONS(3685), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3689), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3685), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3685), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3685), - [anon_sym_unmanaged] = ACTIONS(3685), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3685), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3685), - [anon_sym_yield] = ACTIONS(3685), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3685), - [sym_discard] = ACTIONS(3693), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3562), + [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__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(2525), [sym_preproc_region] = STATE(2130), [sym_preproc_endregion] = STATE(2130), [sym_preproc_line] = STATE(2130), @@ -383853,94 +392302,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2130), [sym_preproc_define] = STATE(2130), [sym_preproc_undef] = STATE(2130), - [sym__identifier_token] = ACTIONS(3673), - [anon_sym_alias] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3677), - [anon_sym_unmanaged] = ACTIONS(3677), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3677), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3677), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_ascending] = ACTIONS(3677), - [anon_sym_descending] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -383952,109 +392424,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2131), [sym_preproc_define] = STATE(2131), [sym_preproc_undef] = STATE(2131), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__name] = STATE(2363), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2132), [sym_preproc_endregion] = STATE(2132), [sym_preproc_line] = STATE(2132), @@ -384064,99 +392546,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2132), [sym_preproc_define] = STATE(2132), [sym_preproc_undef] = STATE(2132), - [sym__identifier_token] = ACTIONS(3538), - [anon_sym_alias] = ACTIONS(3541), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3541), - [anon_sym_unmanaged] = ACTIONS(3541), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3541), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3541), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(3541), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(3541), - [anon_sym_equals] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(3541), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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__name] = STATE(3092), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_ref_type] = STATE(3088), - [sym__scoped_base_type] = STATE(3087), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(2133), [sym_preproc_endregion] = STATE(2133), [sym_preproc_line] = STATE(2133), @@ -384166,88 +392668,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2133), [sym_preproc_define] = STATE(2133), [sym_preproc_undef] = STATE(2133), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3703), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), @@ -384259,103 +392790,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2134), [sym_preproc_define] = STATE(2134), [sym_preproc_undef] = STATE(2134), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2135), [sym_preproc_endregion] = STATE(2135), [sym_preproc_line] = STATE(2135), @@ -384365,82 +392912,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2135), [sym_preproc_define] = STATE(2135), [sym_preproc_undef] = STATE(2135), - [sym__identifier_token] = ACTIONS(3706), - [anon_sym_alias] = ACTIONS(3710), - [anon_sym_global] = ACTIONS(3710), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3710), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3710), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3710), - [anon_sym_unmanaged] = ACTIONS(3710), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3710), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3710), - [anon_sym_yield] = ACTIONS(3710), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3710), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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_ascending] = ACTIONS(3710), - [anon_sym_descending] = ACTIONS(3710), - [anon_sym_group] = ACTIONS(3710), - [anon_sym_by] = ACTIONS(3710), - [anon_sym_select] = ACTIONS(3710), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), + [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), @@ -384451,17 +393019,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(3215), + [sym_interpolation_verbatim_start] = ACTIONS(3215), + [sym_interpolation_raw_start] = ACTIONS(3215), + [sym_raw_string_start] = ACTIONS(3215), }, [2136] = { - [sym__name] = STATE(3386), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2136), [sym_preproc_endregion] = STATE(2136), [sym_preproc_line] = STATE(2136), @@ -384471,93 +393034,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2136), [sym_preproc_define] = STATE(2136), [sym_preproc_undef] = STATE(2136), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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__variable_designation] = STATE(3685), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2137), [sym_preproc_endregion] = STATE(2137), [sym_preproc_line] = STATE(2137), @@ -384567,95 +393156,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2137), [sym_preproc_define] = STATE(2137), [sym_preproc_undef] = STATE(2137), - [sym__identifier_token] = ACTIONS(3720), - [anon_sym_alias] = ACTIONS(3724), - [anon_sym_global] = ACTIONS(3724), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3728), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3724), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3724), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3724), - [anon_sym_unmanaged] = ACTIONS(3724), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3724), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3724), - [anon_sym_yield] = ACTIONS(3724), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3724), - [sym_discard] = ACTIONS(3732), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3724), - [anon_sym_into] = ACTIONS(3724), - [anon_sym_join] = ACTIONS(3724), - [anon_sym_on] = ACTIONS(3724), - [anon_sym_equals] = ACTIONS(3724), - [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(3724), - [anon_sym_select] = ACTIONS(3724), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2138), [sym_preproc_endregion] = STATE(2138), [sym_preproc_line] = STATE(2138), @@ -384665,101 +393278,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2138), [sym_preproc_define] = STATE(2138), [sym_preproc_undef] = STATE(2138), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), + [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__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(2525), [sym_preproc_region] = STATE(2139), [sym_preproc_endregion] = STATE(2139), [sym_preproc_line] = STATE(2139), @@ -384769,92 +393400,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2139), [sym_preproc_define] = STATE(2139), [sym_preproc_undef] = STATE(2139), - [sym__identifier_token] = ACTIONS(3673), - [anon_sym_alias] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3677), - [anon_sym_unmanaged] = ACTIONS(3677), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3677), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3677), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_ascending] = ACTIONS(3677), - [anon_sym_descending] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -384866,86 +393522,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2140), [sym_preproc_define] = STATE(2140), [sym_preproc_undef] = STATE(2140), - [sym__identifier_token] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -384958,7 +393634,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2141] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2141), [sym_preproc_endregion] = STATE(2141), [sym_preproc_line] = STATE(2141), @@ -384968,98 +393643,136 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), + [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_type_argument_list] = STATE(2114), + [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), @@ -385069,84 +393782,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2142), [sym_preproc_define] = STATE(2142), [sym_preproc_undef] = STATE(2142), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), @@ -385157,9 +393872,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(3445), }, [2143] = { - [sym_type_argument_list] = STATE(2189), [sym_preproc_region] = STATE(2143), [sym_preproc_endregion] = STATE(2143), [sym_preproc_line] = STATE(2143), @@ -385169,117 +393884,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2143), [sym_preproc_define] = STATE(2143), [sym_preproc_undef] = STATE(2143), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3745), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3748), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [sym__identifier_token] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym_alias] = ACTIONS(3493), + [anon_sym_SEMI] = ACTIONS(3495), + [anon_sym_global] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_unsafe] = ACTIONS(3493), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3495), + [anon_sym_LPAREN] = ACTIONS(3495), + [anon_sym_return] = ACTIONS(3493), + [anon_sym_ref] = ACTIONS(3493), + [anon_sym_LBRACE] = ACTIONS(3495), + [anon_sym_delegate] = ACTIONS(3493), + [anon_sym_abstract] = ACTIONS(3493), + [anon_sym_async] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_file] = ACTIONS(3493), + [anon_sym_fixed] = ACTIONS(3493), + [anon_sym_internal] = ACTIONS(3493), + [anon_sym_new] = ACTIONS(3493), + [anon_sym_override] = ACTIONS(3493), + [anon_sym_partial] = ACTIONS(3493), + [anon_sym_private] = ACTIONS(3493), + [anon_sym_protected] = ACTIONS(3493), + [anon_sym_public] = ACTIONS(3493), + [anon_sym_readonly] = ACTIONS(3493), + [anon_sym_required] = ACTIONS(3493), + [anon_sym_sealed] = ACTIONS(3493), + [anon_sym_virtual] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym_where] = ACTIONS(3493), + [anon_sym_notnull] = ACTIONS(3493), + [anon_sym_unmanaged] = ACTIONS(3493), + [anon_sym_checked] = ACTIONS(3493), + [anon_sym_BANG] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [anon_sym_PLUS_PLUS] = ACTIONS(3495), + [anon_sym_DASH_DASH] = ACTIONS(3495), + [anon_sym_true] = ACTIONS(3493), + [anon_sym_false] = ACTIONS(3493), + [anon_sym_PLUS] = ACTIONS(3493), + [anon_sym_DASH] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_CARET] = ACTIONS(3495), + [anon_sym_AMP] = ACTIONS(3495), + [anon_sym_this] = ACTIONS(3493), + [anon_sym_scoped] = ACTIONS(3493), + [anon_sym_base] = ACTIONS(3493), + [anon_sym_var] = ACTIONS(3493), + [sym_predefined_type] = ACTIONS(3493), + [anon_sym_break] = ACTIONS(3493), + [anon_sym_unchecked] = ACTIONS(3493), + [anon_sym_continue] = ACTIONS(3493), + [anon_sym_do] = ACTIONS(3493), + [anon_sym_while] = ACTIONS(3493), + [anon_sym_for] = ACTIONS(3493), + [anon_sym_lock] = ACTIONS(3493), + [anon_sym_yield] = ACTIONS(3493), + [anon_sym_switch] = ACTIONS(3493), + [anon_sym_default] = ACTIONS(3493), + [anon_sym_throw] = ACTIONS(3493), + [anon_sym_try] = ACTIONS(3493), + [anon_sym_when] = ACTIONS(3493), + [anon_sym_await] = ACTIONS(3493), + [anon_sym_foreach] = ACTIONS(3493), + [anon_sym_goto] = ACTIONS(3493), + [anon_sym_if] = ACTIONS(3493), + [anon_sym_DOT_DOT] = ACTIONS(3495), + [anon_sym_from] = ACTIONS(3493), + [anon_sym_into] = ACTIONS(3493), + [anon_sym_join] = ACTIONS(3493), + [anon_sym_on] = ACTIONS(3493), + [anon_sym_equals] = ACTIONS(3493), + [anon_sym_let] = ACTIONS(3493), + [anon_sym_orderby] = ACTIONS(3493), + [anon_sym_ascending] = ACTIONS(3493), + [anon_sym_descending] = ACTIONS(3493), + [anon_sym_group] = ACTIONS(3493), + [anon_sym_by] = ACTIONS(3493), + [anon_sym_select] = ACTIONS(3493), + [anon_sym_stackalloc] = ACTIONS(3493), + [anon_sym_sizeof] = ACTIONS(3493), + [anon_sym_typeof] = ACTIONS(3493), + [anon_sym___makeref] = ACTIONS(3493), + [anon_sym___reftype] = ACTIONS(3493), + [anon_sym___refvalue] = ACTIONS(3493), + [sym_null_literal] = ACTIONS(3493), + [anon_sym_SQUOTE] = ACTIONS(3495), + [sym_integer_literal] = ACTIONS(3493), + [sym_real_literal] = ACTIONS(3495), + [anon_sym_DQUOTE] = ACTIONS(3495), + [sym_verbatim_string_literal] = ACTIONS(3495), + [aux_sym_preproc_if_token1] = ACTIONS(3495), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3495), + [sym_interpolation_verbatim_start] = ACTIONS(3495), + [sym_interpolation_raw_start] = ACTIONS(3495), + [sym_raw_string_start] = ACTIONS(3495), }, [2144] = { - [sym_attribute_list] = STATE(3007), - [sym_modifier] = STATE(3047), - [sym_variable_declaration] = STATE(7168), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5189), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5551), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2144), [sym_preproc_endregion] = STATE(2144), [sym_preproc_line] = STATE(2144), @@ -385289,77 +394003,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2144), [sym_preproc_define] = STATE(2144), [sym_preproc_undef] = STATE(2144), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2847), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2220), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(3750), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(3752), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3758), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(3766), - [anon_sym_implicit] = ACTIONS(3768), - [anon_sym_explicit] = ACTIONS(3768), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym_alias] = ACTIONS(3497), + [anon_sym_SEMI] = ACTIONS(3499), + [anon_sym_global] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_unsafe] = ACTIONS(3497), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_LBRACK] = ACTIONS(3499), + [anon_sym_LPAREN] = ACTIONS(3499), + [anon_sym_return] = ACTIONS(3497), + [anon_sym_ref] = ACTIONS(3497), + [anon_sym_LBRACE] = ACTIONS(3499), + [anon_sym_delegate] = ACTIONS(3497), + [anon_sym_abstract] = ACTIONS(3497), + [anon_sym_async] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_file] = ACTIONS(3497), + [anon_sym_fixed] = ACTIONS(3497), + [anon_sym_internal] = ACTIONS(3497), + [anon_sym_new] = ACTIONS(3497), + [anon_sym_override] = ACTIONS(3497), + [anon_sym_partial] = ACTIONS(3497), + [anon_sym_private] = ACTIONS(3497), + [anon_sym_protected] = ACTIONS(3497), + [anon_sym_public] = ACTIONS(3497), + [anon_sym_readonly] = ACTIONS(3497), + [anon_sym_required] = ACTIONS(3497), + [anon_sym_sealed] = ACTIONS(3497), + [anon_sym_virtual] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym_where] = ACTIONS(3497), + [anon_sym_notnull] = ACTIONS(3497), + [anon_sym_unmanaged] = ACTIONS(3497), + [anon_sym_checked] = ACTIONS(3497), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3499), + [anon_sym_DASH_DASH] = ACTIONS(3499), + [anon_sym_true] = ACTIONS(3497), + [anon_sym_false] = ACTIONS(3497), + [anon_sym_PLUS] = ACTIONS(3497), + [anon_sym_DASH] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_CARET] = ACTIONS(3499), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_this] = ACTIONS(3497), + [anon_sym_scoped] = ACTIONS(3497), + [anon_sym_base] = ACTIONS(3497), + [anon_sym_var] = ACTIONS(3497), + [sym_predefined_type] = ACTIONS(3497), + [anon_sym_break] = ACTIONS(3497), + [anon_sym_unchecked] = ACTIONS(3497), + [anon_sym_continue] = ACTIONS(3497), + [anon_sym_do] = ACTIONS(3497), + [anon_sym_while] = ACTIONS(3497), + [anon_sym_for] = ACTIONS(3497), + [anon_sym_lock] = ACTIONS(3497), + [anon_sym_yield] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3497), + [anon_sym_default] = ACTIONS(3497), + [anon_sym_throw] = ACTIONS(3497), + [anon_sym_try] = ACTIONS(3497), + [anon_sym_when] = ACTIONS(3497), + [anon_sym_await] = ACTIONS(3497), + [anon_sym_foreach] = ACTIONS(3497), + [anon_sym_goto] = ACTIONS(3497), + [anon_sym_if] = ACTIONS(3497), + [anon_sym_DOT_DOT] = ACTIONS(3499), + [anon_sym_from] = ACTIONS(3497), + [anon_sym_into] = ACTIONS(3497), + [anon_sym_join] = ACTIONS(3497), + [anon_sym_on] = ACTIONS(3497), + [anon_sym_equals] = ACTIONS(3497), + [anon_sym_let] = ACTIONS(3497), + [anon_sym_orderby] = ACTIONS(3497), + [anon_sym_ascending] = ACTIONS(3497), + [anon_sym_descending] = ACTIONS(3497), + [anon_sym_group] = ACTIONS(3497), + [anon_sym_by] = ACTIONS(3497), + [anon_sym_select] = ACTIONS(3497), + [anon_sym_stackalloc] = ACTIONS(3497), + [anon_sym_sizeof] = ACTIONS(3497), + [anon_sym_typeof] = ACTIONS(3497), + [anon_sym___makeref] = ACTIONS(3497), + [anon_sym___reftype] = ACTIONS(3497), + [anon_sym___refvalue] = ACTIONS(3497), + [sym_null_literal] = ACTIONS(3497), + [anon_sym_SQUOTE] = ACTIONS(3499), + [sym_integer_literal] = ACTIONS(3497), + [sym_real_literal] = ACTIONS(3499), + [anon_sym_DQUOTE] = ACTIONS(3499), + [sym_verbatim_string_literal] = ACTIONS(3499), + [aux_sym_preproc_if_token1] = ACTIONS(3499), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3499), + [sym_interpolation_verbatim_start] = ACTIONS(3499), + [sym_interpolation_raw_start] = ACTIONS(3499), + [sym_raw_string_start] = ACTIONS(3499), }, [2145] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2145), [sym_preproc_endregion] = STATE(2145), [sym_preproc_line] = STATE(2145), @@ -385369,94 +394122,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2145), [sym_preproc_define] = STATE(2145), [sym_preproc_undef] = STATE(2145), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), + [sym__identifier_token] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym_alias] = ACTIONS(3501), + [anon_sym_SEMI] = ACTIONS(3503), + [anon_sym_global] = ACTIONS(3501), + [anon_sym_using] = ACTIONS(3501), + [anon_sym_unsafe] = ACTIONS(3501), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(3503), + [anon_sym_return] = ACTIONS(3501), + [anon_sym_ref] = ACTIONS(3501), + [anon_sym_LBRACE] = ACTIONS(3503), + [anon_sym_delegate] = ACTIONS(3501), + [anon_sym_abstract] = ACTIONS(3501), + [anon_sym_async] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_file] = ACTIONS(3501), + [anon_sym_fixed] = ACTIONS(3501), + [anon_sym_internal] = ACTIONS(3501), + [anon_sym_new] = ACTIONS(3501), + [anon_sym_override] = ACTIONS(3501), + [anon_sym_partial] = ACTIONS(3501), + [anon_sym_private] = ACTIONS(3501), + [anon_sym_protected] = ACTIONS(3501), + [anon_sym_public] = ACTIONS(3501), + [anon_sym_readonly] = ACTIONS(3501), + [anon_sym_required] = ACTIONS(3501), + [anon_sym_sealed] = ACTIONS(3501), + [anon_sym_virtual] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym_where] = ACTIONS(3501), + [anon_sym_notnull] = ACTIONS(3501), + [anon_sym_unmanaged] = ACTIONS(3501), + [anon_sym_checked] = ACTIONS(3501), + [anon_sym_BANG] = ACTIONS(3503), + [anon_sym_TILDE] = ACTIONS(3503), + [anon_sym_PLUS_PLUS] = ACTIONS(3503), + [anon_sym_DASH_DASH] = ACTIONS(3503), + [anon_sym_true] = ACTIONS(3501), + [anon_sym_false] = ACTIONS(3501), + [anon_sym_PLUS] = ACTIONS(3501), + [anon_sym_DASH] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3503), + [anon_sym_CARET] = ACTIONS(3503), + [anon_sym_AMP] = ACTIONS(3503), + [anon_sym_this] = ACTIONS(3501), + [anon_sym_scoped] = ACTIONS(3501), + [anon_sym_base] = ACTIONS(3501), + [anon_sym_var] = ACTIONS(3501), + [sym_predefined_type] = ACTIONS(3501), + [anon_sym_break] = ACTIONS(3501), + [anon_sym_unchecked] = ACTIONS(3501), + [anon_sym_continue] = ACTIONS(3501), + [anon_sym_do] = ACTIONS(3501), + [anon_sym_while] = ACTIONS(3501), + [anon_sym_for] = ACTIONS(3501), + [anon_sym_lock] = ACTIONS(3501), + [anon_sym_yield] = ACTIONS(3501), + [anon_sym_switch] = ACTIONS(3501), + [anon_sym_default] = ACTIONS(3501), + [anon_sym_throw] = ACTIONS(3501), + [anon_sym_try] = ACTIONS(3501), + [anon_sym_when] = ACTIONS(3501), + [anon_sym_await] = ACTIONS(3501), + [anon_sym_foreach] = ACTIONS(3501), + [anon_sym_goto] = ACTIONS(3501), + [anon_sym_if] = ACTIONS(3501), + [anon_sym_DOT_DOT] = ACTIONS(3503), + [anon_sym_from] = ACTIONS(3501), + [anon_sym_into] = ACTIONS(3501), + [anon_sym_join] = ACTIONS(3501), + [anon_sym_on] = ACTIONS(3501), + [anon_sym_equals] = ACTIONS(3501), + [anon_sym_let] = ACTIONS(3501), + [anon_sym_orderby] = ACTIONS(3501), + [anon_sym_ascending] = ACTIONS(3501), + [anon_sym_descending] = ACTIONS(3501), + [anon_sym_group] = ACTIONS(3501), + [anon_sym_by] = ACTIONS(3501), + [anon_sym_select] = ACTIONS(3501), + [anon_sym_stackalloc] = ACTIONS(3501), + [anon_sym_sizeof] = ACTIONS(3501), + [anon_sym_typeof] = ACTIONS(3501), + [anon_sym___makeref] = ACTIONS(3501), + [anon_sym___reftype] = ACTIONS(3501), + [anon_sym___refvalue] = ACTIONS(3501), + [sym_null_literal] = ACTIONS(3501), + [anon_sym_SQUOTE] = ACTIONS(3503), + [sym_integer_literal] = ACTIONS(3501), + [sym_real_literal] = ACTIONS(3503), + [anon_sym_DQUOTE] = ACTIONS(3503), + [sym_verbatim_string_literal] = ACTIONS(3503), + [aux_sym_preproc_if_token1] = ACTIONS(3503), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3503), + [sym_interpolation_verbatim_start] = ACTIONS(3503), + [sym_interpolation_raw_start] = ACTIONS(3503), + [sym_raw_string_start] = ACTIONS(3503), }, [2146] = { [sym_preproc_region] = STATE(2146), @@ -385468,101 +394241,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2146), [sym_preproc_define] = STATE(2146), [sym_preproc_undef] = STATE(2146), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3505), + [anon_sym_extern] = ACTIONS(3505), + [anon_sym_alias] = ACTIONS(3505), + [anon_sym_SEMI] = ACTIONS(3507), + [anon_sym_global] = ACTIONS(3505), + [anon_sym_using] = ACTIONS(3505), + [anon_sym_unsafe] = ACTIONS(3505), + [anon_sym_static] = ACTIONS(3505), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_return] = ACTIONS(3505), + [anon_sym_ref] = ACTIONS(3505), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_delegate] = ACTIONS(3505), + [anon_sym_abstract] = ACTIONS(3505), + [anon_sym_async] = ACTIONS(3505), + [anon_sym_const] = ACTIONS(3505), + [anon_sym_file] = ACTIONS(3505), + [anon_sym_fixed] = ACTIONS(3505), + [anon_sym_internal] = ACTIONS(3505), + [anon_sym_new] = ACTIONS(3505), + [anon_sym_override] = ACTIONS(3505), + [anon_sym_partial] = ACTIONS(3505), + [anon_sym_private] = ACTIONS(3505), + [anon_sym_protected] = ACTIONS(3505), + [anon_sym_public] = ACTIONS(3505), + [anon_sym_readonly] = ACTIONS(3505), + [anon_sym_required] = ACTIONS(3505), + [anon_sym_sealed] = ACTIONS(3505), + [anon_sym_virtual] = ACTIONS(3505), + [anon_sym_volatile] = ACTIONS(3505), + [anon_sym_where] = ACTIONS(3505), + [anon_sym_notnull] = ACTIONS(3505), + [anon_sym_unmanaged] = ACTIONS(3505), + [anon_sym_checked] = ACTIONS(3505), + [anon_sym_BANG] = ACTIONS(3507), + [anon_sym_TILDE] = ACTIONS(3507), + [anon_sym_PLUS_PLUS] = ACTIONS(3507), + [anon_sym_DASH_DASH] = ACTIONS(3507), + [anon_sym_true] = ACTIONS(3505), + [anon_sym_false] = ACTIONS(3505), + [anon_sym_PLUS] = ACTIONS(3505), + [anon_sym_DASH] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3507), + [anon_sym_CARET] = ACTIONS(3507), + [anon_sym_AMP] = ACTIONS(3507), + [anon_sym_this] = ACTIONS(3505), + [anon_sym_scoped] = ACTIONS(3505), + [anon_sym_base] = ACTIONS(3505), + [anon_sym_var] = ACTIONS(3505), + [sym_predefined_type] = ACTIONS(3505), + [anon_sym_break] = ACTIONS(3505), + [anon_sym_unchecked] = ACTIONS(3505), + [anon_sym_continue] = ACTIONS(3505), + [anon_sym_do] = ACTIONS(3505), + [anon_sym_while] = ACTIONS(3505), + [anon_sym_for] = ACTIONS(3505), + [anon_sym_lock] = ACTIONS(3505), + [anon_sym_yield] = ACTIONS(3505), + [anon_sym_switch] = ACTIONS(3505), + [anon_sym_default] = ACTIONS(3505), + [anon_sym_throw] = ACTIONS(3505), + [anon_sym_try] = ACTIONS(3505), + [anon_sym_when] = ACTIONS(3505), + [anon_sym_await] = ACTIONS(3505), + [anon_sym_foreach] = ACTIONS(3505), + [anon_sym_goto] = ACTIONS(3505), + [anon_sym_if] = ACTIONS(3505), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [anon_sym_from] = ACTIONS(3505), + [anon_sym_into] = ACTIONS(3505), + [anon_sym_join] = ACTIONS(3505), + [anon_sym_on] = ACTIONS(3505), + [anon_sym_equals] = ACTIONS(3505), + [anon_sym_let] = ACTIONS(3505), + [anon_sym_orderby] = ACTIONS(3505), + [anon_sym_ascending] = ACTIONS(3505), + [anon_sym_descending] = ACTIONS(3505), + [anon_sym_group] = ACTIONS(3505), + [anon_sym_by] = ACTIONS(3505), + [anon_sym_select] = ACTIONS(3505), + [anon_sym_stackalloc] = ACTIONS(3505), + [anon_sym_sizeof] = ACTIONS(3505), + [anon_sym_typeof] = ACTIONS(3505), + [anon_sym___makeref] = ACTIONS(3505), + [anon_sym___reftype] = ACTIONS(3505), + [anon_sym___refvalue] = ACTIONS(3505), + [sym_null_literal] = ACTIONS(3505), + [anon_sym_SQUOTE] = ACTIONS(3507), + [sym_integer_literal] = ACTIONS(3505), + [sym_real_literal] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [sym_verbatim_string_literal] = ACTIONS(3507), + [aux_sym_preproc_if_token1] = ACTIONS(3507), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3507), + [sym_interpolation_verbatim_start] = ACTIONS(3507), + [sym_interpolation_raw_start] = ACTIONS(3507), + [sym_raw_string_start] = ACTIONS(3507), }, [2147] = { - [sym__variable_designation] = STATE(4057), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2147), [sym_preproc_endregion] = STATE(2147), [sym_preproc_line] = STATE(2147), @@ -385572,97 +394360,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2147), [sym_preproc_define] = STATE(2147), [sym_preproc_undef] = STATE(2147), - [sym__identifier_token] = ACTIONS(3770), - [anon_sym_alias] = ACTIONS(3774), - [anon_sym_global] = ACTIONS(3774), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3778), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3774), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3774), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3774), - [anon_sym_unmanaged] = ACTIONS(3774), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3774), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3774), - [anon_sym_yield] = ACTIONS(3774), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3774), - [sym_discard] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3509), + [anon_sym_extern] = ACTIONS(3509), + [anon_sym_alias] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_global] = ACTIONS(3509), + [anon_sym_using] = ACTIONS(3509), + [anon_sym_unsafe] = ACTIONS(3509), + [anon_sym_static] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3511), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_return] = ACTIONS(3509), + [anon_sym_ref] = ACTIONS(3509), + [anon_sym_LBRACE] = ACTIONS(3511), + [anon_sym_delegate] = ACTIONS(3509), + [anon_sym_abstract] = ACTIONS(3509), + [anon_sym_async] = ACTIONS(3509), + [anon_sym_const] = ACTIONS(3509), + [anon_sym_file] = ACTIONS(3509), + [anon_sym_fixed] = ACTIONS(3509), + [anon_sym_internal] = ACTIONS(3509), + [anon_sym_new] = ACTIONS(3509), + [anon_sym_override] = ACTIONS(3509), + [anon_sym_partial] = ACTIONS(3509), + [anon_sym_private] = ACTIONS(3509), + [anon_sym_protected] = ACTIONS(3509), + [anon_sym_public] = ACTIONS(3509), + [anon_sym_readonly] = ACTIONS(3509), + [anon_sym_required] = ACTIONS(3509), + [anon_sym_sealed] = ACTIONS(3509), + [anon_sym_virtual] = ACTIONS(3509), + [anon_sym_volatile] = ACTIONS(3509), + [anon_sym_where] = ACTIONS(3509), + [anon_sym_notnull] = ACTIONS(3509), + [anon_sym_unmanaged] = ACTIONS(3509), + [anon_sym_checked] = ACTIONS(3509), + [anon_sym_BANG] = ACTIONS(3511), + [anon_sym_TILDE] = ACTIONS(3511), + [anon_sym_PLUS_PLUS] = ACTIONS(3511), + [anon_sym_DASH_DASH] = ACTIONS(3511), + [anon_sym_true] = ACTIONS(3509), + [anon_sym_false] = ACTIONS(3509), + [anon_sym_PLUS] = ACTIONS(3509), + [anon_sym_DASH] = ACTIONS(3509), + [anon_sym_STAR] = ACTIONS(3511), + [anon_sym_CARET] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3511), + [anon_sym_this] = ACTIONS(3509), + [anon_sym_scoped] = ACTIONS(3509), + [anon_sym_base] = ACTIONS(3509), + [anon_sym_var] = ACTIONS(3509), + [sym_predefined_type] = ACTIONS(3509), + [anon_sym_break] = ACTIONS(3509), + [anon_sym_unchecked] = ACTIONS(3509), + [anon_sym_continue] = ACTIONS(3509), + [anon_sym_do] = ACTIONS(3509), + [anon_sym_while] = ACTIONS(3509), + [anon_sym_for] = ACTIONS(3509), + [anon_sym_lock] = ACTIONS(3509), + [anon_sym_yield] = ACTIONS(3509), + [anon_sym_switch] = ACTIONS(3509), + [anon_sym_default] = ACTIONS(3509), + [anon_sym_throw] = ACTIONS(3509), + [anon_sym_try] = ACTIONS(3509), + [anon_sym_when] = ACTIONS(3509), + [anon_sym_await] = ACTIONS(3509), + [anon_sym_foreach] = ACTIONS(3509), + [anon_sym_goto] = ACTIONS(3509), + [anon_sym_if] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3511), + [anon_sym_from] = ACTIONS(3509), + [anon_sym_into] = ACTIONS(3509), + [anon_sym_join] = ACTIONS(3509), + [anon_sym_on] = ACTIONS(3509), + [anon_sym_equals] = ACTIONS(3509), + [anon_sym_let] = ACTIONS(3509), + [anon_sym_orderby] = ACTIONS(3509), + [anon_sym_ascending] = ACTIONS(3509), + [anon_sym_descending] = ACTIONS(3509), + [anon_sym_group] = ACTIONS(3509), + [anon_sym_by] = ACTIONS(3509), + [anon_sym_select] = ACTIONS(3509), + [anon_sym_stackalloc] = ACTIONS(3509), + [anon_sym_sizeof] = ACTIONS(3509), + [anon_sym_typeof] = ACTIONS(3509), + [anon_sym___makeref] = ACTIONS(3509), + [anon_sym___reftype] = ACTIONS(3509), + [anon_sym___refvalue] = ACTIONS(3509), + [sym_null_literal] = ACTIONS(3509), + [anon_sym_SQUOTE] = ACTIONS(3511), + [sym_integer_literal] = ACTIONS(3509), + [sym_real_literal] = ACTIONS(3511), + [anon_sym_DQUOTE] = ACTIONS(3511), + [sym_verbatim_string_literal] = ACTIONS(3511), + [aux_sym_preproc_if_token1] = ACTIONS(3511), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3511), + [sym_interpolation_verbatim_start] = ACTIONS(3511), + [sym_interpolation_raw_start] = ACTIONS(3511), + [sym_raw_string_start] = ACTIONS(3511), }, [2148] = { - [sym__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2148), [sym_preproc_endregion] = STATE(2148), [sym_preproc_line] = STATE(2148), @@ -385672,91 +394479,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2148), [sym_preproc_define] = STATE(2148), [sym_preproc_undef] = STATE(2148), - [sym__identifier_token] = ACTIONS(3554), - [anon_sym_alias] = ACTIONS(3558), - [anon_sym_global] = ACTIONS(3558), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3558), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3558), - [anon_sym_unmanaged] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3558), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3558), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_into] = ACTIONS(3558), - [anon_sym_join] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_equals] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_orderby] = ACTIONS(3558), - [anon_sym_ascending] = ACTIONS(3558), - [anon_sym_descending] = ACTIONS(3558), - [anon_sym_group] = ACTIONS(3558), - [anon_sym_by] = ACTIONS(3558), - [anon_sym_select] = ACTIONS(3558), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3513), + [anon_sym_extern] = ACTIONS(3513), + [anon_sym_alias] = ACTIONS(3513), + [anon_sym_SEMI] = ACTIONS(3515), + [anon_sym_global] = ACTIONS(3513), + [anon_sym_using] = ACTIONS(3513), + [anon_sym_unsafe] = ACTIONS(3513), + [anon_sym_static] = ACTIONS(3513), + [anon_sym_LBRACK] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3515), + [anon_sym_return] = ACTIONS(3513), + [anon_sym_ref] = ACTIONS(3513), + [anon_sym_LBRACE] = ACTIONS(3515), + [anon_sym_delegate] = ACTIONS(3513), + [anon_sym_abstract] = ACTIONS(3513), + [anon_sym_async] = ACTIONS(3513), + [anon_sym_const] = ACTIONS(3513), + [anon_sym_file] = ACTIONS(3513), + [anon_sym_fixed] = ACTIONS(3513), + [anon_sym_internal] = ACTIONS(3513), + [anon_sym_new] = ACTIONS(3513), + [anon_sym_override] = ACTIONS(3513), + [anon_sym_partial] = ACTIONS(3513), + [anon_sym_private] = ACTIONS(3513), + [anon_sym_protected] = ACTIONS(3513), + [anon_sym_public] = ACTIONS(3513), + [anon_sym_readonly] = ACTIONS(3513), + [anon_sym_required] = ACTIONS(3513), + [anon_sym_sealed] = ACTIONS(3513), + [anon_sym_virtual] = ACTIONS(3513), + [anon_sym_volatile] = ACTIONS(3513), + [anon_sym_where] = ACTIONS(3513), + [anon_sym_notnull] = ACTIONS(3513), + [anon_sym_unmanaged] = ACTIONS(3513), + [anon_sym_checked] = ACTIONS(3513), + [anon_sym_BANG] = ACTIONS(3515), + [anon_sym_TILDE] = ACTIONS(3515), + [anon_sym_PLUS_PLUS] = ACTIONS(3515), + [anon_sym_DASH_DASH] = ACTIONS(3515), + [anon_sym_true] = ACTIONS(3513), + [anon_sym_false] = ACTIONS(3513), + [anon_sym_PLUS] = ACTIONS(3513), + [anon_sym_DASH] = ACTIONS(3513), + [anon_sym_STAR] = ACTIONS(3515), + [anon_sym_CARET] = ACTIONS(3515), + [anon_sym_AMP] = ACTIONS(3515), + [anon_sym_this] = ACTIONS(3513), + [anon_sym_scoped] = ACTIONS(3513), + [anon_sym_base] = ACTIONS(3513), + [anon_sym_var] = ACTIONS(3513), + [sym_predefined_type] = ACTIONS(3513), + [anon_sym_break] = ACTIONS(3513), + [anon_sym_unchecked] = ACTIONS(3513), + [anon_sym_continue] = ACTIONS(3513), + [anon_sym_do] = ACTIONS(3513), + [anon_sym_while] = ACTIONS(3513), + [anon_sym_for] = ACTIONS(3513), + [anon_sym_lock] = ACTIONS(3513), + [anon_sym_yield] = ACTIONS(3513), + [anon_sym_switch] = ACTIONS(3513), + [anon_sym_default] = ACTIONS(3513), + [anon_sym_throw] = ACTIONS(3513), + [anon_sym_try] = ACTIONS(3513), + [anon_sym_when] = ACTIONS(3513), + [anon_sym_await] = ACTIONS(3513), + [anon_sym_foreach] = ACTIONS(3513), + [anon_sym_goto] = ACTIONS(3513), + [anon_sym_if] = ACTIONS(3513), + [anon_sym_DOT_DOT] = ACTIONS(3515), + [anon_sym_from] = ACTIONS(3513), + [anon_sym_into] = ACTIONS(3513), + [anon_sym_join] = ACTIONS(3513), + [anon_sym_on] = ACTIONS(3513), + [anon_sym_equals] = ACTIONS(3513), + [anon_sym_let] = ACTIONS(3513), + [anon_sym_orderby] = ACTIONS(3513), + [anon_sym_ascending] = ACTIONS(3513), + [anon_sym_descending] = ACTIONS(3513), + [anon_sym_group] = ACTIONS(3513), + [anon_sym_by] = ACTIONS(3513), + [anon_sym_select] = ACTIONS(3513), + [anon_sym_stackalloc] = ACTIONS(3513), + [anon_sym_sizeof] = ACTIONS(3513), + [anon_sym_typeof] = ACTIONS(3513), + [anon_sym___makeref] = ACTIONS(3513), + [anon_sym___reftype] = ACTIONS(3513), + [anon_sym___refvalue] = ACTIONS(3513), + [sym_null_literal] = ACTIONS(3513), + [anon_sym_SQUOTE] = ACTIONS(3515), + [sym_integer_literal] = ACTIONS(3513), + [sym_real_literal] = ACTIONS(3515), + [anon_sym_DQUOTE] = ACTIONS(3515), + [sym_verbatim_string_literal] = ACTIONS(3515), + [aux_sym_preproc_if_token1] = ACTIONS(3515), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3515), + [sym_interpolation_verbatim_start] = ACTIONS(3515), + [sym_interpolation_raw_start] = ACTIONS(3515), + [sym_raw_string_start] = ACTIONS(3515), }, [2149] = { [sym_preproc_region] = STATE(2149), @@ -385768,98 +394598,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2149), [sym_preproc_define] = STATE(2149), [sym_preproc_undef] = STATE(2149), - [sym__identifier_token] = ACTIONS(2645), - [anon_sym_alias] = ACTIONS(2645), - [anon_sym_global] = ACTIONS(2645), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3786), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_file] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(2645), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_notnull] = ACTIONS(2645), - [anon_sym_unmanaged] = ACTIONS(2645), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_scoped] = ACTIONS(2645), - [anon_sym_var] = ACTIONS(2645), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(2645), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(2645), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(2645), - [anon_sym_into] = ACTIONS(2645), - [anon_sym_join] = ACTIONS(2645), - [anon_sym_on] = ACTIONS(2645), - [anon_sym_equals] = ACTIONS(2645), - [anon_sym_let] = ACTIONS(2645), - [anon_sym_orderby] = ACTIONS(2645), - [anon_sym_ascending] = ACTIONS(2645), - [anon_sym_descending] = ACTIONS(2645), - [anon_sym_group] = ACTIONS(2645), - [anon_sym_by] = ACTIONS(2645), - [anon_sym_select] = ACTIONS(2645), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3651), - [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__identifier_token] = ACTIONS(3517), + [anon_sym_extern] = ACTIONS(3517), + [anon_sym_alias] = ACTIONS(3517), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_global] = ACTIONS(3517), + [anon_sym_using] = ACTIONS(3517), + [anon_sym_unsafe] = ACTIONS(3517), + [anon_sym_static] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_LPAREN] = ACTIONS(3519), + [anon_sym_return] = ACTIONS(3517), + [anon_sym_ref] = ACTIONS(3517), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_delegate] = ACTIONS(3517), + [anon_sym_abstract] = ACTIONS(3517), + [anon_sym_async] = ACTIONS(3517), + [anon_sym_const] = ACTIONS(3517), + [anon_sym_file] = ACTIONS(3517), + [anon_sym_fixed] = ACTIONS(3517), + [anon_sym_internal] = ACTIONS(3517), + [anon_sym_new] = ACTIONS(3517), + [anon_sym_override] = ACTIONS(3517), + [anon_sym_partial] = ACTIONS(3517), + [anon_sym_private] = ACTIONS(3517), + [anon_sym_protected] = ACTIONS(3517), + [anon_sym_public] = ACTIONS(3517), + [anon_sym_readonly] = ACTIONS(3517), + [anon_sym_required] = ACTIONS(3517), + [anon_sym_sealed] = ACTIONS(3517), + [anon_sym_virtual] = ACTIONS(3517), + [anon_sym_volatile] = ACTIONS(3517), + [anon_sym_where] = ACTIONS(3517), + [anon_sym_notnull] = ACTIONS(3517), + [anon_sym_unmanaged] = ACTIONS(3517), + [anon_sym_checked] = ACTIONS(3517), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_true] = ACTIONS(3517), + [anon_sym_false] = ACTIONS(3517), + [anon_sym_PLUS] = ACTIONS(3517), + [anon_sym_DASH] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_CARET] = ACTIONS(3519), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_this] = ACTIONS(3517), + [anon_sym_scoped] = ACTIONS(3517), + [anon_sym_base] = ACTIONS(3517), + [anon_sym_var] = ACTIONS(3517), + [sym_predefined_type] = ACTIONS(3517), + [anon_sym_break] = ACTIONS(3517), + [anon_sym_unchecked] = ACTIONS(3517), + [anon_sym_continue] = ACTIONS(3517), + [anon_sym_do] = ACTIONS(3517), + [anon_sym_while] = ACTIONS(3517), + [anon_sym_for] = ACTIONS(3517), + [anon_sym_lock] = ACTIONS(3517), + [anon_sym_yield] = ACTIONS(3517), + [anon_sym_switch] = ACTIONS(3517), + [anon_sym_default] = ACTIONS(3517), + [anon_sym_throw] = ACTIONS(3517), + [anon_sym_try] = ACTIONS(3517), + [anon_sym_when] = ACTIONS(3517), + [anon_sym_await] = ACTIONS(3517), + [anon_sym_foreach] = ACTIONS(3517), + [anon_sym_goto] = ACTIONS(3517), + [anon_sym_if] = ACTIONS(3517), + [anon_sym_DOT_DOT] = ACTIONS(3519), + [anon_sym_from] = ACTIONS(3517), + [anon_sym_into] = ACTIONS(3517), + [anon_sym_join] = ACTIONS(3517), + [anon_sym_on] = ACTIONS(3517), + [anon_sym_equals] = ACTIONS(3517), + [anon_sym_let] = ACTIONS(3517), + [anon_sym_orderby] = ACTIONS(3517), + [anon_sym_ascending] = ACTIONS(3517), + [anon_sym_descending] = ACTIONS(3517), + [anon_sym_group] = ACTIONS(3517), + [anon_sym_by] = ACTIONS(3517), + [anon_sym_select] = ACTIONS(3517), + [anon_sym_stackalloc] = ACTIONS(3517), + [anon_sym_sizeof] = ACTIONS(3517), + [anon_sym_typeof] = ACTIONS(3517), + [anon_sym___makeref] = ACTIONS(3517), + [anon_sym___reftype] = ACTIONS(3517), + [anon_sym___refvalue] = ACTIONS(3517), + [sym_null_literal] = ACTIONS(3517), + [anon_sym_SQUOTE] = ACTIONS(3519), + [sym_integer_literal] = ACTIONS(3517), + [sym_real_literal] = ACTIONS(3519), + [anon_sym_DQUOTE] = ACTIONS(3519), + [sym_verbatim_string_literal] = ACTIONS(3519), + [aux_sym_preproc_if_token1] = ACTIONS(3519), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3519), + [sym_interpolation_verbatim_start] = ACTIONS(3519), + [sym_interpolation_raw_start] = ACTIONS(3519), + [sym_raw_string_start] = ACTIONS(3519), }, [2150] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2150), [sym_preproc_endregion] = STATE(2150), [sym_preproc_line] = STATE(2150), @@ -385869,100 +394717,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2150), [sym_preproc_define] = STATE(2150), [sym_preproc_undef] = STATE(2150), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3736), - [anon_sym_COMMA] = ACTIONS(3789), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3789), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), + [sym__identifier_token] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_alias] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3523), + [anon_sym_global] = ACTIONS(3521), + [anon_sym_using] = ACTIONS(3521), + [anon_sym_unsafe] = ACTIONS(3521), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_LBRACK] = ACTIONS(3523), + [anon_sym_LPAREN] = ACTIONS(3523), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_ref] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3523), + [anon_sym_delegate] = ACTIONS(3521), + [anon_sym_abstract] = ACTIONS(3521), + [anon_sym_async] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_file] = ACTIONS(3521), + [anon_sym_fixed] = ACTIONS(3521), + [anon_sym_internal] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_override] = ACTIONS(3521), + [anon_sym_partial] = ACTIONS(3521), + [anon_sym_private] = ACTIONS(3521), + [anon_sym_protected] = ACTIONS(3521), + [anon_sym_public] = ACTIONS(3521), + [anon_sym_readonly] = ACTIONS(3521), + [anon_sym_required] = ACTIONS(3521), + [anon_sym_sealed] = ACTIONS(3521), + [anon_sym_virtual] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym_where] = ACTIONS(3521), + [anon_sym_notnull] = ACTIONS(3521), + [anon_sym_unmanaged] = ACTIONS(3521), + [anon_sym_checked] = ACTIONS(3521), + [anon_sym_BANG] = ACTIONS(3523), + [anon_sym_TILDE] = ACTIONS(3523), + [anon_sym_PLUS_PLUS] = ACTIONS(3523), + [anon_sym_DASH_DASH] = ACTIONS(3523), + [anon_sym_true] = ACTIONS(3521), + [anon_sym_false] = ACTIONS(3521), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_CARET] = ACTIONS(3523), + [anon_sym_AMP] = ACTIONS(3523), + [anon_sym_this] = ACTIONS(3521), + [anon_sym_scoped] = ACTIONS(3521), + [anon_sym_base] = ACTIONS(3521), + [anon_sym_var] = ACTIONS(3521), + [sym_predefined_type] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_unchecked] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_lock] = ACTIONS(3521), + [anon_sym_yield] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_throw] = ACTIONS(3521), + [anon_sym_try] = ACTIONS(3521), + [anon_sym_when] = ACTIONS(3521), + [anon_sym_await] = ACTIONS(3521), + [anon_sym_foreach] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_DOT_DOT] = ACTIONS(3523), + [anon_sym_from] = ACTIONS(3521), + [anon_sym_into] = ACTIONS(3521), + [anon_sym_join] = ACTIONS(3521), + [anon_sym_on] = ACTIONS(3521), + [anon_sym_equals] = ACTIONS(3521), + [anon_sym_let] = ACTIONS(3521), + [anon_sym_orderby] = ACTIONS(3521), + [anon_sym_ascending] = ACTIONS(3521), + [anon_sym_descending] = ACTIONS(3521), + [anon_sym_group] = ACTIONS(3521), + [anon_sym_by] = ACTIONS(3521), + [anon_sym_select] = ACTIONS(3521), + [anon_sym_stackalloc] = ACTIONS(3521), + [anon_sym_sizeof] = ACTIONS(3521), + [anon_sym_typeof] = ACTIONS(3521), + [anon_sym___makeref] = ACTIONS(3521), + [anon_sym___reftype] = ACTIONS(3521), + [anon_sym___refvalue] = ACTIONS(3521), + [sym_null_literal] = ACTIONS(3521), + [anon_sym_SQUOTE] = ACTIONS(3523), + [sym_integer_literal] = ACTIONS(3521), + [sym_real_literal] = ACTIONS(3523), + [anon_sym_DQUOTE] = ACTIONS(3523), + [sym_verbatim_string_literal] = ACTIONS(3523), + [aux_sym_preproc_if_token1] = ACTIONS(3523), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3523), + [sym_interpolation_verbatim_start] = ACTIONS(3523), + [sym_interpolation_raw_start] = ACTIONS(3523), + [sym_raw_string_start] = ACTIONS(3523), }, [2151] = { - [sym__variable_designation] = STATE(4057), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2151), [sym_preproc_endregion] = STATE(2151), [sym_preproc_line] = STATE(2151), @@ -385972,91 +394836,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2151), [sym_preproc_define] = STATE(2151), [sym_preproc_undef] = STATE(2151), - [sym__identifier_token] = ACTIONS(3792), - [anon_sym_alias] = ACTIONS(3796), - [anon_sym_global] = ACTIONS(3796), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3778), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3796), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3796), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3796), - [anon_sym_unmanaged] = ACTIONS(3796), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3796), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3796), - [anon_sym_yield] = ACTIONS(3796), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3796), - [sym_discard] = ACTIONS(3782), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3796), - [anon_sym_into] = ACTIONS(3796), - [anon_sym_join] = ACTIONS(3796), - [anon_sym_on] = ACTIONS(3796), - [anon_sym_equals] = ACTIONS(3796), - [anon_sym_let] = ACTIONS(3796), - [anon_sym_orderby] = ACTIONS(3796), - [anon_sym_ascending] = ACTIONS(3796), - [anon_sym_descending] = ACTIONS(3796), - [anon_sym_group] = ACTIONS(3796), - [anon_sym_by] = ACTIONS(3796), - [anon_sym_select] = ACTIONS(3796), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3525), + [anon_sym_extern] = ACTIONS(3525), + [anon_sym_alias] = ACTIONS(3525), + [anon_sym_SEMI] = ACTIONS(3527), + [anon_sym_global] = ACTIONS(3525), + [anon_sym_using] = ACTIONS(3525), + [anon_sym_unsafe] = ACTIONS(3525), + [anon_sym_static] = ACTIONS(3525), + [anon_sym_LBRACK] = ACTIONS(3527), + [anon_sym_LPAREN] = ACTIONS(3527), + [anon_sym_return] = ACTIONS(3525), + [anon_sym_ref] = ACTIONS(3525), + [anon_sym_LBRACE] = ACTIONS(3527), + [anon_sym_delegate] = ACTIONS(3525), + [anon_sym_abstract] = ACTIONS(3525), + [anon_sym_async] = ACTIONS(3525), + [anon_sym_const] = ACTIONS(3525), + [anon_sym_file] = ACTIONS(3525), + [anon_sym_fixed] = ACTIONS(3525), + [anon_sym_internal] = ACTIONS(3525), + [anon_sym_new] = ACTIONS(3525), + [anon_sym_override] = ACTIONS(3525), + [anon_sym_partial] = ACTIONS(3525), + [anon_sym_private] = ACTIONS(3525), + [anon_sym_protected] = ACTIONS(3525), + [anon_sym_public] = ACTIONS(3525), + [anon_sym_readonly] = ACTIONS(3525), + [anon_sym_required] = ACTIONS(3525), + [anon_sym_sealed] = ACTIONS(3525), + [anon_sym_virtual] = ACTIONS(3525), + [anon_sym_volatile] = ACTIONS(3525), + [anon_sym_where] = ACTIONS(3525), + [anon_sym_notnull] = ACTIONS(3525), + [anon_sym_unmanaged] = ACTIONS(3525), + [anon_sym_checked] = ACTIONS(3525), + [anon_sym_BANG] = ACTIONS(3527), + [anon_sym_TILDE] = ACTIONS(3527), + [anon_sym_PLUS_PLUS] = ACTIONS(3527), + [anon_sym_DASH_DASH] = ACTIONS(3527), + [anon_sym_true] = ACTIONS(3525), + [anon_sym_false] = ACTIONS(3525), + [anon_sym_PLUS] = ACTIONS(3525), + [anon_sym_DASH] = ACTIONS(3525), + [anon_sym_STAR] = ACTIONS(3527), + [anon_sym_CARET] = ACTIONS(3527), + [anon_sym_AMP] = ACTIONS(3527), + [anon_sym_this] = ACTIONS(3525), + [anon_sym_scoped] = ACTIONS(3525), + [anon_sym_base] = ACTIONS(3525), + [anon_sym_var] = ACTIONS(3525), + [sym_predefined_type] = ACTIONS(3525), + [anon_sym_break] = ACTIONS(3525), + [anon_sym_unchecked] = ACTIONS(3525), + [anon_sym_continue] = ACTIONS(3525), + [anon_sym_do] = ACTIONS(3525), + [anon_sym_while] = ACTIONS(3525), + [anon_sym_for] = ACTIONS(3525), + [anon_sym_lock] = ACTIONS(3525), + [anon_sym_yield] = ACTIONS(3525), + [anon_sym_switch] = ACTIONS(3525), + [anon_sym_default] = ACTIONS(3525), + [anon_sym_throw] = ACTIONS(3525), + [anon_sym_try] = ACTIONS(3525), + [anon_sym_when] = ACTIONS(3525), + [anon_sym_await] = ACTIONS(3525), + [anon_sym_foreach] = ACTIONS(3525), + [anon_sym_goto] = ACTIONS(3525), + [anon_sym_if] = ACTIONS(3525), + [anon_sym_DOT_DOT] = ACTIONS(3527), + [anon_sym_from] = ACTIONS(3525), + [anon_sym_into] = ACTIONS(3525), + [anon_sym_join] = ACTIONS(3525), + [anon_sym_on] = ACTIONS(3525), + [anon_sym_equals] = ACTIONS(3525), + [anon_sym_let] = ACTIONS(3525), + [anon_sym_orderby] = ACTIONS(3525), + [anon_sym_ascending] = ACTIONS(3525), + [anon_sym_descending] = ACTIONS(3525), + [anon_sym_group] = ACTIONS(3525), + [anon_sym_by] = ACTIONS(3525), + [anon_sym_select] = ACTIONS(3525), + [anon_sym_stackalloc] = ACTIONS(3525), + [anon_sym_sizeof] = ACTIONS(3525), + [anon_sym_typeof] = ACTIONS(3525), + [anon_sym___makeref] = ACTIONS(3525), + [anon_sym___reftype] = ACTIONS(3525), + [anon_sym___refvalue] = ACTIONS(3525), + [sym_null_literal] = ACTIONS(3525), + [anon_sym_SQUOTE] = ACTIONS(3527), + [sym_integer_literal] = ACTIONS(3525), + [sym_real_literal] = ACTIONS(3527), + [anon_sym_DQUOTE] = ACTIONS(3527), + [sym_verbatim_string_literal] = ACTIONS(3527), + [aux_sym_preproc_if_token1] = ACTIONS(3527), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3527), + [sym_interpolation_verbatim_start] = ACTIONS(3527), + [sym_interpolation_raw_start] = ACTIONS(3527), + [sym_raw_string_start] = ACTIONS(3527), }, [2152] = { [sym_preproc_region] = STATE(2152), @@ -386068,101 +394955,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2152), [sym_preproc_define] = STATE(2152), [sym_preproc_undef] = STATE(2152), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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__identifier_token] = ACTIONS(3529), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym_alias] = ACTIONS(3529), + [anon_sym_SEMI] = ACTIONS(3531), + [anon_sym_global] = ACTIONS(3529), + [anon_sym_using] = ACTIONS(3529), + [anon_sym_unsafe] = ACTIONS(3529), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_LBRACK] = ACTIONS(3531), + [anon_sym_LPAREN] = ACTIONS(3531), + [anon_sym_return] = ACTIONS(3529), + [anon_sym_ref] = ACTIONS(3529), + [anon_sym_LBRACE] = ACTIONS(3531), + [anon_sym_delegate] = ACTIONS(3529), + [anon_sym_abstract] = ACTIONS(3529), + [anon_sym_async] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3529), + [anon_sym_file] = ACTIONS(3529), + [anon_sym_fixed] = ACTIONS(3529), + [anon_sym_internal] = ACTIONS(3529), + [anon_sym_new] = ACTIONS(3529), + [anon_sym_override] = ACTIONS(3529), + [anon_sym_partial] = ACTIONS(3529), + [anon_sym_private] = ACTIONS(3529), + [anon_sym_protected] = ACTIONS(3529), + [anon_sym_public] = ACTIONS(3529), + [anon_sym_readonly] = ACTIONS(3529), + [anon_sym_required] = ACTIONS(3529), + [anon_sym_sealed] = ACTIONS(3529), + [anon_sym_virtual] = ACTIONS(3529), + [anon_sym_volatile] = ACTIONS(3529), + [anon_sym_where] = ACTIONS(3529), + [anon_sym_notnull] = ACTIONS(3529), + [anon_sym_unmanaged] = ACTIONS(3529), + [anon_sym_checked] = ACTIONS(3529), + [anon_sym_BANG] = ACTIONS(3531), + [anon_sym_TILDE] = ACTIONS(3531), + [anon_sym_PLUS_PLUS] = ACTIONS(3531), + [anon_sym_DASH_DASH] = ACTIONS(3531), + [anon_sym_true] = ACTIONS(3529), + [anon_sym_false] = ACTIONS(3529), + [anon_sym_PLUS] = ACTIONS(3529), + [anon_sym_DASH] = ACTIONS(3529), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_CARET] = ACTIONS(3531), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_this] = ACTIONS(3529), + [anon_sym_scoped] = ACTIONS(3529), + [anon_sym_base] = ACTIONS(3529), + [anon_sym_var] = ACTIONS(3529), + [sym_predefined_type] = ACTIONS(3529), + [anon_sym_break] = ACTIONS(3529), + [anon_sym_unchecked] = ACTIONS(3529), + [anon_sym_continue] = ACTIONS(3529), + [anon_sym_do] = ACTIONS(3529), + [anon_sym_while] = ACTIONS(3529), + [anon_sym_for] = ACTIONS(3529), + [anon_sym_lock] = ACTIONS(3529), + [anon_sym_yield] = ACTIONS(3529), + [anon_sym_switch] = ACTIONS(3529), + [anon_sym_default] = ACTIONS(3529), + [anon_sym_throw] = ACTIONS(3529), + [anon_sym_try] = ACTIONS(3529), + [anon_sym_when] = ACTIONS(3529), + [anon_sym_await] = ACTIONS(3529), + [anon_sym_foreach] = ACTIONS(3529), + [anon_sym_goto] = ACTIONS(3529), + [anon_sym_if] = ACTIONS(3529), + [anon_sym_DOT_DOT] = ACTIONS(3531), + [anon_sym_from] = ACTIONS(3529), + [anon_sym_into] = ACTIONS(3529), + [anon_sym_join] = ACTIONS(3529), + [anon_sym_on] = ACTIONS(3529), + [anon_sym_equals] = ACTIONS(3529), + [anon_sym_let] = ACTIONS(3529), + [anon_sym_orderby] = ACTIONS(3529), + [anon_sym_ascending] = ACTIONS(3529), + [anon_sym_descending] = ACTIONS(3529), + [anon_sym_group] = ACTIONS(3529), + [anon_sym_by] = ACTIONS(3529), + [anon_sym_select] = ACTIONS(3529), + [anon_sym_stackalloc] = ACTIONS(3529), + [anon_sym_sizeof] = ACTIONS(3529), + [anon_sym_typeof] = ACTIONS(3529), + [anon_sym___makeref] = ACTIONS(3529), + [anon_sym___reftype] = ACTIONS(3529), + [anon_sym___refvalue] = ACTIONS(3529), + [sym_null_literal] = ACTIONS(3529), + [anon_sym_SQUOTE] = ACTIONS(3531), + [sym_integer_literal] = ACTIONS(3529), + [sym_real_literal] = ACTIONS(3531), + [anon_sym_DQUOTE] = ACTIONS(3531), + [sym_verbatim_string_literal] = ACTIONS(3531), + [aux_sym_preproc_if_token1] = ACTIONS(3531), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3531), + [sym_interpolation_verbatim_start] = ACTIONS(3531), + [sym_interpolation_raw_start] = ACTIONS(3531), + [sym_raw_string_start] = ACTIONS(3531), }, [2153] = { - [sym__variable_designation] = STATE(3285), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(2525), [sym_preproc_region] = STATE(2153), [sym_preproc_endregion] = STATE(2153), [sym_preproc_line] = STATE(2153), @@ -386172,91 +395074,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2153), [sym_preproc_define] = STATE(2153), [sym_preproc_undef] = STATE(2153), - [sym__identifier_token] = ACTIONS(3673), - [anon_sym_alias] = ACTIONS(3677), - [anon_sym_global] = ACTIONS(3677), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3677), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3677), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3677), - [anon_sym_unmanaged] = ACTIONS(3677), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3677), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3677), - [anon_sym_yield] = ACTIONS(3677), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3677), - [sym_discard] = ACTIONS(3582), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_ascending] = ACTIONS(3677), - [anon_sym_descending] = ACTIONS(3677), - [anon_sym_group] = ACTIONS(3677), - [anon_sym_by] = ACTIONS(3677), - [anon_sym_select] = ACTIONS(3677), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3533), + [anon_sym_extern] = ACTIONS(3533), + [anon_sym_alias] = ACTIONS(3533), + [anon_sym_SEMI] = ACTIONS(3535), + [anon_sym_global] = ACTIONS(3533), + [anon_sym_using] = ACTIONS(3533), + [anon_sym_unsafe] = ACTIONS(3533), + [anon_sym_static] = ACTIONS(3533), + [anon_sym_LBRACK] = ACTIONS(3535), + [anon_sym_LPAREN] = ACTIONS(3535), + [anon_sym_return] = ACTIONS(3533), + [anon_sym_ref] = ACTIONS(3533), + [anon_sym_LBRACE] = ACTIONS(3535), + [anon_sym_delegate] = ACTIONS(3533), + [anon_sym_abstract] = ACTIONS(3533), + [anon_sym_async] = ACTIONS(3533), + [anon_sym_const] = ACTIONS(3533), + [anon_sym_file] = ACTIONS(3533), + [anon_sym_fixed] = ACTIONS(3533), + [anon_sym_internal] = ACTIONS(3533), + [anon_sym_new] = ACTIONS(3533), + [anon_sym_override] = ACTIONS(3533), + [anon_sym_partial] = ACTIONS(3533), + [anon_sym_private] = ACTIONS(3533), + [anon_sym_protected] = ACTIONS(3533), + [anon_sym_public] = ACTIONS(3533), + [anon_sym_readonly] = ACTIONS(3533), + [anon_sym_required] = ACTIONS(3533), + [anon_sym_sealed] = ACTIONS(3533), + [anon_sym_virtual] = ACTIONS(3533), + [anon_sym_volatile] = ACTIONS(3533), + [anon_sym_where] = ACTIONS(3533), + [anon_sym_notnull] = ACTIONS(3533), + [anon_sym_unmanaged] = ACTIONS(3533), + [anon_sym_checked] = ACTIONS(3533), + [anon_sym_BANG] = ACTIONS(3535), + [anon_sym_TILDE] = ACTIONS(3535), + [anon_sym_PLUS_PLUS] = ACTIONS(3535), + [anon_sym_DASH_DASH] = ACTIONS(3535), + [anon_sym_true] = ACTIONS(3533), + [anon_sym_false] = ACTIONS(3533), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3535), + [anon_sym_CARET] = ACTIONS(3535), + [anon_sym_AMP] = ACTIONS(3535), + [anon_sym_this] = ACTIONS(3533), + [anon_sym_scoped] = ACTIONS(3533), + [anon_sym_base] = ACTIONS(3533), + [anon_sym_var] = ACTIONS(3533), + [sym_predefined_type] = ACTIONS(3533), + [anon_sym_break] = ACTIONS(3533), + [anon_sym_unchecked] = ACTIONS(3533), + [anon_sym_continue] = ACTIONS(3533), + [anon_sym_do] = ACTIONS(3533), + [anon_sym_while] = ACTIONS(3533), + [anon_sym_for] = ACTIONS(3533), + [anon_sym_lock] = ACTIONS(3533), + [anon_sym_yield] = ACTIONS(3533), + [anon_sym_switch] = ACTIONS(3533), + [anon_sym_default] = ACTIONS(3533), + [anon_sym_throw] = ACTIONS(3533), + [anon_sym_try] = ACTIONS(3533), + [anon_sym_when] = ACTIONS(3533), + [anon_sym_await] = ACTIONS(3533), + [anon_sym_foreach] = ACTIONS(3533), + [anon_sym_goto] = ACTIONS(3533), + [anon_sym_if] = ACTIONS(3533), + [anon_sym_DOT_DOT] = ACTIONS(3535), + [anon_sym_from] = ACTIONS(3533), + [anon_sym_into] = ACTIONS(3533), + [anon_sym_join] = ACTIONS(3533), + [anon_sym_on] = ACTIONS(3533), + [anon_sym_equals] = ACTIONS(3533), + [anon_sym_let] = ACTIONS(3533), + [anon_sym_orderby] = ACTIONS(3533), + [anon_sym_ascending] = ACTIONS(3533), + [anon_sym_descending] = ACTIONS(3533), + [anon_sym_group] = ACTIONS(3533), + [anon_sym_by] = ACTIONS(3533), + [anon_sym_select] = ACTIONS(3533), + [anon_sym_stackalloc] = ACTIONS(3533), + [anon_sym_sizeof] = ACTIONS(3533), + [anon_sym_typeof] = ACTIONS(3533), + [anon_sym___makeref] = ACTIONS(3533), + [anon_sym___reftype] = ACTIONS(3533), + [anon_sym___refvalue] = ACTIONS(3533), + [sym_null_literal] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3535), + [sym_integer_literal] = ACTIONS(3533), + [sym_real_literal] = ACTIONS(3535), + [anon_sym_DQUOTE] = ACTIONS(3535), + [sym_verbatim_string_literal] = ACTIONS(3535), + [aux_sym_preproc_if_token1] = ACTIONS(3535), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3535), + [sym_interpolation_verbatim_start] = ACTIONS(3535), + [sym_interpolation_raw_start] = ACTIONS(3535), + [sym_raw_string_start] = ACTIONS(3535), }, [2154] = { [sym_preproc_region] = STATE(2154), @@ -386268,106 +395193,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2154), [sym_preproc_define] = STATE(2154), [sym_preproc_undef] = STATE(2154), - [sym__identifier_token] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3537), + [anon_sym_extern] = ACTIONS(3537), + [anon_sym_alias] = ACTIONS(3537), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_global] = ACTIONS(3537), + [anon_sym_using] = ACTIONS(3537), + [anon_sym_unsafe] = ACTIONS(3537), + [anon_sym_static] = ACTIONS(3537), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_return] = ACTIONS(3537), + [anon_sym_ref] = ACTIONS(3537), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_delegate] = ACTIONS(3537), + [anon_sym_abstract] = ACTIONS(3537), + [anon_sym_async] = ACTIONS(3537), + [anon_sym_const] = ACTIONS(3537), + [anon_sym_file] = ACTIONS(3537), + [anon_sym_fixed] = ACTIONS(3537), + [anon_sym_internal] = ACTIONS(3537), + [anon_sym_new] = ACTIONS(3537), + [anon_sym_override] = ACTIONS(3537), + [anon_sym_partial] = ACTIONS(3537), + [anon_sym_private] = ACTIONS(3537), + [anon_sym_protected] = ACTIONS(3537), + [anon_sym_public] = ACTIONS(3537), + [anon_sym_readonly] = ACTIONS(3537), + [anon_sym_required] = ACTIONS(3537), + [anon_sym_sealed] = ACTIONS(3537), + [anon_sym_virtual] = ACTIONS(3537), + [anon_sym_volatile] = ACTIONS(3537), + [anon_sym_where] = ACTIONS(3537), + [anon_sym_notnull] = ACTIONS(3537), + [anon_sym_unmanaged] = ACTIONS(3537), + [anon_sym_checked] = ACTIONS(3537), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_true] = ACTIONS(3537), + [anon_sym_false] = ACTIONS(3537), + [anon_sym_PLUS] = ACTIONS(3537), + [anon_sym_DASH] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_CARET] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_this] = ACTIONS(3537), + [anon_sym_scoped] = ACTIONS(3537), + [anon_sym_base] = ACTIONS(3537), + [anon_sym_var] = ACTIONS(3537), + [sym_predefined_type] = ACTIONS(3537), + [anon_sym_break] = ACTIONS(3537), + [anon_sym_unchecked] = ACTIONS(3537), + [anon_sym_continue] = ACTIONS(3537), + [anon_sym_do] = ACTIONS(3537), + [anon_sym_while] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(3537), + [anon_sym_lock] = ACTIONS(3537), + [anon_sym_yield] = ACTIONS(3537), + [anon_sym_switch] = ACTIONS(3537), + [anon_sym_default] = ACTIONS(3537), + [anon_sym_throw] = ACTIONS(3537), + [anon_sym_try] = ACTIONS(3537), + [anon_sym_when] = ACTIONS(3537), + [anon_sym_await] = ACTIONS(3537), + [anon_sym_foreach] = ACTIONS(3537), + [anon_sym_goto] = ACTIONS(3537), + [anon_sym_if] = ACTIONS(3537), + [anon_sym_DOT_DOT] = ACTIONS(3539), + [anon_sym_from] = ACTIONS(3537), + [anon_sym_into] = ACTIONS(3537), + [anon_sym_join] = ACTIONS(3537), + [anon_sym_on] = ACTIONS(3537), + [anon_sym_equals] = ACTIONS(3537), + [anon_sym_let] = ACTIONS(3537), + [anon_sym_orderby] = ACTIONS(3537), + [anon_sym_ascending] = ACTIONS(3537), + [anon_sym_descending] = ACTIONS(3537), + [anon_sym_group] = ACTIONS(3537), + [anon_sym_by] = ACTIONS(3537), + [anon_sym_select] = ACTIONS(3537), + [anon_sym_stackalloc] = ACTIONS(3537), + [anon_sym_sizeof] = ACTIONS(3537), + [anon_sym_typeof] = ACTIONS(3537), + [anon_sym___makeref] = ACTIONS(3537), + [anon_sym___reftype] = ACTIONS(3537), + [anon_sym___refvalue] = ACTIONS(3537), + [sym_null_literal] = ACTIONS(3537), + [anon_sym_SQUOTE] = ACTIONS(3539), + [sym_integer_literal] = ACTIONS(3537), + [sym_real_literal] = ACTIONS(3539), + [anon_sym_DQUOTE] = ACTIONS(3539), + [sym_verbatim_string_literal] = ACTIONS(3539), + [aux_sym_preproc_if_token1] = ACTIONS(3539), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3539), + [sym_interpolation_verbatim_start] = ACTIONS(3539), + [sym_interpolation_raw_start] = ACTIONS(3539), + [sym_raw_string_start] = ACTIONS(3539), }, [2155] = { - [sym__name] = STATE(3454), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_ref_type] = STATE(2859), - [sym__scoped_base_type] = STATE(2857), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2155), [sym_preproc_endregion] = STATE(2155), [sym_preproc_line] = STATE(2155), @@ -386377,76 +395312,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2155), [sym_preproc_define] = STATE(2155), [sym_preproc_undef] = STATE(2155), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3804), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3802), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3802), - [anon_sym_into] = ACTIONS(3806), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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(3541), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym_alias] = ACTIONS(3541), + [anon_sym_SEMI] = ACTIONS(3543), + [anon_sym_global] = ACTIONS(3541), + [anon_sym_using] = ACTIONS(3541), + [anon_sym_unsafe] = ACTIONS(3541), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_LBRACK] = ACTIONS(3543), + [anon_sym_LPAREN] = ACTIONS(3543), + [anon_sym_return] = ACTIONS(3541), + [anon_sym_ref] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3543), + [anon_sym_delegate] = ACTIONS(3541), + [anon_sym_abstract] = ACTIONS(3541), + [anon_sym_async] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_file] = ACTIONS(3541), + [anon_sym_fixed] = ACTIONS(3541), + [anon_sym_internal] = ACTIONS(3541), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_override] = ACTIONS(3541), + [anon_sym_partial] = ACTIONS(3541), + [anon_sym_private] = ACTIONS(3541), + [anon_sym_protected] = ACTIONS(3541), + [anon_sym_public] = ACTIONS(3541), + [anon_sym_readonly] = ACTIONS(3541), + [anon_sym_required] = ACTIONS(3541), + [anon_sym_sealed] = ACTIONS(3541), + [anon_sym_virtual] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym_where] = ACTIONS(3541), + [anon_sym_notnull] = ACTIONS(3541), + [anon_sym_unmanaged] = ACTIONS(3541), + [anon_sym_checked] = ACTIONS(3541), + [anon_sym_BANG] = ACTIONS(3543), + [anon_sym_TILDE] = ACTIONS(3543), + [anon_sym_PLUS_PLUS] = ACTIONS(3543), + [anon_sym_DASH_DASH] = ACTIONS(3543), + [anon_sym_true] = ACTIONS(3541), + [anon_sym_false] = ACTIONS(3541), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3543), + [anon_sym_CARET] = ACTIONS(3543), + [anon_sym_AMP] = ACTIONS(3543), + [anon_sym_this] = ACTIONS(3541), + [anon_sym_scoped] = ACTIONS(3541), + [anon_sym_base] = ACTIONS(3541), + [anon_sym_var] = ACTIONS(3541), + [sym_predefined_type] = ACTIONS(3541), + [anon_sym_break] = ACTIONS(3541), + [anon_sym_unchecked] = ACTIONS(3541), + [anon_sym_continue] = ACTIONS(3541), + [anon_sym_do] = ACTIONS(3541), + [anon_sym_while] = ACTIONS(3541), + [anon_sym_for] = ACTIONS(3541), + [anon_sym_lock] = ACTIONS(3541), + [anon_sym_yield] = ACTIONS(3541), + [anon_sym_switch] = ACTIONS(3541), + [anon_sym_default] = ACTIONS(3541), + [anon_sym_throw] = ACTIONS(3541), + [anon_sym_try] = ACTIONS(3541), + [anon_sym_when] = ACTIONS(3541), + [anon_sym_await] = ACTIONS(3541), + [anon_sym_foreach] = ACTIONS(3541), + [anon_sym_goto] = ACTIONS(3541), + [anon_sym_if] = ACTIONS(3541), + [anon_sym_DOT_DOT] = ACTIONS(3543), + [anon_sym_from] = ACTIONS(3541), + [anon_sym_into] = ACTIONS(3541), + [anon_sym_join] = ACTIONS(3541), + [anon_sym_on] = ACTIONS(3541), + [anon_sym_equals] = ACTIONS(3541), + [anon_sym_let] = ACTIONS(3541), + [anon_sym_orderby] = ACTIONS(3541), + [anon_sym_ascending] = ACTIONS(3541), + [anon_sym_descending] = ACTIONS(3541), + [anon_sym_group] = ACTIONS(3541), + [anon_sym_by] = ACTIONS(3541), + [anon_sym_select] = ACTIONS(3541), + [anon_sym_stackalloc] = ACTIONS(3541), + [anon_sym_sizeof] = ACTIONS(3541), + [anon_sym_typeof] = ACTIONS(3541), + [anon_sym___makeref] = ACTIONS(3541), + [anon_sym___reftype] = ACTIONS(3541), + [anon_sym___refvalue] = ACTIONS(3541), + [sym_null_literal] = ACTIONS(3541), + [anon_sym_SQUOTE] = ACTIONS(3543), + [sym_integer_literal] = ACTIONS(3541), + [sym_real_literal] = ACTIONS(3543), + [anon_sym_DQUOTE] = ACTIONS(3543), + [sym_verbatim_string_literal] = ACTIONS(3543), + [aux_sym_preproc_if_token1] = ACTIONS(3543), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386457,12 +395416,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(3543), + [sym_interpolation_verbatim_start] = ACTIONS(3543), + [sym_interpolation_raw_start] = ACTIONS(3543), + [sym_raw_string_start] = ACTIONS(3543), }, [2156] = { - [sym__variable_designation] = STATE(3197), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2156), [sym_preproc_endregion] = STATE(2156), [sym_preproc_line] = STATE(2156), @@ -386472,101 +395431,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2156), [sym_preproc_define] = STATE(2156), [sym_preproc_undef] = STATE(2156), - [sym__identifier_token] = ACTIONS(3554), - [anon_sym_alias] = ACTIONS(3558), - [anon_sym_global] = ACTIONS(3558), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3558), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3558), - [anon_sym_unmanaged] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3558), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3558), - [sym_discard] = ACTIONS(3572), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_into] = ACTIONS(3558), - [anon_sym_join] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_equals] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_orderby] = ACTIONS(3558), - [anon_sym_ascending] = ACTIONS(3558), - [anon_sym_descending] = ACTIONS(3558), - [anon_sym_group] = ACTIONS(3558), - [anon_sym_by] = ACTIONS(3558), - [anon_sym_select] = ACTIONS(3558), - [anon_sym_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3545), + [anon_sym_extern] = ACTIONS(3545), + [anon_sym_alias] = ACTIONS(3545), + [anon_sym_SEMI] = ACTIONS(3547), + [anon_sym_global] = ACTIONS(3545), + [anon_sym_using] = ACTIONS(3545), + [anon_sym_unsafe] = ACTIONS(3545), + [anon_sym_static] = ACTIONS(3545), + [anon_sym_LBRACK] = ACTIONS(3547), + [anon_sym_LPAREN] = ACTIONS(3547), + [anon_sym_return] = ACTIONS(3545), + [anon_sym_ref] = ACTIONS(3545), + [anon_sym_LBRACE] = ACTIONS(3547), + [anon_sym_delegate] = ACTIONS(3545), + [anon_sym_abstract] = ACTIONS(3545), + [anon_sym_async] = ACTIONS(3545), + [anon_sym_const] = ACTIONS(3545), + [anon_sym_file] = ACTIONS(3545), + [anon_sym_fixed] = ACTIONS(3545), + [anon_sym_internal] = ACTIONS(3545), + [anon_sym_new] = ACTIONS(3545), + [anon_sym_override] = ACTIONS(3545), + [anon_sym_partial] = ACTIONS(3545), + [anon_sym_private] = ACTIONS(3545), + [anon_sym_protected] = ACTIONS(3545), + [anon_sym_public] = ACTIONS(3545), + [anon_sym_readonly] = ACTIONS(3545), + [anon_sym_required] = ACTIONS(3545), + [anon_sym_sealed] = ACTIONS(3545), + [anon_sym_virtual] = ACTIONS(3545), + [anon_sym_volatile] = ACTIONS(3545), + [anon_sym_where] = ACTIONS(3545), + [anon_sym_notnull] = ACTIONS(3545), + [anon_sym_unmanaged] = ACTIONS(3545), + [anon_sym_checked] = ACTIONS(3545), + [anon_sym_BANG] = ACTIONS(3547), + [anon_sym_TILDE] = ACTIONS(3547), + [anon_sym_PLUS_PLUS] = ACTIONS(3547), + [anon_sym_DASH_DASH] = ACTIONS(3547), + [anon_sym_true] = ACTIONS(3545), + [anon_sym_false] = ACTIONS(3545), + [anon_sym_PLUS] = ACTIONS(3545), + [anon_sym_DASH] = ACTIONS(3545), + [anon_sym_STAR] = ACTIONS(3547), + [anon_sym_CARET] = ACTIONS(3547), + [anon_sym_AMP] = ACTIONS(3547), + [anon_sym_this] = ACTIONS(3545), + [anon_sym_scoped] = ACTIONS(3545), + [anon_sym_base] = ACTIONS(3545), + [anon_sym_var] = ACTIONS(3545), + [sym_predefined_type] = ACTIONS(3545), + [anon_sym_break] = ACTIONS(3545), + [anon_sym_unchecked] = ACTIONS(3545), + [anon_sym_continue] = ACTIONS(3545), + [anon_sym_do] = ACTIONS(3545), + [anon_sym_while] = ACTIONS(3545), + [anon_sym_for] = ACTIONS(3545), + [anon_sym_lock] = ACTIONS(3545), + [anon_sym_yield] = ACTIONS(3545), + [anon_sym_switch] = ACTIONS(3545), + [anon_sym_default] = ACTIONS(3545), + [anon_sym_throw] = ACTIONS(3545), + [anon_sym_try] = ACTIONS(3545), + [anon_sym_when] = ACTIONS(3545), + [anon_sym_await] = ACTIONS(3545), + [anon_sym_foreach] = ACTIONS(3545), + [anon_sym_goto] = ACTIONS(3545), + [anon_sym_if] = ACTIONS(3545), + [anon_sym_DOT_DOT] = ACTIONS(3547), + [anon_sym_from] = ACTIONS(3545), + [anon_sym_into] = ACTIONS(3545), + [anon_sym_join] = ACTIONS(3545), + [anon_sym_on] = ACTIONS(3545), + [anon_sym_equals] = ACTIONS(3545), + [anon_sym_let] = ACTIONS(3545), + [anon_sym_orderby] = ACTIONS(3545), + [anon_sym_ascending] = ACTIONS(3545), + [anon_sym_descending] = ACTIONS(3545), + [anon_sym_group] = ACTIONS(3545), + [anon_sym_by] = ACTIONS(3545), + [anon_sym_select] = ACTIONS(3545), + [anon_sym_stackalloc] = ACTIONS(3545), + [anon_sym_sizeof] = ACTIONS(3545), + [anon_sym_typeof] = ACTIONS(3545), + [anon_sym___makeref] = ACTIONS(3545), + [anon_sym___reftype] = ACTIONS(3545), + [anon_sym___refvalue] = ACTIONS(3545), + [sym_null_literal] = ACTIONS(3545), + [anon_sym_SQUOTE] = ACTIONS(3547), + [sym_integer_literal] = ACTIONS(3545), + [sym_real_literal] = ACTIONS(3547), + [anon_sym_DQUOTE] = ACTIONS(3547), + [sym_verbatim_string_literal] = ACTIONS(3547), + [aux_sym_preproc_if_token1] = ACTIONS(3547), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3547), + [sym_interpolation_verbatim_start] = ACTIONS(3547), + [sym_interpolation_raw_start] = ACTIONS(3547), + [sym_raw_string_start] = ACTIONS(3547), }, [2157] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2157), [sym_preproc_endregion] = STATE(2157), [sym_preproc_line] = STATE(2157), @@ -386576,175 +395550,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2157), [sym_preproc_define] = STATE(2157), [sym_preproc_undef] = STATE(2157), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_in] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_if_token3] = ACTIONS(3813), - [aux_sym_preproc_else_token1] = ACTIONS(3813), - [aux_sym_preproc_elif_token1] = ACTIONS(3813), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2158] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), - [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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_in] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), - [aux_sym_preproc_if_token3] = ACTIONS(3823), - [aux_sym_preproc_else_token1] = ACTIONS(3823), - [aux_sym_preproc_elif_token1] = ACTIONS(3823), + [sym__identifier_token] = ACTIONS(3549), + [anon_sym_extern] = ACTIONS(3549), + [anon_sym_alias] = ACTIONS(3549), + [anon_sym_SEMI] = ACTIONS(3551), + [anon_sym_global] = ACTIONS(3549), + [anon_sym_using] = ACTIONS(3549), + [anon_sym_unsafe] = ACTIONS(3549), + [anon_sym_static] = ACTIONS(3549), + [anon_sym_LBRACK] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3551), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_ref] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(3551), + [anon_sym_delegate] = ACTIONS(3549), + [anon_sym_abstract] = ACTIONS(3549), + [anon_sym_async] = ACTIONS(3549), + [anon_sym_const] = ACTIONS(3549), + [anon_sym_file] = ACTIONS(3549), + [anon_sym_fixed] = ACTIONS(3549), + [anon_sym_internal] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_override] = ACTIONS(3549), + [anon_sym_partial] = ACTIONS(3549), + [anon_sym_private] = ACTIONS(3549), + [anon_sym_protected] = ACTIONS(3549), + [anon_sym_public] = ACTIONS(3549), + [anon_sym_readonly] = ACTIONS(3549), + [anon_sym_required] = ACTIONS(3549), + [anon_sym_sealed] = ACTIONS(3549), + [anon_sym_virtual] = ACTIONS(3549), + [anon_sym_volatile] = ACTIONS(3549), + [anon_sym_where] = ACTIONS(3549), + [anon_sym_notnull] = ACTIONS(3549), + [anon_sym_unmanaged] = ACTIONS(3549), + [anon_sym_checked] = ACTIONS(3549), + [anon_sym_BANG] = ACTIONS(3551), + [anon_sym_TILDE] = ACTIONS(3551), + [anon_sym_PLUS_PLUS] = ACTIONS(3551), + [anon_sym_DASH_DASH] = ACTIONS(3551), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(3551), + [anon_sym_CARET] = ACTIONS(3551), + [anon_sym_AMP] = ACTIONS(3551), + [anon_sym_this] = ACTIONS(3549), + [anon_sym_scoped] = ACTIONS(3549), + [anon_sym_base] = ACTIONS(3549), + [anon_sym_var] = ACTIONS(3549), + [sym_predefined_type] = ACTIONS(3549), + [anon_sym_break] = ACTIONS(3549), + [anon_sym_unchecked] = ACTIONS(3549), + [anon_sym_continue] = ACTIONS(3549), + [anon_sym_do] = ACTIONS(3549), + [anon_sym_while] = ACTIONS(3549), + [anon_sym_for] = ACTIONS(3549), + [anon_sym_lock] = ACTIONS(3549), + [anon_sym_yield] = ACTIONS(3549), + [anon_sym_switch] = ACTIONS(3549), + [anon_sym_default] = ACTIONS(3549), + [anon_sym_throw] = ACTIONS(3549), + [anon_sym_try] = ACTIONS(3549), + [anon_sym_when] = ACTIONS(3549), + [anon_sym_await] = ACTIONS(3549), + [anon_sym_foreach] = ACTIONS(3549), + [anon_sym_goto] = ACTIONS(3549), + [anon_sym_if] = ACTIONS(3549), + [anon_sym_DOT_DOT] = ACTIONS(3551), + [anon_sym_from] = ACTIONS(3549), + [anon_sym_into] = ACTIONS(3549), + [anon_sym_join] = ACTIONS(3549), + [anon_sym_on] = ACTIONS(3549), + [anon_sym_equals] = ACTIONS(3549), + [anon_sym_let] = ACTIONS(3549), + [anon_sym_orderby] = ACTIONS(3549), + [anon_sym_ascending] = ACTIONS(3549), + [anon_sym_descending] = ACTIONS(3549), + [anon_sym_group] = ACTIONS(3549), + [anon_sym_by] = ACTIONS(3549), + [anon_sym_select] = ACTIONS(3549), + [anon_sym_stackalloc] = ACTIONS(3549), + [anon_sym_sizeof] = ACTIONS(3549), + [anon_sym_typeof] = ACTIONS(3549), + [anon_sym___makeref] = ACTIONS(3549), + [anon_sym___reftype] = ACTIONS(3549), + [anon_sym___refvalue] = ACTIONS(3549), + [sym_null_literal] = ACTIONS(3549), + [anon_sym_SQUOTE] = ACTIONS(3551), + [sym_integer_literal] = ACTIONS(3549), + [sym_real_literal] = ACTIONS(3551), + [anon_sym_DQUOTE] = ACTIONS(3551), + [sym_verbatim_string_literal] = ACTIONS(3551), + [aux_sym_preproc_if_token1] = ACTIONS(3551), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -386755,6 +395654,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3551), + [sym_interpolation_verbatim_start] = ACTIONS(3551), + [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), + [sym__identifier_token] = ACTIONS(3553), + [anon_sym_extern] = ACTIONS(3553), + [anon_sym_alias] = ACTIONS(3553), + [anon_sym_SEMI] = ACTIONS(3555), + [anon_sym_global] = ACTIONS(3553), + [anon_sym_using] = ACTIONS(3553), + [anon_sym_unsafe] = ACTIONS(3553), + [anon_sym_static] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_LPAREN] = ACTIONS(3555), + [anon_sym_return] = ACTIONS(3553), + [anon_sym_ref] = ACTIONS(3553), + [anon_sym_LBRACE] = ACTIONS(3555), + [anon_sym_delegate] = ACTIONS(3553), + [anon_sym_abstract] = ACTIONS(3553), + [anon_sym_async] = ACTIONS(3553), + [anon_sym_const] = ACTIONS(3553), + [anon_sym_file] = ACTIONS(3553), + [anon_sym_fixed] = ACTIONS(3553), + [anon_sym_internal] = ACTIONS(3553), + [anon_sym_new] = ACTIONS(3553), + [anon_sym_override] = ACTIONS(3553), + [anon_sym_partial] = ACTIONS(3553), + [anon_sym_private] = ACTIONS(3553), + [anon_sym_protected] = ACTIONS(3553), + [anon_sym_public] = ACTIONS(3553), + [anon_sym_readonly] = ACTIONS(3553), + [anon_sym_required] = ACTIONS(3553), + [anon_sym_sealed] = ACTIONS(3553), + [anon_sym_virtual] = ACTIONS(3553), + [anon_sym_volatile] = ACTIONS(3553), + [anon_sym_where] = ACTIONS(3553), + [anon_sym_notnull] = ACTIONS(3553), + [anon_sym_unmanaged] = ACTIONS(3553), + [anon_sym_checked] = ACTIONS(3553), + [anon_sym_BANG] = ACTIONS(3555), + [anon_sym_TILDE] = ACTIONS(3555), + [anon_sym_PLUS_PLUS] = ACTIONS(3555), + [anon_sym_DASH_DASH] = ACTIONS(3555), + [anon_sym_true] = ACTIONS(3553), + [anon_sym_false] = ACTIONS(3553), + [anon_sym_PLUS] = ACTIONS(3553), + [anon_sym_DASH] = ACTIONS(3553), + [anon_sym_STAR] = ACTIONS(3555), + [anon_sym_CARET] = ACTIONS(3555), + [anon_sym_AMP] = ACTIONS(3555), + [anon_sym_this] = ACTIONS(3553), + [anon_sym_scoped] = ACTIONS(3553), + [anon_sym_base] = ACTIONS(3553), + [anon_sym_var] = ACTIONS(3553), + [sym_predefined_type] = ACTIONS(3553), + [anon_sym_break] = ACTIONS(3553), + [anon_sym_unchecked] = ACTIONS(3553), + [anon_sym_continue] = ACTIONS(3553), + [anon_sym_do] = ACTIONS(3553), + [anon_sym_while] = ACTIONS(3553), + [anon_sym_for] = ACTIONS(3553), + [anon_sym_lock] = ACTIONS(3553), + [anon_sym_yield] = ACTIONS(3553), + [anon_sym_switch] = ACTIONS(3553), + [anon_sym_default] = ACTIONS(3553), + [anon_sym_throw] = ACTIONS(3553), + [anon_sym_try] = ACTIONS(3553), + [anon_sym_when] = ACTIONS(3553), + [anon_sym_await] = ACTIONS(3553), + [anon_sym_foreach] = ACTIONS(3553), + [anon_sym_goto] = ACTIONS(3553), + [anon_sym_if] = ACTIONS(3553), + [anon_sym_DOT_DOT] = ACTIONS(3555), + [anon_sym_from] = ACTIONS(3553), + [anon_sym_into] = ACTIONS(3553), + [anon_sym_join] = ACTIONS(3553), + [anon_sym_on] = ACTIONS(3553), + [anon_sym_equals] = ACTIONS(3553), + [anon_sym_let] = ACTIONS(3553), + [anon_sym_orderby] = ACTIONS(3553), + [anon_sym_ascending] = ACTIONS(3553), + [anon_sym_descending] = ACTIONS(3553), + [anon_sym_group] = ACTIONS(3553), + [anon_sym_by] = ACTIONS(3553), + [anon_sym_select] = ACTIONS(3553), + [anon_sym_stackalloc] = ACTIONS(3553), + [anon_sym_sizeof] = ACTIONS(3553), + [anon_sym_typeof] = ACTIONS(3553), + [anon_sym___makeref] = ACTIONS(3553), + [anon_sym___reftype] = ACTIONS(3553), + [anon_sym___refvalue] = ACTIONS(3553), + [sym_null_literal] = ACTIONS(3553), + [anon_sym_SQUOTE] = ACTIONS(3555), + [sym_integer_literal] = ACTIONS(3553), + [sym_real_literal] = ACTIONS(3555), + [anon_sym_DQUOTE] = ACTIONS(3555), + [sym_verbatim_string_literal] = ACTIONS(3555), + [aux_sym_preproc_if_token1] = ACTIONS(3555), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3555), + [sym_interpolation_verbatim_start] = ACTIONS(3555), + [sym_interpolation_raw_start] = ACTIONS(3555), + [sym_raw_string_start] = ACTIONS(3555), }, [2159] = { [sym_preproc_region] = STATE(2159), @@ -386766,94 +395788,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2159), [sym_preproc_define] = STATE(2159), [sym_preproc_undef] = STATE(2159), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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__identifier_token] = ACTIONS(3557), + [anon_sym_extern] = ACTIONS(3557), + [anon_sym_alias] = ACTIONS(3557), + [anon_sym_SEMI] = ACTIONS(3559), + [anon_sym_global] = ACTIONS(3557), + [anon_sym_using] = ACTIONS(3557), + [anon_sym_unsafe] = ACTIONS(3557), + [anon_sym_static] = ACTIONS(3557), + [anon_sym_LBRACK] = ACTIONS(3559), + [anon_sym_LPAREN] = ACTIONS(3559), + [anon_sym_return] = ACTIONS(3557), + [anon_sym_ref] = ACTIONS(3557), + [anon_sym_LBRACE] = ACTIONS(3559), + [anon_sym_delegate] = ACTIONS(3557), + [anon_sym_abstract] = ACTIONS(3557), + [anon_sym_async] = ACTIONS(3557), + [anon_sym_const] = ACTIONS(3557), + [anon_sym_file] = ACTIONS(3557), + [anon_sym_fixed] = ACTIONS(3557), + [anon_sym_internal] = ACTIONS(3557), + [anon_sym_new] = ACTIONS(3557), + [anon_sym_override] = ACTIONS(3557), + [anon_sym_partial] = ACTIONS(3557), + [anon_sym_private] = ACTIONS(3557), + [anon_sym_protected] = ACTIONS(3557), + [anon_sym_public] = ACTIONS(3557), + [anon_sym_readonly] = ACTIONS(3557), + [anon_sym_required] = ACTIONS(3557), + [anon_sym_sealed] = ACTIONS(3557), + [anon_sym_virtual] = ACTIONS(3557), + [anon_sym_volatile] = ACTIONS(3557), + [anon_sym_where] = ACTIONS(3557), + [anon_sym_notnull] = ACTIONS(3557), + [anon_sym_unmanaged] = ACTIONS(3557), + [anon_sym_checked] = ACTIONS(3557), + [anon_sym_BANG] = ACTIONS(3559), + [anon_sym_TILDE] = ACTIONS(3559), + [anon_sym_PLUS_PLUS] = ACTIONS(3559), + [anon_sym_DASH_DASH] = ACTIONS(3559), + [anon_sym_true] = ACTIONS(3557), + [anon_sym_false] = ACTIONS(3557), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_DASH] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_CARET] = ACTIONS(3559), + [anon_sym_AMP] = ACTIONS(3559), + [anon_sym_this] = ACTIONS(3557), + [anon_sym_scoped] = ACTIONS(3557), + [anon_sym_base] = ACTIONS(3557), + [anon_sym_var] = ACTIONS(3557), + [sym_predefined_type] = ACTIONS(3557), + [anon_sym_break] = ACTIONS(3557), + [anon_sym_unchecked] = ACTIONS(3557), + [anon_sym_continue] = ACTIONS(3557), + [anon_sym_do] = ACTIONS(3557), + [anon_sym_while] = ACTIONS(3557), + [anon_sym_for] = ACTIONS(3557), + [anon_sym_lock] = ACTIONS(3557), + [anon_sym_yield] = ACTIONS(3557), + [anon_sym_switch] = ACTIONS(3557), + [anon_sym_default] = ACTIONS(3557), + [anon_sym_throw] = ACTIONS(3557), + [anon_sym_try] = ACTIONS(3557), + [anon_sym_when] = ACTIONS(3557), + [anon_sym_await] = ACTIONS(3557), + [anon_sym_foreach] = ACTIONS(3557), + [anon_sym_goto] = ACTIONS(3557), + [anon_sym_if] = ACTIONS(3557), + [anon_sym_DOT_DOT] = ACTIONS(3559), + [anon_sym_from] = ACTIONS(3557), + [anon_sym_into] = ACTIONS(3557), + [anon_sym_join] = ACTIONS(3557), + [anon_sym_on] = ACTIONS(3557), + [anon_sym_equals] = ACTIONS(3557), + [anon_sym_let] = ACTIONS(3557), + [anon_sym_orderby] = ACTIONS(3557), + [anon_sym_ascending] = ACTIONS(3557), + [anon_sym_descending] = ACTIONS(3557), + [anon_sym_group] = ACTIONS(3557), + [anon_sym_by] = ACTIONS(3557), + [anon_sym_select] = ACTIONS(3557), + [anon_sym_stackalloc] = ACTIONS(3557), + [anon_sym_sizeof] = ACTIONS(3557), + [anon_sym_typeof] = ACTIONS(3557), + [anon_sym___makeref] = ACTIONS(3557), + [anon_sym___reftype] = ACTIONS(3557), + [anon_sym___refvalue] = ACTIONS(3557), + [sym_null_literal] = ACTIONS(3557), + [anon_sym_SQUOTE] = ACTIONS(3559), + [sym_integer_literal] = ACTIONS(3557), + [sym_real_literal] = ACTIONS(3559), + [anon_sym_DQUOTE] = ACTIONS(3559), + [sym_verbatim_string_literal] = ACTIONS(3559), + [aux_sym_preproc_if_token1] = ACTIONS(3559), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3559), + [sym_interpolation_verbatim_start] = ACTIONS(3559), + [sym_interpolation_raw_start] = ACTIONS(3559), + [sym_raw_string_start] = ACTIONS(3559), }, [2160] = { [sym_preproc_region] = STATE(2160), @@ -386865,94 +395907,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2160), [sym_preproc_define] = STATE(2160), [sym_preproc_undef] = STATE(2160), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_RBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3665), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(3561), + [anon_sym_extern] = ACTIONS(3561), + [anon_sym_alias] = ACTIONS(3561), + [anon_sym_SEMI] = ACTIONS(3563), + [anon_sym_global] = ACTIONS(3561), + [anon_sym_using] = ACTIONS(3561), + [anon_sym_unsafe] = ACTIONS(3561), + [anon_sym_static] = ACTIONS(3561), + [anon_sym_LBRACK] = ACTIONS(3563), + [anon_sym_LPAREN] = ACTIONS(3563), + [anon_sym_return] = ACTIONS(3561), + [anon_sym_ref] = ACTIONS(3561), + [anon_sym_LBRACE] = ACTIONS(3563), + [anon_sym_delegate] = ACTIONS(3561), + [anon_sym_abstract] = ACTIONS(3561), + [anon_sym_async] = ACTIONS(3561), + [anon_sym_const] = ACTIONS(3561), + [anon_sym_file] = ACTIONS(3561), + [anon_sym_fixed] = ACTIONS(3561), + [anon_sym_internal] = ACTIONS(3561), + [anon_sym_new] = ACTIONS(3561), + [anon_sym_override] = ACTIONS(3561), + [anon_sym_partial] = ACTIONS(3561), + [anon_sym_private] = ACTIONS(3561), + [anon_sym_protected] = ACTIONS(3561), + [anon_sym_public] = ACTIONS(3561), + [anon_sym_readonly] = ACTIONS(3561), + [anon_sym_required] = ACTIONS(3561), + [anon_sym_sealed] = ACTIONS(3561), + [anon_sym_virtual] = ACTIONS(3561), + [anon_sym_volatile] = ACTIONS(3561), + [anon_sym_where] = ACTIONS(3561), + [anon_sym_notnull] = ACTIONS(3561), + [anon_sym_unmanaged] = ACTIONS(3561), + [anon_sym_checked] = ACTIONS(3561), + [anon_sym_BANG] = ACTIONS(3563), + [anon_sym_TILDE] = ACTIONS(3563), + [anon_sym_PLUS_PLUS] = ACTIONS(3563), + [anon_sym_DASH_DASH] = ACTIONS(3563), + [anon_sym_true] = ACTIONS(3561), + [anon_sym_false] = ACTIONS(3561), + [anon_sym_PLUS] = ACTIONS(3561), + [anon_sym_DASH] = ACTIONS(3561), + [anon_sym_STAR] = ACTIONS(3563), + [anon_sym_CARET] = ACTIONS(3563), + [anon_sym_AMP] = ACTIONS(3563), + [anon_sym_this] = ACTIONS(3561), + [anon_sym_scoped] = ACTIONS(3561), + [anon_sym_base] = ACTIONS(3561), + [anon_sym_var] = ACTIONS(3561), + [sym_predefined_type] = ACTIONS(3561), + [anon_sym_break] = ACTIONS(3561), + [anon_sym_unchecked] = ACTIONS(3561), + [anon_sym_continue] = ACTIONS(3561), + [anon_sym_do] = ACTIONS(3561), + [anon_sym_while] = ACTIONS(3561), + [anon_sym_for] = ACTIONS(3561), + [anon_sym_lock] = ACTIONS(3561), + [anon_sym_yield] = ACTIONS(3561), + [anon_sym_switch] = ACTIONS(3561), + [anon_sym_default] = ACTIONS(3561), + [anon_sym_throw] = ACTIONS(3561), + [anon_sym_try] = ACTIONS(3561), + [anon_sym_when] = ACTIONS(3561), + [anon_sym_await] = ACTIONS(3561), + [anon_sym_foreach] = ACTIONS(3561), + [anon_sym_goto] = ACTIONS(3561), + [anon_sym_if] = ACTIONS(3561), + [anon_sym_DOT_DOT] = ACTIONS(3563), + [anon_sym_from] = ACTIONS(3561), + [anon_sym_into] = ACTIONS(3561), + [anon_sym_join] = ACTIONS(3561), + [anon_sym_on] = ACTIONS(3561), + [anon_sym_equals] = ACTIONS(3561), + [anon_sym_let] = ACTIONS(3561), + [anon_sym_orderby] = ACTIONS(3561), + [anon_sym_ascending] = ACTIONS(3561), + [anon_sym_descending] = ACTIONS(3561), + [anon_sym_group] = ACTIONS(3561), + [anon_sym_by] = ACTIONS(3561), + [anon_sym_select] = ACTIONS(3561), + [anon_sym_stackalloc] = ACTIONS(3561), + [anon_sym_sizeof] = ACTIONS(3561), + [anon_sym_typeof] = ACTIONS(3561), + [anon_sym___makeref] = ACTIONS(3561), + [anon_sym___reftype] = ACTIONS(3561), + [anon_sym___refvalue] = ACTIONS(3561), + [sym_null_literal] = ACTIONS(3561), + [anon_sym_SQUOTE] = ACTIONS(3563), + [sym_integer_literal] = ACTIONS(3561), + [sym_real_literal] = ACTIONS(3563), + [anon_sym_DQUOTE] = ACTIONS(3563), + [sym_verbatim_string_literal] = ACTIONS(3563), + [aux_sym_preproc_if_token1] = ACTIONS(3563), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3563), + [sym_interpolation_verbatim_start] = ACTIONS(3563), + [sym_interpolation_raw_start] = ACTIONS(3563), + [sym_raw_string_start] = ACTIONS(3563), }, [2161] = { [sym_preproc_region] = STATE(2161), @@ -386964,83 +396026,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2161), [sym_preproc_define] = STATE(2161), [sym_preproc_undef] = STATE(2161), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -387051,7 +396130,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(3393), + [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), @@ -387063,105 +396145,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2162), [sym_preproc_define] = STATE(2162), [sym_preproc_undef] = STATE(2162), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3638), - [anon_sym_RBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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__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_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_where] = ACTIONS(3569), + [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_scoped] = ACTIONS(3569), + [anon_sym_base] = ACTIONS(3569), + [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), + [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_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), + [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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__name] = STATE(3014), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2163), [sym_preproc_endregion] = STATE(2163), [sym_preproc_line] = STATE(2163), @@ -387171,85 +396264,114 @@ 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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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__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), }, [2164] = { [sym_preproc_region] = STATE(2164), @@ -387261,96 +396383,125 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_RBRACK] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3633), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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__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), }, [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_preproc_region] = STATE(2165), [sym_preproc_endregion] = STATE(2165), [sym_preproc_line] = STATE(2165), @@ -387360,96 +396511,112 @@ 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(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3598), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2166), [sym_preproc_endregion] = STATE(2166), [sym_preproc_line] = STATE(2166), @@ -387459,83 +396626,91 @@ 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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387546,17 +396721,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(3562), }, [2167] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), + [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(2167), [sym_preproc_endregion] = STATE(2167), [sym_preproc_line] = STATE(2167), @@ -387566,76 +396741,90 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_in] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_if_token3] = ACTIONS(3813), - [aux_sym_preproc_else_token1] = ACTIONS(3813), - [aux_sym_preproc_elif_token1] = ACTIONS(3813), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387648,14 +396837,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2168] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -387665,75 +396855,87 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_if_token3] = ACTIONS(3813), - [aux_sym_preproc_else_token1] = ACTIONS(3813), - [aux_sym_preproc_elif_token1] = ACTIONS(3813), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387746,14 +396948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2169] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -387763,75 +396961,91 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_RBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_RPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), - [aux_sym_preproc_if_token3] = ACTIONS(3823), - [aux_sym_preproc_else_token1] = ACTIONS(3823), - [aux_sym_preproc_elif_token1] = ACTIONS(3823), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387844,28 +397058,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2170] = { - [sym_attribute_list] = STATE(3007), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5731), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -387875,61 +397076,86 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2847), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym__lambda_expression_init_repeat1] = STATE(3288), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3835), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -387942,6 +397168,10 @@ 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), @@ -387951,83 +397181,90 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388040,7 +397277,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2172] = { - [sym_type_argument_list] = STATE(2114), + [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(2172), [sym_preproc_endregion] = STATE(2172), [sym_preproc_line] = STATE(2172), @@ -388051,81 +397296,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2172), [sym_preproc_undef] = STATE(2172), [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3837), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388138,6 +397386,15 @@ 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_preproc_region] = STATE(2173), [sym_preproc_endregion] = STATE(2173), [sym_preproc_line] = STATE(2173), @@ -388147,83 +397404,84 @@ 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(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), + [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), @@ -388234,6 +397492,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(3445), }, [2174] = { [sym_preproc_region] = STATE(2174), @@ -388245,83 +397504,93 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388334,14 +397603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2175] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2175), [sym_preproc_endregion] = STATE(2175), [sym_preproc_line] = STATE(2175), @@ -388351,75 +397612,93 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3813), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_RPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3813), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_if_token3] = ACTIONS(3813), - [aux_sym_preproc_else_token1] = ACTIONS(3813), - [aux_sym_preproc_elif_token1] = ACTIONS(3813), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388432,28 +397711,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2176] = { - [sym_attribute_list] = STATE(3007), - [sym_modifier] = STATE(3047), - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5731), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -388463,61 +397729,82 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2847), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2340), - [aux_sym__lambda_expression_init_repeat1] = STATE(3288), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3839), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(39), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388528,6 +397815,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(3445), }, [2177] = { [sym_preproc_region] = STATE(2177), @@ -388539,83 +397827,92 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3843), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -388628,7 +397925,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2178] = { - [sym_type_argument_list] = STATE(2189), + [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_preproc_region] = STATE(2178), [sym_preproc_endregion] = STATE(2178), [sym_preproc_line] = STATE(2178), @@ -388639,94 +397944,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2178), [sym_preproc_undef] = STATE(2178), [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3745), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2179] = { - [sym_type_argument_list] = STATE(2189), + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2179), [sym_preproc_endregion] = STATE(2179), [sym_preproc_line] = STATE(2179), @@ -388736,92 +398042,101 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3745), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2180] = { [sym_preproc_region] = STATE(2180), @@ -388833,92 +398148,102 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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(3633), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2181] = { [sym_preproc_region] = STATE(2181), @@ -388930,82 +398255,92 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -389027,92 +398362,102 @@ 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(3610), - [anon_sym_alias] = ACTIONS(3610), - [anon_sym_global] = ACTIONS(3610), - [anon_sym_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_notnull] = ACTIONS(3610), - [anon_sym_unmanaged] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_scoped] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_when] = ACTIONS(3610), - [sym_discard] = ACTIONS(3610), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3610), - [anon_sym_join] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_equals] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_orderby] = ACTIONS(3610), - [anon_sym_ascending] = ACTIONS(3610), - [anon_sym_descending] = ACTIONS(3610), - [anon_sym_group] = ACTIONS(3610), - [anon_sym_by] = ACTIONS(3610), - [anon_sym_select] = ACTIONS(3610), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3612), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2183] = { [sym_preproc_region] = STATE(2183), @@ -389124,94 +398469,105 @@ 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(3606), - [anon_sym_alias] = ACTIONS(3606), - [anon_sym_global] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_notnull] = ACTIONS(3606), - [anon_sym_unmanaged] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_scoped] = ACTIONS(3606), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_when] = ACTIONS(3606), - [sym_discard] = ACTIONS(3606), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3606), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3606), - [anon_sym_join] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_equals] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_orderby] = ACTIONS(3606), - [anon_sym_ascending] = ACTIONS(3606), - [anon_sym_descending] = ACTIONS(3606), - [anon_sym_group] = ACTIONS(3606), - [anon_sym_by] = ACTIONS(3606), - [anon_sym_select] = ACTIONS(3606), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3608), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -389221,82 +398577,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_RPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -389318,81 +398682,91 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -389403,10 +398777,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(3393), }, [2186] = { - [sym_type_argument_list] = STATE(2114), + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2186), [sym_preproc_endregion] = STATE(2186), [sym_preproc_line] = STATE(2186), @@ -389416,81 +398789,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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3629), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -389512,92 +398894,100 @@ 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(3621), - [anon_sym_alias] = ACTIONS(3621), - [anon_sym_global] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_file] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_notnull] = ACTIONS(3621), - [anon_sym_unmanaged] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_scoped] = ACTIONS(3621), - [anon_sym_var] = ACTIONS(3621), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3621), - [anon_sym_when] = ACTIONS(3621), - [sym_discard] = ACTIONS(3621), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3621), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_from] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3621), - [anon_sym_join] = ACTIONS(3621), - [anon_sym_on] = ACTIONS(3621), - [anon_sym_equals] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_orderby] = ACTIONS(3621), - [anon_sym_ascending] = ACTIONS(3621), - [anon_sym_descending] = ACTIONS(3621), - [anon_sym_group] = ACTIONS(3621), - [anon_sym_by] = ACTIONS(3621), - [anon_sym_select] = ACTIONS(3621), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_is] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3623), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2188] = { [sym_preproc_region] = STATE(2188), @@ -389609,92 +398999,100 @@ 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(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3598), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2189] = { [sym_preproc_region] = STATE(2189), @@ -389706,95 +399104,102 @@ 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(3625), - [anon_sym_alias] = ACTIONS(3625), - [anon_sym_global] = ACTIONS(3625), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_file] = ACTIONS(3625), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_notnull] = ACTIONS(3625), - [anon_sym_unmanaged] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_scoped] = ACTIONS(3625), - [anon_sym_var] = ACTIONS(3625), - [anon_sym_yield] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_when] = ACTIONS(3625), - [sym_discard] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3625), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_from] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3625), - [anon_sym_join] = ACTIONS(3625), - [anon_sym_on] = ACTIONS(3625), - [anon_sym_equals] = ACTIONS(3625), - [anon_sym_let] = ACTIONS(3625), - [anon_sym_orderby] = ACTIONS(3625), - [anon_sym_ascending] = ACTIONS(3625), - [anon_sym_descending] = ACTIONS(3625), - [anon_sym_group] = ACTIONS(3625), - [anon_sym_by] = ACTIONS(3625), - [anon_sym_select] = ACTIONS(3625), - [anon_sym_as] = ACTIONS(3625), - [anon_sym_is] = ACTIONS(3625), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3625), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3627), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2190] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2190), [sym_preproc_endregion] = STATE(2190), [sym_preproc_line] = STATE(2190), @@ -389804,81 +399209,90 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), @@ -389900,94 +399314,106 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3670), - [anon_sym_GT] = ACTIONS(3670), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_PLUS_PLUS] = ACTIONS(3667), - [anon_sym_DASH_DASH] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3670), - [anon_sym_PERCENT] = ACTIONS(3670), - [anon_sym_CARET] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3670), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_LT_LT] = ACTIONS(3670), - [anon_sym_GT_GT] = ACTIONS(3670), - [anon_sym_GT_GT_GT] = ACTIONS(3670), - [anon_sym_EQ_EQ] = ACTIONS(3667), - [anon_sym_BANG_EQ] = ACTIONS(3667), - [anon_sym_GT_EQ] = ACTIONS(3667), - [anon_sym_LT_EQ] = ACTIONS(3667), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3667), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3667), - [anon_sym_PIPE_PIPE] = ACTIONS(3667), - [anon_sym_QMARK_QMARK] = ACTIONS(3670), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3670), - [anon_sym_is] = ACTIONS(3670), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3670), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3642), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2192), [sym_preproc_endregion] = STATE(2192), [sym_preproc_line] = STATE(2192), @@ -389997,81 +399423,86 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390082,14 +399513,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(3655), }, [2193] = { - [sym_property_pattern_clause] = STATE(2238), - [sym__variable_designation] = STATE(3231), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2193), [sym_preproc_endregion] = STATE(2193), [sym_preproc_line] = STATE(2193), @@ -390099,77 +399524,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2193), [sym_preproc_define] = STATE(2193), [sym_preproc_undef] = STATE(2193), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3845), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_RBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_in] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_if_token3] = ACTIONS(3845), - [aux_sym_preproc_else_token1] = ACTIONS(3845), - [aux_sym_preproc_elif_token1] = ACTIONS(3845), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390191,81 +399629,90 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390276,14 +399723,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(3655), }, [2195] = { - [sym_property_pattern_clause] = STATE(2236), - [sym__variable_designation] = STATE(3204), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2195), [sym_preproc_endregion] = STATE(2195), [sym_preproc_line] = STATE(2195), @@ -390293,77 +399734,89 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3849), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_RBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_RPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_in] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_if_token3] = ACTIONS(3849), - [aux_sym_preproc_else_token1] = ACTIONS(3849), - [aux_sym_preproc_elif_token1] = ACTIONS(3849), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390385,82 +399838,88 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3853), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390482,82 +399941,88 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390570,6 +400035,29 @@ 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_preproc_region] = STATE(2198), [sym_preproc_endregion] = STATE(2198), [sym_preproc_line] = STATE(2198), @@ -390579,92 +400067,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2198), [sym_preproc_define] = STATE(2198), [sym_preproc_undef] = STATE(2198), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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(3633), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2199] = { [sym_preproc_region] = STATE(2199), @@ -390676,82 +400147,88 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -390764,6 +400241,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_preproc_region] = STATE(2200), [sym_preproc_endregion] = STATE(2200), [sym_preproc_line] = STATE(2200), @@ -390773,94 +400254,100 @@ 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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3393), + [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), }, [2201] = { + [sym__variable_designation] = STATE(3474), + [sym_parenthesized_variable_designation] = STATE(3463), + [sym_identifier] = STATE(3479), + [sym__reserved_identifier] = STATE(2571), [sym_preproc_region] = STATE(2201), [sym_preproc_endregion] = STATE(2201), [sym_preproc_line] = STATE(2201), @@ -390870,94 +400357,105 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2202), [sym_preproc_endregion] = STATE(2202), [sym_preproc_line] = STATE(2202), @@ -390967,81 +400465,78 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391052,10 +400547,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(3660), }, [2203] = { - [sym_type_argument_list] = STATE(2114), + [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(2203), [sym_preproc_endregion] = STATE(2203), [sym_preproc_line] = STATE(2203), @@ -391065,81 +400567,78 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3855), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391161,82 +400660,87 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3857), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3859), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391249,10 +400753,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2205] = { - [sym_parameter_list] = STATE(7383), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(7472), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2205), [sym_preproc_endregion] = STATE(2205), [sym_preproc_line] = STATE(2205), @@ -391262,77 +400762,87 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3861), - [anon_sym_SEMI] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_file] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3861), - [anon_sym_where] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_notnull] = ACTIONS(3861), - [anon_sym_unmanaged] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_scoped] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3861), - [anon_sym_yield] = ACTIONS(3861), - [anon_sym_switch] = ACTIONS(3861), - [anon_sym_when] = ACTIONS(3861), - [sym_discard] = ACTIONS(3861), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3861), - [anon_sym_into] = ACTIONS(3861), - [anon_sym_join] = ACTIONS(3861), - [anon_sym_on] = ACTIONS(3861), - [anon_sym_equals] = ACTIONS(3861), - [anon_sym_let] = ACTIONS(3861), - [anon_sym_orderby] = ACTIONS(3861), - [anon_sym_ascending] = ACTIONS(3861), - [anon_sym_descending] = ACTIONS(3861), - [anon_sym_group] = ACTIONS(3861), - [anon_sym_by] = ACTIONS(3861), - [anon_sym_select] = ACTIONS(3861), - [anon_sym_as] = ACTIONS(3861), - [anon_sym_is] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3861), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = ACTIONS(3863), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391345,6 +400855,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2206] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2206), [sym_preproc_endregion] = STATE(2206), [sym_preproc_line] = STATE(2206), @@ -391354,81 +400865,85 @@ 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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3565), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3565), - [anon_sym_CARET] = ACTIONS(3565), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3565), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3565), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3565), - [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_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391450,81 +400965,86 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3633), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3648), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391537,6 +401057,15 @@ 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_preproc_region] = STATE(2208), [sym_preproc_endregion] = STATE(2208), [sym_preproc_line] = STATE(2208), @@ -391546,81 +401075,77 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3655), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391633,6 +401158,30 @@ 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_preproc_region] = STATE(2209), [sym_preproc_endregion] = STATE(2209), [sym_preproc_line] = STATE(2209), @@ -391642,81 +401191,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2209), [sym_preproc_define] = STATE(2209), [sym_preproc_undef] = STATE(2209), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3633), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3648), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391729,6 +401259,10 @@ 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), @@ -391738,81 +401272,82 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3655), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391825,26 +401360,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2211] = { - [sym_modifier] = STATE(3047), - [sym_variable_declaration] = STATE(7168), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5189), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5551), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -391854,61 +401373,82 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(3752), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3758), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_implicit] = ACTIONS(3768), - [anon_sym_explicit] = ACTIONS(3768), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -391921,7 +401461,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2212] = { - [sym_type_argument_list] = STATE(2114), + [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), @@ -391931,80 +401494,62 @@ 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), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3865), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392017,15 +401562,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2213] = { - [sym__name] = STATE(2575), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2481), - [sym__reserved_identifier] = STATE(2286), + [sym__variable_designation] = STATE(3474), + [sym_parenthesized_variable_designation] = STATE(3463), + [sym_identifier] = STATE(3479), + [sym__reserved_identifier] = STATE(2571), [sym_preproc_region] = STATE(2213), [sym_preproc_endregion] = STATE(2213), [sym_preproc_line] = STATE(2213), @@ -392035,72 +401575,82 @@ 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(3538), - [anon_sym_alias] = ACTIONS(3541), - [anon_sym_global] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3541), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3541), - [anon_sym_unmanaged] = ACTIONS(3541), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3541), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3541), - [anon_sym_yield] = ACTIONS(3541), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3541), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(3541), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(3541), - [anon_sym_equals] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(3541), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392113,6 +401663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2214] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2214), [sym_preproc_endregion] = STATE(2214), [sym_preproc_line] = STATE(2214), @@ -392122,81 +401673,85 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3655), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3662), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392209,6 +401764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2215] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2215), [sym_preproc_endregion] = STATE(2215), [sym_preproc_line] = STATE(2215), @@ -392218,81 +401774,84 @@ 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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392305,7 +401864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2216] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2216), [sym_preproc_endregion] = STATE(2216), [sym_preproc_line] = STATE(2216), @@ -392315,80 +401873,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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3867), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392401,6 +401964,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_preproc_region] = STATE(2217), [sym_preproc_endregion] = STATE(2217), [sym_preproc_line] = STATE(2217), @@ -392410,81 +401977,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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3633), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3648), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392497,11 +402064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2218] = { - [sym_property_pattern_clause] = STATE(2257), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2218), [sym_preproc_endregion] = STATE(2218), [sym_preproc_line] = STATE(2218), @@ -392511,76 +402073,85 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3849), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_RBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_RPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_if_token3] = ACTIONS(3849), - [aux_sym_preproc_else_token1] = ACTIONS(3849), - [aux_sym_preproc_elif_token1] = ACTIONS(3849), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392593,11 +402164,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2219] = { - [sym_property_pattern_clause] = STATE(2272), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [sym__variable_designation] = STATE(4162), + [sym_parenthesized_variable_designation] = STATE(4173), + [sym_identifier] = STATE(4177), + [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(2219), [sym_preproc_endregion] = STATE(2219), [sym_preproc_line] = STATE(2219), @@ -392607,76 +402177,81 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3845), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_RBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_RBRACE] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_if_token3] = ACTIONS(3845), - [aux_sym_preproc_else_token1] = ACTIONS(3845), - [aux_sym_preproc_elif_token1] = ACTIONS(3845), + [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), @@ -392689,26 +402264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2220] = { - [sym_modifier] = STATE(3047), - [sym_variable_declaration] = STATE(7079), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5230), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5542), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -392718,61 +402277,81 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_event] = ACTIONS(3869), - [anon_sym_class] = ACTIONS(3871), - [anon_sym_ref] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_enum] = ACTIONS(3877), - [anon_sym_interface] = ACTIONS(3879), - [anon_sym_delegate] = ACTIONS(3881), - [anon_sym_record] = ACTIONS(3883), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_implicit] = ACTIONS(3885), - [anon_sym_explicit] = ACTIONS(3885), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392785,6 +402364,10 @@ 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_preproc_region] = STATE(2221), [sym_preproc_endregion] = STATE(2221), [sym_preproc_line] = STATE(2221), @@ -392794,80 +402377,81 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392880,6 +402464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2222] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2222), [sym_preproc_endregion] = STATE(2222), [sym_preproc_line] = STATE(2222), @@ -392889,80 +402474,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2222), [sym_preproc_define] = STATE(2222), [sym_preproc_undef] = STATE(2222), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3887), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3889), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -392975,6 +402564,10 @@ 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), @@ -392984,80 +402577,81 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393070,6 +402664,15 @@ 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), @@ -393079,79 +402682,76 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393162,7 +402762,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(3665), }, [2225] = { [sym_preproc_region] = STATE(2225), @@ -393174,80 +402773,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2225), [sym_preproc_define] = STATE(2225), [sym_preproc_undef] = STATE(2225), - [sym__identifier_token] = ACTIONS(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393260,6 +402864,7 @@ 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), @@ -393269,80 +402874,83 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), @@ -393353,6 +402961,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(3662), }, [2227] = { [sym_preproc_region] = STATE(2227), @@ -393364,101 +402973,97 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2228] = { - [sym__name] = STATE(2652), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2747), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2693), - [sym_ref_type] = STATE(2649), - [sym__scoped_base_type] = STATE(2743), - [sym_identifier] = STATE(2506), - [sym__reserved_identifier] = STATE(2551), [sym_preproc_region] = STATE(2228), [sym_preproc_endregion] = STATE(2228), [sym_preproc_line] = STATE(2228), @@ -393468,70 +403073,85 @@ 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(3586), - [anon_sym_alias] = ACTIONS(3589), - [anon_sym_global] = ACTIONS(3589), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3589), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3589), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3589), - [anon_sym_unmanaged] = ACTIONS(3589), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3589), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3589), - [anon_sym_yield] = ACTIONS(3589), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3589), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3589), - [anon_sym_into] = ACTIONS(3589), - [anon_sym_join] = ACTIONS(3589), - [anon_sym_on] = ACTIONS(3589), - [anon_sym_equals] = ACTIONS(3589), - [anon_sym_let] = ACTIONS(3589), - [anon_sym_orderby] = ACTIONS(3589), - [anon_sym_ascending] = ACTIONS(3589), - [anon_sym_descending] = ACTIONS(3589), - [anon_sym_group] = ACTIONS(3589), - [anon_sym_by] = ACTIONS(3589), - [anon_sym_select] = ACTIONS(3589), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393542,9 +403162,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(3393), }, [2229] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2229), [sym_preproc_endregion] = STATE(2229), [sym_preproc_line] = STATE(2229), @@ -393554,80 +403174,84 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), @@ -393649,80 +403273,84 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3648), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_orderby] = ACTIONS(3648), - [anon_sym_ascending] = ACTIONS(3648), - [anon_sym_descending] = ACTIONS(3648), - [anon_sym_group] = ACTIONS(3648), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3648), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393735,10 +403363,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2231] = { - [sym__variable_designation] = STATE(3206), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -393748,76 +403380,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2231), [sym_preproc_define] = STATE(2231), [sym_preproc_undef] = STATE(2231), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3849), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_RBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_RPAREN] = ACTIONS(3849), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_in] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_if_token3] = ACTIONS(3849), - [aux_sym_preproc_else_token1] = ACTIONS(3849), - [aux_sym_preproc_elif_token1] = ACTIONS(3849), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -393830,7 +403462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2232] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2232), [sym_preproc_endregion] = STATE(2232), [sym_preproc_line] = STATE(2232), @@ -393840,95 +403471,96 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3891), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), + [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__variable_designation] = STATE(3232), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2233), [sym_preproc_endregion] = STATE(2233), [sym_preproc_line] = STATE(2233), @@ -393938,76 +403570,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2233), [sym_preproc_define] = STATE(2233), [sym_preproc_undef] = STATE(2233), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3845), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_RBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_RBRACE] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_in] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_if_token3] = ACTIONS(3845), - [aux_sym_preproc_else_token1] = ACTIONS(3845), - [aux_sym_preproc_elif_token1] = ACTIONS(3845), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394029,80 +403669,84 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3648), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394115,6 +403759,15 @@ 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_preproc_region] = STATE(2235), [sym_preproc_endregion] = STATE(2235), [sym_preproc_line] = STATE(2235), @@ -394124,96 +403777,87 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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(3651), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2236] = { - [sym__variable_designation] = STATE(3237), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2236), [sym_preproc_endregion] = STATE(2236), [sym_preproc_line] = STATE(2236), @@ -394223,25 +403867,133 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2237), + [sym_preproc_endregion] = STATE(2237), + [sym_preproc_line] = STATE(2237), + [sym_preproc_pragma] = STATE(2237), + [sym_preproc_nullable] = STATE(2237), + [sym_preproc_error] = STATE(2237), + [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(3811), + [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(3811), + [anon_sym_file] = ACTIONS(3877), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), + [anon_sym_where] = ACTIONS(3877), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), + [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), @@ -394261,31 +404013,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(3811), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), + [anon_sym_scoped] = ACTIONS(3877), + [anon_sym_var] = ACTIONS(3877), + [anon_sym_yield] = ACTIONS(3877), [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), + [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(3811), + [anon_sym_from] = ACTIONS(3877), [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), + [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), @@ -394304,106 +404055,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2237] = { - [sym_preproc_region] = STATE(2237), - [sym_preproc_endregion] = STATE(2237), - [sym_preproc_line] = STATE(2237), - [sym_preproc_pragma] = STATE(2237), - [sym_preproc_nullable] = STATE(2237), - [sym_preproc_error] = STATE(2237), - [sym_preproc_warning] = STATE(2237), - [sym_preproc_define] = STATE(2237), - [sym_preproc_undef] = STATE(2237), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3648), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_orderby] = ACTIONS(3648), - [anon_sym_ascending] = ACTIONS(3648), - [anon_sym_descending] = ACTIONS(3648), - [anon_sym_group] = ACTIONS(3648), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3648), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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), - }, [2238] = { - [sym__variable_designation] = STATE(3247), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -394413,76 +404073,76 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3897), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_RBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_in] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3897), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_if_token3] = ACTIONS(3897), - [aux_sym_preproc_else_token1] = ACTIONS(3897), - [aux_sym_preproc_elif_token1] = ACTIONS(3897), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394504,80 +404164,83 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3901), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3903), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -394588,6 +404251,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(3445), }, [2240] = { [sym_preproc_region] = STATE(2240), @@ -394599,90 +404263,94 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2241] = { [sym_preproc_region] = STATE(2241), @@ -394694,80 +404362,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [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(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -394780,6 +404451,14 @@ 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_preproc_region] = STATE(2242), [sym_preproc_endregion] = STATE(2242), [sym_preproc_line] = STATE(2242), @@ -394789,92 +404468,88 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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(3651), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2243] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2243), [sym_preproc_endregion] = STATE(2243), [sym_preproc_line] = STATE(2243), @@ -394884,79 +404559,82 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), @@ -394978,79 +404656,83 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [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(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395072,79 +404754,83 @@ 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(3905), - [anon_sym_alias] = ACTIONS(3905), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_global] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_file] = ACTIONS(3905), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3905), - [anon_sym_unmanaged] = ACTIONS(3905), - [anon_sym_operator] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_this] = ACTIONS(3905), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3905), - [anon_sym_EQ_GT] = ACTIONS(3907), - [anon_sym_var] = ACTIONS(3905), - [anon_sym_yield] = ACTIONS(3905), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3905), - [sym_discard] = ACTIONS(3905), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(3905), - [anon_sym_equals] = ACTIONS(3905), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3905), - [anon_sym_descending] = ACTIONS(3905), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(3905), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3905), - [aux_sym_preproc_if_token3] = ACTIONS(3907), - [aux_sym_preproc_else_token1] = ACTIONS(3907), - [aux_sym_preproc_elif_token1] = ACTIONS(3907), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395157,6 +404843,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2246] = { + [sym_type_argument_list] = STATE(2270), [sym_preproc_region] = STATE(2246), [sym_preproc_endregion] = STATE(2246), [sym_preproc_line] = STATE(2246), @@ -395166,79 +404853,81 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3670), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), @@ -395249,6 +404938,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(3662), }, [2247] = { [sym_preproc_region] = STATE(2247), @@ -395260,79 +404950,83 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), @@ -395345,15 +405039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2248] = { - [sym__name] = STATE(4263), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_ref_type] = STATE(4262), - [sym__scoped_base_type] = STATE(4261), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), + [sym_type_argument_list] = STATE(2270), [sym_preproc_region] = STATE(2248), [sym_preproc_endregion] = STATE(2248), [sym_preproc_line] = STATE(2248), @@ -395363,69 +405049,81 @@ 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(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3911), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3911), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3911), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3911), - [anon_sym_into] = ACTIONS(3915), - [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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -395436,9 +405134,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(3393), + [sym_interpolation_close_brace] = ACTIONS(3662), }, [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_preproc_region] = STATE(2249), [sym_preproc_endregion] = STATE(2249), [sym_preproc_line] = STATE(2249), @@ -395448,79 +405154,75 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395533,6 +405235,14 @@ 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), @@ -395542,79 +405252,75 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -395627,10 +405333,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2251] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -395640,75 +405347,77 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3845), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_RBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_RPAREN] = ACTIONS(3845), - [anon_sym_RBRACE] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_if_token3] = ACTIONS(3845), - [aux_sym_preproc_else_token1] = ACTIONS(3845), - [aux_sym_preproc_elif_token1] = ACTIONS(3845), + [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), @@ -395721,7 +405430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2252] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2252), [sym_preproc_endregion] = STATE(2252), [sym_preproc_line] = STATE(2252), @@ -395731,78 +405439,81 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3918), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), @@ -395813,6 +405524,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(3701), }, [2253] = { [sym_preproc_region] = STATE(2253), @@ -395824,79 +405536,81 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3920), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = 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), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -395907,6 +405621,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(3445), }, [2254] = { [sym_preproc_region] = STATE(2254), @@ -395918,89 +405633,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [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__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), }, [2255] = { [sym_preproc_region] = STATE(2255), @@ -396012,79 +405730,81 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3648), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_orderby] = ACTIONS(3648), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3648), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3648), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), @@ -396095,6 +405815,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(3710), }, [2256] = { [sym_preproc_region] = STATE(2256), @@ -396106,79 +405827,81 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396189,12 +405912,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(3701), }, [2257] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2257), [sym_preproc_endregion] = STATE(2257), [sym_preproc_line] = STATE(2257), @@ -396204,75 +405924,82 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3893), - [anon_sym_global] = ACTIONS(3811), - [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(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [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(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396285,6 +406012,7 @@ 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), @@ -396294,79 +406022,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(3922), - [anon_sym_alias] = ACTIONS(3922), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_global] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_RBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_file] = ACTIONS(3922), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_in] = ACTIONS(3922), - [anon_sym_where] = ACTIONS(3922), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_notnull] = ACTIONS(3922), - [anon_sym_unmanaged] = ACTIONS(3922), - [anon_sym_operator] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_this] = ACTIONS(3922), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_scoped] = ACTIONS(3922), - [anon_sym_EQ_GT] = ACTIONS(3924), - [anon_sym_var] = ACTIONS(3922), - [anon_sym_yield] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_when] = ACTIONS(3922), - [sym_discard] = ACTIONS(3922), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3922), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_from] = ACTIONS(3922), - [anon_sym_into] = ACTIONS(3922), - [anon_sym_join] = ACTIONS(3922), - [anon_sym_on] = ACTIONS(3922), - [anon_sym_equals] = ACTIONS(3922), - [anon_sym_let] = ACTIONS(3922), - [anon_sym_orderby] = ACTIONS(3922), - [anon_sym_ascending] = ACTIONS(3922), - [anon_sym_descending] = ACTIONS(3922), - [anon_sym_group] = ACTIONS(3922), - [anon_sym_by] = ACTIONS(3922), - [anon_sym_select] = ACTIONS(3922), - [anon_sym_as] = ACTIONS(3922), - [anon_sym_is] = ACTIONS(3922), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3922), - [aux_sym_preproc_if_token3] = ACTIONS(3924), - [aux_sym_preproc_else_token1] = ACTIONS(3924), - [aux_sym_preproc_elif_token1] = ACTIONS(3924), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396388,79 +406118,81 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3648), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), @@ -396471,6 +406203,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(3691), }, [2260] = { [sym_preproc_region] = STATE(2260), @@ -396482,79 +406215,82 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3670), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -396576,79 +406312,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2261), [sym_preproc_define] = STATE(2261), [sym_preproc_undef] = STATE(2261), - [sym__identifier_token] = ACTIONS(3926), - [anon_sym_alias] = ACTIONS(3926), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_global] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_RBRACK] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_RPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_file] = ACTIONS(3926), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_in] = ACTIONS(3926), - [anon_sym_where] = ACTIONS(3926), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_notnull] = ACTIONS(3926), - [anon_sym_unmanaged] = ACTIONS(3926), - [anon_sym_operator] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_this] = ACTIONS(3926), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_scoped] = ACTIONS(3926), - [anon_sym_EQ_GT] = ACTIONS(3928), - [anon_sym_var] = ACTIONS(3926), - [anon_sym_yield] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [sym_discard] = ACTIONS(3926), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_from] = ACTIONS(3926), - [anon_sym_into] = ACTIONS(3926), - [anon_sym_join] = ACTIONS(3926), - [anon_sym_on] = ACTIONS(3926), - [anon_sym_equals] = ACTIONS(3926), - [anon_sym_let] = ACTIONS(3926), - [anon_sym_orderby] = ACTIONS(3926), - [anon_sym_ascending] = ACTIONS(3926), - [anon_sym_descending] = ACTIONS(3926), - [anon_sym_group] = ACTIONS(3926), - [anon_sym_by] = ACTIONS(3926), - [anon_sym_select] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_is] = ACTIONS(3926), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3926), - [aux_sym_preproc_if_token3] = ACTIONS(3928), - [aux_sym_preproc_else_token1] = ACTIONS(3928), - [aux_sym_preproc_elif_token1] = ACTIONS(3928), + [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), @@ -396659,12 +406397,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(3687), }, [2262] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2262), [sym_preproc_endregion] = STATE(2262), [sym_preproc_line] = STATE(2262), @@ -396674,75 +406409,82 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3849), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_RBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_RPAREN] = ACTIONS(3849), - [anon_sym_RBRACE] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_if_token3] = ACTIONS(3849), - [aux_sym_preproc_else_token1] = ACTIONS(3849), - [aux_sym_preproc_elif_token1] = ACTIONS(3849), + [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), @@ -396755,7 +406497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2263] = { - [sym_type_argument_list] = STATE(2114), [sym_preproc_region] = STATE(2263), [sym_preproc_endregion] = STATE(2263), [sym_preproc_line] = STATE(2263), @@ -396765,78 +406506,81 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3930), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_COLON_COLON] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), + [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), @@ -396847,8 +406591,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(3691), }, [2264] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2264), [sym_preproc_endregion] = STATE(2264), [sym_preproc_line] = STATE(2264), @@ -396858,79 +406604,81 @@ 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(3932), - [anon_sym_alias] = ACTIONS(3932), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_global] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_file] = ACTIONS(3932), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_notnull] = ACTIONS(3932), - [anon_sym_unmanaged] = ACTIONS(3932), - [anon_sym_operator] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_this] = ACTIONS(3932), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_scoped] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_var] = ACTIONS(3932), - [anon_sym_yield] = ACTIONS(3932), - [anon_sym_switch] = ACTIONS(3932), - [anon_sym_when] = ACTIONS(3932), - [sym_discard] = ACTIONS(3932), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3932), - [anon_sym_into] = ACTIONS(3932), - [anon_sym_join] = ACTIONS(3932), - [anon_sym_on] = ACTIONS(3932), - [anon_sym_equals] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3932), - [anon_sym_orderby] = ACTIONS(3932), - [anon_sym_ascending] = ACTIONS(3932), - [anon_sym_descending] = ACTIONS(3932), - [anon_sym_group] = ACTIONS(3932), - [anon_sym_by] = ACTIONS(3932), - [anon_sym_select] = ACTIONS(3932), - [anon_sym_as] = ACTIONS(3932), - [anon_sym_is] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3932), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), @@ -396952,79 +406700,81 @@ 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(3936), - [anon_sym_alias] = ACTIONS(3936), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_global] = ACTIONS(3936), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_RBRACK] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_file] = ACTIONS(3936), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_in] = ACTIONS(3936), - [anon_sym_where] = ACTIONS(3936), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_notnull] = ACTIONS(3936), - [anon_sym_unmanaged] = ACTIONS(3936), - [anon_sym_operator] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_this] = ACTIONS(3936), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_scoped] = ACTIONS(3936), - [anon_sym_EQ_GT] = ACTIONS(3938), - [anon_sym_var] = ACTIONS(3936), - [anon_sym_yield] = ACTIONS(3936), - [anon_sym_switch] = ACTIONS(3936), - [anon_sym_when] = ACTIONS(3936), - [sym_discard] = ACTIONS(3936), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3936), - [anon_sym_or] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_from] = ACTIONS(3936), - [anon_sym_into] = ACTIONS(3936), - [anon_sym_join] = ACTIONS(3936), - [anon_sym_on] = ACTIONS(3936), - [anon_sym_equals] = ACTIONS(3936), - [anon_sym_let] = ACTIONS(3936), - [anon_sym_orderby] = ACTIONS(3936), - [anon_sym_ascending] = ACTIONS(3936), - [anon_sym_descending] = ACTIONS(3936), - [anon_sym_group] = ACTIONS(3936), - [anon_sym_by] = ACTIONS(3936), - [anon_sym_select] = ACTIONS(3936), - [anon_sym_as] = ACTIONS(3936), - [anon_sym_is] = ACTIONS(3936), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3936), - [aux_sym_preproc_if_token3] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [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), @@ -397035,6 +406785,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(3445), }, [2266] = { [sym_preproc_region] = STATE(2266), @@ -397046,79 +406797,82 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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), @@ -397131,6 +406885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2267] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2267), [sym_preproc_endregion] = STATE(2267), [sym_preproc_line] = STATE(2267), @@ -397140,79 +406895,81 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397234,79 +406991,82 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397328,79 +407088,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2269), [sym_preproc_define] = STATE(2269), [sym_preproc_undef] = STATE(2269), - [sym__identifier_token] = ACTIONS(3940), - [anon_sym_alias] = ACTIONS(3940), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_global] = ACTIONS(3940), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_file] = ACTIONS(3940), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_in] = ACTIONS(3940), - [anon_sym_where] = ACTIONS(3940), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_notnull] = ACTIONS(3940), - [anon_sym_unmanaged] = ACTIONS(3940), - [anon_sym_operator] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_this] = ACTIONS(3940), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_scoped] = ACTIONS(3940), - [anon_sym_EQ_GT] = ACTIONS(3942), - [anon_sym_var] = ACTIONS(3940), - [anon_sym_yield] = ACTIONS(3940), - [anon_sym_switch] = ACTIONS(3940), - [anon_sym_when] = ACTIONS(3940), - [sym_discard] = ACTIONS(3940), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3940), - [anon_sym_or] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_from] = ACTIONS(3940), - [anon_sym_into] = ACTIONS(3940), - [anon_sym_join] = ACTIONS(3940), - [anon_sym_on] = ACTIONS(3940), - [anon_sym_equals] = ACTIONS(3940), - [anon_sym_let] = ACTIONS(3940), - [anon_sym_orderby] = ACTIONS(3940), - [anon_sym_ascending] = ACTIONS(3940), - [anon_sym_descending] = ACTIONS(3940), - [anon_sym_group] = ACTIONS(3940), - [anon_sym_by] = ACTIONS(3940), - [anon_sym_select] = ACTIONS(3940), - [anon_sym_as] = ACTIONS(3940), - [anon_sym_is] = ACTIONS(3940), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3940), - [aux_sym_preproc_if_token3] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [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), @@ -397411,6 +407173,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(3662), }, [2270] = { [sym_preproc_region] = STATE(2270), @@ -397422,91 +407185,99 @@ 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(3944), - [anon_sym_alias] = ACTIONS(3944), - [anon_sym_SEMI] = ACTIONS(3946), - [anon_sym_global] = ACTIONS(3944), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_RBRACK] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_file] = ACTIONS(3944), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_in] = ACTIONS(3944), - [anon_sym_where] = ACTIONS(3944), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_notnull] = ACTIONS(3944), - [anon_sym_unmanaged] = ACTIONS(3944), - [anon_sym_operator] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_this] = ACTIONS(3944), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_scoped] = ACTIONS(3944), - [anon_sym_EQ_GT] = ACTIONS(3946), - [anon_sym_var] = ACTIONS(3944), - [anon_sym_yield] = ACTIONS(3944), - [anon_sym_switch] = ACTIONS(3944), - [anon_sym_when] = ACTIONS(3944), - [sym_discard] = ACTIONS(3944), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3944), - [anon_sym_or] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_from] = ACTIONS(3944), - [anon_sym_into] = ACTIONS(3944), - [anon_sym_join] = ACTIONS(3944), - [anon_sym_on] = ACTIONS(3944), - [anon_sym_equals] = ACTIONS(3944), - [anon_sym_let] = ACTIONS(3944), - [anon_sym_orderby] = ACTIONS(3944), - [anon_sym_ascending] = ACTIONS(3944), - [anon_sym_descending] = ACTIONS(3944), - [anon_sym_group] = ACTIONS(3944), - [anon_sym_by] = ACTIONS(3944), - [anon_sym_select] = ACTIONS(3944), - [anon_sym_as] = ACTIONS(3944), - [anon_sym_is] = ACTIONS(3944), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3944), - [aux_sym_preproc_if_token3] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [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), @@ -397516,79 +407287,77 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_GT] = ACTIONS(3662), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3655), - [anon_sym_DASH_DASH] = ACTIONS(3655), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_PERCENT] = ACTIONS(3662), - [anon_sym_CARET] = ACTIONS(3662), - [anon_sym_PIPE] = ACTIONS(3662), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_LT_LT] = ACTIONS(3662), - [anon_sym_GT_GT] = ACTIONS(3662), - [anon_sym_GT_GT_GT] = ACTIONS(3662), - [anon_sym_EQ_EQ] = ACTIONS(3655), - [anon_sym_BANG_EQ] = ACTIONS(3655), - [anon_sym_GT_EQ] = ACTIONS(3655), - [anon_sym_LT_EQ] = ACTIONS(3655), - [anon_sym_DOT] = ACTIONS(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3655), - [anon_sym_and] = ACTIONS(3662), - [anon_sym_or] = ACTIONS(3662), - [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(3655), - [anon_sym_PIPE_PIPE] = ACTIONS(3655), - [anon_sym_QMARK_QMARK] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3662), - [anon_sym_is] = ACTIONS(3662), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3662), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397601,10 +407370,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2272] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2272), [sym_preproc_endregion] = STATE(2272), [sym_preproc_line] = STATE(2272), @@ -397614,85 +407379,92 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_SEMI] = ACTIONS(3897), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_RBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_RPAREN] = ACTIONS(3897), - [anon_sym_RBRACE] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3897), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_if_token3] = ACTIONS(3897), - [aux_sym_preproc_else_token1] = ACTIONS(3897), - [aux_sym_preproc_elif_token1] = ACTIONS(3897), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2273] = { [sym_preproc_region] = STATE(2273), @@ -397704,89 +407476,92 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3648), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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__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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -397798,89 +407573,92 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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__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), @@ -397892,79 +407670,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2275), [sym_preproc_define] = STATE(2275), [sym_preproc_undef] = STATE(2275), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_operator] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_this] = ACTIONS(3948), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -397977,6 +407758,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -397986,79 +407772,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2276), [sym_preproc_define] = STATE(2276), [sym_preproc_undef] = STATE(2276), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3665), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3662), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398080,79 +407863,81 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3648), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3644), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398165,6 +407950,26 @@ 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), @@ -398174,79 +407979,61 @@ 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), - [sym__identifier_token] = ACTIONS(3952), - [anon_sym_alias] = ACTIONS(3952), - [anon_sym_SEMI] = ACTIONS(3954), - [anon_sym_global] = ACTIONS(3952), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACK] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_RPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_file] = ACTIONS(3952), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_in] = ACTIONS(3952), - [anon_sym_where] = ACTIONS(3952), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_notnull] = ACTIONS(3952), - [anon_sym_unmanaged] = ACTIONS(3952), - [anon_sym_operator] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_this] = ACTIONS(3952), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_scoped] = ACTIONS(3952), - [anon_sym_EQ_GT] = ACTIONS(3954), - [anon_sym_var] = ACTIONS(3952), - [anon_sym_yield] = ACTIONS(3952), - [anon_sym_switch] = ACTIONS(3952), - [anon_sym_when] = ACTIONS(3952), - [sym_discard] = ACTIONS(3952), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3952), - [anon_sym_or] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_from] = ACTIONS(3952), - [anon_sym_into] = ACTIONS(3952), - [anon_sym_join] = ACTIONS(3952), - [anon_sym_on] = ACTIONS(3952), - [anon_sym_equals] = ACTIONS(3952), - [anon_sym_let] = ACTIONS(3952), - [anon_sym_orderby] = ACTIONS(3952), - [anon_sym_ascending] = ACTIONS(3952), - [anon_sym_descending] = ACTIONS(3952), - [anon_sym_group] = ACTIONS(3952), - [anon_sym_by] = ACTIONS(3952), - [anon_sym_select] = ACTIONS(3952), - [anon_sym_as] = ACTIONS(3952), - [anon_sym_is] = ACTIONS(3952), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3952), - [aux_sym_preproc_if_token3] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398268,172 +408055,177 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_GT] = ACTIONS(3644), - [anon_sym_where] = ACTIONS(3648), - [anon_sym_QMARK] = ACTIONS(3644), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_PERCENT] = ACTIONS(3644), - [anon_sym_CARET] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_LT_LT] = ACTIONS(3644), - [anon_sym_GT_GT] = ACTIONS(3644), - [anon_sym_GT_GT_GT] = ACTIONS(3644), - [anon_sym_EQ_EQ] = ACTIONS(3638), - [anon_sym_BANG_EQ] = ACTIONS(3638), - [anon_sym_GT_EQ] = ACTIONS(3638), - [anon_sym_LT_EQ] = ACTIONS(3638), - [anon_sym_DOT] = ACTIONS(3644), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3638), - [anon_sym_and] = ACTIONS(3648), - [anon_sym_or] = ACTIONS(3648), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_QMARK_QMARK] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_orderby] = ACTIONS(3648), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3648), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3648), - [anon_sym_as] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3644), - [anon_sym_DASH_GT] = ACTIONS(3638), - [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), - }, - [2280] = { - [sym__name] = STATE(4263), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_ref_type] = STATE(4262), - [sym__scoped_base_type] = STATE(4261), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), - [sym_preproc_region] = STATE(2280), - [sym_preproc_endregion] = STATE(2280), - [sym_preproc_line] = STATE(2280), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2280] = { + [sym_preproc_region] = STATE(2280), + [sym_preproc_endregion] = STATE(2280), + [sym_preproc_line] = STATE(2280), [sym_preproc_pragma] = STATE(2280), [sym_preproc_nullable] = STATE(2280), [sym_preproc_error] = STATE(2280), [sym_preproc_warning] = STATE(2280), [sym_preproc_define] = STATE(2280), [sym_preproc_undef] = STATE(2280), - [sym__identifier_token] = ACTIONS(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3956), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3911), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3911), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3911), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398444,10 +408236,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(3393), }, [2281] = { - [sym_type_argument_list] = STATE(2335), + [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(2281), [sym_preproc_endregion] = STATE(2281), [sym_preproc_line] = STATE(2281), @@ -398457,77 +408256,72 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3958), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398540,26 +408334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2282] = { - [sym_modifier] = STATE(3047), - [sym_variable_declaration] = STATE(7271), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2282), [sym_preproc_endregion] = STATE(2282), [sym_preproc_line] = STATE(2282), @@ -398569,58 +408344,80 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3839), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(2941), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398633,15 +408430,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2283] = { - [sym__name] = STATE(4862), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(4318), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2283), [sym_preproc_endregion] = STATE(2283), [sym_preproc_line] = STATE(2283), @@ -398651,69 +408439,81 @@ 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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3961), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398735,78 +408535,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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3670), - [anon_sym_descending] = ACTIONS(3670), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398819,6 +408622,11 @@ 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), @@ -398828,78 +408636,76 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398912,6 +408718,30 @@ 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), @@ -398921,78 +408751,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2286), [sym_preproc_define] = STATE(2286), [sym_preproc_undef] = STATE(2286), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399005,6 +408814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2287] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2287), [sym_preproc_endregion] = STATE(2287), [sym_preproc_line] = STATE(2287), @@ -399014,78 +408824,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2287), [sym_preproc_define] = STATE(2287), [sym_preproc_undef] = STATE(2287), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3670), - [anon_sym_descending] = ACTIONS(3670), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399107,78 +408919,81 @@ 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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [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_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399191,28 +409006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2289] = { - [sym_attribute_list] = STATE(3621), - [sym_modifier] = STATE(3650), - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5731), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2289), [sym_preproc_endregion] = STATE(2289), [sym_preproc_line] = STATE(2289), @@ -399222,56 +409015,81 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3430), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2480), - [aux_sym__lambda_expression_init_repeat1] = STATE(3288), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(655), - [anon_sym_LBRACK] = ACTIONS(3963), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(655), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399284,26 +409102,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2290] = { - [sym_modifier] = STATE(3047), - [sym_variable_declaration] = STATE(7477), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -399313,25 +409131,26 @@ 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(3027), - [sym__identifier_token] = ACTIONS(2917), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3100), + [sym__identifier_token] = ACTIONS(2967), [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), + [anon_sym_alias] = ACTIONS(2971), + [anon_sym_global] = ACTIONS(2971), [anon_sym_unsafe] = ACTIONS(65), [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(3754), - [anon_sym_ref] = ACTIONS(3756), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_enum] = ACTIONS(3835), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_delegate] = ACTIONS(3762), - [anon_sym_record] = ACTIONS(3764), + [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(2941), + [anon_sym_file] = ACTIONS(2991), [anon_sym_fixed] = ACTIONS(65), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(65), @@ -399345,26 +409164,28 @@ 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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399377,6 +409198,10 @@ 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), @@ -399386,78 +409211,77 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399470,15 +409294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2292] = { - [sym__name] = STATE(3386), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2292), [sym_preproc_endregion] = STATE(2292), [sym_preproc_line] = STATE(2292), @@ -399488,69 +409303,81 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3969), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399563,25 +409390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2293] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2293), [sym_preproc_endregion] = STATE(2293), [sym_preproc_line] = STATE(2293), @@ -399591,59 +409399,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(3825), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399656,15 +409485,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2294] = { - [sym__name] = STATE(3092), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_ref_type] = STATE(3088), - [sym__scoped_base_type] = STATE(3087), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), + [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), @@ -399674,69 +409498,76 @@ 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(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3703), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3703), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399758,78 +409589,80 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3662), - [anon_sym_descending] = ACTIONS(3662), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399842,7 +409675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2296] = { - [sym_type_argument_list] = STATE(2335), [sym_preproc_region] = STATE(2296), [sym_preproc_endregion] = STATE(2296), [sym_preproc_line] = STATE(2296), @@ -399852,77 +409684,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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3958), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(3629), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399944,77 +409779,80 @@ 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(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_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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400027,6 +409865,10 @@ 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), @@ -400036,77 +409878,76 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400119,6 +409960,10 @@ 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), @@ -400128,77 +409973,76 @@ 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(4005), - [anon_sym_alias] = ACTIONS(4005), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_global] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_file] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_notnull] = ACTIONS(4005), - [anon_sym_unmanaged] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_scoped] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_var] = ACTIONS(4005), - [anon_sym_yield] = ACTIONS(4005), - [anon_sym_switch] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [sym_discard] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4005), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4005), - [anon_sym_into] = ACTIONS(4005), - [anon_sym_join] = ACTIONS(4005), - [anon_sym_on] = ACTIONS(4005), - [anon_sym_equals] = ACTIONS(4005), - [anon_sym_let] = ACTIONS(4005), - [anon_sym_orderby] = ACTIONS(4005), - [anon_sym_ascending] = ACTIONS(4005), - [anon_sym_descending] = ACTIONS(4005), - [anon_sym_group] = ACTIONS(4005), - [anon_sym_by] = ACTIONS(4005), - [anon_sym_select] = ACTIONS(4005), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4005), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [sym__identifier_token] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400211,15 +410055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2300] = { - [sym__name] = STATE(5021), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(4668), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2300), [sym_preproc_endregion] = STATE(2300), [sym_preproc_line] = STATE(2300), @@ -400229,68 +410064,80 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), + [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), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400303,14 +410150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2301] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2429), - [sym_property_pattern_clause] = STATE(2486), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2301), [sym_preproc_endregion] = STATE(2301), [sym_preproc_line] = STATE(2301), @@ -400320,81 +410159,96 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3823), + [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), }, [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), @@ -400404,77 +410258,76 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400496,77 +410349,80 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3670), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400579,6 +410435,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2304), [sym_preproc_endregion] = STATE(2304), [sym_preproc_line] = STATE(2304), @@ -400588,77 +410453,70 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), @@ -400669,6 +410527,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(3445), }, [2305] = { [sym_preproc_region] = STATE(2305), @@ -400680,77 +410539,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3653), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3653), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3653), - [anon_sym_is] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3653), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400763,14 +410625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2306] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2420), - [sym_property_pattern_clause] = STATE(2479), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2306), [sym_preproc_endregion] = STATE(2306), [sym_preproc_line] = STATE(2306), @@ -400780,79 +410634,90 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3813), + [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), }, [2307] = { [sym_preproc_region] = STATE(2307), @@ -400864,77 +410729,80 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -400956,77 +410824,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2308), [sym_preproc_define] = STATE(2308), [sym_preproc_undef] = STATE(2308), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3670), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3670), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3670), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3670), - [anon_sym_orderby] = ACTIONS(3670), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3670), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3670), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401039,15 +410910,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2309] = { - [sym__name] = STATE(2363), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2309), [sym_preproc_endregion] = STATE(2309), [sym_preproc_line] = STATE(2309), @@ -401057,68 +410919,80 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(3541), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401140,77 +411014,79 @@ 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(4029), - [anon_sym_alias] = ACTIONS(4029), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_global] = ACTIONS(4029), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_file] = ACTIONS(4029), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_notnull] = ACTIONS(4029), - [anon_sym_unmanaged] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_scoped] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_var] = ACTIONS(4029), - [anon_sym_yield] = ACTIONS(4029), - [anon_sym_switch] = ACTIONS(4029), - [anon_sym_when] = ACTIONS(4029), - [sym_discard] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4029), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4029), - [anon_sym_into] = ACTIONS(4029), - [anon_sym_join] = ACTIONS(4029), - [anon_sym_on] = ACTIONS(4029), - [anon_sym_equals] = ACTIONS(4029), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_orderby] = ACTIONS(4029), - [anon_sym_ascending] = ACTIONS(4029), - [anon_sym_descending] = ACTIONS(4029), - [anon_sym_group] = ACTIONS(4029), - [anon_sym_by] = ACTIONS(4029), - [anon_sym_select] = ACTIONS(4029), - [anon_sym_as] = ACTIONS(4029), - [anon_sym_is] = ACTIONS(4029), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4029), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [sym__identifier_token] = ACTIONS(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), @@ -401221,8 +411097,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(3697), }, [2311] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2311), [sym_preproc_endregion] = STATE(2311), [sym_preproc_line] = STATE(2311), @@ -401232,77 +411110,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(4033), - [anon_sym_alias] = ACTIONS(4033), - [anon_sym_SEMI] = ACTIONS(4035), - [anon_sym_global] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_file] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(4033), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_notnull] = ACTIONS(4033), - [anon_sym_unmanaged] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_scoped] = ACTIONS(4033), - [anon_sym_EQ_GT] = ACTIONS(4035), - [anon_sym_var] = ACTIONS(4033), - [anon_sym_yield] = ACTIONS(4033), - [anon_sym_switch] = ACTIONS(4033), - [anon_sym_when] = ACTIONS(4033), - [sym_discard] = ACTIONS(4033), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4033), - [anon_sym_or] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_from] = ACTIONS(4033), - [anon_sym_into] = ACTIONS(4033), - [anon_sym_join] = ACTIONS(4033), - [anon_sym_on] = ACTIONS(4033), - [anon_sym_equals] = ACTIONS(4033), - [anon_sym_let] = ACTIONS(4033), - [anon_sym_orderby] = ACTIONS(4033), - [anon_sym_ascending] = ACTIONS(4033), - [anon_sym_descending] = ACTIONS(4033), - [anon_sym_group] = ACTIONS(4033), - [anon_sym_by] = ACTIONS(4033), - [anon_sym_select] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4033), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4033), - [aux_sym_preproc_if_token3] = ACTIONS(4035), - [aux_sym_preproc_else_token1] = ACTIONS(4035), - [aux_sym_preproc_elif_token1] = ACTIONS(4035), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401324,77 +411204,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401405,6 +411287,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(3719), }, [2313] = { [sym_preproc_region] = STATE(2313), @@ -401416,77 +411299,79 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401497,27 +411382,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), }, [2314] = { - [sym_modifier] = STATE(3047), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5936), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2314), [sym_preproc_endregion] = STATE(2314), [sym_preproc_line] = STATE(2314), @@ -401527,58 +411394,80 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(3871), - [anon_sym_ref] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_enum] = ACTIONS(4037), - [anon_sym_interface] = ACTIONS(3879), - [anon_sym_delegate] = ACTIONS(3881), - [anon_sym_record] = ACTIONS(3883), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4039), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401600,77 +411489,79 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [anon_sym_QMARK_QMARK] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = ACTIONS(3642), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401692,77 +411583,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(3606), - [anon_sym_alias] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_global] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_notnull] = ACTIONS(3606), - [anon_sym_unmanaged] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_scoped] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_when] = ACTIONS(3606), - [sym_discard] = ACTIONS(3606), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3606), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3606), - [anon_sym_join] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_equals] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_orderby] = ACTIONS(3606), - [anon_sym_ascending] = ACTIONS(3606), - [anon_sym_descending] = ACTIONS(3606), - [anon_sym_group] = ACTIONS(3606), - [anon_sym_by] = ACTIONS(3606), - [anon_sym_select] = ACTIONS(3606), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401784,77 +411677,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(3610), - [anon_sym_alias] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_global] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_notnull] = ACTIONS(3610), - [anon_sym_unmanaged] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_scoped] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_when] = ACTIONS(3610), - [sym_discard] = ACTIONS(3610), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3610), - [anon_sym_join] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_equals] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_orderby] = ACTIONS(3610), - [anon_sym_ascending] = ACTIONS(3610), - [anon_sym_descending] = ACTIONS(3610), - [anon_sym_group] = ACTIONS(3610), - [anon_sym_by] = ACTIONS(3610), - [anon_sym_select] = ACTIONS(3610), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401876,77 +411771,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -401959,14 +411856,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2319] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2420), - [sym_property_pattern_clause] = STATE(2479), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2319), [sym_preproc_endregion] = STATE(2319), [sym_preproc_line] = STATE(2319), @@ -401976,81 +411865,100 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3823), + [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(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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2320] = { + [sym__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), @@ -402060,77 +411968,69 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), @@ -402141,6 +412041,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(3445), }, [2321] = { [sym_preproc_region] = STATE(2321), @@ -402152,77 +412053,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2321), [sym_preproc_define] = STATE(2321), [sym_preproc_undef] = STATE(2321), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402244,77 +412147,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(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), - [aux_sym_preproc_if_token3] = ACTIONS(4043), - [aux_sym_preproc_else_token1] = ACTIONS(4043), - [aux_sym_preproc_elif_token1] = ACTIONS(4043), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402336,77 +412241,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(4047), - [anon_sym_alias] = ACTIONS(4047), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_global] = ACTIONS(4047), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_file] = ACTIONS(4047), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_notnull] = ACTIONS(4047), - [anon_sym_unmanaged] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_scoped] = ACTIONS(4047), - [anon_sym_EQ_GT] = ACTIONS(4049), - [anon_sym_var] = ACTIONS(4047), - [anon_sym_yield] = ACTIONS(4047), - [anon_sym_switch] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [sym_discard] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4047), - [anon_sym_or] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_from] = ACTIONS(4047), - [anon_sym_into] = ACTIONS(4047), - [anon_sym_join] = ACTIONS(4047), - [anon_sym_on] = ACTIONS(4047), - [anon_sym_equals] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4047), - [anon_sym_orderby] = ACTIONS(4047), - [anon_sym_ascending] = ACTIONS(4047), - [anon_sym_descending] = ACTIONS(4047), - [anon_sym_group] = ACTIONS(4047), - [anon_sym_by] = ACTIONS(4047), - [anon_sym_select] = ACTIONS(4047), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4047), - [aux_sym_preproc_if_token3] = ACTIONS(4049), - [aux_sym_preproc_else_token1] = ACTIONS(4049), - [aux_sym_preproc_elif_token1] = ACTIONS(4049), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402428,89 +412335,91 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3670), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [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), - }, - [2325] = { + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2325] = { [sym_preproc_region] = STATE(2325), [sym_preproc_endregion] = STATE(2325), [sym_preproc_line] = STATE(2325), @@ -402520,77 +412429,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(3621), - [anon_sym_alias] = ACTIONS(3621), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_global] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_file] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_notnull] = ACTIONS(3621), - [anon_sym_unmanaged] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_scoped] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_var] = ACTIONS(3621), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3621), - [anon_sym_when] = ACTIONS(3621), - [sym_discard] = ACTIONS(3621), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3621), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_from] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3621), - [anon_sym_join] = ACTIONS(3621), - [anon_sym_on] = ACTIONS(3621), - [anon_sym_equals] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_orderby] = ACTIONS(3621), - [anon_sym_ascending] = ACTIONS(3621), - [anon_sym_descending] = ACTIONS(3621), - [anon_sym_group] = ACTIONS(3621), - [anon_sym_by] = ACTIONS(3621), - [anon_sym_select] = ACTIONS(3621), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_is] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402612,77 +412523,79 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3670), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402695,14 +412608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2327] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2420), - [sym_property_pattern_clause] = STATE(2479), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2327), [sym_preproc_endregion] = STATE(2327), [sym_preproc_line] = STATE(2327), @@ -402712,79 +412617,89 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3813), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2328] = { [sym_preproc_region] = STATE(2328), @@ -402796,77 +412711,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(3861), - [anon_sym_alias] = ACTIONS(3861), - [anon_sym_SEMI] = ACTIONS(3863), - [anon_sym_global] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_file] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3861), - [anon_sym_where] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_notnull] = ACTIONS(3861), - [anon_sym_unmanaged] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_scoped] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_var] = ACTIONS(3861), - [anon_sym_yield] = ACTIONS(3861), - [anon_sym_switch] = ACTIONS(3861), - [anon_sym_when] = ACTIONS(3861), - [sym_discard] = ACTIONS(3861), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3861), - [anon_sym_into] = ACTIONS(3861), - [anon_sym_join] = ACTIONS(3861), - [anon_sym_on] = ACTIONS(3861), - [anon_sym_equals] = ACTIONS(3861), - [anon_sym_let] = ACTIONS(3861), - [anon_sym_orderby] = ACTIONS(3861), - [anon_sym_ascending] = ACTIONS(3861), - [anon_sym_descending] = ACTIONS(3861), - [anon_sym_group] = ACTIONS(3861), - [anon_sym_by] = ACTIONS(3861), - [anon_sym_select] = ACTIONS(3861), - [anon_sym_as] = ACTIONS(3861), - [anon_sym_is] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3861), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = ACTIONS(3863), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402888,77 +412805,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2329), [sym_preproc_define] = STATE(2329), [sym_preproc_undef] = STATE(2329), - [sym__identifier_token] = ACTIONS(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -402971,6 +412890,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -402980,77 +412903,75 @@ 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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3670), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3670), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403063,14 +412984,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2331] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2429), - [sym_property_pattern_clause] = STATE(2486), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2331), [sym_preproc_endregion] = STATE(2331), [sym_preproc_line] = STATE(2331), @@ -403080,79 +412993,89 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3813), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2332] = { [sym_preproc_region] = STATE(2332), @@ -403164,77 +413087,79 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3662), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403247,6 +413172,7 @@ 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), @@ -403256,77 +413182,78 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403339,6 +413266,10 @@ 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), @@ -403348,77 +413279,75 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3662), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_orderby] = ACTIONS(3662), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3662), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3662), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403440,77 +413369,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(3625), - [anon_sym_alias] = ACTIONS(3625), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_global] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_file] = ACTIONS(3625), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_notnull] = ACTIONS(3625), - [anon_sym_unmanaged] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_scoped] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_var] = ACTIONS(3625), - [anon_sym_yield] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_when] = ACTIONS(3625), - [sym_discard] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3625), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_from] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3625), - [anon_sym_join] = ACTIONS(3625), - [anon_sym_on] = ACTIONS(3625), - [anon_sym_equals] = ACTIONS(3625), - [anon_sym_let] = ACTIONS(3625), - [anon_sym_orderby] = ACTIONS(3625), - [anon_sym_ascending] = ACTIONS(3625), - [anon_sym_descending] = ACTIONS(3625), - [anon_sym_group] = ACTIONS(3625), - [anon_sym_by] = ACTIONS(3625), - [anon_sym_select] = ACTIONS(3625), - [anon_sym_as] = ACTIONS(3625), - [anon_sym_is] = ACTIONS(3625), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3625), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403523,14 +413454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2336] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2429), - [sym_property_pattern_clause] = STATE(2486), - [sym__variable_designation] = STATE(4632), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4330), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2336), [sym_preproc_endregion] = STATE(2336), [sym_preproc_line] = STATE(2336), @@ -403540,81 +413463,100 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3813), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -403624,77 +413566,69 @@ 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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3655), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3662), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3662), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_when] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3662), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3655), - [anon_sym_with] = ACTIONS(3658), + [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), @@ -403705,9 +413639,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(3445), }, [2338] = { - [sym_type_argument_list] = STATE(2369), [sym_preproc_region] = STATE(2338), [sym_preproc_endregion] = STATE(2338), [sym_preproc_line] = STATE(2338), @@ -403717,76 +413651,79 @@ 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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4051), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403808,77 +413745,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -403891,25 +413830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2340] = { - [sym_modifier] = STATE(3047), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5936), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2340), [sym_preproc_endregion] = STATE(2340), [sym_preproc_line] = STATE(2340), @@ -403919,58 +413839,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(65), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(65), - [anon_sym_static] = ACTIONS(65), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(3871), - [anon_sym_ref] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_enum] = ACTIONS(4058), - [anon_sym_interface] = ACTIONS(3879), - [anon_sym_delegate] = ACTIONS(3881), - [anon_sym_record] = ACTIONS(3883), - [anon_sym_abstract] = ACTIONS(65), - [anon_sym_async] = ACTIONS(65), - [anon_sym_const] = ACTIONS(65), - [anon_sym_file] = ACTIONS(4039), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -403992,77 +413933,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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3670), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404075,15 +414018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2342] = { - [sym__name] = STATE(2363), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), + [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), @@ -404093,68 +414031,75 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3541), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3541), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3541), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3541), - [anon_sym_orderby] = ACTIONS(3541), - [anon_sym_ascending] = ACTIONS(3541), - [anon_sym_descending] = ACTIONS(3541), - [anon_sym_group] = ACTIONS(3541), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3541), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404176,77 +414121,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(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3667), - [anon_sym_LPAREN] = ACTIONS(3667), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3670), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3670), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3670), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_when] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3670), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3667), - [anon_sym_with] = ACTIONS(3636), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404268,77 +414215,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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = ACTIONS(3600), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404360,77 +414309,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(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_SEMI] = ACTIONS(4043), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_RBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_RPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_RBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_in] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), - [aux_sym_preproc_if_token3] = ACTIONS(4043), - [aux_sym_preproc_else_token1] = ACTIONS(4043), - [aux_sym_preproc_elif_token1] = ACTIONS(4043), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404443,6 +414394,10 @@ 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), @@ -404452,77 +414407,75 @@ 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(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(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_if_token3] = ACTIONS(4064), - [aux_sym_preproc_else_token1] = ACTIONS(4064), - [aux_sym_preproc_elif_token1] = ACTIONS(4064), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404544,76 +414497,79 @@ 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), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3658), - [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(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3658), - [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(3658), - [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(3658), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404626,6 +414582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2348] = { + [sym_type_argument_list] = STATE(2183), [sym_preproc_region] = STATE(2348), [sym_preproc_endregion] = STATE(2348), [sym_preproc_line] = STATE(2348), @@ -404635,76 +414592,78 @@ 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), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3608), - [anon_sym_into] = ACTIONS(3608), - [anon_sym_join] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_let] = ACTIONS(3608), - [anon_sym_orderby] = ACTIONS(3608), - [anon_sym_group] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_select] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404726,76 +414685,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2349), [sym_preproc_define] = STATE(2349), [sym_preproc_undef] = STATE(2349), - [sym__identifier_token] = ACTIONS(4066), - [anon_sym_alias] = ACTIONS(4066), - [anon_sym_SEMI] = ACTIONS(4068), - [anon_sym_global] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4068), - [anon_sym_COLON] = ACTIONS(4068), - [anon_sym_COMMA] = ACTIONS(4068), - [anon_sym_RBRACK] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym_RPAREN] = ACTIONS(4068), - [anon_sym_RBRACE] = ACTIONS(4068), - [anon_sym_file] = ACTIONS(4066), - [anon_sym_LT] = ACTIONS(4066), - [anon_sym_GT] = ACTIONS(4066), - [anon_sym_in] = ACTIONS(4066), - [anon_sym_where] = ACTIONS(4066), - [anon_sym_QMARK] = ACTIONS(4066), - [anon_sym_notnull] = ACTIONS(4066), - [anon_sym_unmanaged] = ACTIONS(4066), - [anon_sym_BANG] = ACTIONS(4066), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_SLASH] = ACTIONS(4066), - [anon_sym_PERCENT] = ACTIONS(4068), - [anon_sym_CARET] = ACTIONS(4068), - [anon_sym_PIPE] = ACTIONS(4066), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_LT_LT] = ACTIONS(4068), - [anon_sym_GT_GT] = ACTIONS(4066), - [anon_sym_GT_GT_GT] = ACTIONS(4068), - [anon_sym_EQ_EQ] = ACTIONS(4068), - [anon_sym_BANG_EQ] = ACTIONS(4068), - [anon_sym_GT_EQ] = ACTIONS(4068), - [anon_sym_LT_EQ] = ACTIONS(4068), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_scoped] = ACTIONS(4066), - [anon_sym_EQ_GT] = ACTIONS(4068), - [anon_sym_var] = ACTIONS(4066), - [anon_sym_yield] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_when] = ACTIONS(4066), - [sym_discard] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_and] = ACTIONS(4066), - [anon_sym_or] = ACTIONS(4066), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_PIPE_PIPE] = ACTIONS(4068), - [anon_sym_QMARK_QMARK] = ACTIONS(4068), - [anon_sym_from] = ACTIONS(4066), - [anon_sym_into] = ACTIONS(4066), - [anon_sym_join] = ACTIONS(4066), - [anon_sym_on] = ACTIONS(4066), - [anon_sym_equals] = ACTIONS(4066), - [anon_sym_let] = ACTIONS(4066), - [anon_sym_orderby] = ACTIONS(4066), - [anon_sym_ascending] = ACTIONS(4066), - [anon_sym_descending] = ACTIONS(4066), - [anon_sym_group] = ACTIONS(4066), - [anon_sym_by] = ACTIONS(4066), - [anon_sym_select] = ACTIONS(4066), - [anon_sym_as] = ACTIONS(4066), - [anon_sym_is] = ACTIONS(4066), - [anon_sym_DASH_GT] = ACTIONS(4068), - [anon_sym_with] = ACTIONS(4066), - [aux_sym_preproc_if_token3] = ACTIONS(4068), - [aux_sym_preproc_else_token1] = ACTIONS(4068), - [aux_sym_preproc_elif_token1] = ACTIONS(4068), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404817,76 +414779,79 @@ 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), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_RBRACK] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_in] = ACTIONS(4072), - [anon_sym_where] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_EQ_GT] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4072), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [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_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(4070), - [anon_sym_with] = ACTIONS(4070), - [aux_sym_preproc_if_token3] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404908,76 +414873,79 @@ 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(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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -404999,76 +414967,79 @@ 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(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_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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405081,6 +415052,15 @@ 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), @@ -405090,76 +415070,69 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4078), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405172,6 +415145,15 @@ 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), @@ -405181,76 +415163,69 @@ 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(4080), - [anon_sym_alias] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym_global] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_COLON] = ACTIONS(4082), - [anon_sym_COMMA] = ACTIONS(4082), - [anon_sym_RBRACK] = ACTIONS(4082), - [anon_sym_LPAREN] = ACTIONS(4082), - [anon_sym_RPAREN] = ACTIONS(4082), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_file] = ACTIONS(4080), - [anon_sym_LT] = ACTIONS(4080), - [anon_sym_GT] = ACTIONS(4080), - [anon_sym_in] = ACTIONS(4080), - [anon_sym_where] = ACTIONS(4080), - [anon_sym_QMARK] = ACTIONS(4080), - [anon_sym_notnull] = ACTIONS(4080), - [anon_sym_unmanaged] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4080), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_CARET] = ACTIONS(4082), - [anon_sym_PIPE] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_LT_LT] = ACTIONS(4082), - [anon_sym_GT_GT] = ACTIONS(4080), - [anon_sym_GT_GT_GT] = ACTIONS(4082), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_GT_EQ] = ACTIONS(4082), - [anon_sym_LT_EQ] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_scoped] = ACTIONS(4080), - [anon_sym_EQ_GT] = ACTIONS(4082), - [anon_sym_var] = ACTIONS(4080), - [anon_sym_yield] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_when] = ACTIONS(4080), - [sym_discard] = ACTIONS(4080), - [anon_sym_DOT_DOT] = ACTIONS(4082), - [anon_sym_and] = ACTIONS(4080), - [anon_sym_or] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_PIPE_PIPE] = ACTIONS(4082), - [anon_sym_QMARK_QMARK] = ACTIONS(4082), - [anon_sym_from] = ACTIONS(4080), - [anon_sym_into] = ACTIONS(4080), - [anon_sym_join] = ACTIONS(4080), - [anon_sym_on] = ACTIONS(4080), - [anon_sym_equals] = ACTIONS(4080), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_orderby] = ACTIONS(4080), - [anon_sym_ascending] = ACTIONS(4080), - [anon_sym_descending] = ACTIONS(4080), - [anon_sym_group] = ACTIONS(4080), - [anon_sym_by] = ACTIONS(4080), - [anon_sym_select] = ACTIONS(4080), - [anon_sym_as] = ACTIONS(4080), - [anon_sym_is] = ACTIONS(4080), - [anon_sym_DASH_GT] = ACTIONS(4082), - [anon_sym_with] = ACTIONS(4080), - [aux_sym_preproc_if_token3] = ACTIONS(4082), - [aux_sym_preproc_else_token1] = ACTIONS(4082), - [aux_sym_preproc_elif_token1] = ACTIONS(4082), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405263,6 +415238,15 @@ 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_preproc_region] = STATE(2355), [sym_preproc_endregion] = STATE(2355), [sym_preproc_line] = STATE(2355), @@ -405272,76 +415256,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [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_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_in] = ACTIONS(4086), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [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(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405354,6 +415331,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_preproc_region] = STATE(2356), [sym_preproc_endregion] = STATE(2356), [sym_preproc_line] = STATE(2356), @@ -405363,76 +415360,58 @@ 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), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3393), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_join] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_orderby] = ACTIONS(3393), - [anon_sym_group] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_select] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = 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__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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405445,15 +415424,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2357] = { - [sym__name] = STATE(4030), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_ref_type] = STATE(2859), - [sym__scoped_base_type] = STATE(2857), - [sym_identifier] = STATE(3768), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2357), [sym_preproc_endregion] = STATE(2357), [sym_preproc_line] = STATE(2357), @@ -405463,67 +415433,78 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3806), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3802), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3806), - [anon_sym_into] = ACTIONS(3806), - [anon_sym_join] = ACTIONS(3806), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3806), - [anon_sym_orderby] = ACTIONS(3806), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3806), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3806), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405536,6 +415517,26 @@ 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_preproc_region] = STATE(2358), [sym_preproc_endregion] = STATE(2358), [sym_preproc_line] = STATE(2358), @@ -405545,76 +415546,58 @@ 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), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [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_RBRACE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_in] = ACTIONS(4092), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [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(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [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_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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405627,6 +415610,7 @@ 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), @@ -405636,76 +415620,77 @@ 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), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3598), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_join] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_orderby] = ACTIONS(3598), - [anon_sym_group] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_select] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405718,15 +415703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2360] = { - [sym__name] = STATE(3092), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_ref_type] = STATE(3088), - [sym__scoped_base_type] = STATE(3087), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(2360), [sym_preproc_endregion] = STATE(2360), [sym_preproc_line] = STATE(2360), @@ -405736,67 +415712,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(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3703), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3703), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405809,15 +415796,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2361] = { - [sym__name] = STATE(3092), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_ref_type] = STATE(3088), - [sym__scoped_base_type] = STATE(3087), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(2361), [sym_preproc_endregion] = STATE(2361), [sym_preproc_line] = STATE(2361), @@ -405827,67 +415805,78 @@ 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(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3703), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3703), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -405909,76 +415898,78 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4098), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406000,76 +415991,78 @@ 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(3932), - [anon_sym_alias] = ACTIONS(3932), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_global] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_file] = ACTIONS(3932), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_notnull] = ACTIONS(3932), - [anon_sym_unmanaged] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_scoped] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_var] = ACTIONS(3932), - [anon_sym_yield] = ACTIONS(3932), - [anon_sym_switch] = ACTIONS(3932), - [anon_sym_when] = ACTIONS(3932), - [sym_discard] = ACTIONS(3932), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3932), - [anon_sym_into] = ACTIONS(3932), - [anon_sym_join] = ACTIONS(3932), - [anon_sym_on] = ACTIONS(3932), - [anon_sym_equals] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3932), - [anon_sym_orderby] = ACTIONS(3932), - [anon_sym_ascending] = ACTIONS(3932), - [anon_sym_descending] = ACTIONS(3932), - [anon_sym_group] = ACTIONS(3932), - [anon_sym_by] = ACTIONS(3932), - [anon_sym_select] = ACTIONS(3932), - [anon_sym_as] = ACTIONS(3932), - [anon_sym_is] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3932), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406082,15 +416075,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2364] = { - [sym__name] = STATE(3092), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_ref_type] = STATE(3088), - [sym__scoped_base_type] = STATE(3087), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(2364), [sym_preproc_endregion] = STATE(2364), [sym_preproc_line] = STATE(2364), @@ -406100,67 +416084,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2364), [sym_preproc_define] = STATE(2364), [sym_preproc_undef] = STATE(2364), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4102), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3699), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3699), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3703), - [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(3703), - [anon_sym_select] = ACTIONS(3699), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406173,15 +416168,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2365] = { - [sym__name] = STATE(3386), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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), @@ -406191,67 +416196,59 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3969), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406264,6 +416261,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_preproc_region] = STATE(2366), [sym_preproc_endregion] = STATE(2366), [sym_preproc_line] = STATE(2366), @@ -406273,76 +416271,77 @@ 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), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_EQ] = ACTIONS(4108), - [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_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [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(4108), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4106), - [anon_sym_into] = ACTIONS(4106), - [anon_sym_join] = ACTIONS(4106), - [anon_sym_on] = ACTIONS(4106), - [anon_sym_equals] = ACTIONS(4106), - [anon_sym_let] = ACTIONS(4106), - [anon_sym_orderby] = ACTIONS(4106), - [anon_sym_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406355,15 +416354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2367] = { - [sym__name] = STATE(3386), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2367), [sym_preproc_endregion] = STATE(2367), [sym_preproc_line] = STATE(2367), @@ -406373,67 +416363,78 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3969), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406446,6 +416447,14 @@ 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), @@ -406455,76 +416464,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406535,6 +416536,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(3893), }, [2369] = { [sym_preproc_region] = STATE(2369), @@ -406546,76 +416548,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), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3627), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_from] = ACTIONS(3627), - [anon_sym_into] = ACTIONS(3627), - [anon_sym_join] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_let] = ACTIONS(3627), - [anon_sym_orderby] = ACTIONS(3627), - [anon_sym_group] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_select] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406628,6 +416631,15 @@ 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), @@ -406637,76 +416649,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(4112), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_in] = ACTIONS(4114), - [anon_sym_where] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_EQ_GT] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4114), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [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_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(4112), - [anon_sym_with] = ACTIONS(4112), - [aux_sym_preproc_if_token3] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406719,6 +416723,15 @@ 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), @@ -406728,76 +416741,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3651), - [anon_sym_into] = ACTIONS(3651), - [anon_sym_join] = ACTIONS(3651), - [anon_sym_on] = ACTIONS(3651), - [anon_sym_equals] = ACTIONS(3651), - [anon_sym_let] = ACTIONS(3651), - [anon_sym_orderby] = ACTIONS(3651), - [anon_sym_group] = ACTIONS(3651), - [anon_sym_by] = ACTIONS(3651), - [anon_sym_select] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -406810,15 +416815,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2372] = { - [sym__name] = STATE(3386), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_ref_type] = STATE(3157), - [sym__scoped_base_type] = STATE(3158), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2372), [sym_preproc_endregion] = STATE(2372), [sym_preproc_line] = STATE(2372), @@ -406828,67 +416824,77 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3969), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -406910,76 +416916,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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_global] = ACTIONS(4118), - [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_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4118), - [anon_sym_GT] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4118), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_CARET] = ACTIONS(4120), - [anon_sym_PIPE] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4118), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(4118), - [anon_sym_GT_GT_GT] = 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(4118), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_EQ_GT] = ACTIONS(4120), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(4118), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(4120), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4120), - [anon_sym_QMARK_QMARK] = ACTIONS(4120), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4120), - [anon_sym_with] = ACTIONS(4118), - [aux_sym_preproc_if_token3] = ACTIONS(4120), - [aux_sym_preproc_else_token1] = ACTIONS(4120), - [aux_sym_preproc_elif_token1] = ACTIONS(4120), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407001,76 +417008,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), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [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_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [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(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407092,76 +417100,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), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4128), - [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_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4128), - [anon_sym_GT] = ACTIONS(4128), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_SLASH] = ACTIONS(4128), - [anon_sym_PERCENT] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_PIPE] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_LT] = ACTIONS(4128), - [anon_sym_GT_GT] = ACTIONS(4128), - [anon_sym_GT_GT_GT] = ACTIONS(4128), - [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(4128), - [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(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4126), - [anon_sym_DASH_EQ] = ACTIONS(4126), - [anon_sym_STAR_EQ] = ACTIONS(4126), - [anon_sym_SLASH_EQ] = ACTIONS(4126), - [anon_sym_PERCENT_EQ] = ACTIONS(4126), - [anon_sym_AMP_EQ] = ACTIONS(4126), - [anon_sym_CARET_EQ] = ACTIONS(4126), - [anon_sym_PIPE_EQ] = ACTIONS(4126), - [anon_sym_LT_LT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4128), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407183,76 +417192,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), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3623), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_from] = ACTIONS(3623), - [anon_sym_into] = ACTIONS(3623), - [anon_sym_join] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_let] = ACTIONS(3623), - [anon_sym_orderby] = ACTIONS(3623), - [anon_sym_group] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_select] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407265,6 +417275,7 @@ 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), @@ -407274,76 +417285,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2377), [sym_preproc_define] = STATE(2377), [sym_preproc_undef] = STATE(2377), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4130), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407365,76 +417376,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4100), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407456,76 +417468,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407547,76 +417560,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), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [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_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407638,76 +417652,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), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4132), - [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_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(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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407720,15 +417735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2382] = { - [sym__name] = STATE(3014), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2382), [sym_preproc_endregion] = STATE(2382), [sym_preproc_line] = STATE(2382), @@ -407738,67 +417744,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2382), [sym_preproc_define] = STATE(2382), [sym_preproc_undef] = STATE(2382), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(4142), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(4142), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(4142), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(4142), - [anon_sym_orderby] = ACTIONS(4142), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(4142), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(4142), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407820,76 +417836,77 @@ 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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_SEMI] = ACTIONS(4120), - [anon_sym_global] = ACTIONS(4118), - [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_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4118), - [anon_sym_GT] = ACTIONS(4118), - [anon_sym_in] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4118), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_CARET] = ACTIONS(4120), - [anon_sym_PIPE] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4118), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(4118), - [anon_sym_GT_GT_GT] = 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(4118), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_EQ_GT] = ACTIONS(4120), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(4118), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(4120), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4120), - [anon_sym_QMARK_QMARK] = ACTIONS(4120), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4120), - [anon_sym_with] = ACTIONS(4118), - [aux_sym_preproc_if_token3] = ACTIONS(4120), - [aux_sym_preproc_else_token1] = ACTIONS(4120), - [aux_sym_preproc_elif_token1] = ACTIONS(4120), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407902,14 +417919,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2384] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2466), - [sym_property_pattern_clause] = STATE(2519), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2384), [sym_preproc_endregion] = STATE(2384), [sym_preproc_line] = STATE(2384), @@ -407919,67 +417928,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3817), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -407992,14 +418011,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2385] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2491), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2385), [sym_preproc_endregion] = STATE(2385), [sym_preproc_line] = STATE(2385), @@ -408009,67 +418020,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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3821), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3821), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3821), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3821), - [anon_sym_orderby] = ACTIONS(3821), - [anon_sym_ascending] = ACTIONS(3821), - [anon_sym_descending] = ACTIONS(3821), - [anon_sym_group] = ACTIONS(3821), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408082,14 +418103,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2386] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2457), - [sym_property_pattern_clause] = STATE(2498), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2386), [sym_preproc_endregion] = STATE(2386), [sym_preproc_line] = STATE(2386), @@ -408099,67 +418112,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3821), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408172,14 +418195,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2387] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2387), [sym_preproc_endregion] = STATE(2387), [sym_preproc_line] = STATE(2387), @@ -408189,67 +418204,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408262,6 +418287,14 @@ 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), @@ -408271,75 +418304,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3651), - [anon_sym_where] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3651), - [anon_sym_join] = ACTIONS(3651), - [anon_sym_on] = ACTIONS(3651), - [anon_sym_equals] = ACTIONS(3651), - [anon_sym_let] = ACTIONS(3651), - [anon_sym_orderby] = ACTIONS(3651), - [anon_sym_group] = ACTIONS(3651), - [anon_sym_by] = ACTIONS(3651), - [anon_sym_select] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408350,16 +418376,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(3893), }, [2389] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2490), - [sym_property_pattern_clause] = STATE(2562), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2389), [sym_preproc_endregion] = STATE(2389), [sym_preproc_line] = STATE(2389), @@ -408369,67 +418388,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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_in] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408442,14 +418471,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2390] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2494), - [sym_property_pattern_clause] = STATE(2559), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), + [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), @@ -408459,67 +418499,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2390), [sym_preproc_define] = STATE(2390), [sym_preproc_undef] = STATE(2390), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COMMA] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3821), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3821), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3821), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3821), - [anon_sym_orderby] = ACTIONS(3821), - [anon_sym_ascending] = ACTIONS(3821), - [anon_sym_descending] = ACTIONS(3821), - [anon_sym_group] = ACTIONS(3821), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408532,14 +418563,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2391] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2494), - [sym_property_pattern_clause] = STATE(2559), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), + [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), @@ -408549,79 +418580,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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3817), - [anon_sym_descending] = ACTIONS(3817), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [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), @@ -408631,95 +418672,81 @@ 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), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_RBRACK] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_in] = ACTIONS(4070), - [anon_sym_where] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_EQ_GT] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4072), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [anon_sym_QMARK_QMARK] = ACTIONS(4072), - [anon_sym_from] = 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_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(4070), - [anon_sym_with] = ACTIONS(4070), - [aux_sym_preproc_if_token3] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = 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__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), }, [2393] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2494), - [sym_property_pattern_clause] = STATE(2559), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2393), [sym_preproc_endregion] = STATE(2393), [sym_preproc_line] = STATE(2393), @@ -408729,67 +418756,77 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3817), - [anon_sym_descending] = ACTIONS(3817), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408802,14 +418839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2394] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2457), - [sym_property_pattern_clause] = STATE(2498), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2394), [sym_preproc_endregion] = STATE(2394), [sym_preproc_line] = STATE(2394), @@ -408819,67 +418848,77 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3817), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408892,14 +418931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2395] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2395), [sym_preproc_endregion] = STATE(2395), [sym_preproc_line] = STATE(2395), @@ -408909,67 +418940,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3823), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -408982,14 +419023,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2396] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2490), - [sym_property_pattern_clause] = STATE(2562), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3109), + [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(2396), [sym_preproc_endregion] = STATE(2396), [sym_preproc_line] = STATE(2396), @@ -408999,67 +419051,58 @@ 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), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_in] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), @@ -409072,14 +419115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2397] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2457), - [sym_property_pattern_clause] = STATE(2498), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2397), [sym_preproc_endregion] = STATE(2397), [sym_preproc_line] = STATE(2397), @@ -409089,67 +419124,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3823), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3821), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409162,14 +419207,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2398] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2398), [sym_preproc_endregion] = STATE(2398), [sym_preproc_line] = STATE(2398), @@ -409179,67 +419216,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2398), [sym_preproc_define] = STATE(2398), [sym_preproc_undef] = STATE(2398), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409261,75 +419308,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), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [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_RBRACE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_in] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [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(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409342,14 +419391,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2400] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2466), - [sym_property_pattern_clause] = STATE(2519), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), + [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(2400), [sym_preproc_endregion] = STATE(2400), [sym_preproc_line] = STATE(2400), @@ -409359,67 +419408,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_COLON] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3821), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409430,16 +419480,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(3893), }, [2401] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2457), - [sym_property_pattern_clause] = STATE(2498), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2401), [sym_preproc_endregion] = STATE(2401), [sym_preproc_line] = STATE(2401), @@ -409449,67 +419492,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2401), [sym_preproc_define] = STATE(2401), [sym_preproc_undef] = STATE(2401), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3817), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), @@ -409522,14 +419575,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2402] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2193), - [sym_property_pattern_clause] = STATE(2233), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2402), [sym_preproc_endregion] = STATE(2402), [sym_preproc_line] = STATE(2402), @@ -409539,67 +419584,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409612,14 +419667,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2403] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2466), - [sym_property_pattern_clause] = STATE(2519), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -409629,67 +419685,68 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COLON] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3817), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409702,14 +419759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2404] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2404), [sym_preproc_endregion] = STATE(2404), [sym_preproc_line] = STATE(2404), @@ -409719,67 +419768,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3813), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409801,75 +419860,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2405), [sym_preproc_define] = STATE(2405), [sym_preproc_undef] = STATE(2405), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409882,14 +419943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2406] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2490), - [sym_property_pattern_clause] = STATE(2562), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2406), [sym_preproc_endregion] = STATE(2406), [sym_preproc_line] = STATE(2406), @@ -409899,67 +419952,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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_in] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -409981,75 +420044,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2407), [sym_preproc_define] = STATE(2407), [sym_preproc_undef] = STATE(2407), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(4112), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_in] = ACTIONS(4112), - [anon_sym_where] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_EQ_GT] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4114), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_from] = 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_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(4112), - [anon_sym_with] = ACTIONS(4112), - [aux_sym_preproc_if_token3] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410071,75 +420136,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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [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_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [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(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410152,6 +420219,14 @@ 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), @@ -410161,75 +420236,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [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_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [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(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410240,16 +420308,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(3893), }, [2410] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2219), - [sym_property_pattern_clause] = STATE(2251), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2410), [sym_preproc_endregion] = STATE(2410), [sym_preproc_line] = STATE(2410), @@ -410259,67 +420320,77 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3823), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410341,75 +420412,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2411), [sym_preproc_define] = STATE(2411), [sym_preproc_undef] = STATE(2411), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4132), - [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(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(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), + [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_LBRACE] = 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), @@ -410422,14 +420495,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2412] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2491), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2412), [sym_preproc_endregion] = STATE(2412), [sym_preproc_line] = STATE(2412), @@ -410439,67 +420504,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2412), [sym_preproc_define] = STATE(2412), [sym_preproc_undef] = STATE(2412), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3817), - [anon_sym_descending] = ACTIONS(3817), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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_LBRACE] = 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), @@ -410512,14 +420587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2413] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2491), - [sym_property_pattern_clause] = STATE(2552), - [sym__variable_designation] = STATE(3711), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3559), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(2413), [sym_preproc_endregion] = STATE(2413), [sym_preproc_line] = STATE(2413), @@ -410529,67 +420596,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2413), [sym_preproc_define] = STATE(2413), [sym_preproc_undef] = STATE(2413), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_COMMA] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3817), - [anon_sym_descending] = ACTIONS(3817), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410602,14 +420679,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2414] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2466), - [sym_property_pattern_clause] = STATE(2519), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4729), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2414), [sym_preproc_endregion] = STATE(2414), [sym_preproc_line] = STATE(2414), @@ -410619,67 +420688,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2414), [sym_preproc_define] = STATE(2414), [sym_preproc_undef] = STATE(2414), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3823), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3821), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), + [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_EQ_GT] = ACTIONS(4118), + [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), + [aux_sym_preproc_if_token3] = ACTIONS(4118), + [aux_sym_preproc_else_token1] = ACTIONS(4118), + [aux_sym_preproc_elif_token1] = ACTIONS(4118), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410701,75 +420780,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2415), [sym_preproc_define] = STATE(2415), [sym_preproc_undef] = STATE(2415), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_EQ] = ACTIONS(4108), - [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_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4106), - [anon_sym_where] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [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(4108), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [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), + [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), + [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_EQ_GT] = ACTIONS(4122), + [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), + [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), @@ -410782,14 +420863,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2416] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2660), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2416), [sym_preproc_endregion] = STATE(2416), [sym_preproc_line] = STATE(2416), @@ -410799,66 +420872,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2416), [sym_preproc_define] = STATE(2416), [sym_preproc_undef] = STATE(2416), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [sym__identifier_token] = ACTIONS(4124), + [anon_sym_alias] = ACTIONS(4124), + [anon_sym_SEMI] = ACTIONS(4126), + [anon_sym_global] = ACTIONS(4124), + [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_file] = ACTIONS(4124), + [anon_sym_LT] = ACTIONS(4124), + [anon_sym_GT] = ACTIONS(4124), + [anon_sym_in] = 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_EQ_GT] = ACTIONS(4126), + [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_if_token3] = ACTIONS(4126), + [aux_sym_preproc_else_token1] = ACTIONS(4126), + [aux_sym_preproc_elif_token1] = ACTIONS(4126), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -410871,14 +420955,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2417] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2520), - [sym_property_pattern_clause] = STATE(2681), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2417), [sym_preproc_endregion] = STATE(2417), [sym_preproc_line] = STATE(2417), @@ -410888,66 +420964,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2417), [sym_preproc_define] = STATE(2417), [sym_preproc_undef] = STATE(2417), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3817), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), @@ -410960,11 +421047,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2418] = { - [sym_property_pattern_clause] = STATE(2482), - [sym__variable_designation] = STATE(4719), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2418), [sym_preproc_endregion] = STATE(2418), [sym_preproc_line] = STATE(2418), @@ -410974,101 +421056,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2418), [sym_preproc_define] = STATE(2418), [sym_preproc_undef] = STATE(2418), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3849), + [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(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_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_into] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2419] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7477), - [sym__name] = STATE(5709), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5579), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2419), [sym_preproc_endregion] = STATE(2419), [sym_preproc_line] = STATE(2419), @@ -411078,54 +421147,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2419), [sym_preproc_define] = STATE(2419), [sym_preproc_undef] = STATE(2419), - [aux_sym_using_directive_repeat1] = STATE(5563), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2455), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(4149), - [anon_sym_static] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(4153), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -411138,11 +421229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2420] = { - [sym_property_pattern_clause] = STATE(2483), - [sym__variable_designation] = STATE(4408), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2420), [sym_preproc_endregion] = STATE(2420), [sym_preproc_line] = STATE(2420), @@ -411152,89 +421238,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2420), [sym_preproc_define] = STATE(2420), [sym_preproc_undef] = STATE(2420), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3845), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2421] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2642), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2421), [sym_preproc_endregion] = STATE(2421), [sym_preproc_line] = STATE(2421), @@ -411244,66 +421329,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3821), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411316,14 +421411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2422] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2504), - [sym_property_pattern_clause] = STATE(2737), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2422), [sym_preproc_endregion] = STATE(2422), [sym_preproc_line] = STATE(2422), @@ -411333,66 +421420,76 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411405,14 +421502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2423] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2660), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2423), [sym_preproc_endregion] = STATE(2423), [sym_preproc_line] = STATE(2423), @@ -411422,66 +421511,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2423), [sym_preproc_define] = STATE(2423), [sym_preproc_undef] = STATE(2423), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411494,14 +421593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2424] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2520), - [sym_property_pattern_clause] = STATE(2681), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2424), [sym_preproc_endregion] = STATE(2424), [sym_preproc_line] = STATE(2424), @@ -411511,66 +421602,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2424), [sym_preproc_define] = STATE(2424), [sym_preproc_undef] = STATE(2424), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3817), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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_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_into] = ACTIONS(4144), + [anon_sym_join] = ACTIONS(4144), + [anon_sym_on] = ACTIONS(4144), + [anon_sym_equals] = ACTIONS(4144), + [anon_sym_let] = ACTIONS(4144), + [anon_sym_orderby] = ACTIONS(4144), + [anon_sym_group] = ACTIONS(4144), + [anon_sym_by] = ACTIONS(4144), + [anon_sym_select] = ACTIONS(4144), + [anon_sym_as] = ACTIONS(4144), + [anon_sym_is] = ACTIONS(4144), + [anon_sym_DASH_GT] = ACTIONS(4144), + [anon_sym_with] = ACTIONS(4144), + [aux_sym_preproc_if_token3] = ACTIONS(4144), + [aux_sym_preproc_else_token1] = ACTIONS(4144), + [aux_sym_preproc_elif_token1] = ACTIONS(4144), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411583,14 +421684,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2425] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2502), - [sym_property_pattern_clause] = STATE(2759), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2425), [sym_preproc_endregion] = STATE(2425), [sym_preproc_line] = STATE(2425), @@ -411600,66 +421693,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2425), [sym_preproc_define] = STATE(2425), [sym_preproc_undef] = STATE(2425), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3821), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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_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_into] = ACTIONS(4148), + [anon_sym_join] = ACTIONS(4148), + [anon_sym_on] = ACTIONS(4148), + [anon_sym_equals] = ACTIONS(4148), + [anon_sym_let] = ACTIONS(4148), + [anon_sym_orderby] = ACTIONS(4148), + [anon_sym_group] = ACTIONS(4148), + [anon_sym_by] = ACTIONS(4148), + [anon_sym_select] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4148), + [anon_sym_is] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(4148), + [anon_sym_with] = ACTIONS(4148), + [aux_sym_preproc_if_token3] = ACTIONS(4148), + [aux_sym_preproc_else_token1] = ACTIONS(4148), + [aux_sym_preproc_elif_token1] = ACTIONS(4148), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411672,14 +421775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2426] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2504), - [sym_property_pattern_clause] = STATE(2737), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2426), [sym_preproc_endregion] = STATE(2426), [sym_preproc_line] = STATE(2426), @@ -411689,66 +421784,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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3821), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3821), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3821), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3821), - [anon_sym_orderby] = ACTIONS(3821), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3821), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411761,15 +421866,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2427] = { - [sym__name] = STATE(3014), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2427), [sym_preproc_endregion] = STATE(2427), [sym_preproc_line] = STATE(2427), @@ -411779,65 +421875,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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(4142), - [anon_sym_select] = ACTIONS(3827), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411850,14 +421957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2428] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2642), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2428), [sym_preproc_endregion] = STATE(2428), [sym_preproc_line] = STATE(2428), @@ -411867,66 +421966,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3817), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -411939,11 +422048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2429] = { - [sym_property_pattern_clause] = STATE(2484), - [sym__variable_designation] = STATE(4408), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2429), [sym_preproc_endregion] = STATE(2429), [sym_preproc_line] = STATE(2429), @@ -411953,89 +422057,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2429), [sym_preproc_define] = STATE(2429), [sym_preproc_undef] = STATE(2429), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3845), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2430] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2629), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2430), [sym_preproc_endregion] = STATE(2430), [sym_preproc_line] = STATE(2430), @@ -412045,66 +422148,76 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3817), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412117,11 +422230,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2431] = { - [sym_property_pattern_clause] = STATE(2487), - [sym__variable_designation] = STATE(4719), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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), @@ -412131,89 +422248,79 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3849), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2432] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2510), - [sym_property_pattern_clause] = STATE(2642), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2432), [sym_preproc_endregion] = STATE(2432), [sym_preproc_line] = STATE(2432), @@ -412223,66 +422330,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3817), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412295,14 +422412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2433] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2517), - [sym_property_pattern_clause] = STATE(2756), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2433), [sym_preproc_endregion] = STATE(2433), [sym_preproc_line] = STATE(2433), @@ -412312,66 +422421,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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3817), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4166), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_from] = ACTIONS(4164), + [anon_sym_into] = ACTIONS(4164), + [anon_sym_join] = ACTIONS(4164), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_orderby] = ACTIONS(4164), + [anon_sym_group] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_select] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412384,14 +422503,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2434] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2520), - [sym_property_pattern_clause] = STATE(2681), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -412401,66 +422521,67 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3821), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412473,14 +422594,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2435] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2517), - [sym_property_pattern_clause] = STATE(2756), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2435), [sym_preproc_endregion] = STATE(2435), [sym_preproc_line] = STATE(2435), @@ -412490,66 +422603,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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3821), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412562,14 +422685,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2436] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2502), - [sym_property_pattern_clause] = STATE(2759), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -412579,66 +422703,67 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3817), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412651,15 +422776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2437] = { - [sym__name] = STATE(3014), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2437), [sym_preproc_endregion] = STATE(2437), [sym_preproc_line] = STATE(2437), @@ -412669,65 +422785,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4157), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3827), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3827), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(4142), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412740,14 +422867,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2438] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2629), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), + [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(2438), [sym_preproc_endregion] = STATE(2438), [sym_preproc_line] = STATE(2438), @@ -412757,66 +422885,67 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3817), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412829,26 +422958,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2439] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7271), - [sym__name] = STATE(5713), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5581), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -412858,54 +422976,67 @@ 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), - [aux_sym_using_directive_repeat1] = STATE(5558), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2476), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(4159), - [anon_sym_static] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -412918,14 +423049,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2440] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2499), - [sym_property_pattern_clause] = STATE(2645), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2440), [sym_preproc_endregion] = STATE(2440), [sym_preproc_line] = STATE(2440), @@ -412935,66 +423058,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2440), [sym_preproc_define] = STATE(2440), [sym_preproc_undef] = STATE(2440), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3821), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3821), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413007,15 +423140,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2441] = { - [sym__name] = STATE(3454), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_ref_type] = STATE(2859), - [sym__scoped_base_type] = STATE(2857), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), + [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(2441), [sym_preproc_endregion] = STATE(2441), [sym_preproc_line] = STATE(2441), @@ -413025,65 +423158,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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3802), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3802), - [anon_sym_into] = ACTIONS(3806), - [anon_sym_join] = ACTIONS(3802), - [anon_sym_on] = ACTIONS(3806), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413096,14 +423231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2442] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2527), - [sym_property_pattern_clause] = STATE(2660), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2442), [sym_preproc_endregion] = STATE(2442), [sym_preproc_line] = STATE(2442), @@ -413113,66 +423240,76 @@ 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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3821), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3821), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3821), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3821), - [anon_sym_orderby] = ACTIONS(3821), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3821), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3821), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413185,15 +423322,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2443] = { - [sym__name] = STATE(3014), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_ref_type] = STATE(2940), - [sym__scoped_base_type] = STATE(2951), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [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(2443), [sym_preproc_endregion] = STATE(2443), [sym_preproc_line] = STATE(2443), @@ -413203,65 +423340,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3827), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3827), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3827), - [anon_sym_on] = ACTIONS(4142), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413274,14 +423413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2444] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2499), - [sym_property_pattern_clause] = STATE(2645), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2444), [sym_preproc_endregion] = STATE(2444), [sym_preproc_line] = STATE(2444), @@ -413291,66 +423422,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2444), [sym_preproc_define] = STATE(2444), [sym_preproc_undef] = STATE(2444), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3817), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413363,15 +423504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2445] = { - [sym__name] = STATE(3454), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_ref_type] = STATE(2859), - [sym__scoped_base_type] = STATE(2857), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2445), [sym_preproc_endregion] = STATE(2445), [sym_preproc_line] = STATE(2445), @@ -413381,65 +423513,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2445), [sym_preproc_define] = STATE(2445), [sym_preproc_undef] = STATE(2445), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3802), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3802), - [anon_sym_into] = ACTIONS(3806), - [anon_sym_join] = ACTIONS(3802), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3806), - [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(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413452,14 +423595,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2446] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2502), - [sym_property_pattern_clause] = STATE(2759), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2446), [sym_preproc_endregion] = STATE(2446), [sym_preproc_line] = STATE(2446), @@ -413469,66 +423604,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3817), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413541,15 +423686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2447] = { - [sym__name] = STATE(3454), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_ref_type] = STATE(2859), - [sym__scoped_base_type] = STATE(2857), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2447), [sym_preproc_endregion] = STATE(2447), [sym_preproc_line] = STATE(2447), @@ -413559,65 +423695,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2447), [sym_preproc_define] = STATE(2447), [sym_preproc_undef] = STATE(2447), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3802), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3802), - [anon_sym_into] = ACTIONS(3806), - [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(3806), - [anon_sym_select] = ACTIONS(3802), - [anon_sym_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413630,14 +423777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2448] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2517), - [sym_property_pattern_clause] = STATE(2756), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2448), [sym_preproc_endregion] = STATE(2448), [sym_preproc_line] = STATE(2448), @@ -413647,66 +423786,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2448), [sym_preproc_define] = STATE(2448), [sym_preproc_undef] = STATE(2448), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3817), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413719,14 +423868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2449] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2504), - [sym_property_pattern_clause] = STATE(2737), - [sym__variable_designation] = STATE(4053), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(4009), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2449), [sym_preproc_endregion] = STATE(2449), [sym_preproc_line] = STATE(2449), @@ -413736,66 +423877,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2449), [sym_preproc_define] = STATE(2449), [sym_preproc_undef] = STATE(2449), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3817), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3817), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3817), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3817), - [anon_sym_orderby] = ACTIONS(3817), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3817), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3817), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413808,14 +423959,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2450] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2523), - [sym_property_pattern_clause] = STATE(2629), - [sym__variable_designation] = STATE(3306), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3334), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2450), [sym_preproc_endregion] = STATE(2450), [sym_preproc_line] = STATE(2450), @@ -413825,66 +423968,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2450), [sym_preproc_define] = STATE(2450), [sym_preproc_undef] = STATE(2450), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3821), - [anon_sym_GT] = ACTIONS(3821), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3821), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_PLUS_PLUS] = ACTIONS(3823), - [anon_sym_DASH_DASH] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3821), - [anon_sym_DASH] = ACTIONS(3821), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_SLASH] = ACTIONS(3821), - [anon_sym_PERCENT] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_PIPE] = ACTIONS(3821), - [anon_sym_AMP] = ACTIONS(3821), - [anon_sym_LT_LT] = ACTIONS(3823), - [anon_sym_GT_GT] = ACTIONS(3821), - [anon_sym_GT_GT_GT] = ACTIONS(3823), - [anon_sym_EQ_EQ] = ACTIONS(3823), - [anon_sym_BANG_EQ] = ACTIONS(3823), - [anon_sym_GT_EQ] = ACTIONS(3823), - [anon_sym_LT_EQ] = ACTIONS(3823), - [anon_sym_DOT] = ACTIONS(3821), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3821), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_and] = ACTIONS(3821), - [anon_sym_or] = ACTIONS(3821), - [anon_sym_AMP_AMP] = ACTIONS(3823), - [anon_sym_PIPE_PIPE] = ACTIONS(3823), - [anon_sym_QMARK_QMARK] = ACTIONS(3823), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3821), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3821), - [anon_sym_is] = ACTIONS(3821), - [anon_sym_DASH_GT] = ACTIONS(3823), - [anon_sym_with] = ACTIONS(3821), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413897,14 +424050,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2451] = { - [sym_parameter_list] = STATE(7383), - [sym_positional_pattern_clause] = STATE(2499), - [sym_property_pattern_clause] = STATE(2645), - [sym__variable_designation] = STATE(3203), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(3236), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2451), [sym_preproc_endregion] = STATE(2451), [sym_preproc_line] = STATE(2451), @@ -413914,66 +424068,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_LPAREN] = ACTIONS(3813), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3817), - [anon_sym_GT] = ACTIONS(3817), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3817), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3817), - [anon_sym_PLUS_PLUS] = ACTIONS(3813), - [anon_sym_DASH_DASH] = ACTIONS(3813), - [anon_sym_PLUS] = ACTIONS(3817), - [anon_sym_DASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3813), - [anon_sym_SLASH] = ACTIONS(3817), - [anon_sym_PERCENT] = ACTIONS(3813), - [anon_sym_CARET] = ACTIONS(3813), - [anon_sym_PIPE] = ACTIONS(3817), - [anon_sym_AMP] = ACTIONS(3817), - [anon_sym_LT_LT] = ACTIONS(3813), - [anon_sym_GT_GT] = ACTIONS(3817), - [anon_sym_GT_GT_GT] = ACTIONS(3813), - [anon_sym_EQ_EQ] = ACTIONS(3813), - [anon_sym_BANG_EQ] = ACTIONS(3813), - [anon_sym_GT_EQ] = ACTIONS(3813), - [anon_sym_LT_EQ] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(3817), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3817), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3813), - [anon_sym_and] = ACTIONS(3817), - [anon_sym_or] = ACTIONS(3817), - [anon_sym_AMP_AMP] = ACTIONS(3813), - [anon_sym_PIPE_PIPE] = ACTIONS(3813), - [anon_sym_QMARK_QMARK] = ACTIONS(3813), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3817), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3817), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3817), - [anon_sym_is] = ACTIONS(3817), - [anon_sym_DASH_GT] = ACTIONS(3813), - [anon_sym_with] = ACTIONS(3817), + [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -413986,26 +424141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2452] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7477), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2452), [sym_preproc_endregion] = STATE(2452), [sym_preproc_line] = STATE(2452), @@ -414015,53 +424150,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2452), [sym_preproc_define] = STATE(2452), [sym_preproc_undef] = STATE(2452), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414074,26 +424232,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2453] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7299), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2453), [sym_preproc_endregion] = STATE(2453), [sym_preproc_line] = STATE(2453), @@ -414103,53 +424241,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2453), [sym_preproc_define] = STATE(2453), [sym_preproc_undef] = STATE(2453), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414162,26 +424323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2454] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7152), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2454), [sym_preproc_endregion] = STATE(2454), [sym_preproc_line] = STATE(2454), @@ -414191,53 +424332,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2454), [sym_preproc_define] = STATE(2454), [sym_preproc_undef] = STATE(2454), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414250,26 +424414,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2455] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7470), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2455), [sym_preproc_endregion] = STATE(2455), [sym_preproc_line] = STATE(2455), @@ -414279,53 +424423,75 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414338,10 +424504,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2456] = { - [sym_parameter_list] = STATE(7383), - [sym__lambda_parameters] = STATE(7499), - [sym_identifier] = STATE(7472), - [sym__reserved_identifier] = STATE(2106), + [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_preproc_region] = STATE(2456), [sym_preproc_endregion] = STATE(2456), [sym_preproc_line] = STATE(2456), @@ -414351,86 +424521,79 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3861), - [anon_sym_global] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_file] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_where] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_notnull] = ACTIONS(3861), - [anon_sym_unmanaged] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_scoped] = ACTIONS(3861), - [anon_sym_var] = ACTIONS(3861), - [anon_sym_yield] = ACTIONS(3861), - [anon_sym_switch] = ACTIONS(3861), - [anon_sym_when] = ACTIONS(3861), - [sym_discard] = ACTIONS(3861), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3861), - [anon_sym_into] = ACTIONS(3861), - [anon_sym_join] = ACTIONS(3861), - [anon_sym_on] = ACTIONS(3861), - [anon_sym_equals] = ACTIONS(3861), - [anon_sym_let] = ACTIONS(3861), - [anon_sym_orderby] = ACTIONS(3861), - [anon_sym_ascending] = ACTIONS(3861), - [anon_sym_descending] = ACTIONS(3861), - [anon_sym_group] = ACTIONS(3861), - [anon_sym_by] = ACTIONS(3861), - [anon_sym_select] = ACTIONS(3861), - [anon_sym_as] = ACTIONS(3861), - [anon_sym_is] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3861), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3863), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2457] = { - [sym_property_pattern_clause] = STATE(2501), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2457), [sym_preproc_endregion] = STATE(2457), [sym_preproc_line] = STATE(2457), @@ -414440,68 +424603,75 @@ 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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3847), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414514,26 +424684,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2458] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7152), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -414543,53 +424701,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2461), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4171), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414602,26 +424774,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2459] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7278), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -414631,53 +424791,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2459), [sym_preproc_define] = STATE(2459), [sym_preproc_undef] = STATE(2459), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414690,26 +424864,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2460] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7477), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2460), [sym_preproc_endregion] = STATE(2460), [sym_preproc_line] = STATE(2460), @@ -414719,53 +424873,75 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2455), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4153), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414778,26 +424954,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2461] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7311), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(2461), [sym_preproc_endregion] = STATE(2461), [sym_preproc_line] = STATE(2461), @@ -414807,53 +424971,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414866,25 +425044,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2462] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(4171), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [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_preproc_region] = STATE(2462), [sym_preproc_endregion] = STATE(2462), [sym_preproc_line] = STATE(2462), @@ -414894,54 +425061,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(3825), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -414954,26 +425134,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2463] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7361), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(2463), [sym_preproc_endregion] = STATE(2463), [sym_preproc_line] = STATE(2463), @@ -414983,53 +425151,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2453), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415042,26 +425224,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2464] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7233), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(2464), [sym_preproc_endregion] = STATE(2464), [sym_preproc_line] = STATE(2464), @@ -415071,85 +425241,79 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, [2465] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7271), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2465), [sym_preproc_endregion] = STATE(2465), [sym_preproc_line] = STATE(2465), @@ -415159,53 +425323,75 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2476), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4161), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415218,11 +425404,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2466] = { - [sym_property_pattern_clause] = STATE(2509), - [sym__variable_designation] = STATE(3231), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2466), [sym_preproc_endregion] = STATE(2466), [sym_preproc_line] = STATE(2466), @@ -415232,68 +425421,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3847), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415306,26 +425494,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2467] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7255), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -415335,53 +425511,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415394,25 +425584,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2468] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [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(2468), [sym_preproc_endregion] = STATE(2468), [sym_preproc_line] = STATE(2468), @@ -415422,54 +425601,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(3825), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415482,26 +425674,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2469] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7311), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(2469), [sym_preproc_endregion] = STATE(2469), [sym_preproc_line] = STATE(2469), @@ -415511,53 +425691,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2472), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4175), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415570,11 +425764,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2470] = { - [sym_property_pattern_clause] = STATE(2496), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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(2470), [sym_preproc_endregion] = STATE(2470), [sym_preproc_line] = STATE(2470), @@ -415584,68 +425781,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3851), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415658,26 +425854,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2471] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7296), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -415687,53 +425871,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2467), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -415746,26 +425944,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2472] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7211), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -415775,53 +425961,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415834,26 +426034,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2473] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7361), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(2473), [sym_preproc_endregion] = STATE(2473), [sym_preproc_line] = STATE(2473), @@ -415863,53 +426051,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415922,11 +426124,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2474] = { - [sym_property_pattern_clause] = STATE(2511), - [sym__variable_designation] = STATE(3204), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2474), [sym_preproc_endregion] = STATE(2474), [sym_preproc_line] = STATE(2474), @@ -415936,68 +426133,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2474), [sym_preproc_define] = STATE(2474), [sym_preproc_undef] = STATE(2474), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3851), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416010,26 +426214,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2475] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7271), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5732), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -416039,53 +426231,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416098,26 +426304,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2476] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7296), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2476), [sym_preproc_endregion] = STATE(2476), [sym_preproc_line] = STATE(2476), @@ -416127,53 +426313,75 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416186,26 +426394,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2477] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7470), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -416215,53 +426411,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2459), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4179), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416274,26 +426484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2478] = { - [sym_modifier] = STATE(3650), - [sym_variable_declaration] = STATE(7299), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5733), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2478), [sym_preproc_endregion] = STATE(2478), [sym_preproc_line] = STATE(2478), @@ -416303,53 +426493,75 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2464), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(3965), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416362,10 +426574,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2479] = { - [sym__variable_designation] = STATE(4711), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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_preproc_region] = STATE(2479), [sym_preproc_endregion] = STATE(2479), [sym_preproc_line] = STATE(2479), @@ -416375,99 +426591,87 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3845), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2480] = { - [sym_modifier] = STATE(3650), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5936), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(2480), [sym_preproc_endregion] = STATE(2480), [sym_preproc_line] = STATE(2480), @@ -416477,53 +426681,67 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_extern] = ACTIONS(647), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(647), - [anon_sym_static] = ACTIONS(647), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_abstract] = ACTIONS(647), - [anon_sym_async] = ACTIONS(647), - [anon_sym_const] = ACTIONS(647), - [anon_sym_file] = ACTIONS(4183), - [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(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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(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_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), @@ -416536,7 +426754,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2481] = { - [sym_type_argument_list] = STATE(2335), + [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(2481), [sym_preproc_endregion] = STATE(2481), [sym_preproc_line] = STATE(2481), @@ -416546,110 +426771,19 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3958), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - }, - [2482] = { - [sym__variable_designation] = STATE(4680), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), - [sym_preproc_region] = STATE(2482), - [sym_preproc_endregion] = STATE(2482), - [sym_preproc_line] = STATE(2482), - [sym_preproc_pragma] = STATE(2482), - [sym_preproc_nullable] = STATE(2482), - [sym_preproc_error] = STATE(2482), - [sym_preproc_warning] = STATE(2482), - [sym_preproc_define] = STATE(2482), - [sym_preproc_undef] = STATE(2482), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), + [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_COMMA] = ACTIONS(3893), [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_file] = ACTIONS(3877), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(3877), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), + [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), @@ -416669,30 +426803,31 @@ 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(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), + [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(4013), - [sym_discard] = ACTIONS(4017), + [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_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(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), + [anon_sym_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), @@ -416707,13 +426842,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3893), + }, + [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_preproc_region] = STATE(2482), + [sym_preproc_endregion] = STATE(2482), + [sym_preproc_line] = STATE(2482), + [sym_preproc_pragma] = STATE(2482), + [sym_preproc_nullable] = STATE(2482), + [sym_preproc_error] = STATE(2482), + [sym_preproc_warning] = STATE(2482), + [sym_preproc_define] = STATE(2482), + [sym_preproc_undef] = STATE(2482), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2483] = { - [sym__variable_designation] = STATE(4573), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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_preproc_region] = STATE(2483), [sym_preproc_endregion] = STATE(2483), [sym_preproc_line] = STATE(2483), @@ -416723,84 +426951,79 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3897), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2484] = { - [sym__variable_designation] = STATE(4573), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), [sym_preproc_region] = STATE(2484), [sym_preproc_endregion] = STATE(2484), [sym_preproc_line] = STATE(2484), @@ -416810,85 +427033,87 @@ 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), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3897), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2485] = { - [sym_property_pattern_clause] = STATE(2555), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(2485), [sym_preproc_endregion] = STATE(2485), [sym_preproc_line] = STATE(2485), @@ -416898,67 +427123,75 @@ 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), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_in] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_where] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4166), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_from] = ACTIONS(4164), + [anon_sym_join] = ACTIONS(4164), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_let] = ACTIONS(4164), + [anon_sym_orderby] = ACTIONS(4164), + [anon_sym_group] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_select] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -416971,10 +427204,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2486] = { - [sym__variable_designation] = STATE(4711), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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_preproc_region] = STATE(2486), [sym_preproc_endregion] = STATE(2486), [sym_preproc_line] = STATE(2486), @@ -416984,107 +427221,19 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3845), - }, - [2487] = { - [sym__variable_designation] = STATE(4680), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), - [sym_preproc_region] = STATE(2487), - [sym_preproc_endregion] = STATE(2487), - [sym_preproc_line] = STATE(2487), - [sym_preproc_pragma] = STATE(2487), - [sym_preproc_nullable] = STATE(2487), - [sym_preproc_error] = STATE(2487), - [sym_preproc_warning] = STATE(2487), - [sym_preproc_define] = STATE(2487), - [sym_preproc_undef] = STATE(2487), - [sym__identifier_token] = ACTIONS(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), + [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_COMMA] = ACTIONS(3893), [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(4013), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_file] = ACTIONS(3877), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(4013), + [anon_sym_where] = ACTIONS(3877), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), + [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), @@ -417104,30 +427253,31 @@ 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(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), + [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(4013), - [sym_discard] = ACTIONS(4017), + [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(4013), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), + [anon_sym_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), @@ -417142,13 +427292,102 @@ static const uint16_t ts_parse_table[LARGE_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), + }, + [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_preproc_region] = STATE(2487), + [sym_preproc_endregion] = STATE(2487), + [sym_preproc_line] = STATE(2487), + [sym_preproc_pragma] = STATE(2487), + [sym_preproc_nullable] = STATE(2487), + [sym_preproc_error] = STATE(2487), + [sym_preproc_warning] = STATE(2487), + [sym_preproc_define] = STATE(2487), + [sym_preproc_undef] = STATE(2487), + [sym__identifier_token] = ACTIONS(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), }, [2488] = { - [sym__variable_designation] = STATE(4723), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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_preproc_region] = STATE(2488), [sym_preproc_endregion] = STATE(2488), [sym_preproc_line] = STATE(2488), @@ -417158,84 +427397,89 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3849), + [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), }, [2489] = { - [sym__variable_designation] = STATE(4723), - [sym_parenthesized_variable_designation] = STATE(4579), - [sym_identifier] = STATE(4618), - [sym__reserved_identifier] = STATE(4177), + [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_preproc_region] = STATE(2489), [sym_preproc_endregion] = STATE(2489), [sym_preproc_line] = STATE(2489), @@ -417245,85 +427489,86 @@ 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(4011), - [anon_sym_alias] = ACTIONS(4013), - [anon_sym_global] = ACTIONS(4013), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(4013), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4013), - [anon_sym_unmanaged] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4013), - [anon_sym_var] = ACTIONS(4013), - [anon_sym_yield] = ACTIONS(4013), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4013), - [sym_discard] = ACTIONS(4017), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(4013), - [anon_sym_into] = ACTIONS(4013), - [anon_sym_join] = ACTIONS(4013), - [anon_sym_on] = ACTIONS(4013), - [anon_sym_equals] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4013), - [anon_sym_orderby] = ACTIONS(4013), - [anon_sym_ascending] = ACTIONS(4013), - [anon_sym_descending] = ACTIONS(4013), - [anon_sym_group] = ACTIONS(4013), - [anon_sym_by] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3849), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2490] = { - [sym_property_pattern_clause] = STATE(2548), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), + [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_preproc_region] = STATE(2490), [sym_preproc_endregion] = STATE(2490), [sym_preproc_line] = STATE(2490), @@ -417333,67 +427578,66 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_in] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417406,11 +427650,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2491] = { - [sym_property_pattern_clause] = STATE(2545), - [sym__variable_designation] = STATE(3781), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2491), [sym_preproc_endregion] = STATE(2491), [sym_preproc_line] = STATE(2491), @@ -417420,67 +427679,54 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3847), - [anon_sym_descending] = ACTIONS(3847), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417493,11 +427739,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2492] = { - [sym_property_pattern_clause] = STATE(2549), - [sym__variable_designation] = STATE(3724), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2492), [sym_preproc_endregion] = STATE(2492), [sym_preproc_line] = STATE(2492), @@ -417507,67 +427756,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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417580,11 +427828,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2493] = { - [sym_property_pattern_clause] = STATE(2560), - [sym__variable_designation] = STATE(3724), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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(2493), [sym_preproc_endregion] = STATE(2493), [sym_preproc_line] = STATE(2493), @@ -417594,67 +427846,65 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417667,11 +427917,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2494] = { - [sym_property_pattern_clause] = STATE(2561), - [sym__variable_designation] = STATE(3781), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2494), [sym_preproc_endregion] = STATE(2494), [sym_preproc_line] = STATE(2494), @@ -417681,67 +427934,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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3847), - [anon_sym_descending] = ACTIONS(3847), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417754,11 +428006,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2495] = { - [sym_property_pattern_clause] = STATE(2676), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2495), [sym_preproc_endregion] = STATE(2495), [sym_preproc_line] = STATE(2495), @@ -417768,66 +428023,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3851), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -417840,10 +428095,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2496] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2496), [sym_preproc_endregion] = STATE(2496), [sym_preproc_line] = STATE(2496), @@ -417853,19 +428112,108 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2497), + [sym_preproc_endregion] = STATE(2497), + [sym_preproc_line] = STATE(2497), + [sym_preproc_pragma] = STATE(2497), + [sym_preproc_nullable] = STATE(2497), + [sym_preproc_error] = STATE(2497), + [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_COLON] = ACTIONS(3893), [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_file] = ACTIONS(3863), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), + [anon_sym_where] = ACTIONS(3895), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), + [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), @@ -417885,31 +428233,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(3811), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), + [anon_sym_scoped] = ACTIONS(3863), + [anon_sym_var] = ACTIONS(3863), + [anon_sym_yield] = ACTIONS(3863), [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3895), - [sym_discard] = ACTIONS(3831), + [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(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), + [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), @@ -417925,97 +428272,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2497] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), - [sym_preproc_region] = STATE(2497), - [sym_preproc_endregion] = STATE(2497), - [sym_preproc_line] = STATE(2497), - [sym_preproc_pragma] = STATE(2497), - [sym_preproc_nullable] = STATE(2497), - [sym_preproc_error] = STATE(2497), - [sym_preproc_warning] = STATE(2497), - [sym_preproc_define] = STATE(2497), - [sym_preproc_undef] = STATE(2497), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3851), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2498] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2498), [sym_preproc_endregion] = STATE(2498), [sym_preproc_line] = STATE(2498), @@ -418025,67 +428302,54 @@ 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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3847), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418098,11 +428362,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2499] = { - [sym_property_pattern_clause] = STATE(2582), - [sym__variable_designation] = STATE(3231), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2499), [sym_preproc_endregion] = STATE(2499), [sym_preproc_line] = STATE(2499), @@ -418112,156 +428379,159 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3847), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2500] = { - [sym_property_pattern_clause] = STATE(2769), - [sym__variable_designation] = STATE(3204), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), - [sym_preproc_region] = STATE(2500), - [sym_preproc_endregion] = STATE(2500), - [sym_preproc_line] = STATE(2500), - [sym_preproc_pragma] = STATE(2500), - [sym_preproc_nullable] = STATE(2500), - [sym_preproc_error] = STATE(2500), - [sym_preproc_warning] = STATE(2500), - [sym_preproc_define] = STATE(2500), - [sym_preproc_undef] = STATE(2500), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3851), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2500] = { + [sym_parameter_list] = STATE(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_preproc_region] = STATE(2500), + [sym_preproc_endregion] = STATE(2500), + [sym_preproc_line] = STATE(2500), + [sym_preproc_pragma] = STATE(2500), + [sym_preproc_nullable] = STATE(2500), + [sym_preproc_error] = STATE(2500), + [sym_preproc_warning] = STATE(2500), + [sym_preproc_define] = STATE(2500), + [sym_preproc_undef] = STATE(2500), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), [aux_sym_preproc_warning_token1] = ACTIONS(15), @@ -418270,10 +428540,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2501] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2501), [sym_preproc_endregion] = STATE(2501), [sym_preproc_line] = STATE(2501), @@ -418283,67 +428554,68 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3897), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), @@ -418354,13 +428626,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(3913), }, [2502] = { - [sym_property_pattern_clause] = STATE(2776), - [sym__variable_designation] = STATE(3231), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2502), [sym_preproc_endregion] = STATE(2502), [sym_preproc_line] = STATE(2502), @@ -418370,66 +428646,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3847), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418442,11 +428718,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2503] = { - [sym_property_pattern_clause] = STATE(2735), - [sym__variable_designation] = STATE(4042), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), + [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(2503), [sym_preproc_endregion] = STATE(2503), [sym_preproc_line] = STATE(2503), @@ -418456,66 +428736,65 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3851), - [anon_sym_orderby] = ACTIONS(3851), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3851), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418528,11 +428807,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2504] = { - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(4059), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), + [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(2504), [sym_preproc_endregion] = STATE(2504), [sym_preproc_line] = STATE(2504), @@ -418542,66 +428825,65 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418614,11 +428896,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2505] = { - [sym_property_pattern_clause] = STATE(2640), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2505), [sym_preproc_endregion] = STATE(2505), [sym_preproc_line] = STATE(2505), @@ -418628,66 +428913,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418700,7 +428985,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2506] = { - [sym_type_argument_list] = STATE(2694), + [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_preproc_region] = STATE(2506), [sym_preproc_endregion] = STATE(2506), [sym_preproc_line] = STATE(2506), @@ -418710,82 +429002,86 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(4185), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3748), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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(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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2507] = { + [sym_parameter_list] = STATE(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_preproc_region] = STATE(2507), [sym_preproc_endregion] = STATE(2507), [sym_preproc_line] = STATE(2507), @@ -418795,71 +429091,66 @@ 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(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3255), - [anon_sym_implicit] = ACTIONS(3253), - [anon_sym_explicit] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [sym_predefined_type] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [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), - [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), + [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), @@ -418872,11 +429163,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2508] = { - [sym_property_pattern_clause] = STATE(2665), - [sym__variable_designation] = STATE(4042), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), + [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_preproc_region] = STATE(2508), [sym_preproc_endregion] = STATE(2508), [sym_preproc_line] = STATE(2508), @@ -418886,66 +429180,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3851), - [anon_sym_orderby] = ACTIONS(3851), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3851), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -418958,10 +429252,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2509] = { - [sym__variable_designation] = STATE(3247), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2509), [sym_preproc_endregion] = STATE(2509), [sym_preproc_line] = STATE(2509), @@ -418971,67 +429269,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3897), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3899), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419044,11 +429341,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2510] = { - [sym_property_pattern_clause] = STATE(2627), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2510), [sym_preproc_endregion] = STATE(2510), [sym_preproc_line] = STATE(2510), @@ -419058,104 +429358,19 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3847), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2511] = { - [sym__variable_designation] = STATE(3237), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), - [sym_preproc_region] = STATE(2511), - [sym_preproc_endregion] = STATE(2511), - [sym_preproc_line] = STATE(2511), - [sym_preproc_pragma] = STATE(2511), - [sym_preproc_nullable] = STATE(2511), - [sym_preproc_error] = STATE(2511), - [sym_preproc_warning] = STATE(2511), - [sym_preproc_define] = STATE(2511), - [sym_preproc_undef] = STATE(2511), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), + [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_file] = ACTIONS(3811), + [anon_sym_LBRACE] = ACTIONS(3881), + [anon_sym_file] = ACTIONS(3877), [anon_sym_LT] = ACTIONS(3895), [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), + [anon_sym_where] = ACTIONS(3877), [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), + [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), @@ -419175,31 +429390,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(3811), - [anon_sym_EQ_GT] = ACTIONS(3893), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), + [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(3819), + [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_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(3811), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), + [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), @@ -419215,7 +429429,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [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_preproc_region] = STATE(2511), + [sym_preproc_endregion] = STATE(2511), + [sym_preproc_line] = STATE(2511), + [sym_preproc_pragma] = STATE(2511), + [sym_preproc_nullable] = STATE(2511), + [sym_preproc_error] = STATE(2511), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2512), [sym_preproc_endregion] = STATE(2512), [sym_preproc_line] = STATE(2512), @@ -419225,71 +429537,65 @@ 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(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_alias] = ACTIONS(3245), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3247), - [anon_sym_implicit] = ACTIONS(3245), - [anon_sym_explicit] = ACTIONS(3245), - [anon_sym_scoped] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [sym_predefined_type] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_when] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419302,11 +429608,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2513] = { - [sym_property_pattern_clause] = STATE(2755), - [sym__variable_designation] = STATE(3204), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2513), [sym_preproc_endregion] = STATE(2513), [sym_preproc_line] = STATE(2513), @@ -419316,66 +429625,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3851), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419388,6 +429697,15 @@ 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_preproc_region] = STATE(2514), [sym_preproc_endregion] = STATE(2514), [sym_preproc_line] = STATE(2514), @@ -419397,71 +429715,65 @@ 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(4074), - [anon_sym_alias] = ACTIONS(4074), - [anon_sym_global] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4076), - [anon_sym_RBRACK] = ACTIONS(4076), - [anon_sym_LPAREN] = ACTIONS(4076), - [anon_sym_RPAREN] = ACTIONS(4076), - [anon_sym_RBRACE] = ACTIONS(4076), - [anon_sym_file] = ACTIONS(4074), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4074), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_notnull] = ACTIONS(4074), - [anon_sym_unmanaged] = ACTIONS(4074), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [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(4190), - [anon_sym_when] = ACTIONS(4074), - [sym_discard] = ACTIONS(4074), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4074), - [anon_sym_or] = ACTIONS(4074), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [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(4190), - [anon_sym_is] = ACTIONS(4190), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4190), + [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419474,10 +429786,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2515] = { - [sym__variable_designation] = STATE(3206), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2515), [sym_preproc_endregion] = STATE(2515), [sym_preproc_line] = STATE(2515), @@ -419487,67 +429803,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COLON] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3849), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3851), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419560,6 +429875,14 @@ 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_preproc_region] = STATE(2516), [sym_preproc_endregion] = STATE(2516), [sym_preproc_line] = STATE(2516), @@ -419569,71 +429892,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_when] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = 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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419646,11 +429964,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2517] = { - [sym_property_pattern_clause] = STATE(2754), - [sym__variable_designation] = STATE(3231), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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(2517), [sym_preproc_endregion] = STATE(2517), [sym_preproc_line] = STATE(2517), @@ -419660,66 +429982,65 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3847), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419732,6 +430053,14 @@ 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_preproc_region] = STATE(2518), [sym_preproc_endregion] = STATE(2518), [sym_preproc_line] = STATE(2518), @@ -419741,71 +430070,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2518), [sym_preproc_define] = STATE(2518), [sym_preproc_undef] = STATE(2518), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3203), - [anon_sym_implicit] = ACTIONS(3201), - [anon_sym_explicit] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [sym_predefined_type] = ACTIONS(3201), - [anon_sym_while] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [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), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419818,10 +430142,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2519] = { - [sym__variable_designation] = STATE(3232), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -419831,67 +430156,68 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COLON] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_EQ_GT] = ACTIONS(3845), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3847), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), @@ -419902,13 +430228,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(3905), }, [2520] = { - [sym_property_pattern_clause] = STATE(2668), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2520), [sym_preproc_endregion] = STATE(2520), [sym_preproc_line] = STATE(2520), @@ -419918,66 +430248,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3847), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -419990,6 +430320,14 @@ 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_preproc_region] = STATE(2521), [sym_preproc_endregion] = STATE(2521), [sym_preproc_line] = STATE(2521), @@ -419999,71 +430337,66 @@ 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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_global] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2915), - [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_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_EQ_GT] = ACTIONS(4120), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2913), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420076,11 +430409,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2522] = { - [sym_property_pattern_clause] = STATE(2628), - [sym__variable_designation] = STATE(3335), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2522), [sym_preproc_endregion] = STATE(2522), [sym_preproc_line] = STATE(2522), @@ -420090,66 +430426,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2522), [sym_preproc_define] = STATE(2522), [sym_preproc_undef] = STATE(2522), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3851), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420162,11 +430498,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2523] = { - [sym_property_pattern_clause] = STATE(2626), - [sym__variable_designation] = STATE(3294), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2523), [sym_preproc_endregion] = STATE(2523), [sym_preproc_line] = STATE(2523), @@ -420176,66 +430512,68 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3847), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420248,7 +430586,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2524] = { - [sym_type_argument_list] = STATE(2566), + [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_preproc_region] = STATE(2524), [sym_preproc_endregion] = STATE(2524), [sym_preproc_line] = STATE(2524), @@ -420258,70 +430615,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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4192), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420343,88 +430683,105 @@ 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), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3598), - [anon_sym_where] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_when] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2526] = { - [sym_property_pattern_clause] = STATE(2647), - [sym__variable_designation] = STATE(3204), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2526), [sym_preproc_endregion] = STATE(2526), [sym_preproc_line] = STATE(2526), @@ -420434,66 +430791,53 @@ 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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), @@ -420506,11 +430850,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2527] = { - [sym_property_pattern_clause] = STATE(2703), - [sym__variable_designation] = STATE(4059), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), + [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_preproc_region] = STATE(2527), [sym_preproc_endregion] = STATE(2527), [sym_preproc_line] = STATE(2527), @@ -420520,66 +430864,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3815), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420592,10 +430938,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2528] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), + [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_preproc_region] = STATE(2528), [sym_preproc_endregion] = STATE(2528), [sym_preproc_line] = STATE(2528), @@ -420605,66 +430952,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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_in] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420677,6 +431026,26 @@ 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_preproc_region] = STATE(2529), [sym_preproc_endregion] = STATE(2529), [sym_preproc_line] = STATE(2529), @@ -420686,70 +431055,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2529), [sym_preproc_define] = STATE(2529), [sym_preproc_undef] = STATE(2529), - [sym__identifier_token] = ACTIONS(4195), - [anon_sym_extern] = ACTIONS(4195), - [anon_sym_alias] = ACTIONS(4195), - [anon_sym_global] = ACTIONS(4195), - [anon_sym_using] = ACTIONS(4195), - [anon_sym_unsafe] = ACTIONS(4195), - [anon_sym_EQ] = ACTIONS(4197), - [anon_sym_static] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym_event] = ACTIONS(4195), - [anon_sym_namespace] = ACTIONS(4195), - [anon_sym_class] = ACTIONS(4195), - [anon_sym_ref] = ACTIONS(4195), - [anon_sym_struct] = ACTIONS(4195), - [anon_sym_enum] = ACTIONS(4195), - [anon_sym_RBRACE] = ACTIONS(4197), - [anon_sym_interface] = ACTIONS(4195), - [anon_sym_delegate] = ACTIONS(4195), - [anon_sym_record] = ACTIONS(4195), - [anon_sym_abstract] = ACTIONS(4195), - [anon_sym_async] = ACTIONS(4195), - [anon_sym_const] = ACTIONS(4195), - [anon_sym_file] = ACTIONS(4195), - [anon_sym_fixed] = ACTIONS(4195), - [anon_sym_internal] = ACTIONS(4195), - [anon_sym_new] = ACTIONS(4195), - [anon_sym_override] = ACTIONS(4195), - [anon_sym_partial] = ACTIONS(4195), - [anon_sym_private] = ACTIONS(4195), - [anon_sym_protected] = ACTIONS(4195), - [anon_sym_public] = ACTIONS(4195), - [anon_sym_readonly] = ACTIONS(4195), - [anon_sym_required] = ACTIONS(4195), - [anon_sym_sealed] = ACTIONS(4195), - [anon_sym_virtual] = ACTIONS(4195), - [anon_sym_volatile] = ACTIONS(4195), - [anon_sym_where] = ACTIONS(4195), - [anon_sym_notnull] = ACTIONS(4195), - [anon_sym_unmanaged] = ACTIONS(4195), - [anon_sym_TILDE] = ACTIONS(4197), - [anon_sym_implicit] = ACTIONS(4195), - [anon_sym_explicit] = ACTIONS(4195), - [anon_sym_scoped] = ACTIONS(4195), - [anon_sym_var] = ACTIONS(4195), - [sym_predefined_type] = ACTIONS(4195), - [anon_sym_yield] = ACTIONS(4195), - [anon_sym_when] = ACTIONS(4195), - [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), - [aux_sym_preproc_if_token1] = ACTIONS(4197), - [aux_sym_preproc_if_token3] = ACTIONS(4197), - [aux_sym_preproc_else_token1] = ACTIONS(4197), - [aux_sym_preproc_elif_token1] = ACTIONS(4197), + [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), @@ -420762,6 +431114,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_preproc_region] = STATE(2530), [sym_preproc_endregion] = STATE(2530), [sym_preproc_line] = STATE(2530), @@ -420771,70 +431143,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), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4132), - [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(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(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__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), @@ -420847,6 +431202,26 @@ 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_preproc_region] = STATE(2531), [sym_preproc_endregion] = STATE(2531), [sym_preproc_line] = STATE(2531), @@ -420856,70 +431231,53 @@ 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), - [sym__identifier_token] = ACTIONS(4199), - [anon_sym_extern] = ACTIONS(4199), - [anon_sym_alias] = ACTIONS(4199), - [anon_sym_global] = ACTIONS(4199), - [anon_sym_using] = ACTIONS(4199), - [anon_sym_unsafe] = ACTIONS(4199), - [anon_sym_EQ] = ACTIONS(4201), - [anon_sym_static] = ACTIONS(4199), - [anon_sym_LBRACK] = ACTIONS(4203), - [anon_sym_LPAREN] = ACTIONS(4203), - [anon_sym_event] = ACTIONS(4199), - [anon_sym_namespace] = ACTIONS(4199), - [anon_sym_class] = ACTIONS(4199), - [anon_sym_ref] = ACTIONS(4199), - [anon_sym_struct] = ACTIONS(4199), - [anon_sym_enum] = ACTIONS(4199), - [anon_sym_RBRACE] = ACTIONS(4203), - [anon_sym_interface] = ACTIONS(4199), - [anon_sym_delegate] = ACTIONS(4199), - [anon_sym_record] = ACTIONS(4199), - [anon_sym_abstract] = ACTIONS(4199), - [anon_sym_async] = ACTIONS(4199), - [anon_sym_const] = ACTIONS(4199), - [anon_sym_file] = ACTIONS(4199), - [anon_sym_fixed] = ACTIONS(4199), - [anon_sym_internal] = ACTIONS(4199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_override] = ACTIONS(4199), - [anon_sym_partial] = ACTIONS(4199), - [anon_sym_private] = ACTIONS(4199), - [anon_sym_protected] = ACTIONS(4199), - [anon_sym_public] = ACTIONS(4199), - [anon_sym_readonly] = ACTIONS(4199), - [anon_sym_required] = ACTIONS(4199), - [anon_sym_sealed] = ACTIONS(4199), - [anon_sym_virtual] = ACTIONS(4199), - [anon_sym_volatile] = ACTIONS(4199), - [anon_sym_where] = ACTIONS(4199), - [anon_sym_notnull] = ACTIONS(4199), - [anon_sym_unmanaged] = ACTIONS(4199), - [anon_sym_TILDE] = ACTIONS(4203), - [anon_sym_implicit] = ACTIONS(4199), - [anon_sym_explicit] = ACTIONS(4199), - [anon_sym_scoped] = ACTIONS(4199), - [anon_sym_var] = ACTIONS(4199), - [sym_predefined_type] = ACTIONS(4199), - [anon_sym_yield] = ACTIONS(4199), - [anon_sym_when] = ACTIONS(4199), - [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_ascending] = ACTIONS(4199), - [anon_sym_descending] = ACTIONS(4199), - [anon_sym_group] = ACTIONS(4199), - [anon_sym_by] = ACTIONS(4199), - [anon_sym_select] = ACTIONS(4199), - [aux_sym_preproc_if_token1] = ACTIONS(4203), - [aux_sym_preproc_if_token3] = ACTIONS(4203), - [aux_sym_preproc_else_token1] = ACTIONS(4203), - [aux_sym_preproc_elif_token1] = ACTIONS(4203), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -420932,6 +431290,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_preproc_region] = STATE(2532), [sym_preproc_endregion] = STATE(2532), [sym_preproc_line] = STATE(2532), @@ -420941,70 +431319,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), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(4112), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_in] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_EQ_GT] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_when] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_into] = ACTIONS(4112), - [anon_sym_on] = ACTIONS(4112), - [anon_sym_equals] = ACTIONS(4112), - [anon_sym_by] = ACTIONS(4112), - [anon_sym_as] = ACTIONS(4112), - [anon_sym_is] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4112), - [anon_sym_with] = ACTIONS(4112), - [aux_sym_preproc_if_token3] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [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), @@ -421017,6 +431378,25 @@ 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_preproc_region] = STATE(2533), [sym_preproc_endregion] = STATE(2533), [sym_preproc_line] = STATE(2533), @@ -421026,70 +431406,54 @@ 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), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [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_RBRACE] = ACTIONS(4122), - [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(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [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_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421102,6 +431466,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_preproc_region] = STATE(2534), [sym_preproc_endregion] = STATE(2534), [sym_preproc_line] = STATE(2534), @@ -421111,70 +431495,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), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4207), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4207), - [anon_sym_BANG_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(4207), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(4207), - [anon_sym_PIPE_PIPE] = ACTIONS(4207), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(4207), - [anon_sym_is] = ACTIONS(4207), - [anon_sym_DASH_GT] = ACTIONS(4207), - [anon_sym_with] = ACTIONS(4207), - [aux_sym_preproc_if_token3] = ACTIONS(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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), @@ -421187,6 +431554,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_preproc_region] = STATE(2535), [sym_preproc_endregion] = STATE(2535), [sym_preproc_line] = STATE(2535), @@ -421196,70 +431583,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), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_EQ] = ACTIONS(4108), - [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_RBRACE] = ACTIONS(4106), - [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(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [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_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [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), + [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), @@ -421272,6 +431642,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_preproc_region] = STATE(2536), [sym_preproc_endregion] = STATE(2536), [sym_preproc_line] = STATE(2536), @@ -421281,70 +431671,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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [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_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_in] = ACTIONS(4086), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [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_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [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), + [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), @@ -421357,6 +431730,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_preproc_region] = STATE(2537), [sym_preproc_endregion] = STATE(2537), [sym_preproc_line] = STATE(2537), @@ -421366,70 +431759,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), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [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_RBRACE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_in] = ACTIONS(4092), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [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_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [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__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), @@ -421442,6 +431818,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_preproc_region] = STATE(2538), [sym_preproc_endregion] = STATE(2538), [sym_preproc_line] = STATE(2538), @@ -421451,82 +431847,85 @@ 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), - [sym__identifier_token] = ACTIONS(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4043), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2539] = { + [sym_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_preproc_region] = STATE(2539), [sym_preproc_endregion] = STATE(2539), [sym_preproc_line] = STATE(2539), @@ -421536,70 +431935,53 @@ 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), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_RBRACK] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_in] = ACTIONS(4072), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_EQ_GT] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_when] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4070), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [anon_sym_QMARK_QMARK] = ACTIONS(4072), - [anon_sym_into] = ACTIONS(4070), - [anon_sym_on] = ACTIONS(4070), - [anon_sym_equals] = ACTIONS(4070), - [anon_sym_by] = ACTIONS(4070), - [anon_sym_as] = ACTIONS(4070), - [anon_sym_is] = ACTIONS(4070), - [anon_sym_DASH_GT] = ACTIONS(4070), - [anon_sym_with] = ACTIONS(4070), - [aux_sym_preproc_if_token3] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = ACTIONS(4070), + [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), @@ -421612,6 +431994,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2540), [sym_preproc_endregion] = STATE(2540), [sym_preproc_line] = STATE(2540), @@ -421621,70 +432023,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), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4215), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421697,6 +432082,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_preproc_region] = STATE(2541), [sym_preproc_endregion] = STATE(2541), [sym_preproc_line] = STATE(2541), @@ -421706,70 +432111,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2541), [sym_preproc_define] = STATE(2541), [sym_preproc_undef] = STATE(2541), - [sym__identifier_token] = ACTIONS(4217), - [anon_sym_extern] = ACTIONS(4217), - [anon_sym_alias] = ACTIONS(4217), - [anon_sym_global] = ACTIONS(4217), - [anon_sym_using] = ACTIONS(4217), - [anon_sym_unsafe] = ACTIONS(4217), - [anon_sym_EQ] = ACTIONS(4219), - [anon_sym_static] = ACTIONS(4217), - [anon_sym_LBRACK] = ACTIONS(4221), - [anon_sym_LPAREN] = ACTIONS(4221), - [anon_sym_event] = ACTIONS(4217), - [anon_sym_namespace] = ACTIONS(4217), - [anon_sym_class] = ACTIONS(4217), - [anon_sym_ref] = ACTIONS(4217), - [anon_sym_struct] = ACTIONS(4217), - [anon_sym_enum] = ACTIONS(4217), - [anon_sym_RBRACE] = ACTIONS(4221), - [anon_sym_interface] = ACTIONS(4217), - [anon_sym_delegate] = ACTIONS(4217), - [anon_sym_record] = ACTIONS(4217), - [anon_sym_abstract] = ACTIONS(4217), - [anon_sym_async] = ACTIONS(4217), - [anon_sym_const] = ACTIONS(4217), - [anon_sym_file] = ACTIONS(4217), - [anon_sym_fixed] = ACTIONS(4217), - [anon_sym_internal] = ACTIONS(4217), - [anon_sym_new] = ACTIONS(4217), - [anon_sym_override] = ACTIONS(4217), - [anon_sym_partial] = ACTIONS(4217), - [anon_sym_private] = ACTIONS(4217), - [anon_sym_protected] = ACTIONS(4217), - [anon_sym_public] = ACTIONS(4217), - [anon_sym_readonly] = ACTIONS(4217), - [anon_sym_required] = ACTIONS(4217), - [anon_sym_sealed] = ACTIONS(4217), - [anon_sym_virtual] = ACTIONS(4217), - [anon_sym_volatile] = ACTIONS(4217), - [anon_sym_where] = ACTIONS(4217), - [anon_sym_notnull] = ACTIONS(4217), - [anon_sym_unmanaged] = ACTIONS(4217), - [anon_sym_TILDE] = ACTIONS(4221), - [anon_sym_implicit] = ACTIONS(4217), - [anon_sym_explicit] = ACTIONS(4217), - [anon_sym_scoped] = ACTIONS(4217), - [anon_sym_var] = ACTIONS(4217), - [sym_predefined_type] = ACTIONS(4217), - [anon_sym_yield] = ACTIONS(4217), - [anon_sym_when] = ACTIONS(4217), - [anon_sym_from] = ACTIONS(4217), - [anon_sym_into] = ACTIONS(4217), - [anon_sym_join] = ACTIONS(4217), - [anon_sym_on] = ACTIONS(4217), - [anon_sym_equals] = ACTIONS(4217), - [anon_sym_let] = ACTIONS(4217), - [anon_sym_orderby] = ACTIONS(4217), - [anon_sym_ascending] = ACTIONS(4217), - [anon_sym_descending] = ACTIONS(4217), - [anon_sym_group] = ACTIONS(4217), - [anon_sym_by] = ACTIONS(4217), - [anon_sym_select] = ACTIONS(4217), - [aux_sym_preproc_if_token1] = ACTIONS(4221), - [aux_sym_preproc_if_token3] = ACTIONS(4221), - [aux_sym_preproc_else_token1] = ACTIONS(4221), - [aux_sym_preproc_elif_token1] = ACTIONS(4221), + [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), @@ -421782,6 +432170,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_preproc_region] = STATE(2542), [sym_preproc_endregion] = STATE(2542), [sym_preproc_line] = STATE(2542), @@ -421791,70 +432199,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), - [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__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), @@ -421867,6 +432258,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_preproc_region] = STATE(2543), [sym_preproc_endregion] = STATE(2543), [sym_preproc_line] = STATE(2543), @@ -421876,70 +432272,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_when] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3651), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_into] = ACTIONS(3651), - [anon_sym_on] = ACTIONS(3651), - [anon_sym_equals] = ACTIONS(3651), - [anon_sym_by] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -421952,7 +432346,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2544] = { - [sym_type_argument_list] = STATE(2694), + [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_preproc_region] = STATE(2544), [sym_preproc_endregion] = STATE(2544), [sym_preproc_line] = STATE(2544), @@ -421962,85 +432375,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2544), [sym_preproc_define] = STATE(2544), [sym_preproc_undef] = STATE(2544), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(4185), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2545] = { - [sym__variable_designation] = STATE(3766), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2545), [sym_preproc_endregion] = STATE(2545), [sym_preproc_line] = STATE(2545), @@ -422050,66 +432463,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2545), [sym_preproc_define] = STATE(2545), [sym_preproc_undef] = STATE(2545), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422122,6 +432522,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2546), [sym_preproc_endregion] = STATE(2546), [sym_preproc_line] = STATE(2546), @@ -422131,70 +432550,54 @@ 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(4223), - [anon_sym_extern] = ACTIONS(4223), - [anon_sym_alias] = ACTIONS(4223), - [anon_sym_global] = ACTIONS(4223), - [anon_sym_using] = ACTIONS(4223), - [anon_sym_unsafe] = ACTIONS(4223), - [anon_sym_EQ] = ACTIONS(4225), - [anon_sym_static] = ACTIONS(4223), - [anon_sym_LBRACK] = ACTIONS(4227), - [anon_sym_LPAREN] = ACTIONS(4227), - [anon_sym_event] = ACTIONS(4223), - [anon_sym_namespace] = ACTIONS(4223), - [anon_sym_class] = ACTIONS(4223), - [anon_sym_ref] = ACTIONS(4223), - [anon_sym_struct] = ACTIONS(4223), - [anon_sym_enum] = ACTIONS(4223), - [anon_sym_RBRACE] = ACTIONS(4227), - [anon_sym_interface] = ACTIONS(4223), - [anon_sym_delegate] = ACTIONS(4223), - [anon_sym_record] = ACTIONS(4223), - [anon_sym_abstract] = ACTIONS(4223), - [anon_sym_async] = ACTIONS(4223), - [anon_sym_const] = ACTIONS(4223), - [anon_sym_file] = ACTIONS(4223), - [anon_sym_fixed] = ACTIONS(4223), - [anon_sym_internal] = ACTIONS(4223), - [anon_sym_new] = ACTIONS(4223), - [anon_sym_override] = ACTIONS(4223), - [anon_sym_partial] = ACTIONS(4223), - [anon_sym_private] = ACTIONS(4223), - [anon_sym_protected] = ACTIONS(4223), - [anon_sym_public] = ACTIONS(4223), - [anon_sym_readonly] = ACTIONS(4223), - [anon_sym_required] = ACTIONS(4223), - [anon_sym_sealed] = ACTIONS(4223), - [anon_sym_virtual] = ACTIONS(4223), - [anon_sym_volatile] = ACTIONS(4223), - [anon_sym_where] = ACTIONS(4223), - [anon_sym_notnull] = ACTIONS(4223), - [anon_sym_unmanaged] = ACTIONS(4223), - [anon_sym_TILDE] = ACTIONS(4227), - [anon_sym_implicit] = ACTIONS(4223), - [anon_sym_explicit] = ACTIONS(4223), - [anon_sym_scoped] = ACTIONS(4223), - [anon_sym_var] = ACTIONS(4223), - [sym_predefined_type] = ACTIONS(4223), - [anon_sym_yield] = ACTIONS(4223), - [anon_sym_when] = ACTIONS(4223), - [anon_sym_from] = ACTIONS(4223), - [anon_sym_into] = ACTIONS(4223), - [anon_sym_join] = ACTIONS(4223), - [anon_sym_on] = ACTIONS(4223), - [anon_sym_equals] = ACTIONS(4223), - [anon_sym_let] = ACTIONS(4223), - [anon_sym_orderby] = ACTIONS(4223), - [anon_sym_ascending] = ACTIONS(4223), - [anon_sym_descending] = ACTIONS(4223), - [anon_sym_group] = ACTIONS(4223), - [anon_sym_by] = ACTIONS(4223), - [anon_sym_select] = ACTIONS(4223), - [aux_sym_preproc_if_token1] = ACTIONS(4227), - [aux_sym_preproc_if_token3] = ACTIONS(4227), - [aux_sym_preproc_else_token1] = ACTIONS(4227), - [aux_sym_preproc_elif_token1] = ACTIONS(4227), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422207,6 +432610,26 @@ 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_preproc_region] = STATE(2547), [sym_preproc_endregion] = STATE(2547), [sym_preproc_line] = STATE(2547), @@ -422216,69 +432639,53 @@ 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), - [sym__identifier_token] = ACTIONS(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -422289,13 +432696,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(3393), }, [2548] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), + [sym_parameter_list] = STATE(7311), + [sym__lambda_parameters] = STATE(7536), + [sym_identifier] = STATE(7626), + [sym__reserved_identifier] = STATE(2175), [sym_preproc_region] = STATE(2548), [sym_preproc_endregion] = STATE(2548), [sym_preproc_line] = STATE(2548), @@ -422305,82 +432711,101 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_in] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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__variable_designation] = STATE(3788), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2549), [sym_preproc_endregion] = STATE(2549), [sym_preproc_line] = STATE(2549), @@ -422390,66 +432815,53 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [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(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [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(4025), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422462,6 +432874,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2550), [sym_preproc_endregion] = STATE(2550), [sym_preproc_line] = STATE(2550), @@ -422471,70 +432903,53 @@ 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), - [sym__identifier_token] = ACTIONS(4229), - [anon_sym_extern] = ACTIONS(4229), - [anon_sym_alias] = ACTIONS(4229), - [anon_sym_global] = ACTIONS(4229), - [anon_sym_using] = ACTIONS(4229), - [anon_sym_unsafe] = ACTIONS(4229), - [anon_sym_EQ] = ACTIONS(4231), - [anon_sym_static] = ACTIONS(4229), - [anon_sym_LBRACK] = ACTIONS(4233), - [anon_sym_LPAREN] = ACTIONS(4233), - [anon_sym_event] = ACTIONS(4229), - [anon_sym_namespace] = ACTIONS(4229), - [anon_sym_class] = ACTIONS(4229), - [anon_sym_ref] = ACTIONS(4229), - [anon_sym_struct] = ACTIONS(4229), - [anon_sym_enum] = ACTIONS(4229), - [anon_sym_RBRACE] = ACTIONS(4233), - [anon_sym_interface] = ACTIONS(4229), - [anon_sym_delegate] = ACTIONS(4229), - [anon_sym_record] = ACTIONS(4229), - [anon_sym_abstract] = ACTIONS(4229), - [anon_sym_async] = ACTIONS(4229), - [anon_sym_const] = ACTIONS(4229), - [anon_sym_file] = ACTIONS(4229), - [anon_sym_fixed] = ACTIONS(4229), - [anon_sym_internal] = ACTIONS(4229), - [anon_sym_new] = ACTIONS(4229), - [anon_sym_override] = ACTIONS(4229), - [anon_sym_partial] = ACTIONS(4229), - [anon_sym_private] = ACTIONS(4229), - [anon_sym_protected] = ACTIONS(4229), - [anon_sym_public] = ACTIONS(4229), - [anon_sym_readonly] = ACTIONS(4229), - [anon_sym_required] = ACTIONS(4229), - [anon_sym_sealed] = ACTIONS(4229), - [anon_sym_virtual] = ACTIONS(4229), - [anon_sym_volatile] = ACTIONS(4229), - [anon_sym_where] = ACTIONS(4229), - [anon_sym_notnull] = ACTIONS(4229), - [anon_sym_unmanaged] = ACTIONS(4229), - [anon_sym_TILDE] = ACTIONS(4233), - [anon_sym_implicit] = ACTIONS(4229), - [anon_sym_explicit] = ACTIONS(4229), - [anon_sym_scoped] = ACTIONS(4229), - [anon_sym_var] = ACTIONS(4229), - [sym_predefined_type] = ACTIONS(4229), - [anon_sym_yield] = ACTIONS(4229), - [anon_sym_when] = ACTIONS(4229), - [anon_sym_from] = ACTIONS(4229), - [anon_sym_into] = ACTIONS(4229), - [anon_sym_join] = ACTIONS(4229), - [anon_sym_on] = ACTIONS(4229), - [anon_sym_equals] = ACTIONS(4229), - [anon_sym_let] = ACTIONS(4229), - [anon_sym_orderby] = ACTIONS(4229), - [anon_sym_ascending] = ACTIONS(4229), - [anon_sym_descending] = ACTIONS(4229), - [anon_sym_group] = ACTIONS(4229), - [anon_sym_by] = ACTIONS(4229), - [anon_sym_select] = ACTIONS(4229), - [aux_sym_preproc_if_token1] = ACTIONS(4233), - [aux_sym_preproc_if_token3] = ACTIONS(4233), - [aux_sym_preproc_else_token1] = ACTIONS(4233), - [aux_sym_preproc_elif_token1] = ACTIONS(4233), + [aux_sym__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -422547,6 +432962,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2551] = { + [sym__variable_designation] = STATE(4513), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2551), [sym_preproc_endregion] = STATE(2551), [sym_preproc_line] = STATE(2551), @@ -422556,86 +432975,84 @@ 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(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3598), + [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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2552] = { - [sym__variable_designation] = STATE(3783), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [sym__variable_designation] = STATE(4511), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2552), [sym_preproc_endregion] = STATE(2552), [sym_preproc_line] = STATE(2552), @@ -422645,66 +433062,67 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3847), - [anon_sym_descending] = ACTIONS(3847), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), @@ -422715,8 +433133,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(3913), }, [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_preproc_region] = STATE(2553), [sym_preproc_endregion] = STATE(2553), [sym_preproc_line] = STATE(2553), @@ -422726,70 +433150,67 @@ 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(4235), - [anon_sym_extern] = ACTIONS(4235), - [anon_sym_alias] = ACTIONS(4235), - [anon_sym_global] = ACTIONS(4235), - [anon_sym_using] = ACTIONS(4235), - [anon_sym_unsafe] = ACTIONS(4235), - [anon_sym_EQ] = ACTIONS(4237), - [anon_sym_static] = ACTIONS(4235), - [anon_sym_LBRACK] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4237), - [anon_sym_event] = ACTIONS(4235), - [anon_sym_namespace] = ACTIONS(4235), - [anon_sym_class] = ACTIONS(4235), - [anon_sym_ref] = ACTIONS(4235), - [anon_sym_struct] = ACTIONS(4235), - [anon_sym_enum] = ACTIONS(4235), - [anon_sym_RBRACE] = ACTIONS(4237), - [anon_sym_interface] = ACTIONS(4235), - [anon_sym_delegate] = ACTIONS(4235), - [anon_sym_record] = ACTIONS(4235), - [anon_sym_abstract] = ACTIONS(4235), - [anon_sym_async] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4235), - [anon_sym_file] = ACTIONS(4235), - [anon_sym_fixed] = ACTIONS(4235), - [anon_sym_internal] = ACTIONS(4235), - [anon_sym_new] = ACTIONS(4235), - [anon_sym_override] = ACTIONS(4235), - [anon_sym_partial] = ACTIONS(4235), - [anon_sym_private] = ACTIONS(4235), - [anon_sym_protected] = ACTIONS(4235), - [anon_sym_public] = ACTIONS(4235), - [anon_sym_readonly] = ACTIONS(4235), - [anon_sym_required] = ACTIONS(4235), - [anon_sym_sealed] = ACTIONS(4235), - [anon_sym_virtual] = ACTIONS(4235), - [anon_sym_volatile] = ACTIONS(4235), - [anon_sym_where] = ACTIONS(4235), - [anon_sym_notnull] = ACTIONS(4235), - [anon_sym_unmanaged] = ACTIONS(4235), - [anon_sym_TILDE] = ACTIONS(4237), - [anon_sym_implicit] = ACTIONS(4235), - [anon_sym_explicit] = ACTIONS(4235), - [anon_sym_scoped] = ACTIONS(4235), - [anon_sym_var] = ACTIONS(4235), - [sym_predefined_type] = ACTIONS(4235), - [anon_sym_yield] = ACTIONS(4235), - [anon_sym_when] = ACTIONS(4235), - [anon_sym_from] = ACTIONS(4235), - [anon_sym_into] = ACTIONS(4235), - [anon_sym_join] = ACTIONS(4235), - [anon_sym_on] = ACTIONS(4235), - [anon_sym_equals] = ACTIONS(4235), - [anon_sym_let] = ACTIONS(4235), - [anon_sym_orderby] = ACTIONS(4235), - [anon_sym_ascending] = ACTIONS(4235), - [anon_sym_descending] = ACTIONS(4235), - [anon_sym_group] = ACTIONS(4235), - [anon_sym_by] = ACTIONS(4235), - [anon_sym_select] = ACTIONS(4235), - [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), + [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), @@ -422802,6 +433223,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2554] = { + [sym__variable_designation] = STATE(4517), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2554), [sym_preproc_endregion] = STATE(2554), [sym_preproc_line] = STATE(2554), @@ -422811,86 +433236,84 @@ 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(4239), - [anon_sym_extern] = ACTIONS(4239), - [anon_sym_alias] = ACTIONS(4239), - [anon_sym_global] = ACTIONS(4239), - [anon_sym_using] = ACTIONS(4239), - [anon_sym_unsafe] = ACTIONS(4239), - [anon_sym_EQ] = ACTIONS(4241), - [anon_sym_static] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4243), - [anon_sym_event] = ACTIONS(4239), - [anon_sym_namespace] = ACTIONS(4239), - [anon_sym_class] = ACTIONS(4239), - [anon_sym_ref] = ACTIONS(4239), - [anon_sym_struct] = ACTIONS(4239), - [anon_sym_enum] = ACTIONS(4239), - [anon_sym_RBRACE] = ACTIONS(4243), - [anon_sym_interface] = ACTIONS(4239), - [anon_sym_delegate] = ACTIONS(4239), - [anon_sym_record] = ACTIONS(4239), - [anon_sym_abstract] = ACTIONS(4239), - [anon_sym_async] = ACTIONS(4239), - [anon_sym_const] = ACTIONS(4239), - [anon_sym_file] = ACTIONS(4239), - [anon_sym_fixed] = ACTIONS(4239), - [anon_sym_internal] = ACTIONS(4239), - [anon_sym_new] = ACTIONS(4239), - [anon_sym_override] = ACTIONS(4239), - [anon_sym_partial] = ACTIONS(4239), - [anon_sym_private] = ACTIONS(4239), - [anon_sym_protected] = ACTIONS(4239), - [anon_sym_public] = ACTIONS(4239), - [anon_sym_readonly] = ACTIONS(4239), - [anon_sym_required] = ACTIONS(4239), - [anon_sym_sealed] = ACTIONS(4239), - [anon_sym_virtual] = ACTIONS(4239), - [anon_sym_volatile] = ACTIONS(4239), - [anon_sym_where] = ACTIONS(4239), - [anon_sym_notnull] = ACTIONS(4239), - [anon_sym_unmanaged] = ACTIONS(4239), - [anon_sym_TILDE] = ACTIONS(4243), - [anon_sym_implicit] = ACTIONS(4239), - [anon_sym_explicit] = ACTIONS(4239), - [anon_sym_scoped] = ACTIONS(4239), - [anon_sym_var] = ACTIONS(4239), - [sym_predefined_type] = ACTIONS(4239), - [anon_sym_yield] = ACTIONS(4239), - [anon_sym_when] = ACTIONS(4239), - [anon_sym_from] = ACTIONS(4239), - [anon_sym_into] = ACTIONS(4239), - [anon_sym_join] = ACTIONS(4239), - [anon_sym_on] = ACTIONS(4239), - [anon_sym_equals] = ACTIONS(4239), - [anon_sym_let] = ACTIONS(4239), - [anon_sym_orderby] = ACTIONS(4239), - [anon_sym_ascending] = ACTIONS(4239), - [anon_sym_descending] = ACTIONS(4239), - [anon_sym_group] = ACTIONS(4239), - [anon_sym_by] = ACTIONS(4239), - [anon_sym_select] = ACTIONS(4239), - [aux_sym_preproc_if_token1] = ACTIONS(4243), - [aux_sym_preproc_if_token3] = ACTIONS(4243), - [aux_sym_preproc_else_token1] = ACTIONS(4243), - [aux_sym_preproc_elif_token1] = 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__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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3961), }, [2555] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), + [sym__variable_designation] = STATE(4511), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2555), [sym_preproc_endregion] = STATE(2555), [sym_preproc_line] = STATE(2555), @@ -422900,78 +433323,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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_in] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [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(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [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(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [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(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), }, [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_preproc_region] = STATE(2556), [sym_preproc_endregion] = STATE(2556), [sym_preproc_line] = STATE(2556), @@ -422981,69 +433411,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(3565), - [anon_sym_alias] = ACTIONS(3565), - [anon_sym_global] = ACTIONS(3565), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_file] = ACTIONS(3565), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_notnull] = ACTIONS(3565), - [anon_sym_unmanaged] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_scoped] = ACTIONS(3565), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3565), - [anon_sym_yield] = ACTIONS(3565), - [anon_sym_switch] = ACTIONS(3565), - [anon_sym_when] = ACTIONS(3565), - [sym_discard] = ACTIONS(3565), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3565), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [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_as] = ACTIONS(3565), - [anon_sym_is] = ACTIONS(3565), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3565), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423054,13 +433482,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(3562), }, [2557] = { - [sym__variable_designation] = STATE(3728), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [sym__variable_designation] = STATE(4513), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2557), [sym_preproc_endregion] = STATE(2557), [sym_preproc_line] = STATE(2557), @@ -423070,78 +433497,84 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2558] = { + [sym__variable_designation] = STATE(4517), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2558), [sym_preproc_endregion] = STATE(2558), [sym_preproc_line] = STATE(2558), @@ -423151,86 +433584,85 @@ 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), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4128), - [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_RBRACE] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4128), - [anon_sym_GT] = ACTIONS(4128), - [anon_sym_in] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_SLASH] = ACTIONS(4128), - [anon_sym_PERCENT] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_PIPE] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_LT] = ACTIONS(4128), - [anon_sym_GT_GT] = ACTIONS(4128), - [anon_sym_GT_GT_GT] = ACTIONS(4128), - [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(4128), - [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_PLUS_EQ] = ACTIONS(4126), - [anon_sym_DASH_EQ] = ACTIONS(4126), - [anon_sym_STAR_EQ] = ACTIONS(4126), - [anon_sym_SLASH_EQ] = ACTIONS(4126), - [anon_sym_PERCENT_EQ] = ACTIONS(4126), - [anon_sym_AMP_EQ] = ACTIONS(4126), - [anon_sym_CARET_EQ] = ACTIONS(4126), - [anon_sym_PIPE_EQ] = ACTIONS(4126), - [anon_sym_LT_LT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4128), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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__variable_designation] = STATE(3783), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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), @@ -423240,66 +433672,67 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_COMMA] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3847), - [anon_sym_descending] = ACTIONS(3847), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423312,10 +433745,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2560] = { - [sym__variable_designation] = STATE(3788), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [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_preproc_region] = STATE(2560), [sym_preproc_endregion] = STATE(2560), [sym_preproc_line] = STATE(2560), @@ -423325,66 +433773,53 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_COMMA] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [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(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [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(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423397,10 +433832,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2561] = { - [sym__variable_designation] = STATE(3766), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [sym__variable_designation] = STATE(4786), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2561), [sym_preproc_endregion] = STATE(2561), [sym_preproc_line] = STATE(2561), @@ -423410,66 +433845,67 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_COMMA] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3899), - [anon_sym_descending] = ACTIONS(3899), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), @@ -423480,12 +433916,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(3905), }, [2562] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3109), + [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_preproc_region] = STATE(2562), [sym_preproc_endregion] = STATE(2562), [sym_preproc_line] = STATE(2562), @@ -423495,66 +433933,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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_in] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3716), - [anon_sym_var] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3716), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423567,10 +434006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2563] = { - [sym__variable_designation] = STATE(3728), - [sym_parenthesized_variable_designation] = STATE(3682), - [sym_identifier] = STATE(3656), - [sym__reserved_identifier] = STATE(2286), + [sym__variable_designation] = STATE(4786), + [sym_parenthesized_variable_designation] = STATE(4761), + [sym_identifier] = STATE(4764), + [sym__reserved_identifier] = STATE(4323), [sym_preproc_region] = STATE(2563), [sym_preproc_endregion] = STATE(2563), [sym_preproc_line] = STATE(2563), @@ -423580,66 +434019,67 @@ 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(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_COMMA] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(4025), - [anon_sym_var] = ACTIONS(4025), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(4025), - [sym_discard] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [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(4025), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), @@ -423650,8 +434090,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(3905), }, [2564] = { + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2564), [sym_preproc_endregion] = STATE(2564), [sym_preproc_line] = STATE(2564), @@ -423661,70 +434103,71 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4245), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423737,6 +434180,11 @@ 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), @@ -423746,70 +434194,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423822,6 +434267,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_preproc_region] = STATE(2566), [sym_preproc_endregion] = STATE(2566), [sym_preproc_line] = STATE(2566), @@ -423831,70 +434281,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_when] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3627), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423907,6 +434354,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_preproc_region] = STATE(2567), [sym_preproc_endregion] = STATE(2567), [sym_preproc_line] = STATE(2567), @@ -423916,70 +434368,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), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_when] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3623), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -423992,6 +434440,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_preproc_region] = STATE(2568), [sym_preproc_endregion] = STATE(2568), [sym_preproc_line] = STATE(2568), @@ -424001,70 +434454,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), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_when] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424077,6 +434526,7 @@ 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), @@ -424086,70 +434536,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2569), [sym_preproc_define] = STATE(2569), [sym_preproc_undef] = STATE(2569), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4247), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424162,6 +434612,10 @@ 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), @@ -424171,70 +434625,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_when] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3608), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424256,70 +434707,71 @@ 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(3665), - [anon_sym_EQ] = ACTIONS(3658), - [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(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3658), - [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(3658), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424332,6 +434784,11 @@ 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), @@ -424341,70 +434798,66 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424417,6 +434870,10 @@ 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_preproc_region] = STATE(2573), [sym_preproc_endregion] = STATE(2573), [sym_preproc_line] = STATE(2573), @@ -424426,70 +434883,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2573), [sym_preproc_define] = STATE(2573), [sym_preproc_undef] = STATE(2573), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424502,6 +434956,11 @@ 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_preproc_region] = STATE(2574), [sym_preproc_endregion] = STATE(2574), [sym_preproc_line] = STATE(2574), @@ -424511,82 +434970,83 @@ 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(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_COLON] = ACTIONS(4043), - [anon_sym_COMMA] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4045), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4043), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2575), [sym_preproc_endregion] = STATE(2575), [sym_preproc_line] = STATE(2575), @@ -424596,70 +435056,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(3932), - [anon_sym_alias] = ACTIONS(3932), - [anon_sym_global] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_file] = ACTIONS(3932), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_notnull] = ACTIONS(3932), - [anon_sym_unmanaged] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_scoped] = ACTIONS(3932), - [anon_sym_var] = ACTIONS(3932), - [anon_sym_yield] = ACTIONS(3932), - [anon_sym_switch] = ACTIONS(3932), - [anon_sym_when] = ACTIONS(3932), - [sym_discard] = ACTIONS(3932), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3932), - [anon_sym_into] = ACTIONS(3932), - [anon_sym_join] = ACTIONS(3932), - [anon_sym_on] = ACTIONS(3932), - [anon_sym_equals] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3932), - [anon_sym_orderby] = ACTIONS(3932), - [anon_sym_ascending] = ACTIONS(3932), - [anon_sym_descending] = ACTIONS(3932), - [anon_sym_group] = ACTIONS(3932), - [anon_sym_by] = ACTIONS(3932), - [anon_sym_select] = ACTIONS(3932), - [anon_sym_as] = ACTIONS(3932), - [anon_sym_is] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424672,6 +435128,11 @@ 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_preproc_region] = STATE(2576), [sym_preproc_endregion] = STATE(2576), [sym_preproc_line] = STATE(2576), @@ -424681,70 +435142,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_when] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = 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(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), @@ -424766,70 +435223,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2577), [sym_preproc_define] = STATE(2577), [sym_preproc_undef] = STATE(2577), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_when] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), @@ -424851,70 +435309,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2578), [sym_preproc_define] = STATE(2578), [sym_preproc_undef] = STATE(2578), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym_EQ] = ACTIONS(4128), - [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(4128), - [anon_sym_GT] = ACTIONS(4128), - [anon_sym_in] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_SLASH] = ACTIONS(4128), - [anon_sym_PERCENT] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_PIPE] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_LT] = ACTIONS(4128), - [anon_sym_GT_GT] = ACTIONS(4128), - [anon_sym_GT_GT_GT] = ACTIONS(4128), - [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(4128), - [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_PLUS_EQ] = ACTIONS(4126), - [anon_sym_DASH_EQ] = ACTIONS(4126), - [anon_sym_STAR_EQ] = ACTIONS(4126), - [anon_sym_SLASH_EQ] = ACTIONS(4126), - [anon_sym_PERCENT_EQ] = ACTIONS(4126), - [anon_sym_AMP_EQ] = ACTIONS(4126), - [anon_sym_CARET_EQ] = ACTIONS(4126), - [anon_sym_PIPE_EQ] = ACTIONS(4126), - [anon_sym_LT_LT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4128), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424927,6 +435386,11 @@ 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_preproc_region] = STATE(2579), [sym_preproc_endregion] = STATE(2579), [sym_preproc_line] = STATE(2579), @@ -424936,70 +435400,66 @@ 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(4251), - [anon_sym_extern] = ACTIONS(4251), - [anon_sym_alias] = ACTIONS(4251), - [anon_sym_global] = ACTIONS(4251), - [anon_sym_using] = ACTIONS(4251), - [anon_sym_unsafe] = ACTIONS(4251), - [anon_sym_EQ] = ACTIONS(4253), - [anon_sym_static] = ACTIONS(4251), - [anon_sym_LBRACK] = ACTIONS(4255), - [anon_sym_LPAREN] = ACTIONS(4255), - [anon_sym_event] = ACTIONS(4251), - [anon_sym_namespace] = ACTIONS(4251), - [anon_sym_class] = ACTIONS(4251), - [anon_sym_ref] = ACTIONS(4251), - [anon_sym_struct] = ACTIONS(4251), - [anon_sym_enum] = ACTIONS(4251), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_interface] = ACTIONS(4251), - [anon_sym_delegate] = ACTIONS(4251), - [anon_sym_record] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4251), - [anon_sym_async] = ACTIONS(4251), - [anon_sym_const] = ACTIONS(4251), - [anon_sym_file] = ACTIONS(4251), - [anon_sym_fixed] = ACTIONS(4251), - [anon_sym_internal] = ACTIONS(4251), - [anon_sym_new] = ACTIONS(4251), - [anon_sym_override] = ACTIONS(4251), - [anon_sym_partial] = ACTIONS(4251), - [anon_sym_private] = ACTIONS(4251), - [anon_sym_protected] = ACTIONS(4251), - [anon_sym_public] = ACTIONS(4251), - [anon_sym_readonly] = ACTIONS(4251), - [anon_sym_required] = ACTIONS(4251), - [anon_sym_sealed] = ACTIONS(4251), - [anon_sym_virtual] = ACTIONS(4251), - [anon_sym_volatile] = ACTIONS(4251), - [anon_sym_where] = ACTIONS(4251), - [anon_sym_notnull] = ACTIONS(4251), - [anon_sym_unmanaged] = ACTIONS(4251), - [anon_sym_TILDE] = ACTIONS(4255), - [anon_sym_implicit] = ACTIONS(4251), - [anon_sym_explicit] = ACTIONS(4251), - [anon_sym_scoped] = ACTIONS(4251), - [anon_sym_var] = ACTIONS(4251), - [sym_predefined_type] = ACTIONS(4251), - [anon_sym_yield] = ACTIONS(4251), - [anon_sym_when] = ACTIONS(4251), - [anon_sym_from] = ACTIONS(4251), - [anon_sym_into] = ACTIONS(4251), - [anon_sym_join] = ACTIONS(4251), - [anon_sym_on] = ACTIONS(4251), - [anon_sym_equals] = ACTIONS(4251), - [anon_sym_let] = ACTIONS(4251), - [anon_sym_orderby] = ACTIONS(4251), - [anon_sym_ascending] = ACTIONS(4251), - [anon_sym_descending] = ACTIONS(4251), - [anon_sym_group] = ACTIONS(4251), - [anon_sym_by] = ACTIONS(4251), - [anon_sym_select] = ACTIONS(4251), - [aux_sym_preproc_if_token1] = ACTIONS(4255), - [aux_sym_preproc_if_token3] = ACTIONS(4255), - [aux_sym_preproc_else_token1] = ACTIONS(4255), - [aux_sym_preproc_elif_token1] = ACTIONS(4255), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425012,6 +435472,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_preproc_region] = STATE(2580), [sym_preproc_endregion] = STATE(2580), [sym_preproc_line] = STATE(2580), @@ -425021,70 +435486,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4249), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425097,7 +435558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2581] = { - [sym_type_argument_list] = STATE(2725), + [sym_type_argument_list] = STATE(2723), [sym_preproc_region] = STATE(2581), [sym_preproc_endregion] = STATE(2581), [sym_preproc_line] = STATE(2581), @@ -425107,69 +435568,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4257), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), @@ -425180,12 +435641,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(3662), }, [2582] = { - [sym__variable_designation] = STATE(3247), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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_preproc_region] = STATE(2582), [sym_preproc_endregion] = STATE(2582), [sym_preproc_line] = STATE(2582), @@ -425195,65 +435658,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), @@ -425266,6 +435730,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2583), [sym_preproc_endregion] = STATE(2583), [sym_preproc_line] = STATE(2583), @@ -425275,69 +435744,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(4260), - [anon_sym_extern] = ACTIONS(4260), - [anon_sym_alias] = ACTIONS(4260), - [anon_sym_global] = ACTIONS(4260), - [anon_sym_using] = ACTIONS(4260), - [anon_sym_unsafe] = ACTIONS(4260), - [anon_sym_static] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_LPAREN] = ACTIONS(4262), - [anon_sym_event] = ACTIONS(4260), - [anon_sym_namespace] = ACTIONS(4260), - [anon_sym_class] = ACTIONS(4260), - [anon_sym_ref] = ACTIONS(4260), - [anon_sym_struct] = ACTIONS(4260), - [anon_sym_enum] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4262), - [anon_sym_interface] = ACTIONS(4260), - [anon_sym_delegate] = ACTIONS(4260), - [anon_sym_record] = ACTIONS(4260), - [anon_sym_abstract] = ACTIONS(4260), - [anon_sym_async] = ACTIONS(4260), - [anon_sym_const] = ACTIONS(4260), - [anon_sym_file] = ACTIONS(4260), - [anon_sym_fixed] = ACTIONS(4260), - [anon_sym_internal] = ACTIONS(4260), - [anon_sym_new] = ACTIONS(4260), - [anon_sym_override] = ACTIONS(4260), - [anon_sym_partial] = ACTIONS(4260), - [anon_sym_private] = ACTIONS(4260), - [anon_sym_protected] = ACTIONS(4260), - [anon_sym_public] = ACTIONS(4260), - [anon_sym_readonly] = ACTIONS(4260), - [anon_sym_required] = ACTIONS(4260), - [anon_sym_sealed] = ACTIONS(4260), - [anon_sym_virtual] = ACTIONS(4260), - [anon_sym_volatile] = ACTIONS(4260), - [anon_sym_where] = ACTIONS(4260), - [anon_sym_notnull] = ACTIONS(4260), - [anon_sym_unmanaged] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4262), - [anon_sym_implicit] = ACTIONS(4260), - [anon_sym_explicit] = ACTIONS(4260), - [anon_sym_scoped] = ACTIONS(4260), - [anon_sym_var] = ACTIONS(4260), - [sym_predefined_type] = ACTIONS(4260), - [anon_sym_yield] = ACTIONS(4260), - [anon_sym_when] = ACTIONS(4260), - [anon_sym_from] = ACTIONS(4260), - [anon_sym_into] = ACTIONS(4260), - [anon_sym_join] = ACTIONS(4260), - [anon_sym_on] = ACTIONS(4260), - [anon_sym_equals] = ACTIONS(4260), - [anon_sym_let] = ACTIONS(4260), - [anon_sym_orderby] = ACTIONS(4260), - [anon_sym_ascending] = ACTIONS(4260), - [anon_sym_descending] = ACTIONS(4260), - [anon_sym_group] = ACTIONS(4260), - [anon_sym_by] = ACTIONS(4260), - [anon_sym_select] = ACTIONS(4260), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token3] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425350,6 +435816,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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_preproc_region] = STATE(2584), [sym_preproc_endregion] = STATE(2584), [sym_preproc_line] = STATE(2584), @@ -425359,69 +435830,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(4264), - [anon_sym_extern] = ACTIONS(4264), - [anon_sym_alias] = ACTIONS(4264), - [anon_sym_global] = ACTIONS(4264), - [anon_sym_using] = ACTIONS(4264), - [anon_sym_unsafe] = ACTIONS(4264), - [anon_sym_static] = ACTIONS(4264), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_LPAREN] = ACTIONS(4266), - [anon_sym_event] = ACTIONS(4264), - [anon_sym_namespace] = ACTIONS(4264), - [anon_sym_class] = ACTIONS(4264), - [anon_sym_ref] = ACTIONS(4264), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4266), - [anon_sym_interface] = ACTIONS(4264), - [anon_sym_delegate] = ACTIONS(4264), - [anon_sym_record] = ACTIONS(4264), - [anon_sym_abstract] = ACTIONS(4264), - [anon_sym_async] = ACTIONS(4264), - [anon_sym_const] = ACTIONS(4264), - [anon_sym_file] = ACTIONS(4264), - [anon_sym_fixed] = ACTIONS(4264), - [anon_sym_internal] = ACTIONS(4264), - [anon_sym_new] = ACTIONS(4264), - [anon_sym_override] = ACTIONS(4264), - [anon_sym_partial] = ACTIONS(4264), - [anon_sym_private] = ACTIONS(4264), - [anon_sym_protected] = ACTIONS(4264), - [anon_sym_public] = ACTIONS(4264), - [anon_sym_readonly] = ACTIONS(4264), - [anon_sym_required] = ACTIONS(4264), - [anon_sym_sealed] = ACTIONS(4264), - [anon_sym_virtual] = ACTIONS(4264), - [anon_sym_volatile] = ACTIONS(4264), - [anon_sym_where] = ACTIONS(4264), - [anon_sym_notnull] = ACTIONS(4264), - [anon_sym_unmanaged] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4266), - [anon_sym_implicit] = ACTIONS(4264), - [anon_sym_explicit] = ACTIONS(4264), - [anon_sym_scoped] = ACTIONS(4264), - [anon_sym_var] = ACTIONS(4264), - [sym_predefined_type] = ACTIONS(4264), - [anon_sym_yield] = ACTIONS(4264), - [anon_sym_when] = ACTIONS(4264), - [anon_sym_from] = ACTIONS(4264), - [anon_sym_into] = ACTIONS(4264), - [anon_sym_join] = ACTIONS(4264), - [anon_sym_on] = ACTIONS(4264), - [anon_sym_equals] = ACTIONS(4264), - [anon_sym_let] = ACTIONS(4264), - [anon_sym_orderby] = ACTIONS(4264), - [anon_sym_ascending] = ACTIONS(4264), - [anon_sym_descending] = ACTIONS(4264), - [anon_sym_group] = ACTIONS(4264), - [anon_sym_by] = ACTIONS(4264), - [anon_sym_select] = ACTIONS(4264), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token3] = ACTIONS(4266), - [aux_sym_preproc_else_token1] = ACTIONS(4266), - [aux_sym_preproc_elif_token1] = ACTIONS(4266), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425434,6 +435902,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_preproc_region] = STATE(2585), [sym_preproc_endregion] = STATE(2585), [sym_preproc_line] = STATE(2585), @@ -425443,69 +435916,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(4268), - [anon_sym_extern] = ACTIONS(4268), - [anon_sym_alias] = ACTIONS(4268), - [anon_sym_global] = ACTIONS(4268), - [anon_sym_using] = ACTIONS(4268), - [anon_sym_unsafe] = ACTIONS(4268), - [anon_sym_static] = ACTIONS(4268), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_LPAREN] = ACTIONS(4270), - [anon_sym_event] = ACTIONS(4268), - [anon_sym_namespace] = ACTIONS(4268), - [anon_sym_class] = ACTIONS(4268), - [anon_sym_ref] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4268), - [anon_sym_enum] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4270), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_delegate] = ACTIONS(4268), - [anon_sym_record] = ACTIONS(4268), - [anon_sym_abstract] = ACTIONS(4268), - [anon_sym_async] = ACTIONS(4268), - [anon_sym_const] = ACTIONS(4268), - [anon_sym_file] = ACTIONS(4268), - [anon_sym_fixed] = ACTIONS(4268), - [anon_sym_internal] = ACTIONS(4268), - [anon_sym_new] = ACTIONS(4268), - [anon_sym_override] = ACTIONS(4268), - [anon_sym_partial] = ACTIONS(4268), - [anon_sym_private] = ACTIONS(4268), - [anon_sym_protected] = ACTIONS(4268), - [anon_sym_public] = ACTIONS(4268), - [anon_sym_readonly] = ACTIONS(4268), - [anon_sym_required] = ACTIONS(4268), - [anon_sym_sealed] = ACTIONS(4268), - [anon_sym_virtual] = ACTIONS(4268), - [anon_sym_volatile] = ACTIONS(4268), - [anon_sym_where] = ACTIONS(4268), - [anon_sym_notnull] = ACTIONS(4268), - [anon_sym_unmanaged] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4270), - [anon_sym_implicit] = ACTIONS(4268), - [anon_sym_explicit] = ACTIONS(4268), - [anon_sym_scoped] = ACTIONS(4268), - [anon_sym_var] = ACTIONS(4268), - [sym_predefined_type] = ACTIONS(4268), - [anon_sym_yield] = ACTIONS(4268), - [anon_sym_when] = ACTIONS(4268), - [anon_sym_from] = ACTIONS(4268), - [anon_sym_into] = ACTIONS(4268), - [anon_sym_join] = ACTIONS(4268), - [anon_sym_on] = ACTIONS(4268), - [anon_sym_equals] = ACTIONS(4268), - [anon_sym_let] = ACTIONS(4268), - [anon_sym_orderby] = ACTIONS(4268), - [anon_sym_ascending] = ACTIONS(4268), - [anon_sym_descending] = ACTIONS(4268), - [anon_sym_group] = ACTIONS(4268), - [anon_sym_by] = ACTIONS(4268), - [anon_sym_select] = ACTIONS(4268), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token3] = ACTIONS(4270), - [aux_sym_preproc_else_token1] = ACTIONS(4270), - [aux_sym_preproc_elif_token1] = ACTIONS(4270), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425527,68 +435997,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(3653), - [anon_sym_alias] = ACTIONS(3653), - [anon_sym_global] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_file] = ACTIONS(3653), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_where] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_notnull] = ACTIONS(3653), - [anon_sym_unmanaged] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_scoped] = ACTIONS(3653), - [anon_sym_var] = ACTIONS(3653), - [anon_sym_yield] = ACTIONS(3653), - [anon_sym_switch] = ACTIONS(3653), - [anon_sym_when] = ACTIONS(3653), - [sym_discard] = ACTIONS(3653), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3653), - [anon_sym_or] = ACTIONS(3653), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3653), - [anon_sym_into] = ACTIONS(3653), - [anon_sym_join] = ACTIONS(3653), - [anon_sym_on] = ACTIONS(3653), - [anon_sym_equals] = ACTIONS(3653), - [anon_sym_let] = ACTIONS(3653), - [anon_sym_orderby] = ACTIONS(3653), - [anon_sym_ascending] = ACTIONS(3653), - [anon_sym_descending] = ACTIONS(3653), - [anon_sym_group] = ACTIONS(3653), - [anon_sym_by] = ACTIONS(3653), - [anon_sym_select] = ACTIONS(3653), - [anon_sym_as] = ACTIONS(3653), - [anon_sym_is] = ACTIONS(3653), - [anon_sym_DASH_GT] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3653), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425599,9 +436072,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(3660), }, [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_preproc_region] = STATE(2587), [sym_preproc_endregion] = STATE(2587), [sym_preproc_line] = STATE(2587), @@ -425611,69 +436088,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(4272), - [anon_sym_extern] = ACTIONS(4272), - [anon_sym_alias] = ACTIONS(4272), - [anon_sym_global] = ACTIONS(4272), - [anon_sym_using] = ACTIONS(4272), - [anon_sym_unsafe] = ACTIONS(4272), - [anon_sym_static] = ACTIONS(4272), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_LPAREN] = ACTIONS(4274), - [anon_sym_event] = ACTIONS(4272), - [anon_sym_namespace] = ACTIONS(4272), - [anon_sym_class] = ACTIONS(4272), - [anon_sym_ref] = ACTIONS(4272), - [anon_sym_struct] = ACTIONS(4272), - [anon_sym_enum] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_interface] = ACTIONS(4272), - [anon_sym_delegate] = ACTIONS(4272), - [anon_sym_record] = ACTIONS(4272), - [anon_sym_abstract] = ACTIONS(4272), - [anon_sym_async] = ACTIONS(4272), - [anon_sym_const] = ACTIONS(4272), - [anon_sym_file] = ACTIONS(4272), - [anon_sym_fixed] = ACTIONS(4272), - [anon_sym_internal] = ACTIONS(4272), - [anon_sym_new] = ACTIONS(4272), - [anon_sym_override] = ACTIONS(4272), - [anon_sym_partial] = ACTIONS(4272), - [anon_sym_private] = ACTIONS(4272), - [anon_sym_protected] = ACTIONS(4272), - [anon_sym_public] = ACTIONS(4272), - [anon_sym_readonly] = ACTIONS(4272), - [anon_sym_required] = ACTIONS(4272), - [anon_sym_sealed] = ACTIONS(4272), - [anon_sym_virtual] = ACTIONS(4272), - [anon_sym_volatile] = ACTIONS(4272), - [anon_sym_where] = ACTIONS(4272), - [anon_sym_notnull] = ACTIONS(4272), - [anon_sym_unmanaged] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4274), - [anon_sym_implicit] = ACTIONS(4272), - [anon_sym_explicit] = ACTIONS(4272), - [anon_sym_scoped] = ACTIONS(4272), - [anon_sym_var] = ACTIONS(4272), - [sym_predefined_type] = ACTIONS(4272), - [anon_sym_yield] = ACTIONS(4272), - [anon_sym_when] = ACTIONS(4272), - [anon_sym_from] = ACTIONS(4272), - [anon_sym_into] = ACTIONS(4272), - [anon_sym_join] = ACTIONS(4272), - [anon_sym_on] = ACTIONS(4272), - [anon_sym_equals] = ACTIONS(4272), - [anon_sym_let] = ACTIONS(4272), - [anon_sym_orderby] = ACTIONS(4272), - [anon_sym_ascending] = ACTIONS(4272), - [anon_sym_descending] = ACTIONS(4272), - [anon_sym_group] = ACTIONS(4272), - [anon_sym_by] = ACTIONS(4272), - [anon_sym_select] = ACTIONS(4272), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token3] = ACTIONS(4274), - [aux_sym_preproc_else_token1] = ACTIONS(4274), - [aux_sym_preproc_elif_token1] = ACTIONS(4274), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425686,6 +436160,11 @@ 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_preproc_region] = STATE(2588), [sym_preproc_endregion] = STATE(2588), [sym_preproc_line] = STATE(2588), @@ -425695,69 +436174,66 @@ 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(4276), - [anon_sym_extern] = ACTIONS(4276), - [anon_sym_alias] = ACTIONS(4276), - [anon_sym_global] = ACTIONS(4276), - [anon_sym_using] = ACTIONS(4276), - [anon_sym_unsafe] = ACTIONS(4276), - [anon_sym_static] = ACTIONS(4276), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_LPAREN] = ACTIONS(4278), - [anon_sym_event] = ACTIONS(4276), - [anon_sym_namespace] = ACTIONS(4276), - [anon_sym_class] = ACTIONS(4276), - [anon_sym_ref] = ACTIONS(4276), - [anon_sym_struct] = ACTIONS(4276), - [anon_sym_enum] = ACTIONS(4276), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_interface] = ACTIONS(4276), - [anon_sym_delegate] = ACTIONS(4276), - [anon_sym_record] = ACTIONS(4276), - [anon_sym_abstract] = ACTIONS(4276), - [anon_sym_async] = ACTIONS(4276), - [anon_sym_const] = ACTIONS(4276), - [anon_sym_file] = ACTIONS(4276), - [anon_sym_fixed] = ACTIONS(4276), - [anon_sym_internal] = ACTIONS(4276), - [anon_sym_new] = ACTIONS(4276), - [anon_sym_override] = ACTIONS(4276), - [anon_sym_partial] = ACTIONS(4276), - [anon_sym_private] = ACTIONS(4276), - [anon_sym_protected] = ACTIONS(4276), - [anon_sym_public] = ACTIONS(4276), - [anon_sym_readonly] = ACTIONS(4276), - [anon_sym_required] = ACTIONS(4276), - [anon_sym_sealed] = ACTIONS(4276), - [anon_sym_virtual] = ACTIONS(4276), - [anon_sym_volatile] = ACTIONS(4276), - [anon_sym_where] = ACTIONS(4276), - [anon_sym_notnull] = ACTIONS(4276), - [anon_sym_unmanaged] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4278), - [anon_sym_implicit] = ACTIONS(4276), - [anon_sym_explicit] = ACTIONS(4276), - [anon_sym_scoped] = ACTIONS(4276), - [anon_sym_var] = ACTIONS(4276), - [sym_predefined_type] = ACTIONS(4276), - [anon_sym_yield] = ACTIONS(4276), - [anon_sym_when] = ACTIONS(4276), - [anon_sym_from] = ACTIONS(4276), - [anon_sym_into] = ACTIONS(4276), - [anon_sym_join] = ACTIONS(4276), - [anon_sym_on] = ACTIONS(4276), - [anon_sym_equals] = ACTIONS(4276), - [anon_sym_let] = ACTIONS(4276), - [anon_sym_orderby] = ACTIONS(4276), - [anon_sym_ascending] = ACTIONS(4276), - [anon_sym_descending] = ACTIONS(4276), - [anon_sym_group] = ACTIONS(4276), - [anon_sym_by] = ACTIONS(4276), - [anon_sym_select] = ACTIONS(4276), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token3] = ACTIONS(4278), - [aux_sym_preproc_else_token1] = ACTIONS(4278), - [aux_sym_preproc_elif_token1] = ACTIONS(4278), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425770,6 +436246,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_preproc_region] = STATE(2589), [sym_preproc_endregion] = STATE(2589), [sym_preproc_line] = STATE(2589), @@ -425779,72 +436259,70 @@ 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(3361), - [anon_sym_extern] = ACTIONS(3361), - [anon_sym_alias] = ACTIONS(3361), - [anon_sym_global] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_unsafe] = ACTIONS(3361), - [anon_sym_static] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_event] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_ref] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_delegate] = ACTIONS(3361), - [anon_sym_record] = ACTIONS(3361), - [anon_sym_abstract] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_file] = ACTIONS(3361), - [anon_sym_fixed] = ACTIONS(3361), - [anon_sym_internal] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_override] = ACTIONS(3361), - [anon_sym_partial] = ACTIONS(3361), - [anon_sym_private] = ACTIONS(3361), - [anon_sym_protected] = ACTIONS(3361), - [anon_sym_public] = ACTIONS(3361), - [anon_sym_readonly] = ACTIONS(3361), - [anon_sym_required] = ACTIONS(3361), - [anon_sym_sealed] = ACTIONS(3361), - [anon_sym_virtual] = ACTIONS(3361), - [anon_sym_volatile] = ACTIONS(3361), - [anon_sym_where] = ACTIONS(3361), - [anon_sym_notnull] = ACTIONS(3361), - [anon_sym_unmanaged] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_implicit] = ACTIONS(3361), - [anon_sym_explicit] = ACTIONS(3361), - [anon_sym_scoped] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [sym_predefined_type] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_when] = ACTIONS(3361), - [anon_sym_from] = ACTIONS(3361), - [anon_sym_into] = ACTIONS(3361), - [anon_sym_join] = ACTIONS(3361), - [anon_sym_on] = ACTIONS(3361), - [anon_sym_equals] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_orderby] = ACTIONS(3361), - [anon_sym_ascending] = ACTIONS(3361), - [anon_sym_descending] = ACTIONS(3361), - [anon_sym_group] = ACTIONS(3361), - [anon_sym_by] = ACTIONS(3361), - [anon_sym_select] = ACTIONS(3361), - [aux_sym_preproc_if_token1] = ACTIONS(3363), - [aux_sym_preproc_if_token3] = ACTIONS(3363), - [aux_sym_preproc_else_token1] = ACTIONS(3363), - [aux_sym_preproc_elif_token1] = ACTIONS(3363), - [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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), [aux_sym_preproc_error_token1] = ACTIONS(13), @@ -425854,6 +436332,10 @@ 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_preproc_region] = STATE(2590), [sym_preproc_endregion] = STATE(2590), [sym_preproc_line] = STATE(2590), @@ -425863,69 +436345,67 @@ 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(4280), - [anon_sym_extern] = ACTIONS(4280), - [anon_sym_alias] = ACTIONS(4280), - [anon_sym_global] = ACTIONS(4280), - [anon_sym_using] = ACTIONS(4280), - [anon_sym_unsafe] = ACTIONS(4280), - [anon_sym_static] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_event] = ACTIONS(4280), - [anon_sym_namespace] = ACTIONS(4280), - [anon_sym_class] = ACTIONS(4280), - [anon_sym_ref] = ACTIONS(4280), - [anon_sym_struct] = ACTIONS(4280), - [anon_sym_enum] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_interface] = ACTIONS(4280), - [anon_sym_delegate] = ACTIONS(4280), - [anon_sym_record] = ACTIONS(4280), - [anon_sym_abstract] = ACTIONS(4280), - [anon_sym_async] = ACTIONS(4280), - [anon_sym_const] = ACTIONS(4280), - [anon_sym_file] = ACTIONS(4280), - [anon_sym_fixed] = ACTIONS(4280), - [anon_sym_internal] = ACTIONS(4280), - [anon_sym_new] = ACTIONS(4280), - [anon_sym_override] = ACTIONS(4280), - [anon_sym_partial] = ACTIONS(4280), - [anon_sym_private] = ACTIONS(4280), - [anon_sym_protected] = ACTIONS(4280), - [anon_sym_public] = ACTIONS(4280), - [anon_sym_readonly] = ACTIONS(4280), - [anon_sym_required] = ACTIONS(4280), - [anon_sym_sealed] = ACTIONS(4280), - [anon_sym_virtual] = ACTIONS(4280), - [anon_sym_volatile] = ACTIONS(4280), - [anon_sym_where] = ACTIONS(4280), - [anon_sym_notnull] = ACTIONS(4280), - [anon_sym_unmanaged] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4282), - [anon_sym_implicit] = ACTIONS(4280), - [anon_sym_explicit] = ACTIONS(4280), - [anon_sym_scoped] = ACTIONS(4280), - [anon_sym_var] = ACTIONS(4280), - [sym_predefined_type] = ACTIONS(4280), - [anon_sym_yield] = ACTIONS(4280), - [anon_sym_when] = ACTIONS(4280), - [anon_sym_from] = ACTIONS(4280), - [anon_sym_into] = ACTIONS(4280), - [anon_sym_join] = ACTIONS(4280), - [anon_sym_on] = ACTIONS(4280), - [anon_sym_equals] = ACTIONS(4280), - [anon_sym_let] = ACTIONS(4280), - [anon_sym_orderby] = ACTIONS(4280), - [anon_sym_ascending] = ACTIONS(4280), - [anon_sym_descending] = ACTIONS(4280), - [anon_sym_group] = ACTIONS(4280), - [anon_sym_by] = ACTIONS(4280), - [anon_sym_select] = ACTIONS(4280), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token3] = ACTIONS(4282), - [aux_sym_preproc_else_token1] = ACTIONS(4282), - [aux_sym_preproc_elif_token1] = ACTIONS(4282), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -425938,6 +436418,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_preproc_region] = STATE(2591), [sym_preproc_endregion] = STATE(2591), [sym_preproc_line] = STATE(2591), @@ -425947,69 +436432,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(4284), - [anon_sym_extern] = ACTIONS(4284), - [anon_sym_alias] = ACTIONS(4284), - [anon_sym_global] = ACTIONS(4284), - [anon_sym_using] = ACTIONS(4284), - [anon_sym_unsafe] = ACTIONS(4284), - [anon_sym_static] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_LPAREN] = ACTIONS(4286), - [anon_sym_event] = ACTIONS(4284), - [anon_sym_namespace] = ACTIONS(4284), - [anon_sym_class] = ACTIONS(4284), - [anon_sym_ref] = ACTIONS(4284), - [anon_sym_struct] = ACTIONS(4284), - [anon_sym_enum] = ACTIONS(4284), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_interface] = ACTIONS(4284), - [anon_sym_delegate] = ACTIONS(4284), - [anon_sym_record] = ACTIONS(4284), - [anon_sym_abstract] = ACTIONS(4284), - [anon_sym_async] = ACTIONS(4284), - [anon_sym_const] = ACTIONS(4284), - [anon_sym_file] = ACTIONS(4284), - [anon_sym_fixed] = ACTIONS(4284), - [anon_sym_internal] = ACTIONS(4284), - [anon_sym_new] = ACTIONS(4284), - [anon_sym_override] = ACTIONS(4284), - [anon_sym_partial] = ACTIONS(4284), - [anon_sym_private] = ACTIONS(4284), - [anon_sym_protected] = ACTIONS(4284), - [anon_sym_public] = ACTIONS(4284), - [anon_sym_readonly] = ACTIONS(4284), - [anon_sym_required] = ACTIONS(4284), - [anon_sym_sealed] = ACTIONS(4284), - [anon_sym_virtual] = ACTIONS(4284), - [anon_sym_volatile] = ACTIONS(4284), - [anon_sym_where] = ACTIONS(4284), - [anon_sym_notnull] = ACTIONS(4284), - [anon_sym_unmanaged] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4286), - [anon_sym_implicit] = ACTIONS(4284), - [anon_sym_explicit] = ACTIONS(4284), - [anon_sym_scoped] = ACTIONS(4284), - [anon_sym_var] = ACTIONS(4284), - [sym_predefined_type] = ACTIONS(4284), - [anon_sym_yield] = ACTIONS(4284), - [anon_sym_when] = ACTIONS(4284), - [anon_sym_from] = ACTIONS(4284), - [anon_sym_into] = ACTIONS(4284), - [anon_sym_join] = ACTIONS(4284), - [anon_sym_on] = ACTIONS(4284), - [anon_sym_equals] = ACTIONS(4284), - [anon_sym_let] = ACTIONS(4284), - [anon_sym_orderby] = ACTIONS(4284), - [anon_sym_ascending] = ACTIONS(4284), - [anon_sym_descending] = ACTIONS(4284), - [anon_sym_group] = ACTIONS(4284), - [anon_sym_by] = ACTIONS(4284), - [anon_sym_select] = ACTIONS(4284), - [aux_sym_preproc_if_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token3] = ACTIONS(4286), - [aux_sym_preproc_else_token1] = ACTIONS(4286), - [aux_sym_preproc_elif_token1] = ACTIONS(4286), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426022,6 +436504,11 @@ 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), @@ -426031,69 +436518,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3665), - [anon_sym_EQ] = ACTIONS(3658), - [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(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3658), - [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(3658), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426115,69 +436599,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2593), [sym_preproc_define] = STATE(2593), [sym_preproc_undef] = STATE(2593), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [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_RBRACE] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_in] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [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_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426199,81 +436685,87 @@ 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(4005), - [anon_sym_alias] = ACTIONS(4005), - [anon_sym_global] = ACTIONS(4005), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_file] = ACTIONS(4005), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_notnull] = ACTIONS(4005), - [anon_sym_unmanaged] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_scoped] = ACTIONS(4005), - [anon_sym_var] = ACTIONS(4005), - [anon_sym_yield] = ACTIONS(4005), - [anon_sym_switch] = ACTIONS(4005), - [anon_sym_when] = ACTIONS(4005), - [sym_discard] = ACTIONS(4005), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4005), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4005), - [anon_sym_into] = ACTIONS(4005), - [anon_sym_join] = ACTIONS(4005), - [anon_sym_on] = ACTIONS(4005), - [anon_sym_equals] = ACTIONS(4005), - [anon_sym_let] = ACTIONS(4005), - [anon_sym_orderby] = ACTIONS(4005), - [anon_sym_ascending] = ACTIONS(4005), - [anon_sym_descending] = ACTIONS(4005), - [anon_sym_group] = ACTIONS(4005), - [anon_sym_by] = ACTIONS(4005), - [anon_sym_select] = ACTIONS(4005), - [anon_sym_as] = ACTIONS(4005), - [anon_sym_is] = ACTIONS(4005), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4005), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4007), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -426283,79 +436775,77 @@ 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(3940), - [anon_sym_alias] = ACTIONS(3940), - [anon_sym_global] = ACTIONS(3940), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_file] = ACTIONS(3940), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_where] = ACTIONS(3940), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_notnull] = ACTIONS(3940), - [anon_sym_unmanaged] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_scoped] = ACTIONS(3940), - [anon_sym_var] = ACTIONS(3940), - [anon_sym_yield] = ACTIONS(3940), - [anon_sym_switch] = ACTIONS(3940), - [anon_sym_when] = ACTIONS(3940), - [sym_discard] = ACTIONS(3940), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3940), - [anon_sym_or] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_from] = ACTIONS(3940), - [anon_sym_into] = ACTIONS(3940), - [anon_sym_join] = ACTIONS(3940), - [anon_sym_on] = ACTIONS(3940), - [anon_sym_equals] = ACTIONS(3940), - [anon_sym_let] = ACTIONS(3940), - [anon_sym_orderby] = ACTIONS(3940), - [anon_sym_ascending] = ACTIONS(3940), - [anon_sym_descending] = ACTIONS(3940), - [anon_sym_group] = ACTIONS(3940), - [anon_sym_by] = ACTIONS(3940), - [anon_sym_select] = ACTIONS(3940), - [anon_sym_as] = ACTIONS(3940), - [anon_sym_is] = ACTIONS(3940), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3940), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3942), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2596] = { [sym_preproc_region] = STATE(2596), @@ -426367,69 +436857,71 @@ 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(4288), - [anon_sym_extern] = ACTIONS(4288), - [anon_sym_alias] = ACTIONS(4288), - [anon_sym_global] = ACTIONS(4288), - [anon_sym_using] = ACTIONS(4288), - [anon_sym_unsafe] = ACTIONS(4288), - [anon_sym_static] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_event] = ACTIONS(4288), - [anon_sym_namespace] = ACTIONS(4288), - [anon_sym_class] = ACTIONS(4288), - [anon_sym_ref] = ACTIONS(4288), - [anon_sym_struct] = ACTIONS(4288), - [anon_sym_enum] = ACTIONS(4288), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_interface] = ACTIONS(4288), - [anon_sym_delegate] = ACTIONS(4288), - [anon_sym_record] = ACTIONS(4288), - [anon_sym_abstract] = ACTIONS(4288), - [anon_sym_async] = ACTIONS(4288), - [anon_sym_const] = ACTIONS(4288), - [anon_sym_file] = ACTIONS(4288), - [anon_sym_fixed] = ACTIONS(4288), - [anon_sym_internal] = ACTIONS(4288), - [anon_sym_new] = ACTIONS(4288), - [anon_sym_override] = ACTIONS(4288), - [anon_sym_partial] = ACTIONS(4288), - [anon_sym_private] = ACTIONS(4288), - [anon_sym_protected] = ACTIONS(4288), - [anon_sym_public] = ACTIONS(4288), - [anon_sym_readonly] = ACTIONS(4288), - [anon_sym_required] = ACTIONS(4288), - [anon_sym_sealed] = ACTIONS(4288), - [anon_sym_virtual] = ACTIONS(4288), - [anon_sym_volatile] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4288), - [anon_sym_notnull] = ACTIONS(4288), - [anon_sym_unmanaged] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4290), - [anon_sym_implicit] = ACTIONS(4288), - [anon_sym_explicit] = ACTIONS(4288), - [anon_sym_scoped] = ACTIONS(4288), - [anon_sym_var] = ACTIONS(4288), - [sym_predefined_type] = ACTIONS(4288), - [anon_sym_yield] = ACTIONS(4288), - [anon_sym_when] = ACTIONS(4288), - [anon_sym_from] = ACTIONS(4288), - [anon_sym_into] = ACTIONS(4288), - [anon_sym_join] = ACTIONS(4288), - [anon_sym_on] = ACTIONS(4288), - [anon_sym_equals] = ACTIONS(4288), - [anon_sym_let] = ACTIONS(4288), - [anon_sym_orderby] = ACTIONS(4288), - [anon_sym_ascending] = ACTIONS(4288), - [anon_sym_descending] = ACTIONS(4288), - [anon_sym_group] = ACTIONS(4288), - [anon_sym_by] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [aux_sym_preproc_if_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426442,6 +436934,10 @@ 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), @@ -426451,69 +436947,67 @@ 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(4292), - [anon_sym_extern] = ACTIONS(4292), - [anon_sym_alias] = ACTIONS(4292), - [anon_sym_global] = ACTIONS(4292), - [anon_sym_using] = ACTIONS(4292), - [anon_sym_unsafe] = ACTIONS(4292), - [anon_sym_static] = ACTIONS(4292), - [anon_sym_LBRACK] = ACTIONS(4294), - [anon_sym_LPAREN] = ACTIONS(4294), - [anon_sym_event] = ACTIONS(4292), - [anon_sym_namespace] = ACTIONS(4292), - [anon_sym_class] = ACTIONS(4292), - [anon_sym_ref] = ACTIONS(4292), - [anon_sym_struct] = ACTIONS(4292), - [anon_sym_enum] = ACTIONS(4292), - [anon_sym_RBRACE] = ACTIONS(4294), - [anon_sym_interface] = ACTIONS(4292), - [anon_sym_delegate] = ACTIONS(4292), - [anon_sym_record] = ACTIONS(4292), - [anon_sym_abstract] = ACTIONS(4292), - [anon_sym_async] = ACTIONS(4292), - [anon_sym_const] = ACTIONS(4292), - [anon_sym_file] = ACTIONS(4292), - [anon_sym_fixed] = ACTIONS(4292), - [anon_sym_internal] = ACTIONS(4292), - [anon_sym_new] = ACTIONS(4292), - [anon_sym_override] = ACTIONS(4292), - [anon_sym_partial] = ACTIONS(4292), - [anon_sym_private] = ACTIONS(4292), - [anon_sym_protected] = ACTIONS(4292), - [anon_sym_public] = ACTIONS(4292), - [anon_sym_readonly] = ACTIONS(4292), - [anon_sym_required] = ACTIONS(4292), - [anon_sym_sealed] = ACTIONS(4292), - [anon_sym_virtual] = ACTIONS(4292), - [anon_sym_volatile] = ACTIONS(4292), - [anon_sym_where] = ACTIONS(4292), - [anon_sym_notnull] = ACTIONS(4292), - [anon_sym_unmanaged] = ACTIONS(4292), - [anon_sym_TILDE] = ACTIONS(4294), - [anon_sym_implicit] = ACTIONS(4292), - [anon_sym_explicit] = ACTIONS(4292), - [anon_sym_scoped] = ACTIONS(4292), - [anon_sym_var] = ACTIONS(4292), - [sym_predefined_type] = ACTIONS(4292), - [anon_sym_yield] = ACTIONS(4292), - [anon_sym_when] = ACTIONS(4292), - [anon_sym_from] = ACTIONS(4292), - [anon_sym_into] = ACTIONS(4292), - [anon_sym_join] = ACTIONS(4292), - [anon_sym_on] = ACTIONS(4292), - [anon_sym_equals] = ACTIONS(4292), - [anon_sym_let] = ACTIONS(4292), - [anon_sym_orderby] = ACTIONS(4292), - [anon_sym_ascending] = ACTIONS(4292), - [anon_sym_descending] = ACTIONS(4292), - [anon_sym_group] = ACTIONS(4292), - [anon_sym_by] = ACTIONS(4292), - [anon_sym_select] = ACTIONS(4292), - [aux_sym_preproc_if_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token3] = ACTIONS(4294), - [aux_sym_preproc_else_token1] = ACTIONS(4294), - [aux_sym_preproc_elif_token1] = ACTIONS(4294), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426526,10 +437020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2598] = { - [sym__variable_designation] = STATE(4047), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), + [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), @@ -426539,65 +437033,67 @@ 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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3851), - [anon_sym_orderby] = ACTIONS(3851), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3851), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426610,6 +437106,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_preproc_region] = STATE(2599), [sym_preproc_endregion] = STATE(2599), [sym_preproc_line] = STATE(2599), @@ -426619,69 +437119,67 @@ 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(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_static] = ACTIONS(4296), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_LPAREN] = ACTIONS(4298), - [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(4298), - [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(4298), - [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(4298), - [aux_sym_preproc_if_token3] = ACTIONS(4298), - [aux_sym_preproc_else_token1] = ACTIONS(4298), - [aux_sym_preproc_elif_token1] = ACTIONS(4298), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426703,69 +437201,71 @@ 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(4300), - [anon_sym_extern] = ACTIONS(4300), - [anon_sym_alias] = ACTIONS(4300), - [anon_sym_global] = ACTIONS(4300), - [anon_sym_using] = ACTIONS(4300), - [anon_sym_unsafe] = ACTIONS(4300), - [anon_sym_static] = ACTIONS(4300), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_event] = ACTIONS(4300), - [anon_sym_namespace] = ACTIONS(4300), - [anon_sym_class] = ACTIONS(4300), - [anon_sym_ref] = ACTIONS(4300), - [anon_sym_struct] = ACTIONS(4300), - [anon_sym_enum] = ACTIONS(4300), - [anon_sym_RBRACE] = ACTIONS(4302), - [anon_sym_interface] = ACTIONS(4300), - [anon_sym_delegate] = ACTIONS(4300), - [anon_sym_record] = ACTIONS(4300), - [anon_sym_abstract] = ACTIONS(4300), - [anon_sym_async] = ACTIONS(4300), - [anon_sym_const] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4300), - [anon_sym_fixed] = ACTIONS(4300), - [anon_sym_internal] = ACTIONS(4300), - [anon_sym_new] = ACTIONS(4300), - [anon_sym_override] = ACTIONS(4300), - [anon_sym_partial] = ACTIONS(4300), - [anon_sym_private] = ACTIONS(4300), - [anon_sym_protected] = ACTIONS(4300), - [anon_sym_public] = ACTIONS(4300), - [anon_sym_readonly] = ACTIONS(4300), - [anon_sym_required] = ACTIONS(4300), - [anon_sym_sealed] = ACTIONS(4300), - [anon_sym_virtual] = ACTIONS(4300), - [anon_sym_volatile] = ACTIONS(4300), - [anon_sym_where] = ACTIONS(4300), - [anon_sym_notnull] = ACTIONS(4300), - [anon_sym_unmanaged] = ACTIONS(4300), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_implicit] = ACTIONS(4300), - [anon_sym_explicit] = ACTIONS(4300), - [anon_sym_scoped] = ACTIONS(4300), - [anon_sym_var] = ACTIONS(4300), - [sym_predefined_type] = ACTIONS(4300), - [anon_sym_yield] = ACTIONS(4300), - [anon_sym_when] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4300), - [anon_sym_into] = ACTIONS(4300), - [anon_sym_join] = ACTIONS(4300), - [anon_sym_on] = ACTIONS(4300), - [anon_sym_equals] = ACTIONS(4300), - [anon_sym_let] = ACTIONS(4300), - [anon_sym_orderby] = ACTIONS(4300), - [anon_sym_ascending] = ACTIONS(4300), - [anon_sym_descending] = ACTIONS(4300), - [anon_sym_group] = ACTIONS(4300), - [anon_sym_by] = ACTIONS(4300), - [anon_sym_select] = ACTIONS(4300), - [aux_sym_preproc_if_token1] = ACTIONS(4302), - [aux_sym_preproc_if_token3] = ACTIONS(4302), - [aux_sym_preproc_else_token1] = ACTIONS(4302), - [aux_sym_preproc_elif_token1] = ACTIONS(4302), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -426787,79 +437287,80 @@ 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(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [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(3596), - [anon_sym_is] = ACTIONS(3596), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3596), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3598), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2602] = { [sym_preproc_region] = STATE(2602), @@ -426871,69 +437372,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(4304), - [anon_sym_extern] = ACTIONS(4304), - [anon_sym_alias] = ACTIONS(4304), - [anon_sym_global] = ACTIONS(4304), - [anon_sym_using] = ACTIONS(4304), - [anon_sym_unsafe] = ACTIONS(4304), - [anon_sym_static] = ACTIONS(4304), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4306), - [anon_sym_event] = ACTIONS(4304), - [anon_sym_namespace] = ACTIONS(4304), - [anon_sym_class] = ACTIONS(4304), - [anon_sym_ref] = ACTIONS(4304), - [anon_sym_struct] = ACTIONS(4304), - [anon_sym_enum] = ACTIONS(4304), - [anon_sym_RBRACE] = ACTIONS(4306), - [anon_sym_interface] = ACTIONS(4304), - [anon_sym_delegate] = ACTIONS(4304), - [anon_sym_record] = ACTIONS(4304), - [anon_sym_abstract] = ACTIONS(4304), - [anon_sym_async] = ACTIONS(4304), - [anon_sym_const] = ACTIONS(4304), - [anon_sym_file] = ACTIONS(4304), - [anon_sym_fixed] = ACTIONS(4304), - [anon_sym_internal] = ACTIONS(4304), - [anon_sym_new] = ACTIONS(4304), - [anon_sym_override] = ACTIONS(4304), - [anon_sym_partial] = ACTIONS(4304), - [anon_sym_private] = ACTIONS(4304), - [anon_sym_protected] = ACTIONS(4304), - [anon_sym_public] = ACTIONS(4304), - [anon_sym_readonly] = ACTIONS(4304), - [anon_sym_required] = ACTIONS(4304), - [anon_sym_sealed] = ACTIONS(4304), - [anon_sym_virtual] = ACTIONS(4304), - [anon_sym_volatile] = ACTIONS(4304), - [anon_sym_where] = ACTIONS(4304), - [anon_sym_notnull] = ACTIONS(4304), - [anon_sym_unmanaged] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4306), - [anon_sym_implicit] = ACTIONS(4304), - [anon_sym_explicit] = ACTIONS(4304), - [anon_sym_scoped] = ACTIONS(4304), - [anon_sym_var] = ACTIONS(4304), - [sym_predefined_type] = ACTIONS(4304), - [anon_sym_yield] = ACTIONS(4304), - [anon_sym_when] = ACTIONS(4304), - [anon_sym_from] = ACTIONS(4304), - [anon_sym_into] = ACTIONS(4304), - [anon_sym_join] = ACTIONS(4304), - [anon_sym_on] = ACTIONS(4304), - [anon_sym_equals] = ACTIONS(4304), - [anon_sym_let] = ACTIONS(4304), - [anon_sym_orderby] = ACTIONS(4304), - [anon_sym_ascending] = ACTIONS(4304), - [anon_sym_descending] = ACTIONS(4304), - [anon_sym_group] = ACTIONS(4304), - [anon_sym_by] = ACTIONS(4304), - [anon_sym_select] = ACTIONS(4304), - [aux_sym_preproc_if_token1] = ACTIONS(4306), - [aux_sym_preproc_if_token3] = ACTIONS(4306), - [aux_sym_preproc_else_token1] = ACTIONS(4306), - [aux_sym_preproc_elif_token1] = ACTIONS(4306), + [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), @@ -426955,69 +437457,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), - [sym__identifier_token] = ACTIONS(4308), - [anon_sym_extern] = ACTIONS(4308), - [anon_sym_alias] = ACTIONS(4308), - [anon_sym_global] = ACTIONS(4308), - [anon_sym_using] = ACTIONS(4308), - [anon_sym_unsafe] = ACTIONS(4308), - [anon_sym_static] = ACTIONS(4308), - [anon_sym_LBRACK] = ACTIONS(4310), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym_event] = ACTIONS(4308), - [anon_sym_namespace] = ACTIONS(4308), - [anon_sym_class] = ACTIONS(4308), - [anon_sym_ref] = ACTIONS(4308), - [anon_sym_struct] = ACTIONS(4308), - [anon_sym_enum] = ACTIONS(4308), - [anon_sym_RBRACE] = ACTIONS(4310), - [anon_sym_interface] = ACTIONS(4308), - [anon_sym_delegate] = ACTIONS(4308), - [anon_sym_record] = ACTIONS(4308), - [anon_sym_abstract] = ACTIONS(4308), - [anon_sym_async] = ACTIONS(4308), - [anon_sym_const] = ACTIONS(4308), - [anon_sym_file] = ACTIONS(4308), - [anon_sym_fixed] = ACTIONS(4308), - [anon_sym_internal] = ACTIONS(4308), - [anon_sym_new] = ACTIONS(4308), - [anon_sym_override] = ACTIONS(4308), - [anon_sym_partial] = ACTIONS(4308), - [anon_sym_private] = ACTIONS(4308), - [anon_sym_protected] = ACTIONS(4308), - [anon_sym_public] = ACTIONS(4308), - [anon_sym_readonly] = ACTIONS(4308), - [anon_sym_required] = ACTIONS(4308), - [anon_sym_sealed] = ACTIONS(4308), - [anon_sym_virtual] = ACTIONS(4308), - [anon_sym_volatile] = ACTIONS(4308), - [anon_sym_where] = ACTIONS(4308), - [anon_sym_notnull] = ACTIONS(4308), - [anon_sym_unmanaged] = ACTIONS(4308), - [anon_sym_TILDE] = ACTIONS(4310), - [anon_sym_implicit] = ACTIONS(4308), - [anon_sym_explicit] = ACTIONS(4308), - [anon_sym_scoped] = ACTIONS(4308), - [anon_sym_var] = ACTIONS(4308), - [sym_predefined_type] = ACTIONS(4308), - [anon_sym_yield] = ACTIONS(4308), - [anon_sym_when] = ACTIONS(4308), - [anon_sym_from] = ACTIONS(4308), - [anon_sym_into] = ACTIONS(4308), - [anon_sym_join] = ACTIONS(4308), - [anon_sym_on] = ACTIONS(4308), - [anon_sym_equals] = ACTIONS(4308), - [anon_sym_let] = ACTIONS(4308), - [anon_sym_orderby] = ACTIONS(4308), - [anon_sym_ascending] = ACTIONS(4308), - [anon_sym_descending] = ACTIONS(4308), - [anon_sym_group] = ACTIONS(4308), - [anon_sym_by] = ACTIONS(4308), - [anon_sym_select] = ACTIONS(4308), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427030,6 +437533,10 @@ 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), @@ -427039,69 +437546,66 @@ 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(3277), - [anon_sym_extern] = ACTIONS(3277), - [anon_sym_alias] = ACTIONS(3277), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3279), - [anon_sym_implicit] = ACTIONS(3277), - [anon_sym_explicit] = ACTIONS(3277), - [anon_sym_scoped] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [sym_predefined_type] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_when] = ACTIONS(3277), - [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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427123,69 +437627,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2605), [sym_preproc_define] = STATE(2605), [sym_preproc_undef] = STATE(2605), - [sym__identifier_token] = ACTIONS(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_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), + [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(4130), + [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_into] = ACTIONS(4128), + [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), @@ -427198,6 +437703,10 @@ 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), @@ -427207,69 +437716,66 @@ 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(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_static] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [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(4318), - [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(4318), - [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(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427282,6 +437788,10 @@ 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), @@ -427291,69 +437801,66 @@ 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(4320), - [anon_sym_extern] = ACTIONS(4320), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_using] = ACTIONS(4320), - [anon_sym_unsafe] = ACTIONS(4320), - [anon_sym_static] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_event] = ACTIONS(4320), - [anon_sym_namespace] = ACTIONS(4320), - [anon_sym_class] = ACTIONS(4320), - [anon_sym_ref] = ACTIONS(4320), - [anon_sym_struct] = ACTIONS(4320), - [anon_sym_enum] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_interface] = ACTIONS(4320), - [anon_sym_delegate] = ACTIONS(4320), - [anon_sym_record] = ACTIONS(4320), - [anon_sym_abstract] = ACTIONS(4320), - [anon_sym_async] = ACTIONS(4320), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_fixed] = ACTIONS(4320), - [anon_sym_internal] = ACTIONS(4320), - [anon_sym_new] = ACTIONS(4320), - [anon_sym_override] = ACTIONS(4320), - [anon_sym_partial] = ACTIONS(4320), - [anon_sym_private] = ACTIONS(4320), - [anon_sym_protected] = ACTIONS(4320), - [anon_sym_public] = ACTIONS(4320), - [anon_sym_readonly] = ACTIONS(4320), - [anon_sym_required] = ACTIONS(4320), - [anon_sym_sealed] = ACTIONS(4320), - [anon_sym_virtual] = ACTIONS(4320), - [anon_sym_volatile] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_TILDE] = ACTIONS(4322), - [anon_sym_implicit] = ACTIONS(4320), - [anon_sym_explicit] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_var] = ACTIONS(4320), - [sym_predefined_type] = ACTIONS(4320), - [anon_sym_yield] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [anon_sym_from] = ACTIONS(4320), - [anon_sym_into] = ACTIONS(4320), - [anon_sym_join] = ACTIONS(4320), - [anon_sym_on] = ACTIONS(4320), - [anon_sym_equals] = ACTIONS(4320), - [anon_sym_let] = ACTIONS(4320), - [anon_sym_orderby] = ACTIONS(4320), - [anon_sym_ascending] = ACTIONS(4320), - [anon_sym_descending] = ACTIONS(4320), - [anon_sym_group] = ACTIONS(4320), - [anon_sym_by] = ACTIONS(4320), - [anon_sym_select] = ACTIONS(4320), - [aux_sym_preproc_if_token1] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427366,6 +437873,10 @@ 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), @@ -427375,69 +437886,66 @@ 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(4324), - [anon_sym_extern] = ACTIONS(4324), - [anon_sym_alias] = ACTIONS(4324), - [anon_sym_global] = ACTIONS(4324), - [anon_sym_using] = ACTIONS(4324), - [anon_sym_unsafe] = ACTIONS(4324), - [anon_sym_static] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_event] = ACTIONS(4324), - [anon_sym_namespace] = ACTIONS(4324), - [anon_sym_class] = ACTIONS(4324), - [anon_sym_ref] = ACTIONS(4324), - [anon_sym_struct] = ACTIONS(4324), - [anon_sym_enum] = ACTIONS(4324), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_interface] = ACTIONS(4324), - [anon_sym_delegate] = ACTIONS(4324), - [anon_sym_record] = ACTIONS(4324), - [anon_sym_abstract] = ACTIONS(4324), - [anon_sym_async] = ACTIONS(4324), - [anon_sym_const] = ACTIONS(4324), - [anon_sym_file] = ACTIONS(4324), - [anon_sym_fixed] = ACTIONS(4324), - [anon_sym_internal] = ACTIONS(4324), - [anon_sym_new] = ACTIONS(4324), - [anon_sym_override] = ACTIONS(4324), - [anon_sym_partial] = ACTIONS(4324), - [anon_sym_private] = ACTIONS(4324), - [anon_sym_protected] = ACTIONS(4324), - [anon_sym_public] = ACTIONS(4324), - [anon_sym_readonly] = ACTIONS(4324), - [anon_sym_required] = ACTIONS(4324), - [anon_sym_sealed] = ACTIONS(4324), - [anon_sym_virtual] = ACTIONS(4324), - [anon_sym_volatile] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_notnull] = ACTIONS(4324), - [anon_sym_unmanaged] = ACTIONS(4324), - [anon_sym_TILDE] = ACTIONS(4326), - [anon_sym_implicit] = ACTIONS(4324), - [anon_sym_explicit] = ACTIONS(4324), - [anon_sym_scoped] = ACTIONS(4324), - [anon_sym_var] = ACTIONS(4324), - [sym_predefined_type] = ACTIONS(4324), - [anon_sym_yield] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [anon_sym_from] = ACTIONS(4324), - [anon_sym_into] = ACTIONS(4324), - [anon_sym_join] = ACTIONS(4324), - [anon_sym_on] = ACTIONS(4324), - [anon_sym_equals] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_orderby] = ACTIONS(4324), - [anon_sym_ascending] = ACTIONS(4324), - [anon_sym_descending] = ACTIONS(4324), - [anon_sym_group] = ACTIONS(4324), - [anon_sym_by] = ACTIONS(4324), - [anon_sym_select] = ACTIONS(4324), - [aux_sym_preproc_if_token1] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427459,69 +437967,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(3623), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3623), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_when] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3623), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427543,69 +438052,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), - [sym__identifier_token] = ACTIONS(4328), - [anon_sym_extern] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4328), - [anon_sym_global] = ACTIONS(4328), - [anon_sym_using] = ACTIONS(4328), - [anon_sym_unsafe] = ACTIONS(4328), - [anon_sym_static] = ACTIONS(4328), - [anon_sym_LBRACK] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(4330), - [anon_sym_event] = ACTIONS(4328), - [anon_sym_namespace] = ACTIONS(4328), - [anon_sym_class] = ACTIONS(4328), - [anon_sym_ref] = ACTIONS(4328), - [anon_sym_struct] = ACTIONS(4328), - [anon_sym_enum] = ACTIONS(4328), - [anon_sym_RBRACE] = ACTIONS(4330), - [anon_sym_interface] = ACTIONS(4328), - [anon_sym_delegate] = ACTIONS(4328), - [anon_sym_record] = ACTIONS(4328), - [anon_sym_abstract] = ACTIONS(4328), - [anon_sym_async] = ACTIONS(4328), - [anon_sym_const] = ACTIONS(4328), - [anon_sym_file] = ACTIONS(4328), - [anon_sym_fixed] = ACTIONS(4328), - [anon_sym_internal] = ACTIONS(4328), - [anon_sym_new] = ACTIONS(4328), - [anon_sym_override] = ACTIONS(4328), - [anon_sym_partial] = ACTIONS(4328), - [anon_sym_private] = ACTIONS(4328), - [anon_sym_protected] = ACTIONS(4328), - [anon_sym_public] = ACTIONS(4328), - [anon_sym_readonly] = ACTIONS(4328), - [anon_sym_required] = ACTIONS(4328), - [anon_sym_sealed] = ACTIONS(4328), - [anon_sym_virtual] = ACTIONS(4328), - [anon_sym_volatile] = ACTIONS(4328), - [anon_sym_where] = ACTIONS(4328), - [anon_sym_notnull] = ACTIONS(4328), - [anon_sym_unmanaged] = ACTIONS(4328), - [anon_sym_TILDE] = ACTIONS(4330), - [anon_sym_implicit] = ACTIONS(4328), - [anon_sym_explicit] = ACTIONS(4328), - [anon_sym_scoped] = ACTIONS(4328), - [anon_sym_var] = ACTIONS(4328), - [sym_predefined_type] = ACTIONS(4328), - [anon_sym_yield] = ACTIONS(4328), - [anon_sym_when] = ACTIONS(4328), - [anon_sym_from] = ACTIONS(4328), - [anon_sym_into] = ACTIONS(4328), - [anon_sym_join] = ACTIONS(4328), - [anon_sym_on] = ACTIONS(4328), - [anon_sym_equals] = ACTIONS(4328), - [anon_sym_let] = ACTIONS(4328), - [anon_sym_orderby] = ACTIONS(4328), - [anon_sym_ascending] = ACTIONS(4328), - [anon_sym_descending] = ACTIONS(4328), - [anon_sym_group] = ACTIONS(4328), - [anon_sym_by] = ACTIONS(4328), - [anon_sym_select] = ACTIONS(4328), - [aux_sym_preproc_if_token1] = ACTIONS(4330), - [aux_sym_preproc_if_token3] = ACTIONS(4330), - [aux_sym_preproc_else_token1] = ACTIONS(4330), - [aux_sym_preproc_elif_token1] = ACTIONS(4330), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427627,79 +438137,80 @@ 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(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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2612] = { [sym_preproc_region] = STATE(2612), @@ -427711,69 +438222,70 @@ 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), - [sym__identifier_token] = ACTIONS(4332), - [anon_sym_extern] = ACTIONS(4332), - [anon_sym_alias] = ACTIONS(4332), - [anon_sym_global] = ACTIONS(4332), - [anon_sym_using] = ACTIONS(4332), - [anon_sym_unsafe] = ACTIONS(4332), - [anon_sym_static] = ACTIONS(4332), - [anon_sym_LBRACK] = ACTIONS(4334), - [anon_sym_LPAREN] = ACTIONS(4334), - [anon_sym_event] = ACTIONS(4332), - [anon_sym_namespace] = ACTIONS(4332), - [anon_sym_class] = ACTIONS(4332), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_struct] = ACTIONS(4332), - [anon_sym_enum] = ACTIONS(4332), - [anon_sym_RBRACE] = ACTIONS(4334), - [anon_sym_interface] = ACTIONS(4332), - [anon_sym_delegate] = ACTIONS(4332), - [anon_sym_record] = ACTIONS(4332), - [anon_sym_abstract] = ACTIONS(4332), - [anon_sym_async] = ACTIONS(4332), - [anon_sym_const] = ACTIONS(4332), - [anon_sym_file] = ACTIONS(4332), - [anon_sym_fixed] = ACTIONS(4332), - [anon_sym_internal] = ACTIONS(4332), - [anon_sym_new] = ACTIONS(4332), - [anon_sym_override] = ACTIONS(4332), - [anon_sym_partial] = ACTIONS(4332), - [anon_sym_private] = ACTIONS(4332), - [anon_sym_protected] = ACTIONS(4332), - [anon_sym_public] = ACTIONS(4332), - [anon_sym_readonly] = ACTIONS(4332), - [anon_sym_required] = ACTIONS(4332), - [anon_sym_sealed] = ACTIONS(4332), - [anon_sym_virtual] = ACTIONS(4332), - [anon_sym_volatile] = ACTIONS(4332), - [anon_sym_where] = ACTIONS(4332), - [anon_sym_notnull] = ACTIONS(4332), - [anon_sym_unmanaged] = ACTIONS(4332), - [anon_sym_TILDE] = ACTIONS(4334), - [anon_sym_implicit] = ACTIONS(4332), - [anon_sym_explicit] = ACTIONS(4332), - [anon_sym_scoped] = ACTIONS(4332), - [anon_sym_var] = ACTIONS(4332), - [sym_predefined_type] = ACTIONS(4332), - [anon_sym_yield] = ACTIONS(4332), - [anon_sym_when] = ACTIONS(4332), - [anon_sym_from] = ACTIONS(4332), - [anon_sym_into] = ACTIONS(4332), - [anon_sym_join] = ACTIONS(4332), - [anon_sym_on] = ACTIONS(4332), - [anon_sym_equals] = ACTIONS(4332), - [anon_sym_let] = ACTIONS(4332), - [anon_sym_orderby] = ACTIONS(4332), - [anon_sym_ascending] = ACTIONS(4332), - [anon_sym_descending] = ACTIONS(4332), - [anon_sym_group] = ACTIONS(4332), - [anon_sym_by] = ACTIONS(4332), - [anon_sym_select] = ACTIONS(4332), - [aux_sym_preproc_if_token1] = ACTIONS(4334), - [aux_sym_preproc_if_token3] = ACTIONS(4334), - [aux_sym_preproc_else_token1] = ACTIONS(4334), - [aux_sym_preproc_elif_token1] = ACTIONS(4334), + [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), @@ -427795,69 +438307,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2613), [sym_preproc_define] = STATE(2613), [sym_preproc_undef] = STATE(2613), - [sym__identifier_token] = ACTIONS(4336), - [anon_sym_extern] = ACTIONS(4336), - [anon_sym_alias] = ACTIONS(4336), - [anon_sym_global] = ACTIONS(4336), - [anon_sym_using] = ACTIONS(4336), - [anon_sym_unsafe] = ACTIONS(4336), - [anon_sym_static] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_event] = ACTIONS(4336), - [anon_sym_namespace] = ACTIONS(4336), - [anon_sym_class] = ACTIONS(4336), - [anon_sym_ref] = ACTIONS(4336), - [anon_sym_struct] = ACTIONS(4336), - [anon_sym_enum] = ACTIONS(4336), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_interface] = ACTIONS(4336), - [anon_sym_delegate] = ACTIONS(4336), - [anon_sym_record] = ACTIONS(4336), - [anon_sym_abstract] = ACTIONS(4336), - [anon_sym_async] = ACTIONS(4336), - [anon_sym_const] = ACTIONS(4336), - [anon_sym_file] = ACTIONS(4336), - [anon_sym_fixed] = ACTIONS(4336), - [anon_sym_internal] = ACTIONS(4336), - [anon_sym_new] = ACTIONS(4336), - [anon_sym_override] = ACTIONS(4336), - [anon_sym_partial] = ACTIONS(4336), - [anon_sym_private] = ACTIONS(4336), - [anon_sym_protected] = ACTIONS(4336), - [anon_sym_public] = ACTIONS(4336), - [anon_sym_readonly] = ACTIONS(4336), - [anon_sym_required] = ACTIONS(4336), - [anon_sym_sealed] = ACTIONS(4336), - [anon_sym_virtual] = ACTIONS(4336), - [anon_sym_volatile] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4336), - [anon_sym_notnull] = ACTIONS(4336), - [anon_sym_unmanaged] = ACTIONS(4336), - [anon_sym_TILDE] = ACTIONS(4338), - [anon_sym_implicit] = ACTIONS(4336), - [anon_sym_explicit] = ACTIONS(4336), - [anon_sym_scoped] = ACTIONS(4336), - [anon_sym_var] = ACTIONS(4336), - [sym_predefined_type] = ACTIONS(4336), - [anon_sym_yield] = ACTIONS(4336), - [anon_sym_when] = ACTIONS(4336), - [anon_sym_from] = ACTIONS(4336), - [anon_sym_into] = ACTIONS(4336), - [anon_sym_join] = ACTIONS(4336), - [anon_sym_on] = ACTIONS(4336), - [anon_sym_equals] = ACTIONS(4336), - [anon_sym_let] = ACTIONS(4336), - [anon_sym_orderby] = ACTIONS(4336), - [anon_sym_ascending] = ACTIONS(4336), - [anon_sym_descending] = ACTIONS(4336), - [anon_sym_group] = ACTIONS(4336), - [anon_sym_by] = ACTIONS(4336), - [anon_sym_select] = ACTIONS(4336), - [aux_sym_preproc_if_token1] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), + [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), @@ -427879,69 +438392,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), - [sym__identifier_token] = ACTIONS(4340), - [anon_sym_extern] = ACTIONS(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_global] = ACTIONS(4340), - [anon_sym_using] = ACTIONS(4340), - [anon_sym_unsafe] = ACTIONS(4340), - [anon_sym_static] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_event] = ACTIONS(4340), - [anon_sym_namespace] = ACTIONS(4340), - [anon_sym_class] = ACTIONS(4340), - [anon_sym_ref] = ACTIONS(4340), - [anon_sym_struct] = ACTIONS(4340), - [anon_sym_enum] = ACTIONS(4340), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_interface] = ACTIONS(4340), - [anon_sym_delegate] = ACTIONS(4340), - [anon_sym_record] = ACTIONS(4340), - [anon_sym_abstract] = ACTIONS(4340), - [anon_sym_async] = ACTIONS(4340), - [anon_sym_const] = ACTIONS(4340), - [anon_sym_file] = ACTIONS(4340), - [anon_sym_fixed] = ACTIONS(4340), - [anon_sym_internal] = ACTIONS(4340), - [anon_sym_new] = ACTIONS(4340), - [anon_sym_override] = ACTIONS(4340), - [anon_sym_partial] = ACTIONS(4340), - [anon_sym_private] = ACTIONS(4340), - [anon_sym_protected] = ACTIONS(4340), - [anon_sym_public] = ACTIONS(4340), - [anon_sym_readonly] = ACTIONS(4340), - [anon_sym_required] = ACTIONS(4340), - [anon_sym_sealed] = ACTIONS(4340), - [anon_sym_virtual] = ACTIONS(4340), - [anon_sym_volatile] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_notnull] = ACTIONS(4340), - [anon_sym_unmanaged] = ACTIONS(4340), - [anon_sym_TILDE] = ACTIONS(4342), - [anon_sym_implicit] = ACTIONS(4340), - [anon_sym_explicit] = ACTIONS(4340), - [anon_sym_scoped] = ACTIONS(4340), - [anon_sym_var] = ACTIONS(4340), - [sym_predefined_type] = ACTIONS(4340), - [anon_sym_yield] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [anon_sym_from] = ACTIONS(4340), - [anon_sym_into] = ACTIONS(4340), - [anon_sym_join] = ACTIONS(4340), - [anon_sym_on] = ACTIONS(4340), - [anon_sym_equals] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_orderby] = ACTIONS(4340), - [anon_sym_ascending] = ACTIONS(4340), - [anon_sym_descending] = ACTIONS(4340), - [anon_sym_group] = ACTIONS(4340), - [anon_sym_by] = ACTIONS(4340), - [anon_sym_select] = ACTIONS(4340), - [aux_sym_preproc_if_token1] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -427963,69 +438477,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), - [sym__identifier_token] = ACTIONS(4344), - [anon_sym_extern] = ACTIONS(4344), - [anon_sym_alias] = ACTIONS(4344), - [anon_sym_global] = ACTIONS(4344), - [anon_sym_using] = ACTIONS(4344), - [anon_sym_unsafe] = ACTIONS(4344), - [anon_sym_static] = ACTIONS(4344), - [anon_sym_LBRACK] = ACTIONS(4346), - [anon_sym_LPAREN] = ACTIONS(4346), - [anon_sym_event] = ACTIONS(4344), - [anon_sym_namespace] = ACTIONS(4344), - [anon_sym_class] = ACTIONS(4344), - [anon_sym_ref] = ACTIONS(4344), - [anon_sym_struct] = ACTIONS(4344), - [anon_sym_enum] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4346), - [anon_sym_interface] = ACTIONS(4344), - [anon_sym_delegate] = ACTIONS(4344), - [anon_sym_record] = ACTIONS(4344), - [anon_sym_abstract] = ACTIONS(4344), - [anon_sym_async] = ACTIONS(4344), - [anon_sym_const] = ACTIONS(4344), - [anon_sym_file] = ACTIONS(4344), - [anon_sym_fixed] = ACTIONS(4344), - [anon_sym_internal] = ACTIONS(4344), - [anon_sym_new] = ACTIONS(4344), - [anon_sym_override] = ACTIONS(4344), - [anon_sym_partial] = ACTIONS(4344), - [anon_sym_private] = ACTIONS(4344), - [anon_sym_protected] = ACTIONS(4344), - [anon_sym_public] = ACTIONS(4344), - [anon_sym_readonly] = ACTIONS(4344), - [anon_sym_required] = ACTIONS(4344), - [anon_sym_sealed] = ACTIONS(4344), - [anon_sym_virtual] = ACTIONS(4344), - [anon_sym_volatile] = ACTIONS(4344), - [anon_sym_where] = ACTIONS(4344), - [anon_sym_notnull] = ACTIONS(4344), - [anon_sym_unmanaged] = ACTIONS(4344), - [anon_sym_TILDE] = ACTIONS(4346), - [anon_sym_implicit] = ACTIONS(4344), - [anon_sym_explicit] = ACTIONS(4344), - [anon_sym_scoped] = ACTIONS(4344), - [anon_sym_var] = ACTIONS(4344), - [sym_predefined_type] = ACTIONS(4344), - [anon_sym_yield] = ACTIONS(4344), - [anon_sym_when] = ACTIONS(4344), - [anon_sym_from] = ACTIONS(4344), - [anon_sym_into] = ACTIONS(4344), - [anon_sym_join] = ACTIONS(4344), - [anon_sym_on] = ACTIONS(4344), - [anon_sym_equals] = ACTIONS(4344), - [anon_sym_let] = ACTIONS(4344), - [anon_sym_orderby] = ACTIONS(4344), - [anon_sym_ascending] = ACTIONS(4344), - [anon_sym_descending] = ACTIONS(4344), - [anon_sym_group] = ACTIONS(4344), - [anon_sym_by] = ACTIONS(4344), - [anon_sym_select] = ACTIONS(4344), - [aux_sym_preproc_if_token1] = ACTIONS(4346), - [aux_sym_preproc_if_token3] = ACTIONS(4346), - [aux_sym_preproc_else_token1] = ACTIONS(4346), - [aux_sym_preproc_elif_token1] = ACTIONS(4346), + [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), @@ -428047,69 +438562,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(4348), - [anon_sym_extern] = ACTIONS(4348), - [anon_sym_alias] = ACTIONS(4348), - [anon_sym_global] = ACTIONS(4348), - [anon_sym_using] = ACTIONS(4348), - [anon_sym_unsafe] = ACTIONS(4348), - [anon_sym_static] = ACTIONS(4348), - [anon_sym_LBRACK] = ACTIONS(4350), - [anon_sym_LPAREN] = ACTIONS(4350), - [anon_sym_event] = ACTIONS(4348), - [anon_sym_namespace] = ACTIONS(4348), - [anon_sym_class] = ACTIONS(4348), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_struct] = ACTIONS(4348), - [anon_sym_enum] = ACTIONS(4348), - [anon_sym_RBRACE] = ACTIONS(4350), - [anon_sym_interface] = ACTIONS(4348), - [anon_sym_delegate] = ACTIONS(4348), - [anon_sym_record] = ACTIONS(4348), - [anon_sym_abstract] = ACTIONS(4348), - [anon_sym_async] = ACTIONS(4348), - [anon_sym_const] = ACTIONS(4348), - [anon_sym_file] = ACTIONS(4348), - [anon_sym_fixed] = ACTIONS(4348), - [anon_sym_internal] = ACTIONS(4348), - [anon_sym_new] = ACTIONS(4348), - [anon_sym_override] = ACTIONS(4348), - [anon_sym_partial] = ACTIONS(4348), - [anon_sym_private] = ACTIONS(4348), - [anon_sym_protected] = ACTIONS(4348), - [anon_sym_public] = ACTIONS(4348), - [anon_sym_readonly] = ACTIONS(4348), - [anon_sym_required] = ACTIONS(4348), - [anon_sym_sealed] = ACTIONS(4348), - [anon_sym_virtual] = ACTIONS(4348), - [anon_sym_volatile] = ACTIONS(4348), - [anon_sym_where] = ACTIONS(4348), - [anon_sym_notnull] = ACTIONS(4348), - [anon_sym_unmanaged] = ACTIONS(4348), - [anon_sym_TILDE] = ACTIONS(4350), - [anon_sym_implicit] = ACTIONS(4348), - [anon_sym_explicit] = ACTIONS(4348), - [anon_sym_scoped] = ACTIONS(4348), - [anon_sym_var] = ACTIONS(4348), - [sym_predefined_type] = ACTIONS(4348), - [anon_sym_yield] = ACTIONS(4348), - [anon_sym_when] = ACTIONS(4348), - [anon_sym_from] = ACTIONS(4348), - [anon_sym_into] = ACTIONS(4348), - [anon_sym_join] = ACTIONS(4348), - [anon_sym_on] = ACTIONS(4348), - [anon_sym_equals] = ACTIONS(4348), - [anon_sym_let] = ACTIONS(4348), - [anon_sym_orderby] = ACTIONS(4348), - [anon_sym_ascending] = ACTIONS(4348), - [anon_sym_descending] = ACTIONS(4348), - [anon_sym_group] = ACTIONS(4348), - [anon_sym_by] = ACTIONS(4348), - [anon_sym_select] = ACTIONS(4348), - [aux_sym_preproc_if_token1] = ACTIONS(4350), - [aux_sym_preproc_if_token3] = ACTIONS(4350), - [aux_sym_preproc_else_token1] = ACTIONS(4350), - [aux_sym_preproc_elif_token1] = ACTIONS(4350), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428131,69 +438647,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2617), [sym_preproc_define] = STATE(2617), [sym_preproc_undef] = STATE(2617), - [sym__identifier_token] = ACTIONS(4352), - [anon_sym_extern] = ACTIONS(4352), - [anon_sym_alias] = ACTIONS(4352), - [anon_sym_global] = ACTIONS(4352), - [anon_sym_using] = ACTIONS(4352), - [anon_sym_unsafe] = ACTIONS(4352), - [anon_sym_static] = ACTIONS(4352), - [anon_sym_LBRACK] = ACTIONS(4354), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_event] = ACTIONS(4352), - [anon_sym_namespace] = ACTIONS(4352), - [anon_sym_class] = ACTIONS(4352), - [anon_sym_ref] = ACTIONS(4352), - [anon_sym_struct] = ACTIONS(4352), - [anon_sym_enum] = ACTIONS(4352), - [anon_sym_RBRACE] = ACTIONS(4354), - [anon_sym_interface] = ACTIONS(4352), - [anon_sym_delegate] = ACTIONS(4352), - [anon_sym_record] = ACTIONS(4352), - [anon_sym_abstract] = ACTIONS(4352), - [anon_sym_async] = ACTIONS(4352), - [anon_sym_const] = ACTIONS(4352), - [anon_sym_file] = ACTIONS(4352), - [anon_sym_fixed] = ACTIONS(4352), - [anon_sym_internal] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4352), - [anon_sym_override] = ACTIONS(4352), - [anon_sym_partial] = ACTIONS(4352), - [anon_sym_private] = ACTIONS(4352), - [anon_sym_protected] = ACTIONS(4352), - [anon_sym_public] = ACTIONS(4352), - [anon_sym_readonly] = ACTIONS(4352), - [anon_sym_required] = ACTIONS(4352), - [anon_sym_sealed] = ACTIONS(4352), - [anon_sym_virtual] = ACTIONS(4352), - [anon_sym_volatile] = ACTIONS(4352), - [anon_sym_where] = ACTIONS(4352), - [anon_sym_notnull] = ACTIONS(4352), - [anon_sym_unmanaged] = ACTIONS(4352), - [anon_sym_TILDE] = ACTIONS(4354), - [anon_sym_implicit] = ACTIONS(4352), - [anon_sym_explicit] = ACTIONS(4352), - [anon_sym_scoped] = ACTIONS(4352), - [anon_sym_var] = ACTIONS(4352), - [sym_predefined_type] = ACTIONS(4352), - [anon_sym_yield] = ACTIONS(4352), - [anon_sym_when] = ACTIONS(4352), - [anon_sym_from] = ACTIONS(4352), - [anon_sym_into] = ACTIONS(4352), - [anon_sym_join] = ACTIONS(4352), - [anon_sym_on] = ACTIONS(4352), - [anon_sym_equals] = ACTIONS(4352), - [anon_sym_let] = ACTIONS(4352), - [anon_sym_orderby] = ACTIONS(4352), - [anon_sym_ascending] = ACTIONS(4352), - [anon_sym_descending] = ACTIONS(4352), - [anon_sym_group] = ACTIONS(4352), - [anon_sym_by] = ACTIONS(4352), - [anon_sym_select] = ACTIONS(4352), - [aux_sym_preproc_if_token1] = ACTIONS(4354), - [aux_sym_preproc_if_token3] = ACTIONS(4354), - [aux_sym_preproc_else_token1] = ACTIONS(4354), - [aux_sym_preproc_elif_token1] = ACTIONS(4354), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428215,69 +438732,70 @@ 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), - [sym__identifier_token] = ACTIONS(4356), - [anon_sym_extern] = ACTIONS(4356), - [anon_sym_alias] = ACTIONS(4356), - [anon_sym_global] = ACTIONS(4356), - [anon_sym_using] = ACTIONS(4356), - [anon_sym_unsafe] = ACTIONS(4356), - [anon_sym_static] = ACTIONS(4356), - [anon_sym_LBRACK] = ACTIONS(4358), - [anon_sym_LPAREN] = ACTIONS(4358), - [anon_sym_event] = ACTIONS(4356), - [anon_sym_namespace] = ACTIONS(4356), - [anon_sym_class] = ACTIONS(4356), - [anon_sym_ref] = ACTIONS(4356), - [anon_sym_struct] = ACTIONS(4356), - [anon_sym_enum] = ACTIONS(4356), - [anon_sym_RBRACE] = ACTIONS(4358), - [anon_sym_interface] = ACTIONS(4356), - [anon_sym_delegate] = ACTIONS(4356), - [anon_sym_record] = ACTIONS(4356), - [anon_sym_abstract] = ACTIONS(4356), - [anon_sym_async] = ACTIONS(4356), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_file] = ACTIONS(4356), - [anon_sym_fixed] = ACTIONS(4356), - [anon_sym_internal] = ACTIONS(4356), - [anon_sym_new] = ACTIONS(4356), - [anon_sym_override] = ACTIONS(4356), - [anon_sym_partial] = ACTIONS(4356), - [anon_sym_private] = ACTIONS(4356), - [anon_sym_protected] = ACTIONS(4356), - [anon_sym_public] = ACTIONS(4356), - [anon_sym_readonly] = ACTIONS(4356), - [anon_sym_required] = ACTIONS(4356), - [anon_sym_sealed] = ACTIONS(4356), - [anon_sym_virtual] = ACTIONS(4356), - [anon_sym_volatile] = ACTIONS(4356), - [anon_sym_where] = ACTIONS(4356), - [anon_sym_notnull] = ACTIONS(4356), - [anon_sym_unmanaged] = ACTIONS(4356), - [anon_sym_TILDE] = ACTIONS(4358), - [anon_sym_implicit] = ACTIONS(4356), - [anon_sym_explicit] = ACTIONS(4356), - [anon_sym_scoped] = ACTIONS(4356), - [anon_sym_var] = ACTIONS(4356), - [sym_predefined_type] = ACTIONS(4356), - [anon_sym_yield] = ACTIONS(4356), - [anon_sym_when] = ACTIONS(4356), - [anon_sym_from] = ACTIONS(4356), - [anon_sym_into] = ACTIONS(4356), - [anon_sym_join] = ACTIONS(4356), - [anon_sym_on] = ACTIONS(4356), - [anon_sym_equals] = ACTIONS(4356), - [anon_sym_let] = ACTIONS(4356), - [anon_sym_orderby] = ACTIONS(4356), - [anon_sym_ascending] = ACTIONS(4356), - [anon_sym_descending] = ACTIONS(4356), - [anon_sym_group] = ACTIONS(4356), - [anon_sym_by] = ACTIONS(4356), - [anon_sym_select] = ACTIONS(4356), - [aux_sym_preproc_if_token1] = ACTIONS(4358), - [aux_sym_preproc_if_token3] = ACTIONS(4358), - [aux_sym_preproc_else_token1] = ACTIONS(4358), - [aux_sym_preproc_elif_token1] = ACTIONS(4358), + [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), @@ -428299,69 +438817,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2619), [sym_preproc_define] = STATE(2619), [sym_preproc_undef] = STATE(2619), - [sym__identifier_token] = ACTIONS(4360), - [anon_sym_extern] = ACTIONS(4360), - [anon_sym_alias] = ACTIONS(4360), - [anon_sym_global] = ACTIONS(4360), - [anon_sym_using] = ACTIONS(4360), - [anon_sym_unsafe] = ACTIONS(4360), - [anon_sym_static] = ACTIONS(4360), - [anon_sym_LBRACK] = ACTIONS(4362), - [anon_sym_LPAREN] = ACTIONS(4362), - [anon_sym_event] = ACTIONS(4360), - [anon_sym_namespace] = ACTIONS(4360), - [anon_sym_class] = ACTIONS(4360), - [anon_sym_ref] = ACTIONS(4360), - [anon_sym_struct] = ACTIONS(4360), - [anon_sym_enum] = ACTIONS(4360), - [anon_sym_RBRACE] = ACTIONS(4362), - [anon_sym_interface] = ACTIONS(4360), - [anon_sym_delegate] = ACTIONS(4360), - [anon_sym_record] = ACTIONS(4360), - [anon_sym_abstract] = ACTIONS(4360), - [anon_sym_async] = ACTIONS(4360), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_file] = ACTIONS(4360), - [anon_sym_fixed] = ACTIONS(4360), - [anon_sym_internal] = ACTIONS(4360), - [anon_sym_new] = ACTIONS(4360), - [anon_sym_override] = ACTIONS(4360), - [anon_sym_partial] = ACTIONS(4360), - [anon_sym_private] = ACTIONS(4360), - [anon_sym_protected] = ACTIONS(4360), - [anon_sym_public] = ACTIONS(4360), - [anon_sym_readonly] = ACTIONS(4360), - [anon_sym_required] = ACTIONS(4360), - [anon_sym_sealed] = ACTIONS(4360), - [anon_sym_virtual] = ACTIONS(4360), - [anon_sym_volatile] = ACTIONS(4360), - [anon_sym_where] = ACTIONS(4360), - [anon_sym_notnull] = ACTIONS(4360), - [anon_sym_unmanaged] = ACTIONS(4360), - [anon_sym_TILDE] = ACTIONS(4362), - [anon_sym_implicit] = ACTIONS(4360), - [anon_sym_explicit] = ACTIONS(4360), - [anon_sym_scoped] = ACTIONS(4360), - [anon_sym_var] = ACTIONS(4360), - [sym_predefined_type] = ACTIONS(4360), - [anon_sym_yield] = ACTIONS(4360), - [anon_sym_when] = ACTIONS(4360), - [anon_sym_from] = ACTIONS(4360), - [anon_sym_into] = ACTIONS(4360), - [anon_sym_join] = ACTIONS(4360), - [anon_sym_on] = ACTIONS(4360), - [anon_sym_equals] = ACTIONS(4360), - [anon_sym_let] = ACTIONS(4360), - [anon_sym_orderby] = ACTIONS(4360), - [anon_sym_ascending] = ACTIONS(4360), - [anon_sym_descending] = ACTIONS(4360), - [anon_sym_group] = ACTIONS(4360), - [anon_sym_by] = ACTIONS(4360), - [anon_sym_select] = ACTIONS(4360), - [aux_sym_preproc_if_token1] = ACTIONS(4362), - [aux_sym_preproc_if_token3] = ACTIONS(4362), - [aux_sym_preproc_else_token1] = ACTIONS(4362), - [aux_sym_preproc_elif_token1] = ACTIONS(4362), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428383,69 +438902,70 @@ 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), - [sym__identifier_token] = ACTIONS(4364), - [anon_sym_extern] = ACTIONS(4364), - [anon_sym_alias] = ACTIONS(4364), - [anon_sym_global] = ACTIONS(4364), - [anon_sym_using] = ACTIONS(4364), - [anon_sym_unsafe] = ACTIONS(4364), - [anon_sym_static] = ACTIONS(4364), - [anon_sym_LBRACK] = ACTIONS(4366), - [anon_sym_LPAREN] = ACTIONS(4366), - [anon_sym_event] = ACTIONS(4364), - [anon_sym_namespace] = ACTIONS(4364), - [anon_sym_class] = ACTIONS(4364), - [anon_sym_ref] = ACTIONS(4364), - [anon_sym_struct] = ACTIONS(4364), - [anon_sym_enum] = ACTIONS(4364), - [anon_sym_RBRACE] = ACTIONS(4366), - [anon_sym_interface] = ACTIONS(4364), - [anon_sym_delegate] = ACTIONS(4364), - [anon_sym_record] = ACTIONS(4364), - [anon_sym_abstract] = ACTIONS(4364), - [anon_sym_async] = ACTIONS(4364), - [anon_sym_const] = ACTIONS(4364), - [anon_sym_file] = ACTIONS(4364), - [anon_sym_fixed] = ACTIONS(4364), - [anon_sym_internal] = ACTIONS(4364), - [anon_sym_new] = ACTIONS(4364), - [anon_sym_override] = ACTIONS(4364), - [anon_sym_partial] = ACTIONS(4364), - [anon_sym_private] = ACTIONS(4364), - [anon_sym_protected] = ACTIONS(4364), - [anon_sym_public] = ACTIONS(4364), - [anon_sym_readonly] = ACTIONS(4364), - [anon_sym_required] = ACTIONS(4364), - [anon_sym_sealed] = ACTIONS(4364), - [anon_sym_virtual] = ACTIONS(4364), - [anon_sym_volatile] = ACTIONS(4364), - [anon_sym_where] = ACTIONS(4364), - [anon_sym_notnull] = ACTIONS(4364), - [anon_sym_unmanaged] = ACTIONS(4364), - [anon_sym_TILDE] = ACTIONS(4366), - [anon_sym_implicit] = ACTIONS(4364), - [anon_sym_explicit] = ACTIONS(4364), - [anon_sym_scoped] = ACTIONS(4364), - [anon_sym_var] = ACTIONS(4364), - [sym_predefined_type] = ACTIONS(4364), - [anon_sym_yield] = ACTIONS(4364), - [anon_sym_when] = ACTIONS(4364), - [anon_sym_from] = ACTIONS(4364), - [anon_sym_into] = ACTIONS(4364), - [anon_sym_join] = ACTIONS(4364), - [anon_sym_on] = ACTIONS(4364), - [anon_sym_equals] = ACTIONS(4364), - [anon_sym_let] = ACTIONS(4364), - [anon_sym_orderby] = ACTIONS(4364), - [anon_sym_ascending] = ACTIONS(4364), - [anon_sym_descending] = ACTIONS(4364), - [anon_sym_group] = ACTIONS(4364), - [anon_sym_by] = ACTIONS(4364), - [anon_sym_select] = ACTIONS(4364), - [aux_sym_preproc_if_token1] = ACTIONS(4366), - [aux_sym_preproc_if_token3] = ACTIONS(4366), - [aux_sym_preproc_else_token1] = ACTIONS(4366), - [aux_sym_preproc_elif_token1] = ACTIONS(4366), + [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), @@ -428467,69 +438987,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(4368), - [anon_sym_extern] = ACTIONS(4368), - [anon_sym_alias] = ACTIONS(4368), - [anon_sym_global] = ACTIONS(4368), - [anon_sym_using] = ACTIONS(4368), - [anon_sym_unsafe] = ACTIONS(4368), - [anon_sym_static] = ACTIONS(4368), - [anon_sym_LBRACK] = ACTIONS(4370), - [anon_sym_LPAREN] = ACTIONS(4370), - [anon_sym_event] = ACTIONS(4368), - [anon_sym_namespace] = ACTIONS(4368), - [anon_sym_class] = ACTIONS(4368), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_struct] = ACTIONS(4368), - [anon_sym_enum] = ACTIONS(4368), - [anon_sym_RBRACE] = ACTIONS(4370), - [anon_sym_interface] = ACTIONS(4368), - [anon_sym_delegate] = ACTIONS(4368), - [anon_sym_record] = ACTIONS(4368), - [anon_sym_abstract] = ACTIONS(4368), - [anon_sym_async] = ACTIONS(4368), - [anon_sym_const] = ACTIONS(4368), - [anon_sym_file] = ACTIONS(4368), - [anon_sym_fixed] = ACTIONS(4368), - [anon_sym_internal] = ACTIONS(4368), - [anon_sym_new] = ACTIONS(4368), - [anon_sym_override] = ACTIONS(4368), - [anon_sym_partial] = ACTIONS(4368), - [anon_sym_private] = ACTIONS(4368), - [anon_sym_protected] = ACTIONS(4368), - [anon_sym_public] = ACTIONS(4368), - [anon_sym_readonly] = ACTIONS(4368), - [anon_sym_required] = ACTIONS(4368), - [anon_sym_sealed] = ACTIONS(4368), - [anon_sym_virtual] = ACTIONS(4368), - [anon_sym_volatile] = ACTIONS(4368), - [anon_sym_where] = ACTIONS(4368), - [anon_sym_notnull] = ACTIONS(4368), - [anon_sym_unmanaged] = ACTIONS(4368), - [anon_sym_TILDE] = ACTIONS(4370), - [anon_sym_implicit] = ACTIONS(4368), - [anon_sym_explicit] = ACTIONS(4368), - [anon_sym_scoped] = ACTIONS(4368), - [anon_sym_var] = ACTIONS(4368), - [sym_predefined_type] = ACTIONS(4368), - [anon_sym_yield] = ACTIONS(4368), - [anon_sym_when] = ACTIONS(4368), - [anon_sym_from] = ACTIONS(4368), - [anon_sym_into] = ACTIONS(4368), - [anon_sym_join] = ACTIONS(4368), - [anon_sym_on] = ACTIONS(4368), - [anon_sym_equals] = ACTIONS(4368), - [anon_sym_let] = ACTIONS(4368), - [anon_sym_orderby] = ACTIONS(4368), - [anon_sym_ascending] = ACTIONS(4368), - [anon_sym_descending] = ACTIONS(4368), - [anon_sym_group] = ACTIONS(4368), - [anon_sym_by] = ACTIONS(4368), - [anon_sym_select] = ACTIONS(4368), - [aux_sym_preproc_if_token1] = ACTIONS(4370), - [aux_sym_preproc_if_token3] = ACTIONS(4370), - [aux_sym_preproc_else_token1] = ACTIONS(4370), - [aux_sym_preproc_elif_token1] = ACTIONS(4370), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428551,69 +439072,70 @@ 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(4372), - [anon_sym_extern] = ACTIONS(4372), - [anon_sym_alias] = ACTIONS(4372), - [anon_sym_global] = ACTIONS(4372), - [anon_sym_using] = ACTIONS(4372), - [anon_sym_unsafe] = ACTIONS(4372), - [anon_sym_static] = ACTIONS(4372), - [anon_sym_LBRACK] = ACTIONS(4374), - [anon_sym_LPAREN] = ACTIONS(4374), - [anon_sym_event] = ACTIONS(4372), - [anon_sym_namespace] = ACTIONS(4372), - [anon_sym_class] = ACTIONS(4372), - [anon_sym_ref] = ACTIONS(4372), - [anon_sym_struct] = ACTIONS(4372), - [anon_sym_enum] = ACTIONS(4372), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_interface] = ACTIONS(4372), - [anon_sym_delegate] = ACTIONS(4372), - [anon_sym_record] = ACTIONS(4372), - [anon_sym_abstract] = ACTIONS(4372), - [anon_sym_async] = ACTIONS(4372), - [anon_sym_const] = ACTIONS(4372), - [anon_sym_file] = ACTIONS(4372), - [anon_sym_fixed] = ACTIONS(4372), - [anon_sym_internal] = ACTIONS(4372), - [anon_sym_new] = ACTIONS(4372), - [anon_sym_override] = ACTIONS(4372), - [anon_sym_partial] = ACTIONS(4372), - [anon_sym_private] = ACTIONS(4372), - [anon_sym_protected] = ACTIONS(4372), - [anon_sym_public] = ACTIONS(4372), - [anon_sym_readonly] = ACTIONS(4372), - [anon_sym_required] = ACTIONS(4372), - [anon_sym_sealed] = ACTIONS(4372), - [anon_sym_virtual] = ACTIONS(4372), - [anon_sym_volatile] = ACTIONS(4372), - [anon_sym_where] = ACTIONS(4372), - [anon_sym_notnull] = ACTIONS(4372), - [anon_sym_unmanaged] = ACTIONS(4372), - [anon_sym_TILDE] = ACTIONS(4374), - [anon_sym_implicit] = ACTIONS(4372), - [anon_sym_explicit] = ACTIONS(4372), - [anon_sym_scoped] = ACTIONS(4372), - [anon_sym_var] = ACTIONS(4372), - [sym_predefined_type] = ACTIONS(4372), - [anon_sym_yield] = ACTIONS(4372), - [anon_sym_when] = ACTIONS(4372), - [anon_sym_from] = ACTIONS(4372), - [anon_sym_into] = ACTIONS(4372), - [anon_sym_join] = ACTIONS(4372), - [anon_sym_on] = ACTIONS(4372), - [anon_sym_equals] = ACTIONS(4372), - [anon_sym_let] = ACTIONS(4372), - [anon_sym_orderby] = ACTIONS(4372), - [anon_sym_ascending] = ACTIONS(4372), - [anon_sym_descending] = ACTIONS(4372), - [anon_sym_group] = ACTIONS(4372), - [anon_sym_by] = ACTIONS(4372), - [anon_sym_select] = ACTIONS(4372), - [aux_sym_preproc_if_token1] = ACTIONS(4374), - [aux_sym_preproc_if_token3] = ACTIONS(4374), - [aux_sym_preproc_else_token1] = ACTIONS(4374), - [aux_sym_preproc_elif_token1] = ACTIONS(4374), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428635,69 +439157,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2623), [sym_preproc_define] = STATE(2623), [sym_preproc_undef] = STATE(2623), - [sym__identifier_token] = ACTIONS(4376), - [anon_sym_extern] = ACTIONS(4376), - [anon_sym_alias] = ACTIONS(4376), - [anon_sym_global] = ACTIONS(4376), - [anon_sym_using] = ACTIONS(4376), - [anon_sym_unsafe] = ACTIONS(4376), - [anon_sym_static] = ACTIONS(4376), - [anon_sym_LBRACK] = ACTIONS(4378), - [anon_sym_LPAREN] = ACTIONS(4378), - [anon_sym_event] = ACTIONS(4376), - [anon_sym_namespace] = ACTIONS(4376), - [anon_sym_class] = ACTIONS(4376), - [anon_sym_ref] = ACTIONS(4376), - [anon_sym_struct] = ACTIONS(4376), - [anon_sym_enum] = ACTIONS(4376), - [anon_sym_RBRACE] = ACTIONS(4378), - [anon_sym_interface] = ACTIONS(4376), - [anon_sym_delegate] = ACTIONS(4376), - [anon_sym_record] = ACTIONS(4376), - [anon_sym_abstract] = ACTIONS(4376), - [anon_sym_async] = ACTIONS(4376), - [anon_sym_const] = ACTIONS(4376), - [anon_sym_file] = ACTIONS(4376), - [anon_sym_fixed] = ACTIONS(4376), - [anon_sym_internal] = ACTIONS(4376), - [anon_sym_new] = ACTIONS(4376), - [anon_sym_override] = ACTIONS(4376), - [anon_sym_partial] = ACTIONS(4376), - [anon_sym_private] = ACTIONS(4376), - [anon_sym_protected] = ACTIONS(4376), - [anon_sym_public] = ACTIONS(4376), - [anon_sym_readonly] = ACTIONS(4376), - [anon_sym_required] = ACTIONS(4376), - [anon_sym_sealed] = ACTIONS(4376), - [anon_sym_virtual] = ACTIONS(4376), - [anon_sym_volatile] = ACTIONS(4376), - [anon_sym_where] = ACTIONS(4376), - [anon_sym_notnull] = ACTIONS(4376), - [anon_sym_unmanaged] = ACTIONS(4376), - [anon_sym_TILDE] = ACTIONS(4378), - [anon_sym_implicit] = ACTIONS(4376), - [anon_sym_explicit] = ACTIONS(4376), - [anon_sym_scoped] = ACTIONS(4376), - [anon_sym_var] = ACTIONS(4376), - [sym_predefined_type] = ACTIONS(4376), - [anon_sym_yield] = ACTIONS(4376), - [anon_sym_when] = ACTIONS(4376), - [anon_sym_from] = ACTIONS(4376), - [anon_sym_into] = ACTIONS(4376), - [anon_sym_join] = ACTIONS(4376), - [anon_sym_on] = ACTIONS(4376), - [anon_sym_equals] = ACTIONS(4376), - [anon_sym_let] = ACTIONS(4376), - [anon_sym_orderby] = ACTIONS(4376), - [anon_sym_ascending] = ACTIONS(4376), - [anon_sym_descending] = ACTIONS(4376), - [anon_sym_group] = ACTIONS(4376), - [anon_sym_by] = ACTIONS(4376), - [anon_sym_select] = ACTIONS(4376), - [aux_sym_preproc_if_token1] = ACTIONS(4378), - [aux_sym_preproc_if_token3] = ACTIONS(4378), - [aux_sym_preproc_else_token1] = ACTIONS(4378), - [aux_sym_preproc_elif_token1] = ACTIONS(4378), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428710,6 +439233,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2624] = { + [sym_type_argument_list] = STATE(2723), [sym_preproc_region] = STATE(2624), [sym_preproc_endregion] = STATE(2624), [sym_preproc_line] = STATE(2624), @@ -428719,68 +439243,68 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [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_as] = ACTIONS(3395), - [anon_sym_is] = ACTIONS(3395), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3395), + [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), @@ -428791,9 +439315,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(3393), + [sym_interpolation_close_brace] = ACTIONS(3662), }, [2625] = { + [sym__variable_designation] = STATE(3481), + [sym_parenthesized_variable_designation] = STATE(3463), + [sym_identifier] = STATE(3479), + [sym__reserved_identifier] = STATE(3225), [sym_preproc_region] = STATE(2625), [sym_preproc_endregion] = STATE(2625), [sym_preproc_line] = STATE(2625), @@ -428803,69 +439331,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(4380), - [anon_sym_extern] = ACTIONS(4380), - [anon_sym_alias] = ACTIONS(4380), - [anon_sym_global] = ACTIONS(4380), - [anon_sym_using] = ACTIONS(4380), - [anon_sym_unsafe] = ACTIONS(4380), - [anon_sym_static] = ACTIONS(4380), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_LPAREN] = ACTIONS(4382), - [anon_sym_event] = ACTIONS(4380), - [anon_sym_namespace] = ACTIONS(4380), - [anon_sym_class] = ACTIONS(4380), - [anon_sym_ref] = ACTIONS(4380), - [anon_sym_struct] = ACTIONS(4380), - [anon_sym_enum] = ACTIONS(4380), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_interface] = ACTIONS(4380), - [anon_sym_delegate] = ACTIONS(4380), - [anon_sym_record] = ACTIONS(4380), - [anon_sym_abstract] = ACTIONS(4380), - [anon_sym_async] = ACTIONS(4380), - [anon_sym_const] = ACTIONS(4380), - [anon_sym_file] = ACTIONS(4380), - [anon_sym_fixed] = ACTIONS(4380), - [anon_sym_internal] = ACTIONS(4380), - [anon_sym_new] = ACTIONS(4380), - [anon_sym_override] = ACTIONS(4380), - [anon_sym_partial] = ACTIONS(4380), - [anon_sym_private] = ACTIONS(4380), - [anon_sym_protected] = ACTIONS(4380), - [anon_sym_public] = ACTIONS(4380), - [anon_sym_readonly] = ACTIONS(4380), - [anon_sym_required] = ACTIONS(4380), - [anon_sym_sealed] = ACTIONS(4380), - [anon_sym_virtual] = ACTIONS(4380), - [anon_sym_volatile] = ACTIONS(4380), - [anon_sym_where] = ACTIONS(4380), - [anon_sym_notnull] = ACTIONS(4380), - [anon_sym_unmanaged] = ACTIONS(4380), - [anon_sym_TILDE] = ACTIONS(4382), - [anon_sym_implicit] = ACTIONS(4380), - [anon_sym_explicit] = ACTIONS(4380), - [anon_sym_scoped] = ACTIONS(4380), - [anon_sym_var] = ACTIONS(4380), - [sym_predefined_type] = ACTIONS(4380), - [anon_sym_yield] = ACTIONS(4380), - [anon_sym_when] = ACTIONS(4380), - [anon_sym_from] = ACTIONS(4380), - [anon_sym_into] = ACTIONS(4380), - [anon_sym_join] = ACTIONS(4380), - [anon_sym_on] = ACTIONS(4380), - [anon_sym_equals] = ACTIONS(4380), - [anon_sym_let] = ACTIONS(4380), - [anon_sym_orderby] = ACTIONS(4380), - [anon_sym_ascending] = ACTIONS(4380), - [anon_sym_descending] = ACTIONS(4380), - [anon_sym_group] = ACTIONS(4380), - [anon_sym_by] = ACTIONS(4380), - [anon_sym_select] = ACTIONS(4380), - [aux_sym_preproc_if_token1] = ACTIONS(4382), - [aux_sym_preproc_if_token3] = ACTIONS(4382), - [aux_sym_preproc_else_token1] = ACTIONS(4382), - [aux_sym_preproc_elif_token1] = ACTIONS(4382), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -428878,10 +439403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2626] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2626), [sym_preproc_endregion] = STATE(2626), [sym_preproc_line] = STATE(2626), @@ -428891,65 +439412,69 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), @@ -428960,12 +439485,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(3445), }, [2627] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2627), [sym_preproc_endregion] = STATE(2627), [sym_preproc_line] = STATE(2627), @@ -428975,81 +439497,82 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2628] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2628), [sym_preproc_endregion] = STATE(2628), [sym_preproc_line] = STATE(2628), @@ -429059,65 +439582,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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [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(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429130,10 +439658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2629] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2629), [sym_preproc_endregion] = STATE(2629), [sym_preproc_line] = STATE(2629), @@ -429143,75 +439667,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3847), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2630] = { [sym_preproc_region] = STATE(2630), @@ -429223,85 +439752,86 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2631] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -429311,65 +439841,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3851), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429382,6 +439913,10 @@ 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), @@ -429391,69 +439926,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2632), [sym_preproc_define] = STATE(2632), [sym_preproc_undef] = STATE(2632), - [sym__identifier_token] = ACTIONS(4389), - [anon_sym_extern] = ACTIONS(4389), - [anon_sym_alias] = ACTIONS(4389), - [anon_sym_global] = ACTIONS(4389), - [anon_sym_using] = ACTIONS(4389), - [anon_sym_unsafe] = ACTIONS(4389), - [anon_sym_static] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_event] = ACTIONS(4389), - [anon_sym_namespace] = ACTIONS(4389), - [anon_sym_class] = ACTIONS(4389), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_struct] = ACTIONS(4389), - [anon_sym_enum] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4391), - [anon_sym_interface] = ACTIONS(4389), - [anon_sym_delegate] = ACTIONS(4389), - [anon_sym_record] = ACTIONS(4389), - [anon_sym_abstract] = ACTIONS(4389), - [anon_sym_async] = ACTIONS(4389), - [anon_sym_const] = ACTIONS(4389), - [anon_sym_file] = ACTIONS(4389), - [anon_sym_fixed] = ACTIONS(4389), - [anon_sym_internal] = ACTIONS(4389), - [anon_sym_new] = ACTIONS(4389), - [anon_sym_override] = ACTIONS(4389), - [anon_sym_partial] = ACTIONS(4389), - [anon_sym_private] = ACTIONS(4389), - [anon_sym_protected] = ACTIONS(4389), - [anon_sym_public] = ACTIONS(4389), - [anon_sym_readonly] = ACTIONS(4389), - [anon_sym_required] = ACTIONS(4389), - [anon_sym_sealed] = ACTIONS(4389), - [anon_sym_virtual] = ACTIONS(4389), - [anon_sym_volatile] = ACTIONS(4389), - [anon_sym_where] = ACTIONS(4389), - [anon_sym_notnull] = ACTIONS(4389), - [anon_sym_unmanaged] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4391), - [anon_sym_implicit] = ACTIONS(4389), - [anon_sym_explicit] = ACTIONS(4389), - [anon_sym_scoped] = ACTIONS(4389), - [anon_sym_var] = ACTIONS(4389), - [sym_predefined_type] = ACTIONS(4389), - [anon_sym_yield] = ACTIONS(4389), - [anon_sym_when] = ACTIONS(4389), - [anon_sym_from] = ACTIONS(4389), - [anon_sym_into] = ACTIONS(4389), - [anon_sym_join] = ACTIONS(4389), - [anon_sym_on] = ACTIONS(4389), - [anon_sym_equals] = ACTIONS(4389), - [anon_sym_let] = ACTIONS(4389), - [anon_sym_orderby] = ACTIONS(4389), - [anon_sym_ascending] = ACTIONS(4389), - [anon_sym_descending] = ACTIONS(4389), - [anon_sym_group] = ACTIONS(4389), - [anon_sym_by] = ACTIONS(4389), - [anon_sym_select] = ACTIONS(4389), - [aux_sym_preproc_if_token1] = ACTIONS(4391), - [aux_sym_preproc_if_token3] = ACTIONS(4391), - [aux_sym_preproc_else_token1] = ACTIONS(4391), - [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429466,6 +439998,10 @@ 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), @@ -429475,69 +440011,66 @@ 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(3281), - [anon_sym_extern] = ACTIONS(3281), - [anon_sym_alias] = ACTIONS(3281), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3283), - [anon_sym_implicit] = ACTIONS(3281), - [anon_sym_explicit] = ACTIONS(3281), - [anon_sym_scoped] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [sym_predefined_type] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_when] = ACTIONS(3281), - [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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429550,10 +440083,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2634] = { - [sym__variable_designation] = STATE(3206), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -429563,65 +440096,66 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429643,79 +440177,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2635), [sym_preproc_define] = STATE(2635), [sym_preproc_undef] = STATE(2635), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2636] = { [sym_preproc_region] = STATE(2636), @@ -429727,69 +440262,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(3602), - [anon_sym_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429811,69 +440347,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(4393), - [anon_sym_extern] = ACTIONS(4393), - [anon_sym_alias] = ACTIONS(4393), - [anon_sym_global] = ACTIONS(4393), - [anon_sym_using] = ACTIONS(4393), - [anon_sym_unsafe] = ACTIONS(4393), - [anon_sym_static] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym_event] = ACTIONS(4393), - [anon_sym_namespace] = ACTIONS(4393), - [anon_sym_class] = ACTIONS(4393), - [anon_sym_ref] = ACTIONS(4393), - [anon_sym_struct] = ACTIONS(4393), - [anon_sym_enum] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_interface] = ACTIONS(4393), - [anon_sym_delegate] = ACTIONS(4393), - [anon_sym_record] = ACTIONS(4393), - [anon_sym_abstract] = ACTIONS(4393), - [anon_sym_async] = ACTIONS(4393), - [anon_sym_const] = ACTIONS(4393), - [anon_sym_file] = ACTIONS(4393), - [anon_sym_fixed] = ACTIONS(4393), - [anon_sym_internal] = ACTIONS(4393), - [anon_sym_new] = ACTIONS(4393), - [anon_sym_override] = ACTIONS(4393), - [anon_sym_partial] = ACTIONS(4393), - [anon_sym_private] = ACTIONS(4393), - [anon_sym_protected] = ACTIONS(4393), - [anon_sym_public] = ACTIONS(4393), - [anon_sym_readonly] = ACTIONS(4393), - [anon_sym_required] = ACTIONS(4393), - [anon_sym_sealed] = ACTIONS(4393), - [anon_sym_virtual] = ACTIONS(4393), - [anon_sym_volatile] = ACTIONS(4393), - [anon_sym_where] = ACTIONS(4393), - [anon_sym_notnull] = ACTIONS(4393), - [anon_sym_unmanaged] = ACTIONS(4393), - [anon_sym_TILDE] = ACTIONS(4395), - [anon_sym_implicit] = ACTIONS(4393), - [anon_sym_explicit] = ACTIONS(4393), - [anon_sym_scoped] = ACTIONS(4393), - [anon_sym_var] = ACTIONS(4393), - [sym_predefined_type] = ACTIONS(4393), - [anon_sym_yield] = ACTIONS(4393), - [anon_sym_when] = ACTIONS(4393), - [anon_sym_from] = ACTIONS(4393), - [anon_sym_into] = ACTIONS(4393), - [anon_sym_join] = ACTIONS(4393), - [anon_sym_on] = ACTIONS(4393), - [anon_sym_equals] = ACTIONS(4393), - [anon_sym_let] = ACTIONS(4393), - [anon_sym_orderby] = ACTIONS(4393), - [anon_sym_ascending] = ACTIONS(4393), - [anon_sym_descending] = ACTIONS(4393), - [anon_sym_group] = ACTIONS(4393), - [anon_sym_by] = ACTIONS(4393), - [anon_sym_select] = ACTIONS(4393), - [aux_sym_preproc_if_token1] = ACTIONS(4395), - [aux_sym_preproc_if_token3] = ACTIONS(4395), - [aux_sym_preproc_else_token1] = ACTIONS(4395), - [aux_sym_preproc_elif_token1] = ACTIONS(4395), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429895,69 +440432,69 @@ 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(4397), - [anon_sym_extern] = ACTIONS(4397), - [anon_sym_alias] = ACTIONS(4397), - [anon_sym_global] = ACTIONS(4397), - [anon_sym_using] = ACTIONS(4397), - [anon_sym_unsafe] = ACTIONS(4397), - [anon_sym_static] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4399), - [anon_sym_event] = ACTIONS(4397), - [anon_sym_namespace] = ACTIONS(4397), - [anon_sym_class] = ACTIONS(4397), - [anon_sym_ref] = ACTIONS(4397), - [anon_sym_struct] = ACTIONS(4397), - [anon_sym_enum] = ACTIONS(4397), - [anon_sym_RBRACE] = ACTIONS(4399), - [anon_sym_interface] = ACTIONS(4397), - [anon_sym_delegate] = ACTIONS(4397), - [anon_sym_record] = ACTIONS(4397), - [anon_sym_abstract] = ACTIONS(4397), - [anon_sym_async] = ACTIONS(4397), - [anon_sym_const] = ACTIONS(4397), - [anon_sym_file] = ACTIONS(4397), - [anon_sym_fixed] = ACTIONS(4397), - [anon_sym_internal] = ACTIONS(4397), - [anon_sym_new] = ACTIONS(4397), - [anon_sym_override] = ACTIONS(4397), - [anon_sym_partial] = ACTIONS(4397), - [anon_sym_private] = ACTIONS(4397), - [anon_sym_protected] = ACTIONS(4397), - [anon_sym_public] = ACTIONS(4397), - [anon_sym_readonly] = ACTIONS(4397), - [anon_sym_required] = ACTIONS(4397), - [anon_sym_sealed] = ACTIONS(4397), - [anon_sym_virtual] = ACTIONS(4397), - [anon_sym_volatile] = ACTIONS(4397), - [anon_sym_where] = ACTIONS(4397), - [anon_sym_notnull] = ACTIONS(4397), - [anon_sym_unmanaged] = ACTIONS(4397), - [anon_sym_TILDE] = ACTIONS(4399), - [anon_sym_implicit] = ACTIONS(4397), - [anon_sym_explicit] = ACTIONS(4397), - [anon_sym_scoped] = ACTIONS(4397), - [anon_sym_var] = ACTIONS(4397), - [sym_predefined_type] = ACTIONS(4397), - [anon_sym_yield] = ACTIONS(4397), - [anon_sym_when] = ACTIONS(4397), - [anon_sym_from] = ACTIONS(4397), - [anon_sym_into] = ACTIONS(4397), - [anon_sym_join] = ACTIONS(4397), - [anon_sym_on] = ACTIONS(4397), - [anon_sym_equals] = ACTIONS(4397), - [anon_sym_let] = ACTIONS(4397), - [anon_sym_orderby] = ACTIONS(4397), - [anon_sym_ascending] = ACTIONS(4397), - [anon_sym_descending] = ACTIONS(4397), - [anon_sym_group] = ACTIONS(4397), - [anon_sym_by] = ACTIONS(4397), - [anon_sym_select] = ACTIONS(4397), - [aux_sym_preproc_if_token1] = ACTIONS(4399), - [aux_sym_preproc_if_token3] = ACTIONS(4399), - [aux_sym_preproc_else_token1] = ACTIONS(4399), - [aux_sym_preproc_elif_token1] = ACTIONS(4399), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -429968,6 +440505,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(4092), }, [2639] = { [sym_preproc_region] = STATE(2639), @@ -429979,69 +440517,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), - [sym__identifier_token] = ACTIONS(4401), - [anon_sym_extern] = ACTIONS(4401), - [anon_sym_alias] = ACTIONS(4401), - [anon_sym_global] = ACTIONS(4401), - [anon_sym_using] = ACTIONS(4401), - [anon_sym_unsafe] = ACTIONS(4401), - [anon_sym_static] = ACTIONS(4401), - [anon_sym_LBRACK] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym_event] = ACTIONS(4401), - [anon_sym_namespace] = ACTIONS(4401), - [anon_sym_class] = ACTIONS(4401), - [anon_sym_ref] = ACTIONS(4401), - [anon_sym_struct] = ACTIONS(4401), - [anon_sym_enum] = ACTIONS(4401), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_interface] = ACTIONS(4401), - [anon_sym_delegate] = ACTIONS(4401), - [anon_sym_record] = ACTIONS(4401), - [anon_sym_abstract] = ACTIONS(4401), - [anon_sym_async] = ACTIONS(4401), - [anon_sym_const] = ACTIONS(4401), - [anon_sym_file] = ACTIONS(4401), - [anon_sym_fixed] = ACTIONS(4401), - [anon_sym_internal] = ACTIONS(4401), - [anon_sym_new] = ACTIONS(4401), - [anon_sym_override] = ACTIONS(4401), - [anon_sym_partial] = ACTIONS(4401), - [anon_sym_private] = ACTIONS(4401), - [anon_sym_protected] = ACTIONS(4401), - [anon_sym_public] = ACTIONS(4401), - [anon_sym_readonly] = ACTIONS(4401), - [anon_sym_required] = ACTIONS(4401), - [anon_sym_sealed] = ACTIONS(4401), - [anon_sym_virtual] = ACTIONS(4401), - [anon_sym_volatile] = ACTIONS(4401), - [anon_sym_where] = ACTIONS(4401), - [anon_sym_notnull] = ACTIONS(4401), - [anon_sym_unmanaged] = ACTIONS(4401), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_implicit] = ACTIONS(4401), - [anon_sym_explicit] = ACTIONS(4401), - [anon_sym_scoped] = ACTIONS(4401), - [anon_sym_var] = ACTIONS(4401), - [sym_predefined_type] = ACTIONS(4401), - [anon_sym_yield] = ACTIONS(4401), - [anon_sym_when] = ACTIONS(4401), - [anon_sym_from] = ACTIONS(4401), - [anon_sym_into] = ACTIONS(4401), - [anon_sym_join] = ACTIONS(4401), - [anon_sym_on] = ACTIONS(4401), - [anon_sym_equals] = ACTIONS(4401), - [anon_sym_let] = ACTIONS(4401), - [anon_sym_orderby] = ACTIONS(4401), - [anon_sym_ascending] = ACTIONS(4401), - [anon_sym_descending] = ACTIONS(4401), - [anon_sym_group] = ACTIONS(4401), - [anon_sym_by] = ACTIONS(4401), - [anon_sym_select] = ACTIONS(4401), - [aux_sym_preproc_if_token1] = ACTIONS(4403), - [aux_sym_preproc_if_token3] = ACTIONS(4403), - [aux_sym_preproc_else_token1] = ACTIONS(4403), - [aux_sym_preproc_elif_token1] = ACTIONS(4403), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430054,10 +440593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2640] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2640), [sym_preproc_endregion] = STATE(2640), [sym_preproc_line] = STATE(2640), @@ -430067,65 +440602,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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [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(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3811), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430147,69 +440687,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2641), [sym_preproc_define] = STATE(2641), [sym_preproc_undef] = STATE(2641), - [sym__identifier_token] = ACTIONS(4405), - [anon_sym_extern] = ACTIONS(4405), - [anon_sym_alias] = ACTIONS(4405), - [anon_sym_global] = ACTIONS(4405), - [anon_sym_using] = ACTIONS(4405), - [anon_sym_unsafe] = ACTIONS(4405), - [anon_sym_static] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_event] = ACTIONS(4405), - [anon_sym_namespace] = ACTIONS(4405), - [anon_sym_class] = ACTIONS(4405), - [anon_sym_ref] = ACTIONS(4405), - [anon_sym_struct] = ACTIONS(4405), - [anon_sym_enum] = ACTIONS(4405), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_interface] = ACTIONS(4405), - [anon_sym_delegate] = ACTIONS(4405), - [anon_sym_record] = ACTIONS(4405), - [anon_sym_abstract] = ACTIONS(4405), - [anon_sym_async] = ACTIONS(4405), - [anon_sym_const] = ACTIONS(4405), - [anon_sym_file] = ACTIONS(4405), - [anon_sym_fixed] = ACTIONS(4405), - [anon_sym_internal] = ACTIONS(4405), - [anon_sym_new] = ACTIONS(4405), - [anon_sym_override] = ACTIONS(4405), - [anon_sym_partial] = ACTIONS(4405), - [anon_sym_private] = ACTIONS(4405), - [anon_sym_protected] = ACTIONS(4405), - [anon_sym_public] = ACTIONS(4405), - [anon_sym_readonly] = ACTIONS(4405), - [anon_sym_required] = ACTIONS(4405), - [anon_sym_sealed] = ACTIONS(4405), - [anon_sym_virtual] = ACTIONS(4405), - [anon_sym_volatile] = ACTIONS(4405), - [anon_sym_where] = ACTIONS(4405), - [anon_sym_notnull] = ACTIONS(4405), - [anon_sym_unmanaged] = ACTIONS(4405), - [anon_sym_TILDE] = ACTIONS(4407), - [anon_sym_implicit] = ACTIONS(4405), - [anon_sym_explicit] = ACTIONS(4405), - [anon_sym_scoped] = ACTIONS(4405), - [anon_sym_var] = ACTIONS(4405), - [sym_predefined_type] = ACTIONS(4405), - [anon_sym_yield] = ACTIONS(4405), - [anon_sym_when] = ACTIONS(4405), - [anon_sym_from] = ACTIONS(4405), - [anon_sym_into] = ACTIONS(4405), - [anon_sym_join] = ACTIONS(4405), - [anon_sym_on] = ACTIONS(4405), - [anon_sym_equals] = ACTIONS(4405), - [anon_sym_let] = ACTIONS(4405), - [anon_sym_orderby] = ACTIONS(4405), - [anon_sym_ascending] = ACTIONS(4405), - [anon_sym_descending] = ACTIONS(4405), - [anon_sym_group] = ACTIONS(4405), - [anon_sym_by] = ACTIONS(4405), - [anon_sym_select] = ACTIONS(4405), - [aux_sym_preproc_if_token1] = ACTIONS(4407), - [aux_sym_preproc_if_token3] = ACTIONS(4407), - [aux_sym_preproc_else_token1] = ACTIONS(4407), - [aux_sym_preproc_elif_token1] = ACTIONS(4407), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430222,10 +440763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2642] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2642), [sym_preproc_endregion] = STATE(2642), [sym_preproc_line] = STATE(2642), @@ -430235,65 +440772,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3847), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430304,6 +440845,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(4092), }, [2643] = { [sym_preproc_region] = STATE(2643), @@ -430315,69 +440857,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2643), [sym_preproc_define] = STATE(2643), [sym_preproc_undef] = STATE(2643), - [sym__identifier_token] = ACTIONS(4409), - [anon_sym_extern] = ACTIONS(4409), - [anon_sym_alias] = ACTIONS(4409), - [anon_sym_global] = ACTIONS(4409), - [anon_sym_using] = ACTIONS(4409), - [anon_sym_unsafe] = ACTIONS(4409), - [anon_sym_static] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym_event] = ACTIONS(4409), - [anon_sym_namespace] = ACTIONS(4409), - [anon_sym_class] = ACTIONS(4409), - [anon_sym_ref] = ACTIONS(4409), - [anon_sym_struct] = ACTIONS(4409), - [anon_sym_enum] = ACTIONS(4409), - [anon_sym_RBRACE] = ACTIONS(4411), - [anon_sym_interface] = ACTIONS(4409), - [anon_sym_delegate] = ACTIONS(4409), - [anon_sym_record] = ACTIONS(4409), - [anon_sym_abstract] = ACTIONS(4409), - [anon_sym_async] = ACTIONS(4409), - [anon_sym_const] = ACTIONS(4409), - [anon_sym_file] = ACTIONS(4409), - [anon_sym_fixed] = ACTIONS(4409), - [anon_sym_internal] = ACTIONS(4409), - [anon_sym_new] = ACTIONS(4409), - [anon_sym_override] = ACTIONS(4409), - [anon_sym_partial] = ACTIONS(4409), - [anon_sym_private] = ACTIONS(4409), - [anon_sym_protected] = ACTIONS(4409), - [anon_sym_public] = ACTIONS(4409), - [anon_sym_readonly] = ACTIONS(4409), - [anon_sym_required] = ACTIONS(4409), - [anon_sym_sealed] = ACTIONS(4409), - [anon_sym_virtual] = ACTIONS(4409), - [anon_sym_volatile] = ACTIONS(4409), - [anon_sym_where] = ACTIONS(4409), - [anon_sym_notnull] = ACTIONS(4409), - [anon_sym_unmanaged] = ACTIONS(4409), - [anon_sym_TILDE] = ACTIONS(4411), - [anon_sym_implicit] = ACTIONS(4409), - [anon_sym_explicit] = ACTIONS(4409), - [anon_sym_scoped] = ACTIONS(4409), - [anon_sym_var] = ACTIONS(4409), - [sym_predefined_type] = ACTIONS(4409), - [anon_sym_yield] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_from] = ACTIONS(4409), - [anon_sym_into] = ACTIONS(4409), - [anon_sym_join] = ACTIONS(4409), - [anon_sym_on] = ACTIONS(4409), - [anon_sym_equals] = ACTIONS(4409), - [anon_sym_let] = ACTIONS(4409), - [anon_sym_orderby] = ACTIONS(4409), - [anon_sym_ascending] = ACTIONS(4409), - [anon_sym_descending] = ACTIONS(4409), - [anon_sym_group] = ACTIONS(4409), - [anon_sym_by] = ACTIONS(4409), - [anon_sym_select] = ACTIONS(4409), - [aux_sym_preproc_if_token1] = ACTIONS(4411), - [aux_sym_preproc_if_token3] = ACTIONS(4411), - [aux_sym_preproc_else_token1] = ACTIONS(4411), - [aux_sym_preproc_elif_token1] = ACTIONS(4411), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430399,69 +440942,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2644), [sym_preproc_define] = STATE(2644), [sym_preproc_undef] = STATE(2644), - [sym__identifier_token] = ACTIONS(4413), - [anon_sym_extern] = ACTIONS(4413), - [anon_sym_alias] = ACTIONS(4413), - [anon_sym_global] = ACTIONS(4413), - [anon_sym_using] = ACTIONS(4413), - [anon_sym_unsafe] = ACTIONS(4413), - [anon_sym_static] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym_event] = ACTIONS(4413), - [anon_sym_namespace] = ACTIONS(4413), - [anon_sym_class] = ACTIONS(4413), - [anon_sym_ref] = ACTIONS(4413), - [anon_sym_struct] = ACTIONS(4413), - [anon_sym_enum] = ACTIONS(4413), - [anon_sym_RBRACE] = ACTIONS(4415), - [anon_sym_interface] = ACTIONS(4413), - [anon_sym_delegate] = ACTIONS(4413), - [anon_sym_record] = ACTIONS(4413), - [anon_sym_abstract] = ACTIONS(4413), - [anon_sym_async] = ACTIONS(4413), - [anon_sym_const] = ACTIONS(4413), - [anon_sym_file] = ACTIONS(4413), - [anon_sym_fixed] = ACTIONS(4413), - [anon_sym_internal] = ACTIONS(4413), - [anon_sym_new] = ACTIONS(4413), - [anon_sym_override] = ACTIONS(4413), - [anon_sym_partial] = ACTIONS(4413), - [anon_sym_private] = ACTIONS(4413), - [anon_sym_protected] = ACTIONS(4413), - [anon_sym_public] = ACTIONS(4413), - [anon_sym_readonly] = ACTIONS(4413), - [anon_sym_required] = ACTIONS(4413), - [anon_sym_sealed] = ACTIONS(4413), - [anon_sym_virtual] = ACTIONS(4413), - [anon_sym_volatile] = ACTIONS(4413), - [anon_sym_where] = ACTIONS(4413), - [anon_sym_notnull] = ACTIONS(4413), - [anon_sym_unmanaged] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4415), - [anon_sym_implicit] = ACTIONS(4413), - [anon_sym_explicit] = ACTIONS(4413), - [anon_sym_scoped] = ACTIONS(4413), - [anon_sym_var] = ACTIONS(4413), - [sym_predefined_type] = ACTIONS(4413), - [anon_sym_yield] = ACTIONS(4413), - [anon_sym_when] = ACTIONS(4413), - [anon_sym_from] = ACTIONS(4413), - [anon_sym_into] = ACTIONS(4413), - [anon_sym_join] = ACTIONS(4413), - [anon_sym_on] = ACTIONS(4413), - [anon_sym_equals] = ACTIONS(4413), - [anon_sym_let] = ACTIONS(4413), - [anon_sym_orderby] = ACTIONS(4413), - [anon_sym_ascending] = ACTIONS(4413), - [anon_sym_descending] = ACTIONS(4413), - [anon_sym_group] = ACTIONS(4413), - [anon_sym_by] = ACTIONS(4413), - [anon_sym_select] = ACTIONS(4413), - [aux_sym_preproc_if_token1] = ACTIONS(4415), - [aux_sym_preproc_if_token3] = ACTIONS(4415), - [aux_sym_preproc_else_token1] = ACTIONS(4415), - [aux_sym_preproc_elif_token1] = ACTIONS(4415), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430474,10 +441018,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2645] = { - [sym__variable_designation] = STATE(3232), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2645), [sym_preproc_endregion] = STATE(2645), [sym_preproc_line] = STATE(2645), @@ -430487,65 +441027,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2645), [sym_preproc_define] = STATE(2645), [sym_preproc_undef] = STATE(2645), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3847), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430558,6 +441103,7 @@ 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), @@ -430567,69 +441113,69 @@ 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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -430642,10 +441188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2647] = { - [sym__variable_designation] = STATE(3237), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2647), [sym_preproc_endregion] = STATE(2647), [sym_preproc_line] = STATE(2647), @@ -430655,65 +441197,70 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [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(3811), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3811), - [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(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), @@ -430735,79 +441282,80 @@ 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(3944), - [anon_sym_alias] = ACTIONS(3944), - [anon_sym_global] = ACTIONS(3944), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_file] = ACTIONS(3944), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_where] = ACTIONS(3944), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_notnull] = ACTIONS(3944), - [anon_sym_unmanaged] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_scoped] = ACTIONS(3944), - [anon_sym_var] = ACTIONS(3944), - [anon_sym_yield] = ACTIONS(3944), - [anon_sym_switch] = ACTIONS(3944), - [anon_sym_when] = ACTIONS(3944), - [sym_discard] = ACTIONS(3944), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3944), - [anon_sym_or] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_from] = ACTIONS(3944), - [anon_sym_into] = ACTIONS(3944), - [anon_sym_join] = ACTIONS(3944), - [anon_sym_on] = ACTIONS(3944), - [anon_sym_equals] = ACTIONS(3944), - [anon_sym_let] = ACTIONS(3944), - [anon_sym_orderby] = ACTIONS(3944), - [anon_sym_ascending] = ACTIONS(3944), - [anon_sym_descending] = ACTIONS(3944), - [anon_sym_group] = ACTIONS(3944), - [anon_sym_by] = ACTIONS(3944), - [anon_sym_select] = ACTIONS(3944), - [anon_sym_as] = ACTIONS(3944), - [anon_sym_is] = ACTIONS(3944), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3944), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3946), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2649] = { [sym_preproc_region] = STATE(2649), @@ -430819,81 +441367,86 @@ 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(3932), - [anon_sym_alias] = ACTIONS(3932), - [anon_sym_global] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_file] = ACTIONS(3932), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_notnull] = ACTIONS(3932), - [anon_sym_unmanaged] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_scoped] = ACTIONS(3932), - [anon_sym_var] = ACTIONS(3932), - [anon_sym_yield] = ACTIONS(3932), - [anon_sym_switch] = ACTIONS(3932), - [anon_sym_when] = ACTIONS(3932), - [sym_discard] = ACTIONS(3932), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3932), - [anon_sym_into] = ACTIONS(3932), - [anon_sym_join] = ACTIONS(3932), - [anon_sym_on] = ACTIONS(3932), - [anon_sym_equals] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3932), - [anon_sym_orderby] = ACTIONS(3932), - [anon_sym_ascending] = ACTIONS(3932), - [anon_sym_descending] = ACTIONS(3932), - [anon_sym_group] = ACTIONS(3932), - [anon_sym_by] = ACTIONS(3932), - [anon_sym_select] = ACTIONS(3932), - [anon_sym_as] = ACTIONS(3932), - [anon_sym_is] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3932), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3934), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -430903,81 +441456,82 @@ 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(3905), - [anon_sym_alias] = ACTIONS(3905), - [anon_sym_global] = ACTIONS(3905), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_file] = ACTIONS(3905), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_notnull] = ACTIONS(3905), - [anon_sym_unmanaged] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_scoped] = ACTIONS(3905), - [anon_sym_var] = ACTIONS(3905), - [anon_sym_yield] = ACTIONS(3905), - [anon_sym_switch] = ACTIONS(3905), - [anon_sym_when] = ACTIONS(3905), - [sym_discard] = ACTIONS(3905), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3905), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_from] = ACTIONS(3905), - [anon_sym_into] = ACTIONS(3905), - [anon_sym_join] = ACTIONS(3905), - [anon_sym_on] = ACTIONS(3905), - [anon_sym_equals] = ACTIONS(3905), - [anon_sym_let] = ACTIONS(3905), - [anon_sym_orderby] = ACTIONS(3905), - [anon_sym_ascending] = ACTIONS(3905), - [anon_sym_descending] = ACTIONS(3905), - [anon_sym_group] = ACTIONS(3905), - [anon_sym_by] = ACTIONS(3905), - [anon_sym_select] = ACTIONS(3905), - [anon_sym_as] = ACTIONS(3905), - [anon_sym_is] = ACTIONS(3905), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3905), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3907), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2651] = { + [sym__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), @@ -430987,81 +441541,82 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4421), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4423), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2652] = { + [sym__variable_designation] = STATE(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), @@ -431071,79 +441626,76 @@ 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(3932), - [anon_sym_alias] = ACTIONS(3932), - [anon_sym_global] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_file] = ACTIONS(3932), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_notnull] = ACTIONS(3932), - [anon_sym_unmanaged] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(4425), - [anon_sym_scoped] = ACTIONS(3932), - [anon_sym_var] = ACTIONS(3932), - [anon_sym_yield] = ACTIONS(3932), - [anon_sym_switch] = ACTIONS(3932), - [anon_sym_when] = ACTIONS(3932), - [sym_discard] = ACTIONS(3932), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3932), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3932), - [anon_sym_into] = ACTIONS(3932), - [anon_sym_join] = ACTIONS(3932), - [anon_sym_on] = ACTIONS(3932), - [anon_sym_equals] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3932), - [anon_sym_orderby] = ACTIONS(3932), - [anon_sym_ascending] = ACTIONS(3932), - [anon_sym_descending] = ACTIONS(3932), - [anon_sym_group] = ACTIONS(3932), - [anon_sym_by] = ACTIONS(3932), - [anon_sym_select] = ACTIONS(3932), - [anon_sym_as] = ACTIONS(3932), - [anon_sym_is] = ACTIONS(3932), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3932), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3934), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2653] = { [sym_preproc_region] = STATE(2653), @@ -431155,79 +441707,80 @@ 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(4029), - [anon_sym_alias] = ACTIONS(4029), - [anon_sym_global] = ACTIONS(4029), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_file] = ACTIONS(4029), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_notnull] = ACTIONS(4029), - [anon_sym_unmanaged] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_scoped] = ACTIONS(4029), - [anon_sym_var] = ACTIONS(4029), - [anon_sym_yield] = ACTIONS(4029), - [anon_sym_switch] = ACTIONS(4029), - [anon_sym_when] = ACTIONS(4029), - [sym_discard] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4029), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4029), - [anon_sym_into] = ACTIONS(4029), - [anon_sym_join] = ACTIONS(4029), - [anon_sym_on] = ACTIONS(4029), - [anon_sym_equals] = ACTIONS(4029), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_orderby] = ACTIONS(4029), - [anon_sym_ascending] = ACTIONS(4029), - [anon_sym_descending] = ACTIONS(4029), - [anon_sym_group] = ACTIONS(4029), - [anon_sym_by] = ACTIONS(4029), - [anon_sym_select] = ACTIONS(4029), - [anon_sym_as] = ACTIONS(4029), - [anon_sym_is] = ACTIONS(4029), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4029), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4031), + [sym__identifier_token] = ACTIONS(4312), + [anon_sym_extern] = ACTIONS(4312), + [anon_sym_alias] = ACTIONS(4312), + [anon_sym_global] = ACTIONS(4312), + [anon_sym_using] = ACTIONS(4312), + [anon_sym_unsafe] = ACTIONS(4312), + [anon_sym_EQ] = ACTIONS(4314), + [anon_sym_static] = ACTIONS(4312), + [anon_sym_LBRACK] = ACTIONS(4314), + [anon_sym_LPAREN] = ACTIONS(4314), + [anon_sym_event] = ACTIONS(4312), + [anon_sym_namespace] = ACTIONS(4312), + [anon_sym_class] = ACTIONS(4312), + [anon_sym_ref] = ACTIONS(4312), + [anon_sym_struct] = ACTIONS(4312), + [anon_sym_enum] = ACTIONS(4312), + [anon_sym_RBRACE] = ACTIONS(4314), + [anon_sym_interface] = ACTIONS(4312), + [anon_sym_delegate] = ACTIONS(4312), + [anon_sym_record] = ACTIONS(4312), + [anon_sym_abstract] = ACTIONS(4312), + [anon_sym_async] = ACTIONS(4312), + [anon_sym_const] = ACTIONS(4312), + [anon_sym_file] = ACTIONS(4312), + [anon_sym_fixed] = ACTIONS(4312), + [anon_sym_internal] = ACTIONS(4312), + [anon_sym_new] = ACTIONS(4312), + [anon_sym_override] = ACTIONS(4312), + [anon_sym_partial] = ACTIONS(4312), + [anon_sym_private] = ACTIONS(4312), + [anon_sym_protected] = ACTIONS(4312), + [anon_sym_public] = ACTIONS(4312), + [anon_sym_readonly] = ACTIONS(4312), + [anon_sym_required] = ACTIONS(4312), + [anon_sym_sealed] = ACTIONS(4312), + [anon_sym_virtual] = ACTIONS(4312), + [anon_sym_volatile] = ACTIONS(4312), + [anon_sym_where] = ACTIONS(4312), + [anon_sym_notnull] = ACTIONS(4312), + [anon_sym_unmanaged] = ACTIONS(4312), + [anon_sym_TILDE] = ACTIONS(4314), + [anon_sym_implicit] = ACTIONS(4312), + [anon_sym_explicit] = ACTIONS(4312), + [anon_sym_scoped] = ACTIONS(4312), + [anon_sym_var] = ACTIONS(4312), + [sym_predefined_type] = ACTIONS(4312), + [anon_sym_yield] = ACTIONS(4312), + [anon_sym_when] = ACTIONS(4312), + [anon_sym_from] = ACTIONS(4312), + [anon_sym_into] = ACTIONS(4312), + [anon_sym_join] = ACTIONS(4312), + [anon_sym_on] = ACTIONS(4312), + [anon_sym_equals] = ACTIONS(4312), + [anon_sym_let] = ACTIONS(4312), + [anon_sym_orderby] = ACTIONS(4312), + [anon_sym_ascending] = ACTIONS(4312), + [anon_sym_descending] = ACTIONS(4312), + [anon_sym_group] = ACTIONS(4312), + [anon_sym_by] = ACTIONS(4312), + [anon_sym_select] = ACTIONS(4312), + [aux_sym_preproc_if_token1] = ACTIONS(4314), + [aux_sym_preproc_if_token3] = ACTIONS(4314), + [aux_sym_preproc_else_token1] = ACTIONS(4314), + [aux_sym_preproc_elif_token1] = ACTIONS(4314), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2654] = { [sym_preproc_region] = STATE(2654), @@ -431239,69 +441792,70 @@ 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(4427), - [anon_sym_extern] = ACTIONS(4427), - [anon_sym_alias] = ACTIONS(4427), - [anon_sym_global] = ACTIONS(4427), - [anon_sym_using] = ACTIONS(4427), - [anon_sym_unsafe] = ACTIONS(4427), - [anon_sym_static] = ACTIONS(4427), - [anon_sym_LBRACK] = ACTIONS(4429), - [anon_sym_LPAREN] = ACTIONS(4429), - [anon_sym_event] = ACTIONS(4427), - [anon_sym_namespace] = ACTIONS(4427), - [anon_sym_class] = ACTIONS(4427), - [anon_sym_ref] = ACTIONS(4427), - [anon_sym_struct] = ACTIONS(4427), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_interface] = ACTIONS(4427), - [anon_sym_delegate] = ACTIONS(4427), - [anon_sym_record] = ACTIONS(4427), - [anon_sym_abstract] = ACTIONS(4427), - [anon_sym_async] = ACTIONS(4427), - [anon_sym_const] = ACTIONS(4427), - [anon_sym_file] = ACTIONS(4427), - [anon_sym_fixed] = ACTIONS(4427), - [anon_sym_internal] = ACTIONS(4427), - [anon_sym_new] = ACTIONS(4427), - [anon_sym_override] = ACTIONS(4427), - [anon_sym_partial] = ACTIONS(4427), - [anon_sym_private] = ACTIONS(4427), - [anon_sym_protected] = ACTIONS(4427), - [anon_sym_public] = ACTIONS(4427), - [anon_sym_readonly] = ACTIONS(4427), - [anon_sym_required] = ACTIONS(4427), - [anon_sym_sealed] = ACTIONS(4427), - [anon_sym_virtual] = ACTIONS(4427), - [anon_sym_volatile] = ACTIONS(4427), - [anon_sym_where] = ACTIONS(4427), - [anon_sym_notnull] = ACTIONS(4427), - [anon_sym_unmanaged] = ACTIONS(4427), - [anon_sym_TILDE] = ACTIONS(4429), - [anon_sym_implicit] = ACTIONS(4427), - [anon_sym_explicit] = ACTIONS(4427), - [anon_sym_scoped] = ACTIONS(4427), - [anon_sym_var] = ACTIONS(4427), - [sym_predefined_type] = ACTIONS(4427), - [anon_sym_yield] = ACTIONS(4427), - [anon_sym_when] = ACTIONS(4427), - [anon_sym_from] = ACTIONS(4427), - [anon_sym_into] = ACTIONS(4427), - [anon_sym_join] = ACTIONS(4427), - [anon_sym_on] = ACTIONS(4427), - [anon_sym_equals] = ACTIONS(4427), - [anon_sym_let] = ACTIONS(4427), - [anon_sym_orderby] = ACTIONS(4427), - [anon_sym_ascending] = ACTIONS(4427), - [anon_sym_descending] = ACTIONS(4427), - [anon_sym_group] = ACTIONS(4427), - [anon_sym_by] = ACTIONS(4427), - [anon_sym_select] = ACTIONS(4427), - [aux_sym_preproc_if_token1] = ACTIONS(4429), - [aux_sym_preproc_if_token3] = ACTIONS(4429), - [aux_sym_preproc_else_token1] = ACTIONS(4429), - [aux_sym_preproc_elif_token1] = ACTIONS(4429), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431323,69 +441877,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431398,10 +441952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2656] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2656), [sym_preproc_endregion] = STATE(2656), [sym_preproc_line] = STATE(2656), @@ -431411,65 +441961,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431491,69 +442045,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(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_using] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_event] = ACTIONS(2909), - [anon_sym_namespace] = ACTIONS(2909), - [anon_sym_class] = ACTIONS(2909), - [anon_sym_ref] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_delegate] = ACTIONS(2909), - [anon_sym_record] = ACTIONS(2909), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_implicit] = ACTIONS(2909), - [anon_sym_explicit] = ACTIONS(2909), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [sym_predefined_type] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [aux_sym_preproc_if_token1] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431575,69 +442129,68 @@ 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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431648,6 +442201,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(4106), }, [2659] = { [sym_preproc_region] = STATE(2659), @@ -431659,69 +442213,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431734,10 +442288,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2660] = { - [sym__variable_designation] = STATE(4065), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2660), [sym_preproc_endregion] = STATE(2660), [sym_preproc_line] = STATE(2660), @@ -431747,65 +442297,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431827,81 +442381,85 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4423), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -431911,69 +442469,65 @@ 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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -431995,69 +442549,68 @@ 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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432068,6 +442621,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), }, [2664] = { [sym_preproc_region] = STATE(2664), @@ -432079,69 +442633,68 @@ 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(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(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), @@ -432152,12 +442705,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(3687), }, [2665] = { - [sym__variable_designation] = STATE(4055), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2665), [sym_preproc_endregion] = STATE(2665), [sym_preproc_line] = STATE(2665), @@ -432167,65 +442717,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [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(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [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(3827), - [anon_sym_join] = ACTIONS(3895), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3827), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432247,69 +442801,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432331,69 +442885,68 @@ 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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432404,12 +442957,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(4122), }, [2668] = { - [sym__variable_designation] = STATE(3314), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2668), [sym_preproc_endregion] = STATE(2668), [sym_preproc_line] = STATE(2668), @@ -432419,65 +442969,68 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432488,6 +443041,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), }, [2669] = { [sym_preproc_region] = STATE(2669), @@ -432499,69 +443053,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432583,69 +443137,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432667,69 +443221,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), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_when] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432751,69 +443305,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432835,69 +443389,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2673), [sym_preproc_define] = STATE(2673), [sym_preproc_undef] = STATE(2673), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_event] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_operator] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_implicit] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432908,6 +443461,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(4110), }, [2674] = { [sym_preproc_region] = STATE(2674), @@ -432919,69 +443473,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433003,69 +443557,69 @@ 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(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(3427), + [anon_sym_extern] = ACTIONS(3427), + [anon_sym_alias] = ACTIONS(3427), + [anon_sym_global] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_unsafe] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_event] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_ref] = ACTIONS(3427), + [anon_sym_struct] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_delegate] = ACTIONS(3427), + [anon_sym_record] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_file] = ACTIONS(3427), + [anon_sym_fixed] = ACTIONS(3427), + [anon_sym_internal] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_partial] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_required] = ACTIONS(3427), + [anon_sym_sealed] = ACTIONS(3427), + [anon_sym_virtual] = ACTIONS(3427), + [anon_sym_volatile] = ACTIONS(3427), + [anon_sym_where] = ACTIONS(3427), + [anon_sym_notnull] = ACTIONS(3427), + [anon_sym_unmanaged] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_implicit] = ACTIONS(3427), + [anon_sym_explicit] = ACTIONS(3427), + [anon_sym_scoped] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [sym_predefined_type] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_when] = ACTIONS(3427), + [anon_sym_from] = ACTIONS(3427), + [anon_sym_into] = ACTIONS(3427), + [anon_sym_join] = ACTIONS(3427), + [anon_sym_on] = ACTIONS(3427), + [anon_sym_equals] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_orderby] = ACTIONS(3427), + [anon_sym_ascending] = ACTIONS(3427), + [anon_sym_descending] = ACTIONS(3427), + [anon_sym_group] = ACTIONS(3427), + [anon_sym_by] = ACTIONS(3427), + [anon_sym_select] = ACTIONS(3427), + [aux_sym_preproc_if_token1] = ACTIONS(3429), + [aux_sym_preproc_if_token3] = ACTIONS(3429), + [aux_sym_preproc_else_token1] = ACTIONS(3429), + [aux_sym_preproc_elif_token1] = ACTIONS(3429), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433078,10 +443632,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2676] = { - [sym__variable_designation] = STATE(3291), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2676), [sym_preproc_endregion] = STATE(2676), [sym_preproc_line] = STATE(2676), @@ -433091,65 +443641,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [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(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [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(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), @@ -433171,69 +443725,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), - [anon_sym_SEMI] = ACTIONS(4136), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4132), - [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(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(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), + [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), @@ -433255,79 +443809,79 @@ 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(3952), - [anon_sym_alias] = ACTIONS(3952), - [anon_sym_global] = ACTIONS(3952), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_file] = ACTIONS(3952), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_where] = ACTIONS(3952), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_notnull] = ACTIONS(3952), - [anon_sym_unmanaged] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_scoped] = ACTIONS(3952), - [anon_sym_var] = ACTIONS(3952), - [anon_sym_yield] = ACTIONS(3952), - [anon_sym_switch] = ACTIONS(3952), - [anon_sym_when] = ACTIONS(3952), - [sym_discard] = ACTIONS(3952), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3952), - [anon_sym_or] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_from] = ACTIONS(3952), - [anon_sym_into] = ACTIONS(3952), - [anon_sym_join] = ACTIONS(3952), - [anon_sym_on] = ACTIONS(3952), - [anon_sym_equals] = ACTIONS(3952), - [anon_sym_let] = ACTIONS(3952), - [anon_sym_orderby] = ACTIONS(3952), - [anon_sym_ascending] = ACTIONS(3952), - [anon_sym_descending] = ACTIONS(3952), - [anon_sym_group] = ACTIONS(3952), - [anon_sym_by] = ACTIONS(3952), - [anon_sym_select] = ACTIONS(3952), - [anon_sym_as] = ACTIONS(3952), - [anon_sym_is] = ACTIONS(3952), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3952), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3954), + [sym__identifier_token] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_alias] = ACTIONS(3367), + [anon_sym_global] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_event] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_ref] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_delegate] = ACTIONS(3367), + [anon_sym_record] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_file] = ACTIONS(3367), + [anon_sym_fixed] = ACTIONS(3367), + [anon_sym_internal] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_partial] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_required] = ACTIONS(3367), + [anon_sym_sealed] = ACTIONS(3367), + [anon_sym_virtual] = ACTIONS(3367), + [anon_sym_volatile] = ACTIONS(3367), + [anon_sym_where] = ACTIONS(3367), + [anon_sym_notnull] = ACTIONS(3367), + [anon_sym_unmanaged] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_implicit] = ACTIONS(3367), + [anon_sym_explicit] = ACTIONS(3367), + [anon_sym_scoped] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [sym_predefined_type] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_when] = ACTIONS(3367), + [anon_sym_from] = ACTIONS(3367), + [anon_sym_into] = ACTIONS(3367), + [anon_sym_join] = ACTIONS(3367), + [anon_sym_on] = ACTIONS(3367), + [anon_sym_equals] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_orderby] = ACTIONS(3367), + [anon_sym_ascending] = ACTIONS(3367), + [anon_sym_descending] = ACTIONS(3367), + [anon_sym_group] = ACTIONS(3367), + [anon_sym_by] = ACTIONS(3367), + [anon_sym_select] = ACTIONS(3367), + [aux_sym_preproc_if_token1] = ACTIONS(3369), + [aux_sym_preproc_if_token3] = ACTIONS(3369), + [aux_sym_preproc_else_token1] = ACTIONS(3369), + [aux_sym_preproc_elif_token1] = ACTIONS(3369), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2679] = { [sym_preproc_region] = STATE(2679), @@ -433339,69 +443893,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(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(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), @@ -433423,69 +443977,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2680), [sym_preproc_define] = STATE(2680), [sym_preproc_undef] = STATE(2680), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(4112), - [anon_sym_RBRACE] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_in] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_EQ_GT] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_when] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_on] = ACTIONS(4112), - [anon_sym_equals] = ACTIONS(4112), - [anon_sym_by] = ACTIONS(4112), - [anon_sym_as] = ACTIONS(4112), - [anon_sym_is] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4112), - [anon_sym_with] = ACTIONS(4112), - [aux_sym_preproc_if_token3] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433498,10 +444052,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2681] = { - [sym__variable_designation] = STATE(3293), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2681), [sym_preproc_endregion] = STATE(2681), [sym_preproc_line] = STATE(2681), @@ -433511,65 +444061,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3847), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [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), @@ -433591,69 +444145,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), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_in] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4207), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4207), - [anon_sym_BANG_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(4207), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(4207), - [anon_sym_PIPE_PIPE] = ACTIONS(4207), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(4207), - [anon_sym_is] = ACTIONS(4207), - [anon_sym_DASH_GT] = ACTIONS(4207), - [anon_sym_with] = ACTIONS(4207), - [aux_sym_preproc_if_token3] = ACTIONS(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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), @@ -433675,69 +444229,69 @@ 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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433759,69 +444313,69 @@ 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(3329), - [anon_sym_extern] = ACTIONS(3329), - [anon_sym_alias] = ACTIONS(3329), - [anon_sym_global] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_unsafe] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_event] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_ref] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_delegate] = ACTIONS(3329), - [anon_sym_record] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_file] = ACTIONS(3329), - [anon_sym_fixed] = ACTIONS(3329), - [anon_sym_internal] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_partial] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_required] = ACTIONS(3329), - [anon_sym_sealed] = ACTIONS(3329), - [anon_sym_virtual] = ACTIONS(3329), - [anon_sym_volatile] = ACTIONS(3329), - [anon_sym_where] = ACTIONS(3329), - [anon_sym_notnull] = ACTIONS(3329), - [anon_sym_unmanaged] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_implicit] = ACTIONS(3329), - [anon_sym_explicit] = ACTIONS(3329), - [anon_sym_scoped] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [sym_predefined_type] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_when] = ACTIONS(3329), - [anon_sym_from] = ACTIONS(3329), - [anon_sym_into] = ACTIONS(3329), - [anon_sym_join] = ACTIONS(3329), - [anon_sym_on] = ACTIONS(3329), - [anon_sym_equals] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_orderby] = ACTIONS(3329), - [anon_sym_ascending] = ACTIONS(3329), - [anon_sym_descending] = ACTIONS(3329), - [anon_sym_group] = ACTIONS(3329), - [anon_sym_by] = ACTIONS(3329), - [anon_sym_select] = ACTIONS(3329), - [aux_sym_preproc_if_token1] = ACTIONS(3331), - [aux_sym_preproc_if_token3] = ACTIONS(3331), - [aux_sym_preproc_else_token1] = ACTIONS(3331), - [aux_sym_preproc_elif_token1] = ACTIONS(3331), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433843,69 +444397,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -433918,6 +444472,10 @@ 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), @@ -433927,69 +444485,65 @@ 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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434002,10 +444556,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2687] = { - [sym__variable_designation] = STATE(3340), - [sym_parenthesized_variable_designation] = STATE(3405), - [sym_identifier] = STATE(3286), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2687), [sym_preproc_endregion] = STATE(2687), [sym_preproc_line] = STATE(2687), @@ -434015,65 +444565,69 @@ 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), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3831), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3811), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3851), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), @@ -434095,69 +444649,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(3297), - [anon_sym_extern] = ACTIONS(3297), - [anon_sym_alias] = ACTIONS(3297), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3299), - [anon_sym_implicit] = ACTIONS(3297), - [anon_sym_explicit] = ACTIONS(3297), - [anon_sym_scoped] = ACTIONS(3297), - [anon_sym_var] = ACTIONS(3297), - [sym_predefined_type] = ACTIONS(3297), - [anon_sym_yield] = ACTIONS(3297), - [anon_sym_when] = ACTIONS(3297), - [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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434179,79 +444733,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2690] = { [sym_preproc_region] = STATE(2690), @@ -434263,69 +444817,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(3321), - [anon_sym_extern] = ACTIONS(3321), - [anon_sym_alias] = ACTIONS(3321), - [anon_sym_global] = ACTIONS(3321), - [anon_sym_using] = ACTIONS(3321), - [anon_sym_unsafe] = ACTIONS(3321), - [anon_sym_static] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_event] = ACTIONS(3321), - [anon_sym_namespace] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_ref] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3321), - [anon_sym_enum] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3321), - [anon_sym_delegate] = ACTIONS(3321), - [anon_sym_record] = ACTIONS(3321), - [anon_sym_abstract] = ACTIONS(3321), - [anon_sym_async] = ACTIONS(3321), - [anon_sym_const] = ACTIONS(3321), - [anon_sym_file] = ACTIONS(3321), - [anon_sym_fixed] = ACTIONS(3321), - [anon_sym_internal] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_override] = ACTIONS(3321), - [anon_sym_partial] = ACTIONS(3321), - [anon_sym_private] = ACTIONS(3321), - [anon_sym_protected] = ACTIONS(3321), - [anon_sym_public] = ACTIONS(3321), - [anon_sym_readonly] = ACTIONS(3321), - [anon_sym_required] = ACTIONS(3321), - [anon_sym_sealed] = ACTIONS(3321), - [anon_sym_virtual] = ACTIONS(3321), - [anon_sym_volatile] = ACTIONS(3321), - [anon_sym_where] = ACTIONS(3321), - [anon_sym_notnull] = ACTIONS(3321), - [anon_sym_unmanaged] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_implicit] = ACTIONS(3321), - [anon_sym_explicit] = ACTIONS(3321), - [anon_sym_scoped] = ACTIONS(3321), - [anon_sym_var] = ACTIONS(3321), - [sym_predefined_type] = ACTIONS(3321), - [anon_sym_yield] = ACTIONS(3321), - [anon_sym_when] = ACTIONS(3321), - [anon_sym_from] = ACTIONS(3321), - [anon_sym_into] = ACTIONS(3321), - [anon_sym_join] = ACTIONS(3321), - [anon_sym_on] = ACTIONS(3321), - [anon_sym_equals] = ACTIONS(3321), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_orderby] = ACTIONS(3321), - [anon_sym_ascending] = ACTIONS(3321), - [anon_sym_descending] = ACTIONS(3321), - [anon_sym_group] = ACTIONS(3321), - [anon_sym_by] = ACTIONS(3321), - [anon_sym_select] = ACTIONS(3321), - [aux_sym_preproc_if_token1] = ACTIONS(3323), - [aux_sym_preproc_if_token3] = ACTIONS(3323), - [aux_sym_preproc_else_token1] = ACTIONS(3323), - [aux_sym_preproc_elif_token1] = ACTIONS(3323), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434338,6 +444892,10 @@ 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), @@ -434347,69 +444905,65 @@ 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(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(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), @@ -434431,69 +444985,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(4505), - [anon_sym_extern] = ACTIONS(4505), - [anon_sym_alias] = ACTIONS(4505), - [anon_sym_global] = ACTIONS(4505), - [anon_sym_using] = ACTIONS(4505), - [anon_sym_unsafe] = ACTIONS(4505), - [anon_sym_static] = ACTIONS(4505), - [anon_sym_LBRACK] = ACTIONS(4507), - [anon_sym_LPAREN] = ACTIONS(4507), - [anon_sym_event] = ACTIONS(4505), - [anon_sym_namespace] = ACTIONS(4505), - [anon_sym_class] = ACTIONS(4505), - [anon_sym_ref] = ACTIONS(4505), - [anon_sym_struct] = ACTIONS(4505), - [anon_sym_enum] = ACTIONS(4505), - [anon_sym_RBRACE] = ACTIONS(4507), - [anon_sym_interface] = ACTIONS(4505), - [anon_sym_delegate] = ACTIONS(4505), - [anon_sym_record] = ACTIONS(4505), - [anon_sym_abstract] = ACTIONS(4505), - [anon_sym_async] = ACTIONS(4505), - [anon_sym_const] = ACTIONS(4505), - [anon_sym_file] = ACTIONS(4505), - [anon_sym_fixed] = ACTIONS(4505), - [anon_sym_internal] = ACTIONS(4505), - [anon_sym_new] = ACTIONS(4505), - [anon_sym_override] = ACTIONS(4505), - [anon_sym_partial] = ACTIONS(4505), - [anon_sym_private] = ACTIONS(4505), - [anon_sym_protected] = ACTIONS(4505), - [anon_sym_public] = ACTIONS(4505), - [anon_sym_readonly] = ACTIONS(4505), - [anon_sym_required] = ACTIONS(4505), - [anon_sym_sealed] = ACTIONS(4505), - [anon_sym_virtual] = ACTIONS(4505), - [anon_sym_volatile] = ACTIONS(4505), - [anon_sym_where] = ACTIONS(4505), - [anon_sym_notnull] = ACTIONS(4505), - [anon_sym_unmanaged] = ACTIONS(4505), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_implicit] = ACTIONS(4505), - [anon_sym_explicit] = ACTIONS(4505), - [anon_sym_scoped] = ACTIONS(4505), - [anon_sym_var] = ACTIONS(4505), - [sym_predefined_type] = ACTIONS(4505), - [anon_sym_yield] = ACTIONS(4505), - [anon_sym_when] = ACTIONS(4505), - [anon_sym_from] = ACTIONS(4505), - [anon_sym_into] = ACTIONS(4505), - [anon_sym_join] = ACTIONS(4505), - [anon_sym_on] = ACTIONS(4505), - [anon_sym_equals] = ACTIONS(4505), - [anon_sym_let] = ACTIONS(4505), - [anon_sym_orderby] = ACTIONS(4505), - [anon_sym_ascending] = ACTIONS(4505), - [anon_sym_descending] = ACTIONS(4505), - [anon_sym_group] = ACTIONS(4505), - [anon_sym_by] = ACTIONS(4505), - [anon_sym_select] = ACTIONS(4505), - [aux_sym_preproc_if_token1] = ACTIONS(4507), - [aux_sym_preproc_if_token3] = ACTIONS(4507), - [aux_sym_preproc_else_token1] = ACTIONS(4507), - [aux_sym_preproc_elif_token1] = ACTIONS(4507), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434506,6 +445060,10 @@ 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), @@ -434515,79 +445073,75 @@ 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(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_global] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_file] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_notnull] = ACTIONS(3600), - [anon_sym_unmanaged] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_scoped] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [sym_discard] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3600), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [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_ascending] = ACTIONS(3600), - [anon_sym_descending] = 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(3602), - [anon_sym_with] = 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), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2694] = { [sym_preproc_region] = STATE(2694), @@ -434599,81 +445153,85 @@ 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(3625), - [anon_sym_alias] = ACTIONS(3625), - [anon_sym_global] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_file] = ACTIONS(3625), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_notnull] = ACTIONS(3625), - [anon_sym_unmanaged] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_scoped] = ACTIONS(3625), - [anon_sym_var] = ACTIONS(3625), - [anon_sym_yield] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3625), - [anon_sym_when] = ACTIONS(3625), - [sym_discard] = ACTIONS(3625), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3625), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_from] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3625), - [anon_sym_join] = ACTIONS(3625), - [anon_sym_on] = ACTIONS(3625), - [anon_sym_equals] = ACTIONS(3625), - [anon_sym_let] = ACTIONS(3625), - [anon_sym_orderby] = ACTIONS(3625), - [anon_sym_ascending] = ACTIONS(3625), - [anon_sym_descending] = ACTIONS(3625), - [anon_sym_group] = ACTIONS(3625), - [anon_sym_by] = ACTIONS(3625), - [anon_sym_select] = ACTIONS(3625), - [anon_sym_as] = ACTIONS(3625), - [anon_sym_is] = ACTIONS(3625), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3625), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3627), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -434683,69 +445241,65 @@ 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(3317), - [anon_sym_extern] = ACTIONS(3317), - [anon_sym_alias] = ACTIONS(3317), - [anon_sym_global] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_unsafe] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_event] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_ref] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_delegate] = ACTIONS(3317), - [anon_sym_record] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_file] = ACTIONS(3317), - [anon_sym_fixed] = ACTIONS(3317), - [anon_sym_internal] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_partial] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_required] = ACTIONS(3317), - [anon_sym_sealed] = ACTIONS(3317), - [anon_sym_virtual] = ACTIONS(3317), - [anon_sym_volatile] = ACTIONS(3317), - [anon_sym_where] = ACTIONS(3317), - [anon_sym_notnull] = ACTIONS(3317), - [anon_sym_unmanaged] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_implicit] = ACTIONS(3317), - [anon_sym_explicit] = ACTIONS(3317), - [anon_sym_scoped] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [sym_predefined_type] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_when] = ACTIONS(3317), - [anon_sym_from] = ACTIONS(3317), - [anon_sym_into] = ACTIONS(3317), - [anon_sym_join] = ACTIONS(3317), - [anon_sym_on] = ACTIONS(3317), - [anon_sym_equals] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_orderby] = ACTIONS(3317), - [anon_sym_ascending] = ACTIONS(3317), - [anon_sym_descending] = ACTIONS(3317), - [anon_sym_group] = ACTIONS(3317), - [anon_sym_by] = ACTIONS(3317), - [anon_sym_select] = ACTIONS(3317), - [aux_sym_preproc_if_token1] = ACTIONS(3319), - [aux_sym_preproc_if_token3] = ACTIONS(3319), - [aux_sym_preproc_else_token1] = ACTIONS(3319), - [aux_sym_preproc_elif_token1] = ACTIONS(3319), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434758,6 +445312,10 @@ 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), @@ -434767,69 +445325,65 @@ 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(4509), - [anon_sym_extern] = ACTIONS(4509), - [anon_sym_alias] = ACTIONS(4509), - [anon_sym_global] = ACTIONS(4509), - [anon_sym_using] = ACTIONS(4509), - [anon_sym_unsafe] = ACTIONS(4509), - [anon_sym_static] = ACTIONS(4509), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_event] = ACTIONS(4509), - [anon_sym_namespace] = ACTIONS(4509), - [anon_sym_class] = ACTIONS(4509), - [anon_sym_ref] = ACTIONS(4509), - [anon_sym_struct] = ACTIONS(4509), - [anon_sym_enum] = ACTIONS(4509), - [anon_sym_RBRACE] = ACTIONS(4511), - [anon_sym_interface] = ACTIONS(4509), - [anon_sym_delegate] = ACTIONS(4509), - [anon_sym_record] = ACTIONS(4509), - [anon_sym_abstract] = ACTIONS(4509), - [anon_sym_async] = ACTIONS(4509), - [anon_sym_const] = ACTIONS(4509), - [anon_sym_file] = ACTIONS(4509), - [anon_sym_fixed] = ACTIONS(4509), - [anon_sym_internal] = ACTIONS(4509), - [anon_sym_new] = ACTIONS(4509), - [anon_sym_override] = ACTIONS(4509), - [anon_sym_partial] = ACTIONS(4509), - [anon_sym_private] = ACTIONS(4509), - [anon_sym_protected] = ACTIONS(4509), - [anon_sym_public] = ACTIONS(4509), - [anon_sym_readonly] = ACTIONS(4509), - [anon_sym_required] = ACTIONS(4509), - [anon_sym_sealed] = ACTIONS(4509), - [anon_sym_virtual] = ACTIONS(4509), - [anon_sym_volatile] = ACTIONS(4509), - [anon_sym_where] = ACTIONS(4509), - [anon_sym_notnull] = ACTIONS(4509), - [anon_sym_unmanaged] = ACTIONS(4509), - [anon_sym_TILDE] = ACTIONS(4511), - [anon_sym_implicit] = ACTIONS(4509), - [anon_sym_explicit] = ACTIONS(4509), - [anon_sym_scoped] = ACTIONS(4509), - [anon_sym_var] = ACTIONS(4509), - [sym_predefined_type] = ACTIONS(4509), - [anon_sym_yield] = ACTIONS(4509), - [anon_sym_when] = ACTIONS(4509), - [anon_sym_from] = ACTIONS(4509), - [anon_sym_into] = ACTIONS(4509), - [anon_sym_join] = ACTIONS(4509), - [anon_sym_on] = ACTIONS(4509), - [anon_sym_equals] = ACTIONS(4509), - [anon_sym_let] = ACTIONS(4509), - [anon_sym_orderby] = ACTIONS(4509), - [anon_sym_ascending] = ACTIONS(4509), - [anon_sym_descending] = ACTIONS(4509), - [anon_sym_group] = ACTIONS(4509), - [anon_sym_by] = ACTIONS(4509), - [anon_sym_select] = ACTIONS(4509), - [aux_sym_preproc_if_token1] = ACTIONS(4511), - [aux_sym_preproc_if_token3] = ACTIONS(4511), - [aux_sym_preproc_else_token1] = ACTIONS(4511), - [aux_sym_preproc_elif_token1] = ACTIONS(4511), + [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), @@ -434851,69 +445405,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), - [sym__identifier_token] = ACTIONS(3337), - [anon_sym_extern] = ACTIONS(3337), - [anon_sym_alias] = ACTIONS(3337), - [anon_sym_global] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_unsafe] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_event] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_ref] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_delegate] = ACTIONS(3337), - [anon_sym_record] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_file] = ACTIONS(3337), - [anon_sym_fixed] = ACTIONS(3337), - [anon_sym_internal] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_partial] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_required] = ACTIONS(3337), - [anon_sym_sealed] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3337), - [anon_sym_volatile] = ACTIONS(3337), - [anon_sym_where] = ACTIONS(3337), - [anon_sym_notnull] = ACTIONS(3337), - [anon_sym_unmanaged] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_implicit] = ACTIONS(3337), - [anon_sym_explicit] = ACTIONS(3337), - [anon_sym_scoped] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [sym_predefined_type] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_when] = ACTIONS(3337), - [anon_sym_from] = ACTIONS(3337), - [anon_sym_into] = ACTIONS(3337), - [anon_sym_join] = ACTIONS(3337), - [anon_sym_on] = ACTIONS(3337), - [anon_sym_equals] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_orderby] = ACTIONS(3337), - [anon_sym_ascending] = ACTIONS(3337), - [anon_sym_descending] = ACTIONS(3337), - [anon_sym_group] = ACTIONS(3337), - [anon_sym_by] = ACTIONS(3337), - [anon_sym_select] = ACTIONS(3337), - [aux_sym_preproc_if_token1] = ACTIONS(3339), - [aux_sym_preproc_if_token3] = ACTIONS(3339), - [aux_sym_preproc_else_token1] = ACTIONS(3339), - [aux_sym_preproc_elif_token1] = ACTIONS(3339), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -434926,6 +445480,10 @@ 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), @@ -434935,69 +445493,65 @@ 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(4513), - [anon_sym_extern] = ACTIONS(4513), - [anon_sym_alias] = ACTIONS(4513), - [anon_sym_global] = ACTIONS(4513), - [anon_sym_using] = ACTIONS(4513), - [anon_sym_unsafe] = ACTIONS(4513), - [anon_sym_static] = ACTIONS(4513), - [anon_sym_LBRACK] = ACTIONS(4515), - [anon_sym_LPAREN] = ACTIONS(4515), - [anon_sym_event] = ACTIONS(4513), - [anon_sym_namespace] = ACTIONS(4513), - [anon_sym_class] = ACTIONS(4513), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_struct] = ACTIONS(4513), - [anon_sym_enum] = ACTIONS(4513), - [anon_sym_RBRACE] = ACTIONS(4515), - [anon_sym_interface] = ACTIONS(4513), - [anon_sym_delegate] = ACTIONS(4513), - [anon_sym_record] = ACTIONS(4513), - [anon_sym_abstract] = ACTIONS(4513), - [anon_sym_async] = ACTIONS(4513), - [anon_sym_const] = ACTIONS(4513), - [anon_sym_file] = ACTIONS(4513), - [anon_sym_fixed] = ACTIONS(4513), - [anon_sym_internal] = ACTIONS(4513), - [anon_sym_new] = ACTIONS(4513), - [anon_sym_override] = ACTIONS(4513), - [anon_sym_partial] = ACTIONS(4513), - [anon_sym_private] = ACTIONS(4513), - [anon_sym_protected] = ACTIONS(4513), - [anon_sym_public] = ACTIONS(4513), - [anon_sym_readonly] = ACTIONS(4513), - [anon_sym_required] = ACTIONS(4513), - [anon_sym_sealed] = ACTIONS(4513), - [anon_sym_virtual] = ACTIONS(4513), - [anon_sym_volatile] = ACTIONS(4513), - [anon_sym_where] = ACTIONS(4513), - [anon_sym_notnull] = ACTIONS(4513), - [anon_sym_unmanaged] = ACTIONS(4513), - [anon_sym_TILDE] = ACTIONS(4515), - [anon_sym_implicit] = ACTIONS(4513), - [anon_sym_explicit] = ACTIONS(4513), - [anon_sym_scoped] = ACTIONS(4513), - [anon_sym_var] = ACTIONS(4513), - [sym_predefined_type] = ACTIONS(4513), - [anon_sym_yield] = ACTIONS(4513), - [anon_sym_when] = ACTIONS(4513), - [anon_sym_from] = ACTIONS(4513), - [anon_sym_into] = ACTIONS(4513), - [anon_sym_join] = ACTIONS(4513), - [anon_sym_on] = ACTIONS(4513), - [anon_sym_equals] = ACTIONS(4513), - [anon_sym_let] = ACTIONS(4513), - [anon_sym_orderby] = ACTIONS(4513), - [anon_sym_ascending] = ACTIONS(4513), - [anon_sym_descending] = ACTIONS(4513), - [anon_sym_group] = ACTIONS(4513), - [anon_sym_by] = ACTIONS(4513), - [anon_sym_select] = ACTIONS(4513), - [aux_sym_preproc_if_token1] = ACTIONS(4515), - [aux_sym_preproc_if_token3] = ACTIONS(4515), - [aux_sym_preproc_else_token1] = ACTIONS(4515), - [aux_sym_preproc_elif_token1] = ACTIONS(4515), + [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), @@ -435019,69 +445573,69 @@ 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(3369), - [anon_sym_extern] = ACTIONS(3369), - [anon_sym_alias] = ACTIONS(3369), - [anon_sym_global] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_unsafe] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_event] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_ref] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_delegate] = ACTIONS(3369), - [anon_sym_record] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_file] = ACTIONS(3369), - [anon_sym_fixed] = ACTIONS(3369), - [anon_sym_internal] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_partial] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_required] = ACTIONS(3369), - [anon_sym_sealed] = ACTIONS(3369), - [anon_sym_virtual] = ACTIONS(3369), - [anon_sym_volatile] = ACTIONS(3369), - [anon_sym_where] = ACTIONS(3369), - [anon_sym_notnull] = ACTIONS(3369), - [anon_sym_unmanaged] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_implicit] = ACTIONS(3369), - [anon_sym_explicit] = ACTIONS(3369), - [anon_sym_scoped] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [sym_predefined_type] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_when] = ACTIONS(3369), - [anon_sym_from] = ACTIONS(3369), - [anon_sym_into] = ACTIONS(3369), - [anon_sym_join] = ACTIONS(3369), - [anon_sym_on] = ACTIONS(3369), - [anon_sym_equals] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_orderby] = ACTIONS(3369), - [anon_sym_ascending] = ACTIONS(3369), - [anon_sym_descending] = ACTIONS(3369), - [anon_sym_group] = ACTIONS(3369), - [anon_sym_by] = ACTIONS(3369), - [anon_sym_select] = ACTIONS(3369), - [aux_sym_preproc_if_token1] = ACTIONS(3371), - [aux_sym_preproc_if_token3] = ACTIONS(3371), - [aux_sym_preproc_else_token1] = ACTIONS(3371), - [aux_sym_preproc_elif_token1] = ACTIONS(3371), + [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), @@ -435103,79 +445657,79 @@ 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(4047), - [anon_sym_alias] = ACTIONS(4047), - [anon_sym_global] = ACTIONS(4047), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_file] = ACTIONS(4047), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_notnull] = ACTIONS(4047), - [anon_sym_unmanaged] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_scoped] = ACTIONS(4047), - [anon_sym_var] = ACTIONS(4047), - [anon_sym_yield] = ACTIONS(4047), - [anon_sym_switch] = ACTIONS(4047), - [anon_sym_when] = ACTIONS(4047), - [sym_discard] = ACTIONS(4047), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4047), - [anon_sym_or] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_from] = ACTIONS(4047), - [anon_sym_into] = ACTIONS(4047), - [anon_sym_join] = ACTIONS(4047), - [anon_sym_on] = ACTIONS(4047), - [anon_sym_equals] = ACTIONS(4047), - [anon_sym_let] = ACTIONS(4047), - [anon_sym_orderby] = ACTIONS(4047), - [anon_sym_ascending] = ACTIONS(4047), - [anon_sym_descending] = ACTIONS(4047), - [anon_sym_group] = ACTIONS(4047), - [anon_sym_by] = ACTIONS(4047), - [anon_sym_select] = ACTIONS(4047), - [anon_sym_as] = ACTIONS(4047), - [anon_sym_is] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4047), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4049), + [sym__identifier_token] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_alias] = ACTIONS(3359), + [anon_sym_global] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_unsafe] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_event] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_ref] = ACTIONS(3359), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_delegate] = ACTIONS(3359), + [anon_sym_record] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_file] = ACTIONS(3359), + [anon_sym_fixed] = ACTIONS(3359), + [anon_sym_internal] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_partial] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_required] = ACTIONS(3359), + [anon_sym_sealed] = ACTIONS(3359), + [anon_sym_virtual] = ACTIONS(3359), + [anon_sym_volatile] = ACTIONS(3359), + [anon_sym_where] = ACTIONS(3359), + [anon_sym_notnull] = ACTIONS(3359), + [anon_sym_unmanaged] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_implicit] = ACTIONS(3359), + [anon_sym_explicit] = ACTIONS(3359), + [anon_sym_scoped] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [sym_predefined_type] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_when] = ACTIONS(3359), + [anon_sym_from] = ACTIONS(3359), + [anon_sym_into] = ACTIONS(3359), + [anon_sym_join] = ACTIONS(3359), + [anon_sym_on] = ACTIONS(3359), + [anon_sym_equals] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_orderby] = ACTIONS(3359), + [anon_sym_ascending] = ACTIONS(3359), + [anon_sym_descending] = ACTIONS(3359), + [anon_sym_group] = ACTIONS(3359), + [anon_sym_by] = ACTIONS(3359), + [anon_sym_select] = ACTIONS(3359), + [aux_sym_preproc_if_token1] = ACTIONS(3361), + [aux_sym_preproc_if_token3] = ACTIONS(3361), + [aux_sym_preproc_else_token1] = ACTIONS(3361), + [aux_sym_preproc_elif_token1] = ACTIONS(3361), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2701] = { [sym_preproc_region] = STATE(2701), @@ -435187,69 +445741,69 @@ 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(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(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), @@ -435271,85 +445825,81 @@ 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(3081), - [anon_sym_extern] = ACTIONS(3081), - [anon_sym_alias] = ACTIONS(3081), - [anon_sym_global] = ACTIONS(3081), - [anon_sym_using] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_event] = ACTIONS(3081), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3081), - [anon_sym_ref] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_delegate] = ACTIONS(3081), - [anon_sym_record] = ACTIONS(3081), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_file] = ACTIONS(3081), - [anon_sym_fixed] = ACTIONS(3081), - [anon_sym_internal] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_partial] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_required] = ACTIONS(3081), - [anon_sym_sealed] = ACTIONS(3081), - [anon_sym_virtual] = ACTIONS(3081), - [anon_sym_volatile] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3081), - [anon_sym_notnull] = ACTIONS(3081), - [anon_sym_unmanaged] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_implicit] = ACTIONS(3081), - [anon_sym_explicit] = ACTIONS(3081), - [anon_sym_scoped] = ACTIONS(3081), - [anon_sym_var] = ACTIONS(3081), - [sym_predefined_type] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3081), - [anon_sym_when] = ACTIONS(3081), - [anon_sym_from] = ACTIONS(3081), - [anon_sym_into] = ACTIONS(3081), - [anon_sym_join] = ACTIONS(3081), - [anon_sym_on] = ACTIONS(3081), - [anon_sym_equals] = ACTIONS(3081), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_orderby] = ACTIONS(3081), - [anon_sym_ascending] = ACTIONS(3081), - [anon_sym_descending] = ACTIONS(3081), - [anon_sym_group] = ACTIONS(3081), - [anon_sym_by] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [aux_sym_preproc_if_token1] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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__variable_designation] = STATE(4045), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(2703), [sym_preproc_endregion] = STATE(2703), [sym_preproc_line] = STATE(2703), @@ -435359,65 +445909,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3827), - [anon_sym_var] = ACTIONS(3827), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3827), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3827), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3827), - [anon_sym_equals] = ACTIONS(3827), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3827), - [anon_sym_descending] = ACTIONS(3827), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435439,69 +445993,69 @@ 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(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(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), @@ -435523,69 +446077,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(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(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), @@ -435607,79 +446161,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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2707] = { [sym_preproc_region] = STATE(2707), @@ -435691,69 +446245,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(4533), - [anon_sym_extern] = ACTIONS(4533), - [anon_sym_alias] = ACTIONS(4533), - [anon_sym_global] = ACTIONS(4533), - [anon_sym_using] = ACTIONS(4533), - [anon_sym_unsafe] = ACTIONS(4533), - [anon_sym_static] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4535), - [anon_sym_LPAREN] = ACTIONS(4535), - [anon_sym_event] = ACTIONS(4533), - [anon_sym_namespace] = ACTIONS(4533), - [anon_sym_class] = ACTIONS(4533), - [anon_sym_ref] = ACTIONS(4533), - [anon_sym_struct] = ACTIONS(4533), - [anon_sym_enum] = ACTIONS(4533), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_interface] = ACTIONS(4533), - [anon_sym_delegate] = ACTIONS(4533), - [anon_sym_record] = ACTIONS(4533), - [anon_sym_abstract] = ACTIONS(4533), - [anon_sym_async] = ACTIONS(4533), - [anon_sym_const] = ACTIONS(4533), - [anon_sym_file] = ACTIONS(4533), - [anon_sym_fixed] = ACTIONS(4533), - [anon_sym_internal] = ACTIONS(4533), - [anon_sym_new] = ACTIONS(4533), - [anon_sym_override] = ACTIONS(4533), - [anon_sym_partial] = ACTIONS(4533), - [anon_sym_private] = ACTIONS(4533), - [anon_sym_protected] = ACTIONS(4533), - [anon_sym_public] = ACTIONS(4533), - [anon_sym_readonly] = ACTIONS(4533), - [anon_sym_required] = ACTIONS(4533), - [anon_sym_sealed] = ACTIONS(4533), - [anon_sym_virtual] = ACTIONS(4533), - [anon_sym_volatile] = ACTIONS(4533), - [anon_sym_where] = ACTIONS(4533), - [anon_sym_notnull] = ACTIONS(4533), - [anon_sym_unmanaged] = ACTIONS(4533), - [anon_sym_TILDE] = ACTIONS(4535), - [anon_sym_implicit] = ACTIONS(4533), - [anon_sym_explicit] = ACTIONS(4533), - [anon_sym_scoped] = ACTIONS(4533), - [anon_sym_var] = ACTIONS(4533), - [sym_predefined_type] = ACTIONS(4533), - [anon_sym_yield] = ACTIONS(4533), - [anon_sym_when] = ACTIONS(4533), - [anon_sym_from] = ACTIONS(4533), - [anon_sym_into] = ACTIONS(4533), - [anon_sym_join] = ACTIONS(4533), - [anon_sym_on] = ACTIONS(4533), - [anon_sym_equals] = ACTIONS(4533), - [anon_sym_let] = ACTIONS(4533), - [anon_sym_orderby] = ACTIONS(4533), - [anon_sym_ascending] = ACTIONS(4533), - [anon_sym_descending] = ACTIONS(4533), - [anon_sym_group] = ACTIONS(4533), - [anon_sym_by] = ACTIONS(4533), - [anon_sym_select] = ACTIONS(4533), - [aux_sym_preproc_if_token1] = ACTIONS(4535), - [aux_sym_preproc_if_token3] = ACTIONS(4535), - [aux_sym_preproc_else_token1] = ACTIONS(4535), - [aux_sym_preproc_elif_token1] = ACTIONS(4535), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -435775,69 +446329,69 @@ 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(3325), - [anon_sym_extern] = ACTIONS(3325), - [anon_sym_alias] = ACTIONS(3325), - [anon_sym_global] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_unsafe] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_event] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_ref] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_delegate] = ACTIONS(3325), - [anon_sym_record] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_file] = ACTIONS(3325), - [anon_sym_fixed] = ACTIONS(3325), - [anon_sym_internal] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_partial] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_required] = ACTIONS(3325), - [anon_sym_sealed] = ACTIONS(3325), - [anon_sym_virtual] = ACTIONS(3325), - [anon_sym_volatile] = ACTIONS(3325), - [anon_sym_where] = ACTIONS(3325), - [anon_sym_notnull] = ACTIONS(3325), - [anon_sym_unmanaged] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_implicit] = ACTIONS(3325), - [anon_sym_explicit] = ACTIONS(3325), - [anon_sym_scoped] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [sym_predefined_type] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_when] = ACTIONS(3325), - [anon_sym_from] = ACTIONS(3325), - [anon_sym_into] = ACTIONS(3325), - [anon_sym_join] = ACTIONS(3325), - [anon_sym_on] = ACTIONS(3325), - [anon_sym_equals] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_orderby] = ACTIONS(3325), - [anon_sym_ascending] = ACTIONS(3325), - [anon_sym_descending] = ACTIONS(3325), - [anon_sym_group] = ACTIONS(3325), - [anon_sym_by] = ACTIONS(3325), - [anon_sym_select] = ACTIONS(3325), - [aux_sym_preproc_if_token1] = ACTIONS(3327), - [aux_sym_preproc_if_token3] = ACTIONS(3327), - [aux_sym_preproc_else_token1] = ACTIONS(3327), - [aux_sym_preproc_elif_token1] = ACTIONS(3327), + [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), @@ -435859,69 +446413,69 @@ 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(3341), - [anon_sym_extern] = ACTIONS(3341), - [anon_sym_alias] = ACTIONS(3341), - [anon_sym_global] = ACTIONS(3341), - [anon_sym_using] = ACTIONS(3341), - [anon_sym_unsafe] = ACTIONS(3341), - [anon_sym_static] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_event] = ACTIONS(3341), - [anon_sym_namespace] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_ref] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_delegate] = ACTIONS(3341), - [anon_sym_record] = ACTIONS(3341), - [anon_sym_abstract] = ACTIONS(3341), - [anon_sym_async] = ACTIONS(3341), - [anon_sym_const] = ACTIONS(3341), - [anon_sym_file] = ACTIONS(3341), - [anon_sym_fixed] = ACTIONS(3341), - [anon_sym_internal] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_override] = ACTIONS(3341), - [anon_sym_partial] = ACTIONS(3341), - [anon_sym_private] = ACTIONS(3341), - [anon_sym_protected] = ACTIONS(3341), - [anon_sym_public] = ACTIONS(3341), - [anon_sym_readonly] = ACTIONS(3341), - [anon_sym_required] = ACTIONS(3341), - [anon_sym_sealed] = ACTIONS(3341), - [anon_sym_virtual] = ACTIONS(3341), - [anon_sym_volatile] = ACTIONS(3341), - [anon_sym_where] = ACTIONS(3341), - [anon_sym_notnull] = ACTIONS(3341), - [anon_sym_unmanaged] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_implicit] = ACTIONS(3341), - [anon_sym_explicit] = ACTIONS(3341), - [anon_sym_scoped] = ACTIONS(3341), - [anon_sym_var] = ACTIONS(3341), - [sym_predefined_type] = ACTIONS(3341), - [anon_sym_yield] = ACTIONS(3341), - [anon_sym_when] = ACTIONS(3341), - [anon_sym_from] = ACTIONS(3341), - [anon_sym_into] = ACTIONS(3341), - [anon_sym_join] = ACTIONS(3341), - [anon_sym_on] = ACTIONS(3341), - [anon_sym_equals] = ACTIONS(3341), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_orderby] = ACTIONS(3341), - [anon_sym_ascending] = ACTIONS(3341), - [anon_sym_descending] = ACTIONS(3341), - [anon_sym_group] = ACTIONS(3341), - [anon_sym_by] = ACTIONS(3341), - [anon_sym_select] = ACTIONS(3341), - [aux_sym_preproc_if_token1] = ACTIONS(3343), - [aux_sym_preproc_if_token3] = ACTIONS(3343), - [aux_sym_preproc_else_token1] = ACTIONS(3343), - [aux_sym_preproc_elif_token1] = ACTIONS(3343), + [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), @@ -435943,69 +446497,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(3345), - [anon_sym_extern] = ACTIONS(3345), - [anon_sym_alias] = ACTIONS(3345), - [anon_sym_global] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_unsafe] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_event] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_ref] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_delegate] = ACTIONS(3345), - [anon_sym_record] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_file] = ACTIONS(3345), - [anon_sym_fixed] = ACTIONS(3345), - [anon_sym_internal] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_partial] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_sealed] = ACTIONS(3345), - [anon_sym_virtual] = ACTIONS(3345), - [anon_sym_volatile] = ACTIONS(3345), - [anon_sym_where] = ACTIONS(3345), - [anon_sym_notnull] = ACTIONS(3345), - [anon_sym_unmanaged] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_implicit] = ACTIONS(3345), - [anon_sym_explicit] = ACTIONS(3345), - [anon_sym_scoped] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [sym_predefined_type] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_when] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_into] = ACTIONS(3345), - [anon_sym_join] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_equals] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_orderby] = ACTIONS(3345), - [anon_sym_ascending] = ACTIONS(3345), - [anon_sym_descending] = ACTIONS(3345), - [anon_sym_group] = ACTIONS(3345), - [anon_sym_by] = ACTIONS(3345), - [anon_sym_select] = ACTIONS(3345), - [aux_sym_preproc_if_token1] = ACTIONS(3347), - [aux_sym_preproc_if_token3] = ACTIONS(3347), - [aux_sym_preproc_else_token1] = ACTIONS(3347), - [aux_sym_preproc_elif_token1] = ACTIONS(3347), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436027,69 +446581,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), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_EQ] = ACTIONS(4108), - [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_RBRACE] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_in] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [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_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436111,69 +446665,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_when] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3608), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), @@ -436184,6 +446737,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(4018), }, [2713] = { [sym_preproc_region] = STATE(2713), @@ -436195,75 +446749,75 @@ 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(3349), - [anon_sym_extern] = ACTIONS(3349), - [anon_sym_alias] = ACTIONS(3349), - [anon_sym_global] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_unsafe] = ACTIONS(3349), - [anon_sym_static] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_event] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_ref] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_delegate] = ACTIONS(3349), - [anon_sym_record] = ACTIONS(3349), - [anon_sym_abstract] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_file] = ACTIONS(3349), - [anon_sym_fixed] = ACTIONS(3349), - [anon_sym_internal] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_override] = ACTIONS(3349), - [anon_sym_partial] = ACTIONS(3349), - [anon_sym_private] = ACTIONS(3349), - [anon_sym_protected] = ACTIONS(3349), - [anon_sym_public] = ACTIONS(3349), - [anon_sym_readonly] = ACTIONS(3349), - [anon_sym_required] = ACTIONS(3349), - [anon_sym_sealed] = ACTIONS(3349), - [anon_sym_virtual] = ACTIONS(3349), - [anon_sym_volatile] = ACTIONS(3349), - [anon_sym_where] = ACTIONS(3349), - [anon_sym_notnull] = ACTIONS(3349), - [anon_sym_unmanaged] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_implicit] = ACTIONS(3349), - [anon_sym_explicit] = ACTIONS(3349), - [anon_sym_scoped] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [sym_predefined_type] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_when] = ACTIONS(3349), - [anon_sym_from] = ACTIONS(3349), - [anon_sym_into] = ACTIONS(3349), - [anon_sym_join] = ACTIONS(3349), - [anon_sym_on] = ACTIONS(3349), - [anon_sym_equals] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_orderby] = ACTIONS(3349), - [anon_sym_ascending] = ACTIONS(3349), - [anon_sym_descending] = ACTIONS(3349), - [anon_sym_group] = ACTIONS(3349), - [anon_sym_by] = ACTIONS(3349), - [anon_sym_select] = ACTIONS(3349), - [aux_sym_preproc_if_token1] = ACTIONS(3351), - [aux_sym_preproc_if_token3] = ACTIONS(3351), - [aux_sym_preproc_else_token1] = ACTIONS(3351), - [aux_sym_preproc_elif_token1] = ACTIONS(3351), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_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(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), @@ -436279,79 +446833,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2714), [sym_preproc_define] = STATE(2714), [sym_preproc_undef] = STATE(2714), - [sym__identifier_token] = ACTIONS(3926), - [anon_sym_alias] = ACTIONS(3926), - [anon_sym_global] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_file] = ACTIONS(3926), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_where] = ACTIONS(3926), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_notnull] = ACTIONS(3926), - [anon_sym_unmanaged] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_scoped] = ACTIONS(3926), - [anon_sym_var] = ACTIONS(3926), - [anon_sym_yield] = ACTIONS(3926), - [anon_sym_switch] = ACTIONS(3926), - [anon_sym_when] = ACTIONS(3926), - [sym_discard] = ACTIONS(3926), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3926), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_from] = ACTIONS(3926), - [anon_sym_into] = ACTIONS(3926), - [anon_sym_join] = ACTIONS(3926), - [anon_sym_on] = ACTIONS(3926), - [anon_sym_equals] = ACTIONS(3926), - [anon_sym_let] = ACTIONS(3926), - [anon_sym_orderby] = ACTIONS(3926), - [anon_sym_ascending] = ACTIONS(3926), - [anon_sym_descending] = ACTIONS(3926), - [anon_sym_group] = ACTIONS(3926), - [anon_sym_by] = ACTIONS(3926), - [anon_sym_select] = ACTIONS(3926), - [anon_sym_as] = ACTIONS(3926), - [anon_sym_is] = ACTIONS(3926), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3926), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3928), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2715] = { [sym_preproc_region] = STATE(2715), @@ -436363,69 +446917,69 @@ 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(4537), - [anon_sym_extern] = ACTIONS(4537), - [anon_sym_alias] = ACTIONS(4537), - [anon_sym_global] = ACTIONS(4537), - [anon_sym_using] = ACTIONS(4537), - [anon_sym_unsafe] = ACTIONS(4537), - [anon_sym_static] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4539), - [anon_sym_LPAREN] = ACTIONS(4539), - [anon_sym_event] = ACTIONS(4537), - [anon_sym_namespace] = ACTIONS(4537), - [anon_sym_class] = ACTIONS(4537), - [anon_sym_ref] = ACTIONS(4537), - [anon_sym_struct] = ACTIONS(4537), - [anon_sym_enum] = ACTIONS(4537), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_interface] = ACTIONS(4537), - [anon_sym_delegate] = ACTIONS(4537), - [anon_sym_record] = ACTIONS(4537), - [anon_sym_abstract] = ACTIONS(4537), - [anon_sym_async] = ACTIONS(4537), - [anon_sym_const] = ACTIONS(4537), - [anon_sym_file] = ACTIONS(4537), - [anon_sym_fixed] = ACTIONS(4537), - [anon_sym_internal] = ACTIONS(4537), - [anon_sym_new] = ACTIONS(4537), - [anon_sym_override] = ACTIONS(4537), - [anon_sym_partial] = ACTIONS(4537), - [anon_sym_private] = ACTIONS(4537), - [anon_sym_protected] = ACTIONS(4537), - [anon_sym_public] = ACTIONS(4537), - [anon_sym_readonly] = ACTIONS(4537), - [anon_sym_required] = ACTIONS(4537), - [anon_sym_sealed] = ACTIONS(4537), - [anon_sym_virtual] = ACTIONS(4537), - [anon_sym_volatile] = ACTIONS(4537), - [anon_sym_where] = ACTIONS(4537), - [anon_sym_notnull] = ACTIONS(4537), - [anon_sym_unmanaged] = ACTIONS(4537), - [anon_sym_TILDE] = ACTIONS(4539), - [anon_sym_implicit] = ACTIONS(4537), - [anon_sym_explicit] = ACTIONS(4537), - [anon_sym_scoped] = ACTIONS(4537), - [anon_sym_var] = ACTIONS(4537), - [sym_predefined_type] = ACTIONS(4537), - [anon_sym_yield] = ACTIONS(4537), - [anon_sym_when] = ACTIONS(4537), - [anon_sym_from] = ACTIONS(4537), - [anon_sym_into] = ACTIONS(4537), - [anon_sym_join] = ACTIONS(4537), - [anon_sym_on] = ACTIONS(4537), - [anon_sym_equals] = ACTIONS(4537), - [anon_sym_let] = ACTIONS(4537), - [anon_sym_orderby] = ACTIONS(4537), - [anon_sym_ascending] = ACTIONS(4537), - [anon_sym_descending] = ACTIONS(4537), - [anon_sym_group] = ACTIONS(4537), - [anon_sym_by] = ACTIONS(4537), - [anon_sym_select] = ACTIONS(4537), - [aux_sym_preproc_if_token1] = ACTIONS(4539), - [aux_sym_preproc_if_token3] = ACTIONS(4539), - [aux_sym_preproc_else_token1] = ACTIONS(4539), - [aux_sym_preproc_elif_token1] = ACTIONS(4539), + [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), @@ -436438,6 +446992,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -436447,69 +447005,65 @@ 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(4541), - [anon_sym_extern] = ACTIONS(4541), - [anon_sym_alias] = ACTIONS(4541), - [anon_sym_global] = ACTIONS(4541), - [anon_sym_using] = ACTIONS(4541), - [anon_sym_unsafe] = ACTIONS(4541), - [anon_sym_static] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(4543), - [anon_sym_LPAREN] = ACTIONS(4543), - [anon_sym_event] = ACTIONS(4541), - [anon_sym_namespace] = ACTIONS(4541), - [anon_sym_class] = ACTIONS(4541), - [anon_sym_ref] = ACTIONS(4541), - [anon_sym_struct] = ACTIONS(4541), - [anon_sym_enum] = ACTIONS(4541), - [anon_sym_RBRACE] = ACTIONS(4543), - [anon_sym_interface] = ACTIONS(4541), - [anon_sym_delegate] = ACTIONS(4541), - [anon_sym_record] = ACTIONS(4541), - [anon_sym_abstract] = ACTIONS(4541), - [anon_sym_async] = ACTIONS(4541), - [anon_sym_const] = ACTIONS(4541), - [anon_sym_file] = ACTIONS(4541), - [anon_sym_fixed] = ACTIONS(4541), - [anon_sym_internal] = ACTIONS(4541), - [anon_sym_new] = ACTIONS(4541), - [anon_sym_override] = ACTIONS(4541), - [anon_sym_partial] = ACTIONS(4541), - [anon_sym_private] = ACTIONS(4541), - [anon_sym_protected] = ACTIONS(4541), - [anon_sym_public] = ACTIONS(4541), - [anon_sym_readonly] = ACTIONS(4541), - [anon_sym_required] = ACTIONS(4541), - [anon_sym_sealed] = ACTIONS(4541), - [anon_sym_virtual] = ACTIONS(4541), - [anon_sym_volatile] = ACTIONS(4541), - [anon_sym_where] = ACTIONS(4541), - [anon_sym_notnull] = ACTIONS(4541), - [anon_sym_unmanaged] = ACTIONS(4541), - [anon_sym_TILDE] = ACTIONS(4543), - [anon_sym_implicit] = ACTIONS(4541), - [anon_sym_explicit] = ACTIONS(4541), - [anon_sym_scoped] = ACTIONS(4541), - [anon_sym_var] = ACTIONS(4541), - [sym_predefined_type] = ACTIONS(4541), - [anon_sym_yield] = ACTIONS(4541), - [anon_sym_when] = ACTIONS(4541), - [anon_sym_from] = ACTIONS(4541), - [anon_sym_into] = ACTIONS(4541), - [anon_sym_join] = ACTIONS(4541), - [anon_sym_on] = ACTIONS(4541), - [anon_sym_equals] = ACTIONS(4541), - [anon_sym_let] = ACTIONS(4541), - [anon_sym_orderby] = ACTIONS(4541), - [anon_sym_ascending] = ACTIONS(4541), - [anon_sym_descending] = ACTIONS(4541), - [anon_sym_group] = ACTIONS(4541), - [anon_sym_by] = ACTIONS(4541), - [anon_sym_select] = ACTIONS(4541), - [aux_sym_preproc_if_token1] = ACTIONS(4543), - [aux_sym_preproc_if_token3] = ACTIONS(4543), - [aux_sym_preproc_else_token1] = ACTIONS(4543), - [aux_sym_preproc_elif_token1] = ACTIONS(4543), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436531,69 +447085,69 @@ 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(4545), - [anon_sym_extern] = ACTIONS(4545), - [anon_sym_alias] = ACTIONS(4545), - [anon_sym_global] = ACTIONS(4545), - [anon_sym_using] = ACTIONS(4545), - [anon_sym_unsafe] = ACTIONS(4545), - [anon_sym_static] = ACTIONS(4545), - [anon_sym_LBRACK] = ACTIONS(4547), - [anon_sym_LPAREN] = ACTIONS(4547), - [anon_sym_event] = ACTIONS(4545), - [anon_sym_namespace] = ACTIONS(4545), - [anon_sym_class] = ACTIONS(4545), - [anon_sym_ref] = ACTIONS(4545), - [anon_sym_struct] = ACTIONS(4545), - [anon_sym_enum] = ACTIONS(4545), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_interface] = ACTIONS(4545), - [anon_sym_delegate] = ACTIONS(4545), - [anon_sym_record] = ACTIONS(4545), - [anon_sym_abstract] = ACTIONS(4545), - [anon_sym_async] = ACTIONS(4545), - [anon_sym_const] = ACTIONS(4545), - [anon_sym_file] = ACTIONS(4545), - [anon_sym_fixed] = ACTIONS(4545), - [anon_sym_internal] = ACTIONS(4545), - [anon_sym_new] = ACTIONS(4545), - [anon_sym_override] = ACTIONS(4545), - [anon_sym_partial] = ACTIONS(4545), - [anon_sym_private] = ACTIONS(4545), - [anon_sym_protected] = ACTIONS(4545), - [anon_sym_public] = ACTIONS(4545), - [anon_sym_readonly] = ACTIONS(4545), - [anon_sym_required] = ACTIONS(4545), - [anon_sym_sealed] = ACTIONS(4545), - [anon_sym_virtual] = ACTIONS(4545), - [anon_sym_volatile] = ACTIONS(4545), - [anon_sym_where] = ACTIONS(4545), - [anon_sym_notnull] = ACTIONS(4545), - [anon_sym_unmanaged] = ACTIONS(4545), - [anon_sym_TILDE] = ACTIONS(4547), - [anon_sym_implicit] = ACTIONS(4545), - [anon_sym_explicit] = ACTIONS(4545), - [anon_sym_scoped] = ACTIONS(4545), - [anon_sym_var] = ACTIONS(4545), - [sym_predefined_type] = ACTIONS(4545), - [anon_sym_yield] = ACTIONS(4545), - [anon_sym_when] = ACTIONS(4545), - [anon_sym_from] = ACTIONS(4545), - [anon_sym_into] = ACTIONS(4545), - [anon_sym_join] = ACTIONS(4545), - [anon_sym_on] = ACTIONS(4545), - [anon_sym_equals] = ACTIONS(4545), - [anon_sym_let] = ACTIONS(4545), - [anon_sym_orderby] = ACTIONS(4545), - [anon_sym_ascending] = ACTIONS(4545), - [anon_sym_descending] = ACTIONS(4545), - [anon_sym_group] = ACTIONS(4545), - [anon_sym_by] = ACTIONS(4545), - [anon_sym_select] = ACTIONS(4545), - [aux_sym_preproc_if_token1] = ACTIONS(4547), - [aux_sym_preproc_if_token3] = ACTIONS(4547), - [aux_sym_preproc_else_token1] = ACTIONS(4547), - [aux_sym_preproc_elif_token1] = ACTIONS(4547), + [sym__identifier_token] = ACTIONS(4429), + [anon_sym_extern] = ACTIONS(4429), + [anon_sym_alias] = ACTIONS(4429), + [anon_sym_global] = ACTIONS(4429), + [anon_sym_using] = ACTIONS(4429), + [anon_sym_unsafe] = ACTIONS(4429), + [anon_sym_static] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_event] = ACTIONS(4429), + [anon_sym_namespace] = ACTIONS(4429), + [anon_sym_class] = ACTIONS(4429), + [anon_sym_ref] = ACTIONS(4429), + [anon_sym_struct] = ACTIONS(4429), + [anon_sym_enum] = ACTIONS(4429), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_interface] = ACTIONS(4429), + [anon_sym_delegate] = ACTIONS(4429), + [anon_sym_record] = ACTIONS(4429), + [anon_sym_abstract] = ACTIONS(4429), + [anon_sym_async] = ACTIONS(4429), + [anon_sym_const] = ACTIONS(4429), + [anon_sym_file] = ACTIONS(4429), + [anon_sym_fixed] = ACTIONS(4429), + [anon_sym_internal] = ACTIONS(4429), + [anon_sym_new] = ACTIONS(4429), + [anon_sym_override] = ACTIONS(4429), + [anon_sym_partial] = ACTIONS(4429), + [anon_sym_private] = ACTIONS(4429), + [anon_sym_protected] = ACTIONS(4429), + [anon_sym_public] = ACTIONS(4429), + [anon_sym_readonly] = ACTIONS(4429), + [anon_sym_required] = ACTIONS(4429), + [anon_sym_sealed] = ACTIONS(4429), + [anon_sym_virtual] = ACTIONS(4429), + [anon_sym_volatile] = ACTIONS(4429), + [anon_sym_where] = ACTIONS(4429), + [anon_sym_notnull] = ACTIONS(4429), + [anon_sym_unmanaged] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4431), + [anon_sym_implicit] = ACTIONS(4429), + [anon_sym_explicit] = ACTIONS(4429), + [anon_sym_scoped] = ACTIONS(4429), + [anon_sym_var] = ACTIONS(4429), + [sym_predefined_type] = ACTIONS(4429), + [anon_sym_yield] = ACTIONS(4429), + [anon_sym_when] = ACTIONS(4429), + [anon_sym_from] = ACTIONS(4429), + [anon_sym_into] = ACTIONS(4429), + [anon_sym_join] = ACTIONS(4429), + [anon_sym_on] = ACTIONS(4429), + [anon_sym_equals] = ACTIONS(4429), + [anon_sym_let] = ACTIONS(4429), + [anon_sym_orderby] = ACTIONS(4429), + [anon_sym_ascending] = ACTIONS(4429), + [anon_sym_descending] = ACTIONS(4429), + [anon_sym_group] = ACTIONS(4429), + [anon_sym_by] = ACTIONS(4429), + [anon_sym_select] = ACTIONS(4429), + [aux_sym_preproc_if_token1] = ACTIONS(4431), + [aux_sym_preproc_if_token3] = ACTIONS(4431), + [aux_sym_preproc_else_token1] = ACTIONS(4431), + [aux_sym_preproc_elif_token1] = ACTIONS(4431), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436615,69 +447169,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), - [anon_sym_SEMI] = ACTIONS(4084), - [anon_sym_EQ] = ACTIONS(4086), - [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_RBRACE] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_in] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [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_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [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), + [sym__identifier_token] = ACTIONS(4433), + [anon_sym_extern] = ACTIONS(4433), + [anon_sym_alias] = ACTIONS(4433), + [anon_sym_global] = ACTIONS(4433), + [anon_sym_using] = ACTIONS(4433), + [anon_sym_unsafe] = ACTIONS(4433), + [anon_sym_static] = ACTIONS(4433), + [anon_sym_LBRACK] = ACTIONS(4435), + [anon_sym_LPAREN] = ACTIONS(4435), + [anon_sym_event] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_class] = ACTIONS(4433), + [anon_sym_ref] = ACTIONS(4433), + [anon_sym_struct] = ACTIONS(4433), + [anon_sym_enum] = ACTIONS(4433), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_interface] = ACTIONS(4433), + [anon_sym_delegate] = ACTIONS(4433), + [anon_sym_record] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(4433), + [anon_sym_async] = ACTIONS(4433), + [anon_sym_const] = ACTIONS(4433), + [anon_sym_file] = ACTIONS(4433), + [anon_sym_fixed] = ACTIONS(4433), + [anon_sym_internal] = ACTIONS(4433), + [anon_sym_new] = ACTIONS(4433), + [anon_sym_override] = ACTIONS(4433), + [anon_sym_partial] = ACTIONS(4433), + [anon_sym_private] = ACTIONS(4433), + [anon_sym_protected] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4433), + [anon_sym_readonly] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_sealed] = ACTIONS(4433), + [anon_sym_virtual] = ACTIONS(4433), + [anon_sym_volatile] = ACTIONS(4433), + [anon_sym_where] = ACTIONS(4433), + [anon_sym_notnull] = ACTIONS(4433), + [anon_sym_unmanaged] = ACTIONS(4433), + [anon_sym_TILDE] = ACTIONS(4435), + [anon_sym_implicit] = ACTIONS(4433), + [anon_sym_explicit] = ACTIONS(4433), + [anon_sym_scoped] = ACTIONS(4433), + [anon_sym_var] = ACTIONS(4433), + [sym_predefined_type] = ACTIONS(4433), + [anon_sym_yield] = ACTIONS(4433), + [anon_sym_when] = ACTIONS(4433), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_into] = ACTIONS(4433), + [anon_sym_join] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_equals] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_orderby] = ACTIONS(4433), + [anon_sym_ascending] = ACTIONS(4433), + [anon_sym_descending] = ACTIONS(4433), + [anon_sym_group] = ACTIONS(4433), + [anon_sym_by] = ACTIONS(4433), + [anon_sym_select] = ACTIONS(4433), + [aux_sym_preproc_if_token1] = ACTIONS(4435), + [aux_sym_preproc_if_token3] = ACTIONS(4435), + [aux_sym_preproc_else_token1] = ACTIONS(4435), + [aux_sym_preproc_elif_token1] = ACTIONS(4435), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436699,69 +447253,69 @@ 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), - [sym__identifier_token] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(3365), - [anon_sym_alias] = ACTIONS(3365), - [anon_sym_global] = ACTIONS(3365), - [anon_sym_using] = ACTIONS(3365), - [anon_sym_unsafe] = ACTIONS(3365), - [anon_sym_static] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_event] = ACTIONS(3365), - [anon_sym_namespace] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_ref] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3365), - [anon_sym_enum] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3365), - [anon_sym_delegate] = ACTIONS(3365), - [anon_sym_record] = ACTIONS(3365), - [anon_sym_abstract] = ACTIONS(3365), - [anon_sym_async] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3365), - [anon_sym_file] = ACTIONS(3365), - [anon_sym_fixed] = ACTIONS(3365), - [anon_sym_internal] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_override] = ACTIONS(3365), - [anon_sym_partial] = ACTIONS(3365), - [anon_sym_private] = ACTIONS(3365), - [anon_sym_protected] = ACTIONS(3365), - [anon_sym_public] = ACTIONS(3365), - [anon_sym_readonly] = ACTIONS(3365), - [anon_sym_required] = ACTIONS(3365), - [anon_sym_sealed] = ACTIONS(3365), - [anon_sym_virtual] = ACTIONS(3365), - [anon_sym_volatile] = ACTIONS(3365), - [anon_sym_where] = ACTIONS(3365), - [anon_sym_notnull] = ACTIONS(3365), - [anon_sym_unmanaged] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_implicit] = ACTIONS(3365), - [anon_sym_explicit] = ACTIONS(3365), - [anon_sym_scoped] = ACTIONS(3365), - [anon_sym_var] = ACTIONS(3365), - [sym_predefined_type] = ACTIONS(3365), - [anon_sym_yield] = ACTIONS(3365), - [anon_sym_when] = ACTIONS(3365), - [anon_sym_from] = ACTIONS(3365), - [anon_sym_into] = ACTIONS(3365), - [anon_sym_join] = ACTIONS(3365), - [anon_sym_on] = ACTIONS(3365), - [anon_sym_equals] = ACTIONS(3365), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_orderby] = ACTIONS(3365), - [anon_sym_ascending] = ACTIONS(3365), - [anon_sym_descending] = ACTIONS(3365), - [anon_sym_group] = ACTIONS(3365), - [anon_sym_by] = ACTIONS(3365), - [anon_sym_select] = ACTIONS(3365), - [aux_sym_preproc_if_token1] = ACTIONS(3367), - [aux_sym_preproc_if_token3] = ACTIONS(3367), - [aux_sym_preproc_else_token1] = ACTIONS(3367), - [aux_sym_preproc_elif_token1] = ACTIONS(3367), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436783,69 +447337,69 @@ 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(4549), - [anon_sym_extern] = ACTIONS(4549), - [anon_sym_alias] = ACTIONS(4549), - [anon_sym_global] = ACTIONS(4549), - [anon_sym_using] = ACTIONS(4549), - [anon_sym_unsafe] = ACTIONS(4549), - [anon_sym_static] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4551), - [anon_sym_LPAREN] = ACTIONS(4551), - [anon_sym_event] = ACTIONS(4549), - [anon_sym_namespace] = ACTIONS(4549), - [anon_sym_class] = ACTIONS(4549), - [anon_sym_ref] = ACTIONS(4549), - [anon_sym_struct] = ACTIONS(4549), - [anon_sym_enum] = ACTIONS(4549), - [anon_sym_RBRACE] = ACTIONS(4551), - [anon_sym_interface] = ACTIONS(4549), - [anon_sym_delegate] = ACTIONS(4549), - [anon_sym_record] = ACTIONS(4549), - [anon_sym_abstract] = ACTIONS(4549), - [anon_sym_async] = ACTIONS(4549), - [anon_sym_const] = ACTIONS(4549), - [anon_sym_file] = ACTIONS(4549), - [anon_sym_fixed] = ACTIONS(4549), - [anon_sym_internal] = ACTIONS(4549), - [anon_sym_new] = ACTIONS(4549), - [anon_sym_override] = ACTIONS(4549), - [anon_sym_partial] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4549), - [anon_sym_public] = ACTIONS(4549), - [anon_sym_readonly] = ACTIONS(4549), - [anon_sym_required] = ACTIONS(4549), - [anon_sym_sealed] = ACTIONS(4549), - [anon_sym_virtual] = ACTIONS(4549), - [anon_sym_volatile] = ACTIONS(4549), - [anon_sym_where] = ACTIONS(4549), - [anon_sym_notnull] = ACTIONS(4549), - [anon_sym_unmanaged] = ACTIONS(4549), - [anon_sym_TILDE] = ACTIONS(4551), - [anon_sym_implicit] = ACTIONS(4549), - [anon_sym_explicit] = ACTIONS(4549), - [anon_sym_scoped] = ACTIONS(4549), - [anon_sym_var] = ACTIONS(4549), - [sym_predefined_type] = ACTIONS(4549), - [anon_sym_yield] = ACTIONS(4549), - [anon_sym_when] = ACTIONS(4549), - [anon_sym_from] = ACTIONS(4549), - [anon_sym_into] = ACTIONS(4549), - [anon_sym_join] = ACTIONS(4549), - [anon_sym_on] = ACTIONS(4549), - [anon_sym_equals] = ACTIONS(4549), - [anon_sym_let] = ACTIONS(4549), - [anon_sym_orderby] = ACTIONS(4549), - [anon_sym_ascending] = ACTIONS(4549), - [anon_sym_descending] = ACTIONS(4549), - [anon_sym_group] = ACTIONS(4549), - [anon_sym_by] = ACTIONS(4549), - [anon_sym_select] = ACTIONS(4549), - [aux_sym_preproc_if_token1] = ACTIONS(4551), - [aux_sym_preproc_if_token3] = ACTIONS(4551), - [aux_sym_preproc_else_token1] = ACTIONS(4551), - [aux_sym_preproc_elif_token1] = ACTIONS(4551), + [sym__identifier_token] = ACTIONS(4437), + [anon_sym_extern] = ACTIONS(4437), + [anon_sym_alias] = ACTIONS(4437), + [anon_sym_global] = ACTIONS(4437), + [anon_sym_using] = ACTIONS(4437), + [anon_sym_unsafe] = ACTIONS(4437), + [anon_sym_static] = ACTIONS(4437), + [anon_sym_LBRACK] = ACTIONS(4439), + [anon_sym_LPAREN] = ACTIONS(4439), + [anon_sym_event] = ACTIONS(4437), + [anon_sym_namespace] = ACTIONS(4437), + [anon_sym_class] = ACTIONS(4437), + [anon_sym_ref] = ACTIONS(4437), + [anon_sym_struct] = ACTIONS(4437), + [anon_sym_enum] = ACTIONS(4437), + [anon_sym_RBRACE] = ACTIONS(4439), + [anon_sym_interface] = ACTIONS(4437), + [anon_sym_delegate] = ACTIONS(4437), + [anon_sym_record] = ACTIONS(4437), + [anon_sym_abstract] = ACTIONS(4437), + [anon_sym_async] = ACTIONS(4437), + [anon_sym_const] = ACTIONS(4437), + [anon_sym_file] = ACTIONS(4437), + [anon_sym_fixed] = ACTIONS(4437), + [anon_sym_internal] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4437), + [anon_sym_override] = ACTIONS(4437), + [anon_sym_partial] = ACTIONS(4437), + [anon_sym_private] = ACTIONS(4437), + [anon_sym_protected] = ACTIONS(4437), + [anon_sym_public] = ACTIONS(4437), + [anon_sym_readonly] = ACTIONS(4437), + [anon_sym_required] = ACTIONS(4437), + [anon_sym_sealed] = ACTIONS(4437), + [anon_sym_virtual] = ACTIONS(4437), + [anon_sym_volatile] = ACTIONS(4437), + [anon_sym_where] = ACTIONS(4437), + [anon_sym_notnull] = ACTIONS(4437), + [anon_sym_unmanaged] = ACTIONS(4437), + [anon_sym_TILDE] = ACTIONS(4439), + [anon_sym_implicit] = ACTIONS(4437), + [anon_sym_explicit] = ACTIONS(4437), + [anon_sym_scoped] = ACTIONS(4437), + [anon_sym_var] = ACTIONS(4437), + [sym_predefined_type] = ACTIONS(4437), + [anon_sym_yield] = ACTIONS(4437), + [anon_sym_when] = ACTIONS(4437), + [anon_sym_from] = ACTIONS(4437), + [anon_sym_into] = ACTIONS(4437), + [anon_sym_join] = ACTIONS(4437), + [anon_sym_on] = ACTIONS(4437), + [anon_sym_equals] = ACTIONS(4437), + [anon_sym_let] = ACTIONS(4437), + [anon_sym_orderby] = ACTIONS(4437), + [anon_sym_ascending] = ACTIONS(4437), + [anon_sym_descending] = ACTIONS(4437), + [anon_sym_group] = ACTIONS(4437), + [anon_sym_by] = ACTIONS(4437), + [anon_sym_select] = ACTIONS(4437), + [aux_sym_preproc_if_token1] = ACTIONS(4439), + [aux_sym_preproc_if_token3] = ACTIONS(4439), + [aux_sym_preproc_else_token1] = ACTIONS(4439), + [aux_sym_preproc_elif_token1] = ACTIONS(4439), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -436867,79 +447421,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(3373), - [anon_sym_extern] = ACTIONS(3373), - [anon_sym_alias] = ACTIONS(3373), - [anon_sym_global] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_unsafe] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_event] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_ref] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_delegate] = ACTIONS(3373), - [anon_sym_record] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_file] = ACTIONS(3373), - [anon_sym_fixed] = ACTIONS(3373), - [anon_sym_internal] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_partial] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_required] = ACTIONS(3373), - [anon_sym_sealed] = ACTIONS(3373), - [anon_sym_virtual] = ACTIONS(3373), - [anon_sym_volatile] = ACTIONS(3373), - [anon_sym_where] = ACTIONS(3373), - [anon_sym_notnull] = ACTIONS(3373), - [anon_sym_unmanaged] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_implicit] = ACTIONS(3373), - [anon_sym_explicit] = ACTIONS(3373), - [anon_sym_scoped] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [sym_predefined_type] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_when] = ACTIONS(3373), - [anon_sym_from] = ACTIONS(3373), - [anon_sym_into] = ACTIONS(3373), - [anon_sym_join] = ACTIONS(3373), - [anon_sym_on] = ACTIONS(3373), - [anon_sym_equals] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_orderby] = ACTIONS(3373), - [anon_sym_ascending] = ACTIONS(3373), - [anon_sym_descending] = ACTIONS(3373), - [anon_sym_group] = ACTIONS(3373), - [anon_sym_by] = ACTIONS(3373), - [anon_sym_select] = ACTIONS(3373), - [aux_sym_preproc_if_token1] = ACTIONS(3375), - [aux_sym_preproc_if_token3] = ACTIONS(3375), - [aux_sym_preproc_else_token1] = ACTIONS(3375), - [aux_sym_preproc_elif_token1] = ACTIONS(3375), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2722] = { [sym_preproc_region] = STATE(2722), @@ -436951,69 +447505,68 @@ 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(4553), - [anon_sym_extern] = ACTIONS(4553), - [anon_sym_alias] = ACTIONS(4553), - [anon_sym_global] = ACTIONS(4553), - [anon_sym_using] = ACTIONS(4553), - [anon_sym_unsafe] = ACTIONS(4553), - [anon_sym_static] = ACTIONS(4553), - [anon_sym_LBRACK] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4555), - [anon_sym_event] = ACTIONS(4553), - [anon_sym_namespace] = ACTIONS(4553), - [anon_sym_class] = ACTIONS(4553), - [anon_sym_ref] = ACTIONS(4553), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_RBRACE] = ACTIONS(4555), - [anon_sym_interface] = ACTIONS(4553), - [anon_sym_delegate] = ACTIONS(4553), - [anon_sym_record] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_async] = ACTIONS(4553), - [anon_sym_const] = ACTIONS(4553), - [anon_sym_file] = ACTIONS(4553), - [anon_sym_fixed] = ACTIONS(4553), - [anon_sym_internal] = ACTIONS(4553), - [anon_sym_new] = ACTIONS(4553), - [anon_sym_override] = ACTIONS(4553), - [anon_sym_partial] = ACTIONS(4553), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_public] = ACTIONS(4553), - [anon_sym_readonly] = ACTIONS(4553), - [anon_sym_required] = ACTIONS(4553), - [anon_sym_sealed] = ACTIONS(4553), - [anon_sym_virtual] = ACTIONS(4553), - [anon_sym_volatile] = ACTIONS(4553), - [anon_sym_where] = ACTIONS(4553), - [anon_sym_notnull] = ACTIONS(4553), - [anon_sym_unmanaged] = ACTIONS(4553), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_implicit] = ACTIONS(4553), - [anon_sym_explicit] = ACTIONS(4553), - [anon_sym_scoped] = ACTIONS(4553), - [anon_sym_var] = ACTIONS(4553), - [sym_predefined_type] = ACTIONS(4553), - [anon_sym_yield] = ACTIONS(4553), - [anon_sym_when] = ACTIONS(4553), - [anon_sym_from] = ACTIONS(4553), - [anon_sym_into] = ACTIONS(4553), - [anon_sym_join] = ACTIONS(4553), - [anon_sym_on] = ACTIONS(4553), - [anon_sym_equals] = ACTIONS(4553), - [anon_sym_let] = ACTIONS(4553), - [anon_sym_orderby] = ACTIONS(4553), - [anon_sym_ascending] = ACTIONS(4553), - [anon_sym_descending] = ACTIONS(4553), - [anon_sym_group] = ACTIONS(4553), - [anon_sym_by] = ACTIONS(4553), - [anon_sym_select] = ACTIONS(4553), - [aux_sym_preproc_if_token1] = ACTIONS(4555), - [aux_sym_preproc_if_token3] = ACTIONS(4555), - [aux_sym_preproc_else_token1] = ACTIONS(4555), - [aux_sym_preproc_elif_token1] = ACTIONS(4555), + [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), @@ -437024,6 +447577,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(3662), }, [2723] = { [sym_preproc_region] = STATE(2723), @@ -437035,79 +447589,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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2724] = { [sym_preproc_region] = STATE(2724), @@ -437119,79 +447673,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(3377), - [anon_sym_extern] = ACTIONS(3377), - [anon_sym_alias] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_unsafe] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_event] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_ref] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_delegate] = ACTIONS(3377), - [anon_sym_record] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_file] = ACTIONS(3377), - [anon_sym_fixed] = ACTIONS(3377), - [anon_sym_internal] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_partial] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_required] = ACTIONS(3377), - [anon_sym_sealed] = ACTIONS(3377), - [anon_sym_virtual] = ACTIONS(3377), - [anon_sym_volatile] = ACTIONS(3377), - [anon_sym_where] = ACTIONS(3377), - [anon_sym_notnull] = ACTIONS(3377), - [anon_sym_unmanaged] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_implicit] = ACTIONS(3377), - [anon_sym_explicit] = ACTIONS(3377), - [anon_sym_scoped] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [sym_predefined_type] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_when] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3377), - [anon_sym_into] = ACTIONS(3377), - [anon_sym_join] = ACTIONS(3377), - [anon_sym_on] = ACTIONS(3377), - [anon_sym_equals] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_orderby] = ACTIONS(3377), - [anon_sym_ascending] = ACTIONS(3377), - [anon_sym_descending] = ACTIONS(3377), - [anon_sym_group] = ACTIONS(3377), - [anon_sym_by] = ACTIONS(3377), - [anon_sym_select] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3379), - [aux_sym_preproc_if_token3] = ACTIONS(3379), - [aux_sym_preproc_else_token1] = ACTIONS(3379), - [aux_sym_preproc_elif_token1] = ACTIONS(3379), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2725] = { [sym_preproc_region] = STATE(2725), @@ -437203,79 +447757,79 @@ 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), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3627), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_when] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3627), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -437287,79 +447841,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2726), [sym_preproc_define] = STATE(2726), [sym_preproc_undef] = STATE(2726), - [sym__identifier_token] = ACTIONS(3621), - [anon_sym_alias] = ACTIONS(3621), - [anon_sym_global] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_file] = ACTIONS(3621), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_notnull] = ACTIONS(3621), - [anon_sym_unmanaged] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_scoped] = ACTIONS(3621), - [anon_sym_var] = ACTIONS(3621), - [anon_sym_yield] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3621), - [anon_sym_when] = ACTIONS(3621), - [sym_discard] = ACTIONS(3621), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3621), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_from] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3621), - [anon_sym_join] = ACTIONS(3621), - [anon_sym_on] = ACTIONS(3621), - [anon_sym_equals] = ACTIONS(3621), - [anon_sym_let] = ACTIONS(3621), - [anon_sym_orderby] = ACTIONS(3621), - [anon_sym_ascending] = ACTIONS(3621), - [anon_sym_descending] = ACTIONS(3621), - [anon_sym_group] = ACTIONS(3621), - [anon_sym_by] = ACTIONS(3621), - [anon_sym_select] = ACTIONS(3621), - [anon_sym_as] = ACTIONS(3621), - [anon_sym_is] = ACTIONS(3621), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3621), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3623), + [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), @@ -437371,79 +447925,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2727), [sym_preproc_define] = STATE(2727), [sym_preproc_undef] = STATE(2727), - [sym__identifier_token] = ACTIONS(3922), - [anon_sym_alias] = ACTIONS(3922), - [anon_sym_global] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_file] = ACTIONS(3922), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_where] = ACTIONS(3922), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_notnull] = ACTIONS(3922), - [anon_sym_unmanaged] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_scoped] = ACTIONS(3922), - [anon_sym_var] = ACTIONS(3922), - [anon_sym_yield] = ACTIONS(3922), - [anon_sym_switch] = ACTIONS(3922), - [anon_sym_when] = ACTIONS(3922), - [sym_discard] = ACTIONS(3922), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3922), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_from] = ACTIONS(3922), - [anon_sym_into] = ACTIONS(3922), - [anon_sym_join] = ACTIONS(3922), - [anon_sym_on] = ACTIONS(3922), - [anon_sym_equals] = ACTIONS(3922), - [anon_sym_let] = ACTIONS(3922), - [anon_sym_orderby] = ACTIONS(3922), - [anon_sym_ascending] = ACTIONS(3922), - [anon_sym_descending] = ACTIONS(3922), - [anon_sym_group] = ACTIONS(3922), - [anon_sym_by] = ACTIONS(3922), - [anon_sym_select] = ACTIONS(3922), - [anon_sym_as] = ACTIONS(3922), - [anon_sym_is] = ACTIONS(3922), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3922), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3924), + [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), @@ -437455,69 +448009,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2728), [sym_preproc_define] = STATE(2728), [sym_preproc_undef] = STATE(2728), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -437539,79 +448093,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2729), [sym_preproc_define] = STATE(2729), [sym_preproc_undef] = STATE(2729), - [sym__identifier_token] = ACTIONS(4033), - [anon_sym_alias] = ACTIONS(4033), - [anon_sym_global] = ACTIONS(4033), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_file] = ACTIONS(4033), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(4033), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_notnull] = ACTIONS(4033), - [anon_sym_unmanaged] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_scoped] = ACTIONS(4033), - [anon_sym_var] = ACTIONS(4033), - [anon_sym_yield] = ACTIONS(4033), - [anon_sym_switch] = ACTIONS(4033), - [anon_sym_when] = ACTIONS(4033), - [sym_discard] = ACTIONS(4033), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4033), - [anon_sym_or] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_from] = ACTIONS(4033), - [anon_sym_into] = ACTIONS(4033), - [anon_sym_join] = ACTIONS(4033), - [anon_sym_on] = ACTIONS(4033), - [anon_sym_equals] = ACTIONS(4033), - [anon_sym_let] = ACTIONS(4033), - [anon_sym_orderby] = ACTIONS(4033), - [anon_sym_ascending] = ACTIONS(4033), - [anon_sym_descending] = ACTIONS(4033), - [anon_sym_group] = ACTIONS(4033), - [anon_sym_by] = ACTIONS(4033), - [anon_sym_select] = ACTIONS(4033), - [anon_sym_as] = ACTIONS(4033), - [anon_sym_is] = ACTIONS(4033), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4033), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4035), + [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), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2730] = { [sym_preproc_region] = STATE(2730), @@ -437623,81 +448177,85 @@ 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(3861), - [anon_sym_alias] = ACTIONS(3861), - [anon_sym_global] = ACTIONS(3861), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_file] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_where] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_notnull] = ACTIONS(3861), - [anon_sym_unmanaged] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_scoped] = ACTIONS(3861), - [anon_sym_var] = ACTIONS(3861), - [anon_sym_yield] = ACTIONS(3861), - [anon_sym_switch] = ACTIONS(3861), - [anon_sym_when] = ACTIONS(3861), - [sym_discard] = ACTIONS(3861), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3861), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_from] = ACTIONS(3861), - [anon_sym_into] = ACTIONS(3861), - [anon_sym_join] = ACTIONS(3861), - [anon_sym_on] = ACTIONS(3861), - [anon_sym_equals] = ACTIONS(3861), - [anon_sym_let] = ACTIONS(3861), - [anon_sym_orderby] = ACTIONS(3861), - [anon_sym_ascending] = ACTIONS(3861), - [anon_sym_descending] = ACTIONS(3861), - [anon_sym_group] = ACTIONS(3861), - [anon_sym_by] = ACTIONS(3861), - [anon_sym_select] = ACTIONS(3861), - [anon_sym_as] = ACTIONS(3861), - [anon_sym_is] = ACTIONS(3861), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3861), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3863), + [sym__identifier_token] = ACTIONS(4453), + [anon_sym_extern] = ACTIONS(4453), + [anon_sym_alias] = ACTIONS(4453), + [anon_sym_global] = ACTIONS(4453), + [anon_sym_using] = ACTIONS(4453), + [anon_sym_unsafe] = ACTIONS(4453), + [anon_sym_static] = ACTIONS(4453), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_event] = ACTIONS(4453), + [anon_sym_namespace] = ACTIONS(4453), + [anon_sym_class] = ACTIONS(4453), + [anon_sym_ref] = ACTIONS(4453), + [anon_sym_struct] = ACTIONS(4453), + [anon_sym_enum] = ACTIONS(4453), + [anon_sym_RBRACE] = ACTIONS(4455), + [anon_sym_interface] = ACTIONS(4453), + [anon_sym_delegate] = ACTIONS(4453), + [anon_sym_record] = ACTIONS(4453), + [anon_sym_abstract] = ACTIONS(4453), + [anon_sym_async] = ACTIONS(4453), + [anon_sym_const] = ACTIONS(4453), + [anon_sym_file] = ACTIONS(4453), + [anon_sym_fixed] = ACTIONS(4453), + [anon_sym_internal] = ACTIONS(4453), + [anon_sym_new] = ACTIONS(4453), + [anon_sym_override] = ACTIONS(4453), + [anon_sym_partial] = ACTIONS(4453), + [anon_sym_private] = ACTIONS(4453), + [anon_sym_protected] = ACTIONS(4453), + [anon_sym_public] = ACTIONS(4453), + [anon_sym_readonly] = ACTIONS(4453), + [anon_sym_required] = ACTIONS(4453), + [anon_sym_sealed] = ACTIONS(4453), + [anon_sym_virtual] = ACTIONS(4453), + [anon_sym_volatile] = ACTIONS(4453), + [anon_sym_where] = ACTIONS(4453), + [anon_sym_notnull] = ACTIONS(4453), + [anon_sym_unmanaged] = ACTIONS(4453), + [anon_sym_TILDE] = ACTIONS(4455), + [anon_sym_implicit] = ACTIONS(4453), + [anon_sym_explicit] = ACTIONS(4453), + [anon_sym_scoped] = ACTIONS(4453), + [anon_sym_var] = ACTIONS(4453), + [sym_predefined_type] = ACTIONS(4453), + [anon_sym_yield] = ACTIONS(4453), + [anon_sym_when] = ACTIONS(4453), + [anon_sym_from] = ACTIONS(4453), + [anon_sym_into] = ACTIONS(4453), + [anon_sym_join] = ACTIONS(4453), + [anon_sym_on] = ACTIONS(4453), + [anon_sym_equals] = ACTIONS(4453), + [anon_sym_let] = ACTIONS(4453), + [anon_sym_orderby] = ACTIONS(4453), + [anon_sym_ascending] = ACTIONS(4453), + [anon_sym_descending] = ACTIONS(4453), + [anon_sym_group] = ACTIONS(4453), + [anon_sym_by] = ACTIONS(4453), + [anon_sym_select] = ACTIONS(4453), + [aux_sym_preproc_if_token1] = ACTIONS(4455), + [aux_sym_preproc_if_token3] = ACTIONS(4455), + [aux_sym_preproc_else_token1] = ACTIONS(4455), + [aux_sym_preproc_elif_token1] = ACTIONS(4455), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(2731), [sym_preproc_endregion] = STATE(2731), [sym_preproc_line] = STATE(2731), @@ -437707,69 +448265,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(3357), - [anon_sym_extern] = ACTIONS(3357), - [anon_sym_alias] = ACTIONS(3357), - [anon_sym_global] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_unsafe] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_event] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_ref] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_delegate] = ACTIONS(3357), - [anon_sym_record] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_file] = ACTIONS(3357), - [anon_sym_fixed] = ACTIONS(3357), - [anon_sym_internal] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_partial] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_required] = ACTIONS(3357), - [anon_sym_sealed] = ACTIONS(3357), - [anon_sym_virtual] = ACTIONS(3357), - [anon_sym_volatile] = ACTIONS(3357), - [anon_sym_where] = ACTIONS(3357), - [anon_sym_notnull] = ACTIONS(3357), - [anon_sym_unmanaged] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_implicit] = ACTIONS(3357), - [anon_sym_explicit] = ACTIONS(3357), - [anon_sym_scoped] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [sym_predefined_type] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_when] = ACTIONS(3357), - [anon_sym_from] = ACTIONS(3357), - [anon_sym_into] = ACTIONS(3357), - [anon_sym_join] = ACTIONS(3357), - [anon_sym_on] = ACTIONS(3357), - [anon_sym_equals] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_orderby] = ACTIONS(3357), - [anon_sym_ascending] = ACTIONS(3357), - [anon_sym_descending] = ACTIONS(3357), - [anon_sym_group] = ACTIONS(3357), - [anon_sym_by] = ACTIONS(3357), - [anon_sym_select] = ACTIONS(3357), - [aux_sym_preproc_if_token1] = ACTIONS(3359), - [aux_sym_preproc_if_token3] = ACTIONS(3359), - [aux_sym_preproc_else_token1] = ACTIONS(3359), - [aux_sym_preproc_elif_token1] = ACTIONS(3359), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437782,10 +448336,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2732] = { - [sym__variable_designation] = STATE(4045), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), + [sym__variable_designation] = STATE(4143), + [sym_parenthesized_variable_designation] = STATE(4173), + [sym_identifier] = STATE(4177), + [sym__reserved_identifier] = STATE(2904), [sym_preproc_region] = STATE(2732), [sym_preproc_endregion] = STATE(2732), [sym_preproc_line] = STATE(2732), @@ -437795,65 +448349,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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3899), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3899), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3899), - [anon_sym_orderby] = ACTIONS(3899), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3899), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437875,69 +448429,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2733), [sym_preproc_define] = STATE(2733), [sym_preproc_undef] = STATE(2733), - [sym__identifier_token] = ACTIONS(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), + [sym__identifier_token] = ACTIONS(4457), + [anon_sym_extern] = ACTIONS(4457), + [anon_sym_alias] = ACTIONS(4457), + [anon_sym_global] = ACTIONS(4457), + [anon_sym_using] = ACTIONS(4457), + [anon_sym_unsafe] = ACTIONS(4457), + [anon_sym_static] = ACTIONS(4457), + [anon_sym_LBRACK] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(4459), + [anon_sym_event] = ACTIONS(4457), + [anon_sym_namespace] = ACTIONS(4457), + [anon_sym_class] = ACTIONS(4457), + [anon_sym_ref] = ACTIONS(4457), + [anon_sym_struct] = ACTIONS(4457), + [anon_sym_enum] = ACTIONS(4457), + [anon_sym_RBRACE] = ACTIONS(4459), + [anon_sym_interface] = ACTIONS(4457), + [anon_sym_delegate] = ACTIONS(4457), + [anon_sym_record] = ACTIONS(4457), + [anon_sym_abstract] = ACTIONS(4457), + [anon_sym_async] = ACTIONS(4457), + [anon_sym_const] = ACTIONS(4457), + [anon_sym_file] = ACTIONS(4457), + [anon_sym_fixed] = ACTIONS(4457), + [anon_sym_internal] = ACTIONS(4457), + [anon_sym_new] = ACTIONS(4457), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_partial] = ACTIONS(4457), + [anon_sym_private] = ACTIONS(4457), + [anon_sym_protected] = ACTIONS(4457), + [anon_sym_public] = ACTIONS(4457), + [anon_sym_readonly] = ACTIONS(4457), + [anon_sym_required] = ACTIONS(4457), + [anon_sym_sealed] = ACTIONS(4457), + [anon_sym_virtual] = ACTIONS(4457), + [anon_sym_volatile] = ACTIONS(4457), + [anon_sym_where] = ACTIONS(4457), + [anon_sym_notnull] = ACTIONS(4457), + [anon_sym_unmanaged] = ACTIONS(4457), + [anon_sym_TILDE] = ACTIONS(4459), + [anon_sym_implicit] = ACTIONS(4457), + [anon_sym_explicit] = ACTIONS(4457), + [anon_sym_scoped] = ACTIONS(4457), + [anon_sym_var] = ACTIONS(4457), + [sym_predefined_type] = ACTIONS(4457), + [anon_sym_yield] = ACTIONS(4457), + [anon_sym_when] = ACTIONS(4457), + [anon_sym_from] = ACTIONS(4457), + [anon_sym_into] = ACTIONS(4457), + [anon_sym_join] = ACTIONS(4457), + [anon_sym_on] = ACTIONS(4457), + [anon_sym_equals] = ACTIONS(4457), + [anon_sym_let] = ACTIONS(4457), + [anon_sym_orderby] = ACTIONS(4457), + [anon_sym_ascending] = ACTIONS(4457), + [anon_sym_descending] = ACTIONS(4457), + [anon_sym_group] = ACTIONS(4457), + [anon_sym_by] = ACTIONS(4457), + [anon_sym_select] = ACTIONS(4457), + [aux_sym_preproc_if_token1] = ACTIONS(4459), + [aux_sym_preproc_if_token3] = ACTIONS(4459), + [aux_sym_preproc_else_token1] = ACTIONS(4459), + [aux_sym_preproc_elif_token1] = ACTIONS(4459), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -437959,85 +448513,85 @@ 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(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_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), + [sym__identifier_token] = ACTIONS(4461), + [anon_sym_extern] = ACTIONS(4461), + [anon_sym_alias] = ACTIONS(4461), + [anon_sym_global] = ACTIONS(4461), + [anon_sym_using] = ACTIONS(4461), + [anon_sym_unsafe] = ACTIONS(4461), + [anon_sym_static] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_event] = ACTIONS(4461), + [anon_sym_namespace] = ACTIONS(4461), + [anon_sym_class] = ACTIONS(4461), + [anon_sym_ref] = ACTIONS(4461), + [anon_sym_struct] = ACTIONS(4461), + [anon_sym_enum] = ACTIONS(4461), + [anon_sym_RBRACE] = ACTIONS(4463), + [anon_sym_interface] = ACTIONS(4461), + [anon_sym_delegate] = ACTIONS(4461), + [anon_sym_record] = ACTIONS(4461), + [anon_sym_abstract] = ACTIONS(4461), + [anon_sym_async] = ACTIONS(4461), + [anon_sym_const] = ACTIONS(4461), + [anon_sym_file] = ACTIONS(4461), + [anon_sym_fixed] = ACTIONS(4461), + [anon_sym_internal] = ACTIONS(4461), + [anon_sym_new] = ACTIONS(4461), + [anon_sym_override] = ACTIONS(4461), + [anon_sym_partial] = ACTIONS(4461), + [anon_sym_private] = ACTIONS(4461), + [anon_sym_protected] = ACTIONS(4461), + [anon_sym_public] = ACTIONS(4461), + [anon_sym_readonly] = ACTIONS(4461), + [anon_sym_required] = ACTIONS(4461), + [anon_sym_sealed] = ACTIONS(4461), + [anon_sym_virtual] = ACTIONS(4461), + [anon_sym_volatile] = ACTIONS(4461), + [anon_sym_where] = ACTIONS(4461), + [anon_sym_notnull] = ACTIONS(4461), + [anon_sym_unmanaged] = ACTIONS(4461), + [anon_sym_TILDE] = ACTIONS(4463), + [anon_sym_implicit] = ACTIONS(4461), + [anon_sym_explicit] = ACTIONS(4461), + [anon_sym_scoped] = ACTIONS(4461), + [anon_sym_var] = ACTIONS(4461), + [sym_predefined_type] = ACTIONS(4461), + [anon_sym_yield] = ACTIONS(4461), + [anon_sym_when] = ACTIONS(4461), + [anon_sym_from] = ACTIONS(4461), + [anon_sym_into] = ACTIONS(4461), + [anon_sym_join] = ACTIONS(4461), + [anon_sym_on] = ACTIONS(4461), + [anon_sym_equals] = ACTIONS(4461), + [anon_sym_let] = ACTIONS(4461), + [anon_sym_orderby] = ACTIONS(4461), + [anon_sym_ascending] = ACTIONS(4461), + [anon_sym_descending] = ACTIONS(4461), + [anon_sym_group] = ACTIONS(4461), + [anon_sym_by] = ACTIONS(4461), + [anon_sym_select] = ACTIONS(4461), + [aux_sym_preproc_if_token1] = ACTIONS(4463), + [aux_sym_preproc_if_token3] = ACTIONS(4463), + [aux_sym_preproc_else_token1] = ACTIONS(4463), + [aux_sym_preproc_elif_token1] = ACTIONS(4463), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2735] = { - [sym__variable_designation] = STATE(4055), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), + [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), @@ -438047,65 +448601,65 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [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(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [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(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3895), - [anon_sym_orderby] = ACTIONS(3895), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3895), - [anon_sym_by] = ACTIONS(3802), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438118,6 +448672,10 @@ 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), @@ -438127,69 +448685,65 @@ 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), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_EQ_GT] = ACTIONS(3651), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_when] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3651), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3651), - [anon_sym_equals] = ACTIONS(3651), - [anon_sym_by] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), - [aux_sym_preproc_if_token3] = ACTIONS(3651), - [aux_sym_preproc_else_token1] = ACTIONS(3651), - [aux_sym_preproc_elif_token1] = ACTIONS(3651), + [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), @@ -438202,10 +448756,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2737] = { - [sym__variable_designation] = STATE(4065), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2737), [sym_preproc_endregion] = STATE(2737), [sym_preproc_line] = STATE(2737), @@ -438215,75 +448765,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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3847), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3847), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3847), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3847), - [anon_sym_orderby] = ACTIONS(3847), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3847), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3847), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2738] = { [sym_preproc_region] = STATE(2738), @@ -438295,69 +448849,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), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(4092), - [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_RBRACE] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_in] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [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_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [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), + [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), @@ -438370,6 +448924,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_preproc_region] = STATE(2739), [sym_preproc_endregion] = STATE(2739), [sym_preproc_line] = STATE(2739), @@ -438379,69 +448937,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438454,6 +449008,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_preproc_region] = STATE(2740), [sym_preproc_endregion] = STATE(2740), [sym_preproc_line] = STATE(2740), @@ -438463,69 +449021,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438547,69 +449101,69 @@ 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(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), + [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), @@ -438622,6 +449176,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_preproc_region] = STATE(2742), [sym_preproc_endregion] = STATE(2742), [sym_preproc_line] = STATE(2742), @@ -438631,69 +449189,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438706,6 +449260,10 @@ 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), @@ -438715,79 +449273,75 @@ 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(3936), - [anon_sym_alias] = ACTIONS(3936), - [anon_sym_global] = ACTIONS(3936), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_file] = ACTIONS(3936), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_where] = ACTIONS(3936), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_notnull] = ACTIONS(3936), - [anon_sym_unmanaged] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_scoped] = ACTIONS(3936), - [anon_sym_var] = ACTIONS(3936), - [anon_sym_yield] = ACTIONS(3936), - [anon_sym_switch] = ACTIONS(3936), - [anon_sym_when] = ACTIONS(3936), - [sym_discard] = ACTIONS(3936), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3936), - [anon_sym_or] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_from] = ACTIONS(3936), - [anon_sym_into] = ACTIONS(3936), - [anon_sym_join] = ACTIONS(3936), - [anon_sym_on] = ACTIONS(3936), - [anon_sym_equals] = ACTIONS(3936), - [anon_sym_let] = ACTIONS(3936), - [anon_sym_orderby] = ACTIONS(3936), - [anon_sym_ascending] = ACTIONS(3936), - [anon_sym_descending] = ACTIONS(3936), - [anon_sym_group] = ACTIONS(3936), - [anon_sym_by] = ACTIONS(3936), - [anon_sym_select] = ACTIONS(3936), - [anon_sym_as] = ACTIONS(3936), - [anon_sym_is] = ACTIONS(3936), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3936), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3938), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2744] = { [sym_preproc_region] = STATE(2744), @@ -438799,69 +449353,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2744), [sym_preproc_define] = STATE(2744), [sym_preproc_undef] = STATE(2744), - [sym__identifier_token] = ACTIONS(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_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_if_token3] = ACTIONS(3311), - [aux_sym_preproc_else_token1] = ACTIONS(3311), - [aux_sym_preproc_elif_token1] = ACTIONS(3311), + [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), @@ -438883,79 +449437,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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2746] = { [sym_preproc_region] = STATE(2746), @@ -438967,79 +449521,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4585), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4423), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [sym__identifier_token] = ACTIONS(4477), + [anon_sym_extern] = ACTIONS(4477), + [anon_sym_alias] = ACTIONS(4477), + [anon_sym_global] = ACTIONS(4477), + [anon_sym_using] = ACTIONS(4477), + [anon_sym_unsafe] = ACTIONS(4477), + [anon_sym_static] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4479), + [anon_sym_event] = ACTIONS(4477), + [anon_sym_namespace] = ACTIONS(4477), + [anon_sym_class] = ACTIONS(4477), + [anon_sym_ref] = ACTIONS(4477), + [anon_sym_struct] = ACTIONS(4477), + [anon_sym_enum] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_interface] = ACTIONS(4477), + [anon_sym_delegate] = ACTIONS(4477), + [anon_sym_record] = ACTIONS(4477), + [anon_sym_abstract] = ACTIONS(4477), + [anon_sym_async] = ACTIONS(4477), + [anon_sym_const] = ACTIONS(4477), + [anon_sym_file] = ACTIONS(4477), + [anon_sym_fixed] = ACTIONS(4477), + [anon_sym_internal] = ACTIONS(4477), + [anon_sym_new] = ACTIONS(4477), + [anon_sym_override] = ACTIONS(4477), + [anon_sym_partial] = ACTIONS(4477), + [anon_sym_private] = ACTIONS(4477), + [anon_sym_protected] = ACTIONS(4477), + [anon_sym_public] = ACTIONS(4477), + [anon_sym_readonly] = ACTIONS(4477), + [anon_sym_required] = ACTIONS(4477), + [anon_sym_sealed] = ACTIONS(4477), + [anon_sym_virtual] = ACTIONS(4477), + [anon_sym_volatile] = ACTIONS(4477), + [anon_sym_where] = ACTIONS(4477), + [anon_sym_notnull] = ACTIONS(4477), + [anon_sym_unmanaged] = ACTIONS(4477), + [anon_sym_TILDE] = ACTIONS(4479), + [anon_sym_implicit] = ACTIONS(4477), + [anon_sym_explicit] = ACTIONS(4477), + [anon_sym_scoped] = ACTIONS(4477), + [anon_sym_var] = ACTIONS(4477), + [sym_predefined_type] = ACTIONS(4477), + [anon_sym_yield] = ACTIONS(4477), + [anon_sym_when] = ACTIONS(4477), + [anon_sym_from] = ACTIONS(4477), + [anon_sym_into] = ACTIONS(4477), + [anon_sym_join] = ACTIONS(4477), + [anon_sym_on] = ACTIONS(4477), + [anon_sym_equals] = ACTIONS(4477), + [anon_sym_let] = ACTIONS(4477), + [anon_sym_orderby] = ACTIONS(4477), + [anon_sym_ascending] = ACTIONS(4477), + [anon_sym_descending] = ACTIONS(4477), + [anon_sym_group] = ACTIONS(4477), + [anon_sym_by] = ACTIONS(4477), + [anon_sym_select] = ACTIONS(4477), + [aux_sym_preproc_if_token1] = ACTIONS(4479), + [aux_sym_preproc_if_token3] = ACTIONS(4479), + [aux_sym_preproc_else_token1] = ACTIONS(4479), + [aux_sym_preproc_elif_token1] = ACTIONS(4479), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2747] = { [sym_preproc_region] = STATE(2747), @@ -439051,81 +449605,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2747), [sym_preproc_define] = STATE(2747), [sym_preproc_undef] = STATE(2747), - [sym__identifier_token] = ACTIONS(3631), - [anon_sym_alias] = ACTIONS(3631), - [anon_sym_global] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_file] = ACTIONS(3631), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_notnull] = ACTIONS(3631), - [anon_sym_unmanaged] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_scoped] = ACTIONS(3631), - [anon_sym_var] = ACTIONS(3631), - [anon_sym_yield] = ACTIONS(3631), - [anon_sym_switch] = ACTIONS(3631), - [anon_sym_when] = ACTIONS(3631), - [sym_discard] = ACTIONS(3631), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3631), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [anon_sym_QMARK_QMARK] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3631), - [anon_sym_into] = ACTIONS(3631), - [anon_sym_join] = ACTIONS(3631), - [anon_sym_on] = ACTIONS(3631), - [anon_sym_equals] = ACTIONS(3631), - [anon_sym_let] = ACTIONS(3631), - [anon_sym_orderby] = ACTIONS(3631), - [anon_sym_ascending] = ACTIONS(3631), - [anon_sym_descending] = ACTIONS(3631), - [anon_sym_group] = ACTIONS(3631), - [anon_sym_by] = ACTIONS(3631), - [anon_sym_select] = ACTIONS(3631), - [anon_sym_as] = ACTIONS(3631), - [anon_sym_is] = ACTIONS(3631), - [anon_sym_DASH_GT] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3631), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3642), + [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), }, [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), @@ -439135,69 +449693,65 @@ 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(3313), - [anon_sym_extern] = ACTIONS(3313), - [anon_sym_alias] = ACTIONS(3313), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3315), - [anon_sym_implicit] = ACTIONS(3313), - [anon_sym_explicit] = ACTIONS(3313), - [anon_sym_scoped] = ACTIONS(3313), - [anon_sym_var] = ACTIONS(3313), - [sym_predefined_type] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_when] = ACTIONS(3313), - [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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439210,10 +449764,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2749] = { - [sym__variable_designation] = STATE(4047), - [sym_parenthesized_variable_designation] = STATE(4058), - [sym_identifier] = STATE(4054), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(2749), [sym_preproc_endregion] = STATE(2749), [sym_preproc_line] = STATE(2749), @@ -439223,65 +449773,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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3802), - [anon_sym_var] = ACTIONS(3802), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3802), - [sym_discard] = ACTIONS(4147), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3851), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3851), - [anon_sym_on] = ACTIONS(3802), - [anon_sym_equals] = ACTIONS(3802), - [anon_sym_let] = ACTIONS(3851), - [anon_sym_orderby] = ACTIONS(3851), - [anon_sym_ascending] = ACTIONS(3802), - [anon_sym_descending] = ACTIONS(3802), - [anon_sym_group] = ACTIONS(3851), - [anon_sym_by] = ACTIONS(3802), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [sym__identifier_token] = ACTIONS(4481), + [anon_sym_extern] = ACTIONS(4481), + [anon_sym_alias] = ACTIONS(4481), + [anon_sym_global] = ACTIONS(4481), + [anon_sym_using] = ACTIONS(4481), + [anon_sym_unsafe] = ACTIONS(4481), + [anon_sym_static] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4483), + [anon_sym_event] = ACTIONS(4481), + [anon_sym_namespace] = ACTIONS(4481), + [anon_sym_class] = ACTIONS(4481), + [anon_sym_ref] = ACTIONS(4481), + [anon_sym_struct] = ACTIONS(4481), + [anon_sym_enum] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_interface] = ACTIONS(4481), + [anon_sym_delegate] = ACTIONS(4481), + [anon_sym_record] = ACTIONS(4481), + [anon_sym_abstract] = ACTIONS(4481), + [anon_sym_async] = ACTIONS(4481), + [anon_sym_const] = ACTIONS(4481), + [anon_sym_file] = ACTIONS(4481), + [anon_sym_fixed] = ACTIONS(4481), + [anon_sym_internal] = ACTIONS(4481), + [anon_sym_new] = ACTIONS(4481), + [anon_sym_override] = ACTIONS(4481), + [anon_sym_partial] = ACTIONS(4481), + [anon_sym_private] = ACTIONS(4481), + [anon_sym_protected] = ACTIONS(4481), + [anon_sym_public] = ACTIONS(4481), + [anon_sym_readonly] = ACTIONS(4481), + [anon_sym_required] = ACTIONS(4481), + [anon_sym_sealed] = ACTIONS(4481), + [anon_sym_virtual] = ACTIONS(4481), + [anon_sym_volatile] = ACTIONS(4481), + [anon_sym_where] = ACTIONS(4481), + [anon_sym_notnull] = ACTIONS(4481), + [anon_sym_unmanaged] = ACTIONS(4481), + [anon_sym_TILDE] = ACTIONS(4483), + [anon_sym_implicit] = ACTIONS(4481), + [anon_sym_explicit] = ACTIONS(4481), + [anon_sym_scoped] = ACTIONS(4481), + [anon_sym_var] = ACTIONS(4481), + [sym_predefined_type] = ACTIONS(4481), + [anon_sym_yield] = ACTIONS(4481), + [anon_sym_when] = ACTIONS(4481), + [anon_sym_from] = ACTIONS(4481), + [anon_sym_into] = ACTIONS(4481), + [anon_sym_join] = ACTIONS(4481), + [anon_sym_on] = ACTIONS(4481), + [anon_sym_equals] = ACTIONS(4481), + [anon_sym_let] = ACTIONS(4481), + [anon_sym_orderby] = ACTIONS(4481), + [anon_sym_ascending] = ACTIONS(4481), + [anon_sym_descending] = ACTIONS(4481), + [anon_sym_group] = ACTIONS(4481), + [anon_sym_by] = ACTIONS(4481), + [anon_sym_select] = ACTIONS(4481), + [aux_sym_preproc_if_token1] = ACTIONS(4483), + [aux_sym_preproc_if_token3] = ACTIONS(4483), + [aux_sym_preproc_else_token1] = ACTIONS(4483), + [aux_sym_preproc_elif_token1] = ACTIONS(4483), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439294,10 +449848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2750] = { - [sym__variable_designation] = STATE(3206), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2750), [sym_preproc_endregion] = STATE(2750), [sym_preproc_line] = STATE(2750), @@ -439307,65 +449857,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3851), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [sym__identifier_token] = ACTIONS(4485), + [anon_sym_extern] = ACTIONS(4485), + [anon_sym_alias] = ACTIONS(4485), + [anon_sym_global] = ACTIONS(4485), + [anon_sym_using] = ACTIONS(4485), + [anon_sym_unsafe] = ACTIONS(4485), + [anon_sym_static] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4487), + [anon_sym_event] = ACTIONS(4485), + [anon_sym_namespace] = ACTIONS(4485), + [anon_sym_class] = ACTIONS(4485), + [anon_sym_ref] = ACTIONS(4485), + [anon_sym_struct] = ACTIONS(4485), + [anon_sym_enum] = ACTIONS(4485), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_interface] = ACTIONS(4485), + [anon_sym_delegate] = ACTIONS(4485), + [anon_sym_record] = ACTIONS(4485), + [anon_sym_abstract] = ACTIONS(4485), + [anon_sym_async] = ACTIONS(4485), + [anon_sym_const] = ACTIONS(4485), + [anon_sym_file] = ACTIONS(4485), + [anon_sym_fixed] = ACTIONS(4485), + [anon_sym_internal] = ACTIONS(4485), + [anon_sym_new] = ACTIONS(4485), + [anon_sym_override] = ACTIONS(4485), + [anon_sym_partial] = ACTIONS(4485), + [anon_sym_private] = ACTIONS(4485), + [anon_sym_protected] = ACTIONS(4485), + [anon_sym_public] = ACTIONS(4485), + [anon_sym_readonly] = ACTIONS(4485), + [anon_sym_required] = ACTIONS(4485), + [anon_sym_sealed] = ACTIONS(4485), + [anon_sym_virtual] = ACTIONS(4485), + [anon_sym_volatile] = ACTIONS(4485), + [anon_sym_where] = ACTIONS(4485), + [anon_sym_notnull] = ACTIONS(4485), + [anon_sym_unmanaged] = ACTIONS(4485), + [anon_sym_TILDE] = ACTIONS(4487), + [anon_sym_implicit] = ACTIONS(4485), + [anon_sym_explicit] = ACTIONS(4485), + [anon_sym_scoped] = ACTIONS(4485), + [anon_sym_var] = ACTIONS(4485), + [sym_predefined_type] = ACTIONS(4485), + [anon_sym_yield] = ACTIONS(4485), + [anon_sym_when] = ACTIONS(4485), + [anon_sym_from] = ACTIONS(4485), + [anon_sym_into] = ACTIONS(4485), + [anon_sym_join] = ACTIONS(4485), + [anon_sym_on] = ACTIONS(4485), + [anon_sym_equals] = ACTIONS(4485), + [anon_sym_let] = ACTIONS(4485), + [anon_sym_orderby] = ACTIONS(4485), + [anon_sym_ascending] = ACTIONS(4485), + [anon_sym_descending] = ACTIONS(4485), + [anon_sym_group] = ACTIONS(4485), + [anon_sym_by] = ACTIONS(4485), + [anon_sym_select] = ACTIONS(4485), + [aux_sym_preproc_if_token1] = ACTIONS(4487), + [aux_sym_preproc_if_token3] = ACTIONS(4487), + [aux_sym_preproc_else_token1] = ACTIONS(4487), + [aux_sym_preproc_elif_token1] = ACTIONS(4487), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439387,79 +449941,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [sym__identifier_token] = ACTIONS(4489), + [anon_sym_extern] = ACTIONS(4489), + [anon_sym_alias] = ACTIONS(4489), + [anon_sym_global] = ACTIONS(4489), + [anon_sym_using] = ACTIONS(4489), + [anon_sym_unsafe] = ACTIONS(4489), + [anon_sym_static] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4491), + [anon_sym_event] = ACTIONS(4489), + [anon_sym_namespace] = ACTIONS(4489), + [anon_sym_class] = ACTIONS(4489), + [anon_sym_ref] = ACTIONS(4489), + [anon_sym_struct] = ACTIONS(4489), + [anon_sym_enum] = ACTIONS(4489), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_interface] = ACTIONS(4489), + [anon_sym_delegate] = ACTIONS(4489), + [anon_sym_record] = ACTIONS(4489), + [anon_sym_abstract] = ACTIONS(4489), + [anon_sym_async] = ACTIONS(4489), + [anon_sym_const] = ACTIONS(4489), + [anon_sym_file] = ACTIONS(4489), + [anon_sym_fixed] = ACTIONS(4489), + [anon_sym_internal] = ACTIONS(4489), + [anon_sym_new] = ACTIONS(4489), + [anon_sym_override] = ACTIONS(4489), + [anon_sym_partial] = ACTIONS(4489), + [anon_sym_private] = ACTIONS(4489), + [anon_sym_protected] = ACTIONS(4489), + [anon_sym_public] = ACTIONS(4489), + [anon_sym_readonly] = ACTIONS(4489), + [anon_sym_required] = ACTIONS(4489), + [anon_sym_sealed] = ACTIONS(4489), + [anon_sym_virtual] = ACTIONS(4489), + [anon_sym_volatile] = ACTIONS(4489), + [anon_sym_where] = ACTIONS(4489), + [anon_sym_notnull] = ACTIONS(4489), + [anon_sym_unmanaged] = ACTIONS(4489), + [anon_sym_TILDE] = ACTIONS(4491), + [anon_sym_implicit] = ACTIONS(4489), + [anon_sym_explicit] = ACTIONS(4489), + [anon_sym_scoped] = ACTIONS(4489), + [anon_sym_var] = ACTIONS(4489), + [sym_predefined_type] = ACTIONS(4489), + [anon_sym_yield] = ACTIONS(4489), + [anon_sym_when] = ACTIONS(4489), + [anon_sym_from] = ACTIONS(4489), + [anon_sym_into] = ACTIONS(4489), + [anon_sym_join] = ACTIONS(4489), + [anon_sym_on] = ACTIONS(4489), + [anon_sym_equals] = ACTIONS(4489), + [anon_sym_let] = ACTIONS(4489), + [anon_sym_orderby] = ACTIONS(4489), + [anon_sym_ascending] = ACTIONS(4489), + [anon_sym_descending] = ACTIONS(4489), + [anon_sym_group] = ACTIONS(4489), + [anon_sym_by] = ACTIONS(4489), + [anon_sym_select] = ACTIONS(4489), + [aux_sym_preproc_if_token1] = ACTIONS(4491), + [aux_sym_preproc_if_token3] = ACTIONS(4491), + [aux_sym_preproc_else_token1] = ACTIONS(4491), + [aux_sym_preproc_elif_token1] = ACTIONS(4491), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2752] = { [sym_preproc_region] = STATE(2752), @@ -439471,81 +450025,85 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), }, [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), @@ -439555,85 +450113,81 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2754] = { - [sym__variable_designation] = STATE(3247), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -439643,65 +450197,65 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3899), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), @@ -439714,10 +450268,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2755] = { - [sym__variable_designation] = STATE(3237), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [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), @@ -439727,65 +450281,65 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [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(3811), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3895), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [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(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), @@ -439798,10 +450352,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2756] = { - [sym__variable_designation] = STATE(3232), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2756), [sym_preproc_endregion] = STATE(2756), [sym_preproc_line] = STATE(2756), @@ -439811,65 +450361,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2756), [sym_preproc_define] = STATE(2756), [sym_preproc_undef] = STATE(2756), - [sym__identifier_token] = ACTIONS(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3847), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [sym__identifier_token] = ACTIONS(3415), + [anon_sym_extern] = ACTIONS(3415), + [anon_sym_alias] = ACTIONS(3415), + [anon_sym_global] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_unsafe] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_event] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_ref] = ACTIONS(3415), + [anon_sym_struct] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_delegate] = ACTIONS(3415), + [anon_sym_record] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_file] = ACTIONS(3415), + [anon_sym_fixed] = ACTIONS(3415), + [anon_sym_internal] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_partial] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_required] = ACTIONS(3415), + [anon_sym_sealed] = ACTIONS(3415), + [anon_sym_virtual] = ACTIONS(3415), + [anon_sym_volatile] = ACTIONS(3415), + [anon_sym_where] = ACTIONS(3415), + [anon_sym_notnull] = ACTIONS(3415), + [anon_sym_unmanaged] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_implicit] = ACTIONS(3415), + [anon_sym_explicit] = ACTIONS(3415), + [anon_sym_scoped] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [sym_predefined_type] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_when] = ACTIONS(3415), + [anon_sym_from] = ACTIONS(3415), + [anon_sym_into] = ACTIONS(3415), + [anon_sym_join] = ACTIONS(3415), + [anon_sym_on] = ACTIONS(3415), + [anon_sym_equals] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_orderby] = ACTIONS(3415), + [anon_sym_ascending] = ACTIONS(3415), + [anon_sym_descending] = ACTIONS(3415), + [anon_sym_group] = ACTIONS(3415), + [anon_sym_by] = ACTIONS(3415), + [anon_sym_select] = ACTIONS(3415), + [aux_sym_preproc_if_token1] = ACTIONS(3417), + [aux_sym_preproc_if_token3] = ACTIONS(3417), + [aux_sym_preproc_else_token1] = ACTIONS(3417), + [aux_sym_preproc_elif_token1] = ACTIONS(3417), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -439891,69 +450445,68 @@ 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(4587), - [anon_sym_extern] = ACTIONS(4587), - [anon_sym_alias] = ACTIONS(4587), - [anon_sym_global] = ACTIONS(4587), - [anon_sym_using] = ACTIONS(4587), - [anon_sym_unsafe] = ACTIONS(4587), - [anon_sym_static] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4589), - [anon_sym_event] = ACTIONS(4587), - [anon_sym_namespace] = ACTIONS(4587), - [anon_sym_class] = ACTIONS(4587), - [anon_sym_ref] = ACTIONS(4587), - [anon_sym_struct] = ACTIONS(4587), - [anon_sym_enum] = ACTIONS(4587), - [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_interface] = ACTIONS(4587), - [anon_sym_delegate] = ACTIONS(4587), - [anon_sym_record] = ACTIONS(4587), - [anon_sym_abstract] = ACTIONS(4587), - [anon_sym_async] = ACTIONS(4587), - [anon_sym_const] = ACTIONS(4587), - [anon_sym_file] = ACTIONS(4587), - [anon_sym_fixed] = ACTIONS(4587), - [anon_sym_internal] = ACTIONS(4587), - [anon_sym_new] = ACTIONS(4587), - [anon_sym_override] = ACTIONS(4587), - [anon_sym_partial] = ACTIONS(4587), - [anon_sym_private] = ACTIONS(4587), - [anon_sym_protected] = ACTIONS(4587), - [anon_sym_public] = ACTIONS(4587), - [anon_sym_readonly] = ACTIONS(4587), - [anon_sym_required] = ACTIONS(4587), - [anon_sym_sealed] = ACTIONS(4587), - [anon_sym_virtual] = ACTIONS(4587), - [anon_sym_volatile] = ACTIONS(4587), - [anon_sym_where] = ACTIONS(4587), - [anon_sym_notnull] = ACTIONS(4587), - [anon_sym_unmanaged] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4589), - [anon_sym_implicit] = ACTIONS(4587), - [anon_sym_explicit] = ACTIONS(4587), - [anon_sym_scoped] = ACTIONS(4587), - [anon_sym_var] = ACTIONS(4587), - [sym_predefined_type] = ACTIONS(4587), - [anon_sym_yield] = ACTIONS(4587), - [anon_sym_when] = ACTIONS(4587), - [anon_sym_from] = ACTIONS(4587), - [anon_sym_into] = ACTIONS(4587), - [anon_sym_join] = ACTIONS(4587), - [anon_sym_on] = ACTIONS(4587), - [anon_sym_equals] = ACTIONS(4587), - [anon_sym_let] = ACTIONS(4587), - [anon_sym_orderby] = ACTIONS(4587), - [anon_sym_ascending] = ACTIONS(4587), - [anon_sym_descending] = ACTIONS(4587), - [anon_sym_group] = ACTIONS(4587), - [anon_sym_by] = ACTIONS(4587), - [anon_sym_select] = ACTIONS(4587), - [aux_sym_preproc_if_token1] = ACTIONS(4589), - [aux_sym_preproc_if_token3] = ACTIONS(4589), - [aux_sym_preproc_else_token1] = ACTIONS(4589), - [aux_sym_preproc_elif_token1] = ACTIONS(4589), + [sym__identifier_token] = ACTIONS(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), @@ -439964,6 +450517,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(3445), }, [2758] = { [sym_preproc_region] = STATE(2758), @@ -439975,85 +450529,81 @@ 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(3610), - [anon_sym_alias] = ACTIONS(3610), - [anon_sym_global] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_file] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_notnull] = ACTIONS(3610), - [anon_sym_unmanaged] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_scoped] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_when] = ACTIONS(3610), - [sym_discard] = ACTIONS(3610), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3610), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3610), - [anon_sym_join] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_equals] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_orderby] = ACTIONS(3610), - [anon_sym_ascending] = ACTIONS(3610), - [anon_sym_descending] = ACTIONS(3610), - [anon_sym_group] = ACTIONS(3610), - [anon_sym_by] = ACTIONS(3610), - [anon_sym_select] = ACTIONS(3610), - [anon_sym_as] = ACTIONS(3610), - [anon_sym_is] = ACTIONS(3610), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3610), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3612), + [sym__identifier_token] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(3375), + [anon_sym_alias] = ACTIONS(3375), + [anon_sym_global] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_event] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_ref] = ACTIONS(3375), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_delegate] = ACTIONS(3375), + [anon_sym_record] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_file] = ACTIONS(3375), + [anon_sym_fixed] = ACTIONS(3375), + [anon_sym_internal] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_partial] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_required] = ACTIONS(3375), + [anon_sym_sealed] = ACTIONS(3375), + [anon_sym_virtual] = ACTIONS(3375), + [anon_sym_volatile] = ACTIONS(3375), + [anon_sym_where] = ACTIONS(3375), + [anon_sym_notnull] = ACTIONS(3375), + [anon_sym_unmanaged] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_implicit] = ACTIONS(3375), + [anon_sym_explicit] = ACTIONS(3375), + [anon_sym_scoped] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [sym_predefined_type] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_when] = ACTIONS(3375), + [anon_sym_from] = ACTIONS(3375), + [anon_sym_into] = ACTIONS(3375), + [anon_sym_join] = ACTIONS(3375), + [anon_sym_on] = ACTIONS(3375), + [anon_sym_equals] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_orderby] = ACTIONS(3375), + [anon_sym_ascending] = ACTIONS(3375), + [anon_sym_descending] = ACTIONS(3375), + [anon_sym_group] = ACTIONS(3375), + [anon_sym_by] = ACTIONS(3375), + [anon_sym_select] = ACTIONS(3375), + [aux_sym_preproc_if_token1] = ACTIONS(3377), + [aux_sym_preproc_if_token3] = ACTIONS(3377), + [aux_sym_preproc_else_token1] = ACTIONS(3377), + [aux_sym_preproc_elif_token1] = ACTIONS(3377), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2759] = { - [sym__variable_designation] = STATE(3232), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2759), [sym_preproc_endregion] = STATE(2759), [sym_preproc_line] = STATE(2759), @@ -440063,65 +450613,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3847), - [anon_sym_GT] = ACTIONS(3847), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3847), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3847), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3847), - [anon_sym_DASH] = ACTIONS(3847), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_SLASH] = ACTIONS(3847), - [anon_sym_PERCENT] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_PIPE] = ACTIONS(3847), - [anon_sym_AMP] = ACTIONS(3847), - [anon_sym_LT_LT] = ACTIONS(3845), - [anon_sym_GT_GT] = ACTIONS(3847), - [anon_sym_GT_GT_GT] = ACTIONS(3845), - [anon_sym_EQ_EQ] = ACTIONS(3845), - [anon_sym_BANG_EQ] = ACTIONS(3845), - [anon_sym_GT_EQ] = ACTIONS(3845), - [anon_sym_LT_EQ] = ACTIONS(3845), - [anon_sym_DOT] = ACTIONS(3847), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3847), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3845), - [anon_sym_and] = ACTIONS(3847), - [anon_sym_or] = ACTIONS(3847), - [anon_sym_AMP_AMP] = ACTIONS(3845), - [anon_sym_PIPE_PIPE] = ACTIONS(3845), - [anon_sym_QMARK_QMARK] = ACTIONS(3845), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3847), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3847), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3847), - [anon_sym_is] = ACTIONS(3847), - [anon_sym_DASH_GT] = ACTIONS(3845), - [anon_sym_with] = ACTIONS(3847), + [sym__identifier_token] = ACTIONS(4497), + [anon_sym_extern] = ACTIONS(4497), + [anon_sym_alias] = ACTIONS(4497), + [anon_sym_global] = ACTIONS(4497), + [anon_sym_using] = ACTIONS(4497), + [anon_sym_unsafe] = ACTIONS(4497), + [anon_sym_static] = ACTIONS(4497), + [anon_sym_LBRACK] = ACTIONS(4499), + [anon_sym_LPAREN] = ACTIONS(4499), + [anon_sym_event] = ACTIONS(4497), + [anon_sym_namespace] = ACTIONS(4497), + [anon_sym_class] = ACTIONS(4497), + [anon_sym_ref] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_RBRACE] = ACTIONS(4499), + [anon_sym_interface] = ACTIONS(4497), + [anon_sym_delegate] = ACTIONS(4497), + [anon_sym_record] = ACTIONS(4497), + [anon_sym_abstract] = ACTIONS(4497), + [anon_sym_async] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_file] = ACTIONS(4497), + [anon_sym_fixed] = ACTIONS(4497), + [anon_sym_internal] = ACTIONS(4497), + [anon_sym_new] = ACTIONS(4497), + [anon_sym_override] = ACTIONS(4497), + [anon_sym_partial] = ACTIONS(4497), + [anon_sym_private] = ACTIONS(4497), + [anon_sym_protected] = ACTIONS(4497), + [anon_sym_public] = ACTIONS(4497), + [anon_sym_readonly] = ACTIONS(4497), + [anon_sym_required] = ACTIONS(4497), + [anon_sym_sealed] = ACTIONS(4497), + [anon_sym_virtual] = ACTIONS(4497), + [anon_sym_volatile] = ACTIONS(4497), + [anon_sym_where] = ACTIONS(4497), + [anon_sym_notnull] = ACTIONS(4497), + [anon_sym_unmanaged] = ACTIONS(4497), + [anon_sym_TILDE] = ACTIONS(4499), + [anon_sym_implicit] = ACTIONS(4497), + [anon_sym_explicit] = ACTIONS(4497), + [anon_sym_scoped] = ACTIONS(4497), + [anon_sym_var] = ACTIONS(4497), + [sym_predefined_type] = ACTIONS(4497), + [anon_sym_yield] = ACTIONS(4497), + [anon_sym_when] = ACTIONS(4497), + [anon_sym_from] = ACTIONS(4497), + [anon_sym_into] = ACTIONS(4497), + [anon_sym_join] = ACTIONS(4497), + [anon_sym_on] = ACTIONS(4497), + [anon_sym_equals] = ACTIONS(4497), + [anon_sym_let] = ACTIONS(4497), + [anon_sym_orderby] = ACTIONS(4497), + [anon_sym_ascending] = ACTIONS(4497), + [anon_sym_descending] = ACTIONS(4497), + [anon_sym_group] = ACTIONS(4497), + [anon_sym_by] = ACTIONS(4497), + [anon_sym_select] = ACTIONS(4497), + [aux_sym_preproc_if_token1] = ACTIONS(4499), + [aux_sym_preproc_if_token3] = ACTIONS(4499), + [aux_sym_preproc_else_token1] = ACTIONS(4499), + [aux_sym_preproc_elif_token1] = ACTIONS(4499), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440143,69 +450697,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2760), [sym_preproc_define] = STATE(2760), [sym_preproc_undef] = STATE(2760), - [sym__identifier_token] = ACTIONS(4591), - [anon_sym_extern] = ACTIONS(4591), - [anon_sym_alias] = ACTIONS(4591), - [anon_sym_global] = ACTIONS(4591), - [anon_sym_using] = ACTIONS(4591), - [anon_sym_unsafe] = ACTIONS(4591), - [anon_sym_static] = ACTIONS(4591), - [anon_sym_LBRACK] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4593), - [anon_sym_event] = ACTIONS(4591), - [anon_sym_namespace] = ACTIONS(4591), - [anon_sym_class] = ACTIONS(4591), - [anon_sym_ref] = ACTIONS(4591), - [anon_sym_struct] = ACTIONS(4591), - [anon_sym_enum] = ACTIONS(4591), - [anon_sym_RBRACE] = ACTIONS(4593), - [anon_sym_interface] = ACTIONS(4591), - [anon_sym_delegate] = ACTIONS(4591), - [anon_sym_record] = ACTIONS(4591), - [anon_sym_abstract] = ACTIONS(4591), - [anon_sym_async] = ACTIONS(4591), - [anon_sym_const] = ACTIONS(4591), - [anon_sym_file] = ACTIONS(4591), - [anon_sym_fixed] = ACTIONS(4591), - [anon_sym_internal] = ACTIONS(4591), - [anon_sym_new] = ACTIONS(4591), - [anon_sym_override] = ACTIONS(4591), - [anon_sym_partial] = ACTIONS(4591), - [anon_sym_private] = ACTIONS(4591), - [anon_sym_protected] = ACTIONS(4591), - [anon_sym_public] = ACTIONS(4591), - [anon_sym_readonly] = ACTIONS(4591), - [anon_sym_required] = ACTIONS(4591), - [anon_sym_sealed] = ACTIONS(4591), - [anon_sym_virtual] = ACTIONS(4591), - [anon_sym_volatile] = ACTIONS(4591), - [anon_sym_where] = ACTIONS(4591), - [anon_sym_notnull] = ACTIONS(4591), - [anon_sym_unmanaged] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4593), - [anon_sym_implicit] = ACTIONS(4591), - [anon_sym_explicit] = ACTIONS(4591), - [anon_sym_scoped] = ACTIONS(4591), - [anon_sym_var] = ACTIONS(4591), - [sym_predefined_type] = ACTIONS(4591), - [anon_sym_yield] = ACTIONS(4591), - [anon_sym_when] = ACTIONS(4591), - [anon_sym_from] = ACTIONS(4591), - [anon_sym_into] = ACTIONS(4591), - [anon_sym_join] = ACTIONS(4591), - [anon_sym_on] = ACTIONS(4591), - [anon_sym_equals] = ACTIONS(4591), - [anon_sym_let] = ACTIONS(4591), - [anon_sym_orderby] = ACTIONS(4591), - [anon_sym_ascending] = ACTIONS(4591), - [anon_sym_descending] = ACTIONS(4591), - [anon_sym_group] = ACTIONS(4591), - [anon_sym_by] = ACTIONS(4591), - [anon_sym_select] = ACTIONS(4591), - [aux_sym_preproc_if_token1] = ACTIONS(4593), - [aux_sym_preproc_if_token3] = ACTIONS(4593), - [aux_sym_preproc_else_token1] = ACTIONS(4593), - [aux_sym_preproc_elif_token1] = ACTIONS(4593), + [sym__identifier_token] = ACTIONS(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), @@ -440227,69 +450781,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2761), [sym_preproc_define] = STATE(2761), [sym_preproc_undef] = STATE(2761), - [sym__identifier_token] = ACTIONS(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), + [sym__identifier_token] = ACTIONS(4501), + [anon_sym_extern] = ACTIONS(4501), + [anon_sym_alias] = ACTIONS(4501), + [anon_sym_global] = ACTIONS(4501), + [anon_sym_using] = ACTIONS(4501), + [anon_sym_unsafe] = ACTIONS(4501), + [anon_sym_static] = ACTIONS(4501), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_event] = ACTIONS(4501), + [anon_sym_namespace] = ACTIONS(4501), + [anon_sym_class] = ACTIONS(4501), + [anon_sym_ref] = ACTIONS(4501), + [anon_sym_struct] = ACTIONS(4501), + [anon_sym_enum] = ACTIONS(4501), + [anon_sym_RBRACE] = ACTIONS(4503), + [anon_sym_interface] = ACTIONS(4501), + [anon_sym_delegate] = ACTIONS(4501), + [anon_sym_record] = ACTIONS(4501), + [anon_sym_abstract] = ACTIONS(4501), + [anon_sym_async] = ACTIONS(4501), + [anon_sym_const] = ACTIONS(4501), + [anon_sym_file] = ACTIONS(4501), + [anon_sym_fixed] = ACTIONS(4501), + [anon_sym_internal] = ACTIONS(4501), + [anon_sym_new] = ACTIONS(4501), + [anon_sym_override] = ACTIONS(4501), + [anon_sym_partial] = ACTIONS(4501), + [anon_sym_private] = ACTIONS(4501), + [anon_sym_protected] = ACTIONS(4501), + [anon_sym_public] = ACTIONS(4501), + [anon_sym_readonly] = ACTIONS(4501), + [anon_sym_required] = ACTIONS(4501), + [anon_sym_sealed] = ACTIONS(4501), + [anon_sym_virtual] = ACTIONS(4501), + [anon_sym_volatile] = ACTIONS(4501), + [anon_sym_where] = ACTIONS(4501), + [anon_sym_notnull] = ACTIONS(4501), + [anon_sym_unmanaged] = ACTIONS(4501), + [anon_sym_TILDE] = ACTIONS(4503), + [anon_sym_implicit] = ACTIONS(4501), + [anon_sym_explicit] = ACTIONS(4501), + [anon_sym_scoped] = ACTIONS(4501), + [anon_sym_var] = ACTIONS(4501), + [sym_predefined_type] = ACTIONS(4501), + [anon_sym_yield] = ACTIONS(4501), + [anon_sym_when] = ACTIONS(4501), + [anon_sym_from] = ACTIONS(4501), + [anon_sym_into] = ACTIONS(4501), + [anon_sym_join] = ACTIONS(4501), + [anon_sym_on] = ACTIONS(4501), + [anon_sym_equals] = ACTIONS(4501), + [anon_sym_let] = ACTIONS(4501), + [anon_sym_orderby] = ACTIONS(4501), + [anon_sym_ascending] = ACTIONS(4501), + [anon_sym_descending] = ACTIONS(4501), + [anon_sym_group] = ACTIONS(4501), + [anon_sym_by] = ACTIONS(4501), + [anon_sym_select] = ACTIONS(4501), + [aux_sym_preproc_if_token1] = ACTIONS(4503), + [aux_sym_preproc_if_token3] = ACTIONS(4503), + [aux_sym_preproc_else_token1] = ACTIONS(4503), + [aux_sym_preproc_elif_token1] = ACTIONS(4503), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440311,69 +450865,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440395,79 +450949,79 @@ 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(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), + [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), }, [2764] = { [sym_preproc_region] = STATE(2764), @@ -440479,69 +451033,68 @@ 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(4607), - [anon_sym_extern] = ACTIONS(4607), - [anon_sym_alias] = ACTIONS(4607), - [anon_sym_global] = ACTIONS(4607), - [anon_sym_using] = ACTIONS(4607), - [anon_sym_unsafe] = ACTIONS(4607), - [anon_sym_static] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4609), - [anon_sym_event] = ACTIONS(4607), - [anon_sym_namespace] = ACTIONS(4607), - [anon_sym_class] = ACTIONS(4607), - [anon_sym_ref] = ACTIONS(4607), - [anon_sym_struct] = ACTIONS(4607), - [anon_sym_enum] = ACTIONS(4607), - [anon_sym_RBRACE] = ACTIONS(4609), - [anon_sym_interface] = ACTIONS(4607), - [anon_sym_delegate] = ACTIONS(4607), - [anon_sym_record] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_async] = ACTIONS(4607), - [anon_sym_const] = ACTIONS(4607), - [anon_sym_file] = ACTIONS(4607), - [anon_sym_fixed] = ACTIONS(4607), - [anon_sym_internal] = ACTIONS(4607), - [anon_sym_new] = ACTIONS(4607), - [anon_sym_override] = ACTIONS(4607), - [anon_sym_partial] = ACTIONS(4607), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_protected] = ACTIONS(4607), - [anon_sym_public] = ACTIONS(4607), - [anon_sym_readonly] = ACTIONS(4607), - [anon_sym_required] = ACTIONS(4607), - [anon_sym_sealed] = ACTIONS(4607), - [anon_sym_virtual] = ACTIONS(4607), - [anon_sym_volatile] = ACTIONS(4607), - [anon_sym_where] = ACTIONS(4607), - [anon_sym_notnull] = ACTIONS(4607), - [anon_sym_unmanaged] = ACTIONS(4607), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_implicit] = ACTIONS(4607), - [anon_sym_explicit] = ACTIONS(4607), - [anon_sym_scoped] = ACTIONS(4607), - [anon_sym_var] = ACTIONS(4607), - [sym_predefined_type] = ACTIONS(4607), - [anon_sym_yield] = ACTIONS(4607), - [anon_sym_when] = ACTIONS(4607), - [anon_sym_from] = ACTIONS(4607), - [anon_sym_into] = ACTIONS(4607), - [anon_sym_join] = ACTIONS(4607), - [anon_sym_on] = ACTIONS(4607), - [anon_sym_equals] = ACTIONS(4607), - [anon_sym_let] = ACTIONS(4607), - [anon_sym_orderby] = ACTIONS(4607), - [anon_sym_ascending] = ACTIONS(4607), - [anon_sym_descending] = ACTIONS(4607), - [anon_sym_group] = ACTIONS(4607), - [anon_sym_by] = ACTIONS(4607), - [anon_sym_select] = ACTIONS(4607), - [aux_sym_preproc_if_token1] = ACTIONS(4609), - [aux_sym_preproc_if_token3] = ACTIONS(4609), - [aux_sym_preproc_else_token1] = ACTIONS(4609), - [aux_sym_preproc_elif_token1] = ACTIONS(4609), + [sym__identifier_token] = ACTIONS(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), @@ -440552,12 +451105,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(3710), }, [2765] = { - [sym__variable_designation] = STATE(3206), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2765), [sym_preproc_endregion] = STATE(2765), [sym_preproc_line] = STATE(2765), @@ -440567,65 +451117,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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3849), - [anon_sym_LPAREN] = ACTIONS(3849), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3851), - [anon_sym_GT] = ACTIONS(3851), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_PLUS_PLUS] = ACTIONS(3849), - [anon_sym_DASH_DASH] = ACTIONS(3849), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3849), - [anon_sym_SLASH] = ACTIONS(3851), - [anon_sym_PERCENT] = ACTIONS(3849), - [anon_sym_CARET] = ACTIONS(3849), - [anon_sym_PIPE] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_LT] = ACTIONS(3849), - [anon_sym_GT_GT] = ACTIONS(3851), - [anon_sym_GT_GT_GT] = ACTIONS(3849), - [anon_sym_EQ_EQ] = ACTIONS(3849), - [anon_sym_BANG_EQ] = ACTIONS(3849), - [anon_sym_GT_EQ] = ACTIONS(3849), - [anon_sym_LT_EQ] = ACTIONS(3849), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3851), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3849), - [anon_sym_and] = ACTIONS(3851), - [anon_sym_or] = ACTIONS(3851), - [anon_sym_AMP_AMP] = ACTIONS(3849), - [anon_sym_PIPE_PIPE] = ACTIONS(3849), - [anon_sym_QMARK_QMARK] = ACTIONS(3849), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3851), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3851), - [anon_sym_equals] = ACTIONS(3811), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3851), - [anon_sym_is] = ACTIONS(3851), - [anon_sym_DASH_GT] = ACTIONS(3849), - [anon_sym_with] = ACTIONS(3851), + [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), @@ -440647,79 +451201,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2766), [sym_preproc_define] = STATE(2766), [sym_preproc_undef] = STATE(2766), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4384), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4425), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3950), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2767] = { [sym_preproc_region] = STATE(2767), @@ -440731,79 +451285,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(3285), - [anon_sym_extern] = ACTIONS(3285), - [anon_sym_alias] = ACTIONS(3285), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3287), - [anon_sym_implicit] = ACTIONS(3285), - [anon_sym_explicit] = ACTIONS(3285), - [anon_sym_scoped] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [sym_predefined_type] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_when] = ACTIONS(3285), - [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), - [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__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), }, [2768] = { [sym_preproc_region] = STATE(2768), @@ -440815,85 +451369,81 @@ 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(3606), - [anon_sym_alias] = ACTIONS(3606), - [anon_sym_global] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_file] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_notnull] = ACTIONS(3606), - [anon_sym_unmanaged] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_scoped] = ACTIONS(3606), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_when] = ACTIONS(3606), - [sym_discard] = ACTIONS(3606), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3606), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3606), - [anon_sym_join] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_equals] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_orderby] = ACTIONS(3606), - [anon_sym_ascending] = ACTIONS(3606), - [anon_sym_descending] = ACTIONS(3606), - [anon_sym_group] = ACTIONS(3606), - [anon_sym_by] = ACTIONS(3606), - [anon_sym_select] = ACTIONS(3606), - [anon_sym_as] = ACTIONS(3606), - [anon_sym_is] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3606), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3608), + [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), }, [2769] = { - [sym__variable_designation] = STATE(3237), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), [sym_preproc_region] = STATE(2769), [sym_preproc_endregion] = STATE(2769), [sym_preproc_line] = STATE(2769), @@ -440903,75 +451453,79 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3893), - [anon_sym_LPAREN] = ACTIONS(3893), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3895), - [anon_sym_GT] = ACTIONS(3895), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [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(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3895), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [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(3811), - [anon_sym_into] = ACTIONS(3895), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3895), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [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(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), }, [2770] = { [sym_preproc_region] = STATE(2770), @@ -440983,69 +451537,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(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), + [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), @@ -441067,79 +451621,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), - [anon_sym_SEMI] = ACTIONS(4070), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_RBRACK] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_RPAREN] = ACTIONS(4070), - [anon_sym_RBRACE] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_in] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), + [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(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_EQ_GT] = ACTIONS(4070), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_when] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4070), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [anon_sym_QMARK_QMARK] = ACTIONS(4072), - [anon_sym_on] = ACTIONS(4070), - [anon_sym_equals] = ACTIONS(4070), - [anon_sym_by] = ACTIONS(4070), - [anon_sym_as] = ACTIONS(4070), - [anon_sym_is] = ACTIONS(4070), - [anon_sym_DASH_GT] = ACTIONS(4070), - [anon_sym_with] = ACTIONS(4070), - [aux_sym_preproc_if_token3] = ACTIONS(4070), - [aux_sym_preproc_else_token1] = ACTIONS(4070), - [aux_sym_preproc_elif_token1] = 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), + [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), }, [2772] = { [sym_preproc_region] = STATE(2772), @@ -441151,71 +451705,71 @@ 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(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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), [aux_sym_preproc_nullable_token1] = ACTIONS(11), @@ -441226,6 +451780,10 @@ 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), @@ -441235,69 +451793,65 @@ 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(4619), - [anon_sym_extern] = ACTIONS(4619), - [anon_sym_alias] = ACTIONS(4619), - [anon_sym_global] = ACTIONS(4619), - [anon_sym_using] = ACTIONS(4619), - [anon_sym_unsafe] = ACTIONS(4619), - [anon_sym_static] = ACTIONS(4619), - [anon_sym_LBRACK] = ACTIONS(4621), - [anon_sym_LPAREN] = ACTIONS(4621), - [anon_sym_event] = ACTIONS(4619), - [anon_sym_namespace] = ACTIONS(4619), - [anon_sym_class] = ACTIONS(4619), - [anon_sym_ref] = ACTIONS(4619), - [anon_sym_struct] = ACTIONS(4619), - [anon_sym_enum] = ACTIONS(4619), - [anon_sym_RBRACE] = ACTIONS(4621), - [anon_sym_interface] = ACTIONS(4619), - [anon_sym_delegate] = ACTIONS(4619), - [anon_sym_record] = ACTIONS(4619), - [anon_sym_abstract] = ACTIONS(4619), - [anon_sym_async] = ACTIONS(4619), - [anon_sym_const] = ACTIONS(4619), - [anon_sym_file] = ACTIONS(4619), - [anon_sym_fixed] = ACTIONS(4619), - [anon_sym_internal] = ACTIONS(4619), - [anon_sym_new] = ACTIONS(4619), - [anon_sym_override] = ACTIONS(4619), - [anon_sym_partial] = ACTIONS(4619), - [anon_sym_private] = ACTIONS(4619), - [anon_sym_protected] = ACTIONS(4619), - [anon_sym_public] = ACTIONS(4619), - [anon_sym_readonly] = ACTIONS(4619), - [anon_sym_required] = ACTIONS(4619), - [anon_sym_sealed] = ACTIONS(4619), - [anon_sym_virtual] = ACTIONS(4619), - [anon_sym_volatile] = ACTIONS(4619), - [anon_sym_where] = ACTIONS(4619), - [anon_sym_notnull] = ACTIONS(4619), - [anon_sym_unmanaged] = ACTIONS(4619), - [anon_sym_TILDE] = ACTIONS(4621), - [anon_sym_implicit] = ACTIONS(4619), - [anon_sym_explicit] = ACTIONS(4619), - [anon_sym_scoped] = ACTIONS(4619), - [anon_sym_var] = ACTIONS(4619), - [sym_predefined_type] = ACTIONS(4619), - [anon_sym_yield] = ACTIONS(4619), - [anon_sym_when] = ACTIONS(4619), - [anon_sym_from] = ACTIONS(4619), - [anon_sym_into] = ACTIONS(4619), - [anon_sym_join] = ACTIONS(4619), - [anon_sym_on] = ACTIONS(4619), - [anon_sym_equals] = ACTIONS(4619), - [anon_sym_let] = ACTIONS(4619), - [anon_sym_orderby] = ACTIONS(4619), - [anon_sym_ascending] = ACTIONS(4619), - [anon_sym_descending] = ACTIONS(4619), - [anon_sym_group] = ACTIONS(4619), - [anon_sym_by] = ACTIONS(4619), - [anon_sym_select] = ACTIONS(4619), - [aux_sym_preproc_if_token1] = ACTIONS(4621), - [aux_sym_preproc_if_token3] = ACTIONS(4621), - [aux_sym_preproc_else_token1] = ACTIONS(4621), - [aux_sym_preproc_elif_token1] = ACTIONS(4621), + [sym__identifier_token] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441319,69 +451873,69 @@ 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), - [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), + [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), @@ -441394,6 +451948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -441403,85 +451961,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2775), [sym_preproc_define] = STATE(2775), [sym_preproc_undef] = STATE(2775), - [sym__identifier_token] = ACTIONS(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), + [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(3247), - [sym_parenthesized_variable_designation] = STATE(3196), - [sym_identifier] = STATE(3202), - [sym__reserved_identifier] = STATE(3123), + [sym__variable_designation] = STATE(3245), + [sym_parenthesized_variable_designation] = STATE(3340), + [sym_identifier] = STATE(3345), + [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2776), [sym_preproc_endregion] = STATE(2776), [sym_preproc_line] = STATE(2776), @@ -441491,65 +452045,65 @@ 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(3809), - [anon_sym_alias] = ACTIONS(3811), - [anon_sym_global] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_file] = ACTIONS(3811), - [anon_sym_LT] = ACTIONS(3899), - [anon_sym_GT] = ACTIONS(3899), - [anon_sym_where] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_notnull] = ACTIONS(3811), - [anon_sym_unmanaged] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_PLUS_PLUS] = ACTIONS(3897), - [anon_sym_DASH_DASH] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3897), - [anon_sym_SLASH] = ACTIONS(3899), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_CARET] = ACTIONS(3897), - [anon_sym_PIPE] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_LT] = ACTIONS(3897), - [anon_sym_GT_GT] = ACTIONS(3899), - [anon_sym_GT_GT_GT] = ACTIONS(3897), - [anon_sym_EQ_EQ] = ACTIONS(3897), - [anon_sym_BANG_EQ] = ACTIONS(3897), - [anon_sym_GT_EQ] = ACTIONS(3897), - [anon_sym_LT_EQ] = ACTIONS(3897), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_scoped] = ACTIONS(3811), - [anon_sym_var] = ACTIONS(3811), - [anon_sym_yield] = ACTIONS(3811), - [anon_sym_switch] = ACTIONS(3899), - [anon_sym_when] = ACTIONS(3811), - [sym_discard] = ACTIONS(3819), - [anon_sym_DOT_DOT] = ACTIONS(3897), - [anon_sym_and] = ACTIONS(3899), - [anon_sym_or] = ACTIONS(3899), - [anon_sym_AMP_AMP] = ACTIONS(3897), - [anon_sym_PIPE_PIPE] = ACTIONS(3897), - [anon_sym_QMARK_QMARK] = ACTIONS(3897), - [anon_sym_from] = ACTIONS(3811), - [anon_sym_into] = ACTIONS(3899), - [anon_sym_join] = ACTIONS(3811), - [anon_sym_on] = ACTIONS(3811), - [anon_sym_equals] = ACTIONS(3899), - [anon_sym_let] = ACTIONS(3811), - [anon_sym_orderby] = ACTIONS(3811), - [anon_sym_ascending] = ACTIONS(3811), - [anon_sym_descending] = ACTIONS(3811), - [anon_sym_group] = ACTIONS(3811), - [anon_sym_by] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_as] = ACTIONS(3899), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_DASH_GT] = ACTIONS(3897), - [anon_sym_with] = ACTIONS(3899), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -441571,80 +452125,85 @@ 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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_global] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_COMMA] = ACTIONS(4120), - [anon_sym_LPAREN] = ACTIONS(4120), - [anon_sym_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4118), - [anon_sym_GT] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4118), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_CARET] = ACTIONS(4120), - [anon_sym_PIPE] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4118), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(4118), - [anon_sym_GT_GT_GT] = 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(4118), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(4118), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(4120), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4120), - [anon_sym_QMARK_QMARK] = ACTIONS(4120), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4120), - [anon_sym_with] = ACTIONS(4118), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4120), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -441654,78 +452213,75 @@ 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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_global] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_COMMA] = ACTIONS(4120), - [anon_sym_LPAREN] = ACTIONS(4120), - [anon_sym_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(4118), - [anon_sym_GT] = ACTIONS(4118), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4118), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_STAR] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(4118), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_CARET] = ACTIONS(4120), - [anon_sym_PIPE] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4118), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(4118), - [anon_sym_GT_GT_GT] = 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(4118), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(4118), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(4120), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4120), - [anon_sym_PIPE_PIPE] = ACTIONS(4120), - [anon_sym_QMARK_QMARK] = ACTIONS(4120), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(4118), - [anon_sym_is] = ACTIONS(4118), - [anon_sym_DASH_GT] = ACTIONS(4120), - [anon_sym_with] = ACTIONS(4118), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4120), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2779] = { [sym_preproc_region] = STATE(2779), @@ -441737,78 +452293,79 @@ 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(4080), - [anon_sym_alias] = ACTIONS(4080), - [anon_sym_global] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4082), - [anon_sym_COLON] = ACTIONS(4082), - [anon_sym_COMMA] = ACTIONS(4082), - [anon_sym_LPAREN] = ACTIONS(4082), - [anon_sym_file] = ACTIONS(4080), - [anon_sym_LT] = ACTIONS(4080), - [anon_sym_GT] = ACTIONS(4080), - [anon_sym_where] = ACTIONS(4080), - [anon_sym_QMARK] = ACTIONS(4080), - [anon_sym_notnull] = ACTIONS(4080), - [anon_sym_unmanaged] = ACTIONS(4080), - [anon_sym_BANG] = ACTIONS(4080), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_SLASH] = ACTIONS(4080), - [anon_sym_PERCENT] = ACTIONS(4082), - [anon_sym_CARET] = ACTIONS(4082), - [anon_sym_PIPE] = ACTIONS(4080), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_LT_LT] = ACTIONS(4082), - [anon_sym_GT_GT] = ACTIONS(4080), - [anon_sym_GT_GT_GT] = ACTIONS(4082), - [anon_sym_EQ_EQ] = ACTIONS(4082), - [anon_sym_BANG_EQ] = ACTIONS(4082), - [anon_sym_GT_EQ] = ACTIONS(4082), - [anon_sym_LT_EQ] = ACTIONS(4082), - [anon_sym_DOT] = ACTIONS(4080), - [anon_sym_scoped] = ACTIONS(4080), - [anon_sym_var] = ACTIONS(4080), - [anon_sym_yield] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_when] = ACTIONS(4080), - [sym_discard] = ACTIONS(4080), - [anon_sym_DOT_DOT] = ACTIONS(4082), - [anon_sym_and] = ACTIONS(4080), - [anon_sym_or] = ACTIONS(4080), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_PIPE_PIPE] = ACTIONS(4082), - [anon_sym_QMARK_QMARK] = ACTIONS(4082), - [anon_sym_from] = ACTIONS(4080), - [anon_sym_into] = ACTIONS(4080), - [anon_sym_join] = ACTIONS(4080), - [anon_sym_on] = ACTIONS(4080), - [anon_sym_equals] = ACTIONS(4080), - [anon_sym_let] = ACTIONS(4080), - [anon_sym_orderby] = ACTIONS(4080), - [anon_sym_ascending] = ACTIONS(4080), - [anon_sym_descending] = ACTIONS(4080), - [anon_sym_group] = ACTIONS(4080), - [anon_sym_by] = ACTIONS(4080), - [anon_sym_select] = ACTIONS(4080), - [anon_sym_as] = ACTIONS(4080), - [anon_sym_is] = ACTIONS(4080), - [anon_sym_DASH_GT] = ACTIONS(4082), - [anon_sym_with] = ACTIONS(4080), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4082), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2780] = { [sym_preproc_region] = STATE(2780), @@ -441820,78 +452377,79 @@ 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(4066), - [anon_sym_alias] = ACTIONS(4066), - [anon_sym_global] = ACTIONS(4066), - [anon_sym_LBRACK] = ACTIONS(4068), - [anon_sym_COLON] = ACTIONS(4068), - [anon_sym_COMMA] = ACTIONS(4068), - [anon_sym_LPAREN] = ACTIONS(4068), - [anon_sym_file] = ACTIONS(4066), - [anon_sym_LT] = ACTIONS(4066), - [anon_sym_GT] = ACTIONS(4066), - [anon_sym_where] = ACTIONS(4066), - [anon_sym_QMARK] = ACTIONS(4066), - [anon_sym_notnull] = ACTIONS(4066), - [anon_sym_unmanaged] = ACTIONS(4066), - [anon_sym_BANG] = ACTIONS(4066), - [anon_sym_PLUS_PLUS] = ACTIONS(4068), - [anon_sym_DASH_DASH] = ACTIONS(4068), - [anon_sym_PLUS] = ACTIONS(4066), - [anon_sym_DASH] = ACTIONS(4066), - [anon_sym_STAR] = ACTIONS(4068), - [anon_sym_SLASH] = ACTIONS(4066), - [anon_sym_PERCENT] = ACTIONS(4068), - [anon_sym_CARET] = ACTIONS(4068), - [anon_sym_PIPE] = ACTIONS(4066), - [anon_sym_AMP] = ACTIONS(4066), - [anon_sym_LT_LT] = ACTIONS(4068), - [anon_sym_GT_GT] = ACTIONS(4066), - [anon_sym_GT_GT_GT] = ACTIONS(4068), - [anon_sym_EQ_EQ] = ACTIONS(4068), - [anon_sym_BANG_EQ] = ACTIONS(4068), - [anon_sym_GT_EQ] = ACTIONS(4068), - [anon_sym_LT_EQ] = ACTIONS(4068), - [anon_sym_DOT] = ACTIONS(4066), - [anon_sym_scoped] = ACTIONS(4066), - [anon_sym_var] = ACTIONS(4066), - [anon_sym_yield] = ACTIONS(4066), - [anon_sym_switch] = ACTIONS(4066), - [anon_sym_when] = ACTIONS(4066), - [sym_discard] = ACTIONS(4066), - [anon_sym_DOT_DOT] = ACTIONS(4068), - [anon_sym_and] = ACTIONS(4066), - [anon_sym_or] = ACTIONS(4066), - [anon_sym_AMP_AMP] = ACTIONS(4068), - [anon_sym_PIPE_PIPE] = ACTIONS(4068), - [anon_sym_QMARK_QMARK] = ACTIONS(4068), - [anon_sym_from] = ACTIONS(4066), - [anon_sym_into] = ACTIONS(4066), - [anon_sym_join] = ACTIONS(4066), - [anon_sym_on] = ACTIONS(4066), - [anon_sym_equals] = ACTIONS(4066), - [anon_sym_let] = ACTIONS(4066), - [anon_sym_orderby] = ACTIONS(4066), - [anon_sym_ascending] = ACTIONS(4066), - [anon_sym_descending] = ACTIONS(4066), - [anon_sym_group] = ACTIONS(4066), - [anon_sym_by] = ACTIONS(4066), - [anon_sym_select] = ACTIONS(4066), - [anon_sym_as] = ACTIONS(4066), - [anon_sym_is] = ACTIONS(4066), - [anon_sym_DASH_GT] = ACTIONS(4068), - [anon_sym_with] = ACTIONS(4066), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4068), + [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), }, [2781] = { [sym_preproc_region] = STATE(2781), @@ -441903,78 +452461,79 @@ 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(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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2782] = { [sym_preproc_region] = STATE(2782), @@ -441986,78 +452545,79 @@ 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(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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2783] = { [sym_preproc_region] = STATE(2783), @@ -442069,67 +452629,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2783), [sym_preproc_define] = STATE(2783), [sym_preproc_undef] = STATE(2783), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4627), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442151,67 +452713,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4629), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442233,79 +452797,85 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4631), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2786] = { + [sym__variable_designation] = STATE(3350), + [sym_parenthesized_variable_designation] = STATE(3340), + [sym_identifier] = STATE(3345), + [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2786), [sym_preproc_endregion] = STATE(2786), [sym_preproc_line] = STATE(2786), @@ -442315,67 +452885,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(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4043), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442388,6 +452956,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_preproc_region] = STATE(2787), [sym_preproc_endregion] = STATE(2787), [sym_preproc_line] = STATE(2787), @@ -442397,67 +452969,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442470,6 +453040,10 @@ 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), @@ -442479,67 +453053,65 @@ 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(4041), - [anon_sym_alias] = ACTIONS(4041), - [anon_sym_global] = ACTIONS(4041), - [anon_sym_LBRACK] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_file] = ACTIONS(4041), - [anon_sym_LT] = ACTIONS(4041), - [anon_sym_GT] = ACTIONS(4041), - [anon_sym_where] = ACTIONS(4041), - [anon_sym_QMARK] = ACTIONS(4041), - [anon_sym_notnull] = ACTIONS(4041), - [anon_sym_unmanaged] = ACTIONS(4041), - [anon_sym_BANG] = ACTIONS(4041), - [anon_sym_PLUS_PLUS] = ACTIONS(4043), - [anon_sym_DASH_DASH] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4041), - [anon_sym_DASH] = ACTIONS(4041), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_SLASH] = ACTIONS(4041), - [anon_sym_PERCENT] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_PIPE] = ACTIONS(4041), - [anon_sym_AMP] = ACTIONS(4041), - [anon_sym_LT_LT] = ACTIONS(4043), - [anon_sym_GT_GT] = ACTIONS(4041), - [anon_sym_GT_GT_GT] = ACTIONS(4043), - [anon_sym_EQ_EQ] = ACTIONS(4043), - [anon_sym_BANG_EQ] = ACTIONS(4043), - [anon_sym_GT_EQ] = ACTIONS(4043), - [anon_sym_LT_EQ] = ACTIONS(4043), - [anon_sym_DOT] = ACTIONS(4041), - [anon_sym_scoped] = ACTIONS(4041), - [anon_sym_EQ_GT] = ACTIONS(4043), - [anon_sym_var] = ACTIONS(4041), - [anon_sym_yield] = ACTIONS(4041), - [anon_sym_switch] = ACTIONS(4041), - [anon_sym_when] = ACTIONS(4041), - [sym_discard] = ACTIONS(4041), - [anon_sym_DOT_DOT] = ACTIONS(4043), - [anon_sym_and] = ACTIONS(4041), - [anon_sym_or] = ACTIONS(4041), - [anon_sym_AMP_AMP] = ACTIONS(4043), - [anon_sym_PIPE_PIPE] = ACTIONS(4043), - [anon_sym_QMARK_QMARK] = ACTIONS(4043), - [anon_sym_from] = ACTIONS(4041), - [anon_sym_into] = ACTIONS(4041), - [anon_sym_join] = ACTIONS(4041), - [anon_sym_on] = ACTIONS(4041), - [anon_sym_equals] = ACTIONS(4041), - [anon_sym_let] = ACTIONS(4041), - [anon_sym_orderby] = ACTIONS(4041), - [anon_sym_ascending] = ACTIONS(4041), - [anon_sym_descending] = ACTIONS(4041), - [anon_sym_group] = ACTIONS(4041), - [anon_sym_by] = ACTIONS(4041), - [anon_sym_select] = ACTIONS(4041), - [anon_sym_as] = ACTIONS(4041), - [anon_sym_is] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(4043), - [anon_sym_with] = ACTIONS(4041), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442552,6 +453124,10 @@ 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), @@ -442561,67 +453137,65 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4635), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(3948), + [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), @@ -442643,67 +453217,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2790), [sym_preproc_define] = STATE(2790), [sym_preproc_undef] = STATE(2790), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4639), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442725,79 +453301,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2792] = { + [sym__variable_designation] = STATE(3350), + [sym_parenthesized_variable_designation] = STATE(3340), + [sym_identifier] = STATE(3345), + [sym__reserved_identifier] = STATE(3177), [sym_preproc_region] = STATE(2792), [sym_preproc_endregion] = STATE(2792), [sym_preproc_line] = STATE(2792), @@ -442807,66 +453389,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), - [anon_sym_EQ] = ACTIONS(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_where] = ACTIONS(4112), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4114), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_from] = ACTIONS(4112), - [anon_sym_into] = ACTIONS(4112), - [anon_sym_join] = 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_select] = ACTIONS(4112), - [anon_sym_as] = ACTIONS(4114), - [anon_sym_is] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4112), - [anon_sym_with] = ACTIONS(4112), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442879,6 +453460,10 @@ 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), @@ -442888,66 +453473,65 @@ 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), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_where] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4086), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [anon_sym_from] = ACTIONS(4084), - [anon_sym_into] = ACTIONS(4084), - [anon_sym_join] = ACTIONS(4084), - [anon_sym_let] = ACTIONS(4084), - [anon_sym_orderby] = ACTIONS(4084), - [anon_sym_ascending] = ACTIONS(4084), - [anon_sym_descending] = ACTIONS(4084), - [anon_sym_group] = ACTIONS(4084), - [anon_sym_select] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4086), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -442960,6 +453544,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_preproc_region] = STATE(2794), [sym_preproc_endregion] = STATE(2794), [sym_preproc_line] = STATE(2794), @@ -442969,66 +453557,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4643), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443041,6 +453628,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_preproc_region] = STATE(2795), [sym_preproc_endregion] = STATE(2795), [sym_preproc_line] = STATE(2795), @@ -443050,66 +453641,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), - [anon_sym_EQ] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_where] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4124), - [anon_sym_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [anon_sym_from] = ACTIONS(4122), - [anon_sym_into] = ACTIONS(4122), - [anon_sym_join] = ACTIONS(4122), - [anon_sym_let] = ACTIONS(4122), - [anon_sym_orderby] = ACTIONS(4122), - [anon_sym_ascending] = ACTIONS(4122), - [anon_sym_descending] = ACTIONS(4122), - [anon_sym_group] = ACTIONS(4122), - [anon_sym_select] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4124), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443122,8 +453712,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2796] = { - [sym_argument_list] = STATE(2820), - [sym_initializer_expression] = STATE(2881), [sym_preproc_region] = STATE(2796), [sym_preproc_endregion] = STATE(2796), [sym_preproc_line] = STATE(2796), @@ -443133,64 +453721,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2796), [sym_preproc_define] = STATE(2796), [sym_preproc_undef] = STATE(2796), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COLON] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_RBRACK] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4649), - [anon_sym_GT_GT_GT] = ACTIONS(4645), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_GT_EQ] = ACTIONS(4645), - [anon_sym_LT_EQ] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_EQ_GT] = ACTIONS(4645), - [anon_sym_switch] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_or] = ACTIONS(4649), - [anon_sym_AMP_AMP] = ACTIONS(4645), - [anon_sym_PIPE_PIPE] = ACTIONS(4645), - [anon_sym_QMARK_QMARK] = ACTIONS(4645), - [anon_sym_from] = ACTIONS(4645), - [anon_sym_into] = ACTIONS(4645), - [anon_sym_join] = ACTIONS(4645), - [anon_sym_on] = ACTIONS(4645), - [anon_sym_equals] = ACTIONS(4645), - [anon_sym_let] = ACTIONS(4645), - [anon_sym_orderby] = ACTIONS(4645), - [anon_sym_group] = ACTIONS(4645), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_select] = ACTIONS(4645), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_with] = ACTIONS(4645), - [aux_sym_preproc_if_token3] = ACTIONS(4645), - [aux_sym_preproc_else_token1] = ACTIONS(4645), - [aux_sym_preproc_elif_token1] = ACTIONS(4645), + [sym__identifier_token] = ACTIONS(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), @@ -443212,66 +453805,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2797), [sym_preproc_define] = STATE(2797), [sym_preproc_undef] = STATE(2797), - [sym__identifier_token] = ACTIONS(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4651), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), + [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), @@ -443293,66 +453889,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(3948), + [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), @@ -443374,76 +453973,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2800] = { [sym_preproc_region] = STATE(2800), @@ -443455,76 +454057,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(4074), - [anon_sym_alias] = ACTIONS(4074), - [anon_sym_global] = ACTIONS(4074), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4076), - [anon_sym_LPAREN] = ACTIONS(4076), - [anon_sym_file] = ACTIONS(4074), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4074), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_notnull] = ACTIONS(4074), - [anon_sym_unmanaged] = ACTIONS(4074), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_scoped] = ACTIONS(4074), - [anon_sym_var] = ACTIONS(4074), - [anon_sym_yield] = ACTIONS(4074), - [anon_sym_switch] = ACTIONS(4190), - [anon_sym_when] = ACTIONS(4074), - [sym_discard] = ACTIONS(4074), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4074), - [anon_sym_or] = ACTIONS(4074), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [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(4190), - [anon_sym_is] = ACTIONS(4190), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4190), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2801] = { [sym_preproc_region] = STATE(2801), @@ -443536,76 +454141,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -443617,76 +454225,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2803] = { [sym_preproc_region] = STATE(2803), @@ -443698,66 +454309,69 @@ 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(4118), - [anon_sym_alias] = ACTIONS(4118), - [anon_sym_global] = ACTIONS(4118), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_LPAREN] = ACTIONS(4120), - [anon_sym_file] = ACTIONS(4118), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_notnull] = ACTIONS(4118), - [anon_sym_unmanaged] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_scoped] = ACTIONS(4118), - [anon_sym_var] = ACTIONS(4118), - [anon_sym_yield] = ACTIONS(4118), - [anon_sym_switch] = ACTIONS(2913), - [anon_sym_when] = ACTIONS(4118), - [sym_discard] = ACTIONS(4118), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(4118), - [anon_sym_or] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(4118), - [anon_sym_into] = ACTIONS(4118), - [anon_sym_join] = ACTIONS(4118), - [anon_sym_on] = ACTIONS(4118), - [anon_sym_equals] = ACTIONS(4118), - [anon_sym_let] = ACTIONS(4118), - [anon_sym_orderby] = ACTIONS(4118), - [anon_sym_ascending] = ACTIONS(4118), - [anon_sym_descending] = ACTIONS(4118), - [anon_sym_group] = ACTIONS(4118), - [anon_sym_by] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2913), + [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), @@ -443779,76 +454393,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4663), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -443860,66 +454477,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), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4132), - [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(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(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), + [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), @@ -443941,66 +454561,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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), + [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), @@ -444022,76 +454645,79 @@ 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(3948), - [anon_sym_alias] = ACTIONS(3948), - [anon_sym_global] = ACTIONS(3948), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_file] = ACTIONS(3948), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_notnull] = ACTIONS(3948), - [anon_sym_unmanaged] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(4667), - [anon_sym_scoped] = ACTIONS(3948), - [anon_sym_var] = ACTIONS(3948), - [anon_sym_yield] = ACTIONS(3948), - [anon_sym_switch] = ACTIONS(3948), - [anon_sym_when] = ACTIONS(3948), - [sym_discard] = ACTIONS(3948), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3948), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_into] = ACTIONS(3948), - [anon_sym_join] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_equals] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_orderby] = ACTIONS(3948), - [anon_sym_ascending] = ACTIONS(3948), - [anon_sym_descending] = ACTIONS(3948), - [anon_sym_group] = ACTIONS(3948), - [anon_sym_by] = ACTIONS(3948), - [anon_sym_select] = ACTIONS(3948), - [anon_sym_as] = ACTIONS(3948), - [anon_sym_is] = ACTIONS(3948), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(3948), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2808] = { [sym_preproc_region] = STATE(2808), @@ -444103,66 +454729,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(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_where] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(3083), - [anon_sym_while] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_catch] = ACTIONS(3083), - [anon_sym_finally] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3083), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_and] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_QMARK_QMARK] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3083), - [anon_sym_join] = ACTIONS(3083), - [anon_sym_on] = ACTIONS(3083), - [anon_sym_equals] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_orderby] = ACTIONS(3083), - [anon_sym_group] = ACTIONS(3083), - [anon_sym_by] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_with] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(4164), + [anon_sym_EQ] = ACTIONS(4166), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_COLON] = ACTIONS(4164), + [anon_sym_COMMA] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4164), + [anon_sym_LPAREN] = ACTIONS(4164), + [anon_sym_RPAREN] = ACTIONS(4164), + [anon_sym_RBRACE] = ACTIONS(4164), + [anon_sym_LT] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4166), + [anon_sym_in] = ACTIONS(4164), + [anon_sym_QMARK] = ACTIONS(4166), + [anon_sym_BANG] = ACTIONS(4166), + [anon_sym_PLUS_PLUS] = ACTIONS(4164), + [anon_sym_DASH_DASH] = ACTIONS(4164), + [anon_sym_PLUS] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4166), + [anon_sym_STAR] = ACTIONS(4166), + [anon_sym_SLASH] = ACTIONS(4166), + [anon_sym_PERCENT] = ACTIONS(4166), + [anon_sym_CARET] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4166), + [anon_sym_AMP] = ACTIONS(4166), + [anon_sym_LT_LT] = ACTIONS(4166), + [anon_sym_GT_GT] = ACTIONS(4166), + [anon_sym_GT_GT_GT] = ACTIONS(4166), + [anon_sym_EQ_EQ] = ACTIONS(4164), + [anon_sym_BANG_EQ] = ACTIONS(4164), + [anon_sym_GT_EQ] = ACTIONS(4164), + [anon_sym_LT_EQ] = ACTIONS(4164), + [anon_sym_DOT] = ACTIONS(4166), + [anon_sym_EQ_GT] = ACTIONS(4164), + [anon_sym_switch] = ACTIONS(4164), + [anon_sym_when] = ACTIONS(4164), + [anon_sym_DOT_DOT] = ACTIONS(4164), + [anon_sym_and] = ACTIONS(4164), + [anon_sym_or] = ACTIONS(4164), + [anon_sym_PLUS_EQ] = ACTIONS(4164), + [anon_sym_DASH_EQ] = ACTIONS(4164), + [anon_sym_STAR_EQ] = ACTIONS(4164), + [anon_sym_SLASH_EQ] = ACTIONS(4164), + [anon_sym_PERCENT_EQ] = ACTIONS(4164), + [anon_sym_AMP_EQ] = ACTIONS(4164), + [anon_sym_CARET_EQ] = ACTIONS(4164), + [anon_sym_PIPE_EQ] = ACTIONS(4164), + [anon_sym_LT_LT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(4164), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4164), + [anon_sym_AMP_AMP] = ACTIONS(4164), + [anon_sym_PIPE_PIPE] = ACTIONS(4164), + [anon_sym_QMARK_QMARK] = ACTIONS(4166), + [anon_sym_on] = ACTIONS(4164), + [anon_sym_equals] = ACTIONS(4164), + [anon_sym_by] = ACTIONS(4164), + [anon_sym_as] = ACTIONS(4164), + [anon_sym_is] = ACTIONS(4164), + [anon_sym_DASH_GT] = ACTIONS(4164), + [anon_sym_with] = ACTIONS(4164), + [aux_sym_preproc_if_token3] = ACTIONS(4164), + [aux_sym_preproc_else_token1] = ACTIONS(4164), + [aux_sym_preproc_elif_token1] = ACTIONS(4164), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444184,66 +454813,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), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_catch] = ACTIONS(2911), - [anon_sym_finally] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444265,65 +454897,69 @@ 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_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_where] = ACTIONS(3665), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3658), - [anon_sym_switch] = ACTIONS(3665), - [anon_sym_DOT_DOT] = ACTIONS(3665), - [anon_sym_and] = ACTIONS(3665), - [anon_sym_or] = ACTIONS(3658), - [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(3658), - [anon_sym_from] = ACTIONS(3665), - [anon_sym_into] = ACTIONS(3665), - [anon_sym_join] = ACTIONS(3665), - [anon_sym_let] = ACTIONS(3665), - [anon_sym_orderby] = ACTIONS(3665), - [anon_sym_ascending] = ACTIONS(3665), - [anon_sym_descending] = ACTIONS(3665), - [anon_sym_group] = ACTIONS(3665), - [anon_sym_select] = ACTIONS(3665), - [anon_sym_as] = ACTIONS(3658), - [anon_sym_is] = ACTIONS(3665), - [anon_sym_DASH_GT] = ACTIONS(3665), - [anon_sym_with] = ACTIONS(3665), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444345,65 +454981,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), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_where] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3651), - [anon_sym_into] = ACTIONS(3651), - [anon_sym_join] = ACTIONS(3651), - [anon_sym_let] = ACTIONS(3651), - [anon_sym_orderby] = ACTIONS(3651), - [anon_sym_ascending] = ACTIONS(3651), - [anon_sym_descending] = ACTIONS(3651), - [anon_sym_group] = ACTIONS(3651), - [anon_sym_select] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3636), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444416,8 +455056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2812] = { - [sym_argument_list] = STATE(2936), - [sym_bracketed_argument_list] = STATE(2358), [sym_preproc_region] = STATE(2812), [sym_preproc_endregion] = STATE(2812), [sym_preproc_line] = STATE(2812), @@ -444427,63 +455065,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2812), [sym_preproc_define] = STATE(2812), [sym_preproc_undef] = STATE(2812), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_LT] = ACTIONS(4669), - [anon_sym_GT_GT] = ACTIONS(4673), - [anon_sym_GT_GT_GT] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_EQ_GT] = ACTIONS(4669), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_and] = ACTIONS(4669), - [anon_sym_or] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4669), - [anon_sym_select] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(4669), - [aux_sym_preproc_if_token3] = ACTIONS(4669), - [aux_sym_preproc_else_token1] = ACTIONS(4669), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), + [sym__identifier_token] = ACTIONS(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), @@ -444505,65 +455149,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), - [anon_sym_EQ] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4128), - [anon_sym_GT] = ACTIONS(4128), - [anon_sym_where] = ACTIONS(4126), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_SLASH] = ACTIONS(4128), - [anon_sym_PERCENT] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_PIPE] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_LT] = ACTIONS(4128), - [anon_sym_GT_GT] = ACTIONS(4128), - [anon_sym_GT_GT_GT] = ACTIONS(4128), - [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(4128), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4128), - [anon_sym_PLUS_EQ] = ACTIONS(4126), - [anon_sym_DASH_EQ] = ACTIONS(4126), - [anon_sym_STAR_EQ] = ACTIONS(4126), - [anon_sym_SLASH_EQ] = ACTIONS(4126), - [anon_sym_PERCENT_EQ] = ACTIONS(4126), - [anon_sym_AMP_EQ] = ACTIONS(4126), - [anon_sym_CARET_EQ] = ACTIONS(4126), - [anon_sym_PIPE_EQ] = ACTIONS(4126), - [anon_sym_LT_LT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4128), - [anon_sym_from] = ACTIONS(4126), - [anon_sym_into] = ACTIONS(4126), - [anon_sym_join] = ACTIONS(4126), - [anon_sym_let] = ACTIONS(4126), - [anon_sym_orderby] = ACTIONS(4126), - [anon_sym_ascending] = ACTIONS(4126), - [anon_sym_descending] = ACTIONS(4126), - [anon_sym_group] = ACTIONS(4126), - [anon_sym_select] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4128), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444585,65 +455233,69 @@ 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), - [anon_sym_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = 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), + [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), @@ -444656,7 +455308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2815] = { - [sym_type_argument_list] = STATE(2868), [sym_preproc_region] = STATE(2815), [sym_preproc_endregion] = STATE(2815), [sym_preproc_line] = STATE(2815), @@ -444666,257 +455317,249 @@ 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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2816] = { - [sym_preproc_region] = STATE(2816), - [sym_preproc_endregion] = STATE(2816), - [sym_preproc_line] = STATE(2816), - [sym_preproc_pragma] = STATE(2816), - [sym_preproc_nullable] = STATE(2816), - [sym_preproc_error] = STATE(2816), - [sym_preproc_warning] = STATE(2816), - [sym_preproc_define] = STATE(2816), - [sym_preproc_undef] = STATE(2816), - [anon_sym_EQ] = ACTIONS(4682), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_PLUS_EQ] = ACTIONS(4688), - [anon_sym_DASH_EQ] = ACTIONS(4688), - [anon_sym_STAR_EQ] = ACTIONS(4688), - [anon_sym_SLASH_EQ] = ACTIONS(4688), - [anon_sym_PERCENT_EQ] = ACTIONS(4688), - [anon_sym_AMP_EQ] = ACTIONS(4688), - [anon_sym_CARET_EQ] = ACTIONS(4688), - [anon_sym_PIPE_EQ] = ACTIONS(4688), - [anon_sym_LT_LT_EQ] = ACTIONS(4688), - [anon_sym_GT_GT_EQ] = ACTIONS(4688), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4688), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4688), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_ascending] = ACTIONS(4684), - [anon_sym_descending] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2817] = { - [sym_argument_list] = STATE(2936), - [sym_bracketed_argument_list] = STATE(2358), - [sym_preproc_region] = STATE(2817), - [sym_preproc_endregion] = STATE(2817), - [sym_preproc_line] = STATE(2817), - [sym_preproc_pragma] = STATE(2817), - [sym_preproc_nullable] = STATE(2817), - [sym_preproc_error] = STATE(2817), - [sym_preproc_warning] = STATE(2817), - [sym_preproc_define] = STATE(2817), - [sym_preproc_undef] = STATE(2817), - [anon_sym_SEMI] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4690), - [anon_sym_COMMA] = ACTIONS(4690), - [anon_sym_RBRACK] = ACTIONS(4690), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4690), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_LT] = ACTIONS(4692), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4690), - [anon_sym_QMARK] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4692), - [anon_sym_DASH] = ACTIONS(4692), - [anon_sym_STAR] = ACTIONS(4690), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_PIPE] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4692), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4692), - [anon_sym_GT_GT_GT] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4690), - [anon_sym_BANG_EQ] = ACTIONS(4690), - [anon_sym_GT_EQ] = ACTIONS(4690), - [anon_sym_LT_EQ] = ACTIONS(4690), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_EQ_GT] = ACTIONS(4690), - [anon_sym_switch] = ACTIONS(4690), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_and] = ACTIONS(4690), - [anon_sym_or] = ACTIONS(4692), - [anon_sym_AMP_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4690), - [anon_sym_QMARK_QMARK] = ACTIONS(4690), - [anon_sym_from] = ACTIONS(4690), - [anon_sym_into] = ACTIONS(4690), - [anon_sym_join] = ACTIONS(4690), - [anon_sym_on] = ACTIONS(4690), - [anon_sym_equals] = ACTIONS(4690), - [anon_sym_let] = ACTIONS(4690), - [anon_sym_orderby] = ACTIONS(4690), - [anon_sym_group] = ACTIONS(4690), - [anon_sym_by] = ACTIONS(4690), - [anon_sym_select] = ACTIONS(4690), - [anon_sym_as] = ACTIONS(4690), - [anon_sym_is] = ACTIONS(4690), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(4690), - [aux_sym_preproc_if_token3] = ACTIONS(4690), - [aux_sym_preproc_else_token1] = ACTIONS(4690), - [aux_sym_preproc_elif_token1] = ACTIONS(4690), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2816] = { + [sym_preproc_region] = STATE(2816), + [sym_preproc_endregion] = STATE(2816), + [sym_preproc_line] = STATE(2816), + [sym_preproc_pragma] = STATE(2816), + [sym_preproc_nullable] = STATE(2816), + [sym_preproc_error] = STATE(2816), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2817] = { + [sym_preproc_region] = STATE(2817), + [sym_preproc_endregion] = STATE(2817), + [sym_preproc_line] = STATE(2817), + [sym_preproc_pragma] = STATE(2817), + [sym_preproc_nullable] = STATE(2817), + [sym_preproc_error] = STATE(2817), + [sym_preproc_warning] = STATE(2817), + [sym_preproc_define] = STATE(2817), + [sym_preproc_undef] = STATE(2817), + [sym__identifier_token] = ACTIONS(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), }, [2818] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5738), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5493), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2818), [sym_preproc_endregion] = STATE(2818), [sym_preproc_line] = STATE(2818), @@ -444926,44 +455569,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5089), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3363), - [aux_sym__lambda_expression_init_repeat1] = STATE(3288), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4698), - [anon_sym_params] = ACTIONS(4700), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -444985,78 +455653,81 @@ 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), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_where] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4072), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [anon_sym_QMARK_QMARK] = ACTIONS(4072), - [anon_sym_from] = ACTIONS(4070), - [anon_sym_into] = ACTIONS(4070), - [anon_sym_join] = 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_select] = ACTIONS(4070), - [anon_sym_as] = ACTIONS(4072), - [anon_sym_is] = ACTIONS(4070), - [anon_sym_DASH_GT] = ACTIONS(4070), - [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__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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_initializer_expression] = STATE(2877), [sym_preproc_region] = STATE(2820), [sym_preproc_endregion] = STATE(2820), [sym_preproc_line] = STATE(2820), @@ -445066,64 +455737,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), - [anon_sym_SEMI] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4702), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_RBRACK] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_LT] = ACTIONS(4704), - [anon_sym_GT] = ACTIONS(4704), - [anon_sym_in] = ACTIONS(4704), - [anon_sym_where] = ACTIONS(4702), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4704), - [anon_sym_PLUS_PLUS] = ACTIONS(4702), - [anon_sym_DASH_DASH] = ACTIONS(4702), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_STAR] = ACTIONS(4702), - [anon_sym_SLASH] = ACTIONS(4704), - [anon_sym_PERCENT] = ACTIONS(4702), - [anon_sym_CARET] = ACTIONS(4702), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4704), - [anon_sym_LT_LT] = ACTIONS(4702), - [anon_sym_GT_GT] = ACTIONS(4704), - [anon_sym_GT_GT_GT] = ACTIONS(4702), - [anon_sym_EQ_EQ] = ACTIONS(4702), - [anon_sym_BANG_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_EQ_GT] = ACTIONS(4702), - [anon_sym_switch] = ACTIONS(4702), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4702), - [anon_sym_or] = ACTIONS(4704), - [anon_sym_AMP_AMP] = ACTIONS(4702), - [anon_sym_PIPE_PIPE] = ACTIONS(4702), - [anon_sym_QMARK_QMARK] = ACTIONS(4702), - [anon_sym_from] = ACTIONS(4702), - [anon_sym_into] = ACTIONS(4702), - [anon_sym_join] = ACTIONS(4702), - [anon_sym_on] = ACTIONS(4702), - [anon_sym_equals] = ACTIONS(4702), - [anon_sym_let] = ACTIONS(4702), - [anon_sym_orderby] = ACTIONS(4702), - [anon_sym_group] = ACTIONS(4702), - [anon_sym_by] = ACTIONS(4702), - [anon_sym_select] = ACTIONS(4702), - [anon_sym_as] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(4702), - [anon_sym_DASH_GT] = ACTIONS(4702), - [anon_sym_with] = ACTIONS(4702), - [aux_sym_preproc_if_token3] = ACTIONS(4702), - [aux_sym_preproc_else_token1] = ACTIONS(4702), - [aux_sym_preproc_elif_token1] = ACTIONS(4702), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445136,7 +455812,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2821] = { - [sym_initializer_expression] = STATE(2897), [sym_preproc_region] = STATE(2821), [sym_preproc_endregion] = STATE(2821), [sym_preproc_line] = STATE(2821), @@ -445146,64 +455821,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4708), - [anon_sym_COLON] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4706), - [anon_sym_RBRACK] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4711), - [anon_sym_where] = ACTIONS(4706), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4706), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_CARET] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4711), - [anon_sym_LT_LT] = ACTIONS(4706), - [anon_sym_GT_GT] = ACTIONS(4711), - [anon_sym_GT_GT_GT] = ACTIONS(4706), - [anon_sym_EQ_EQ] = ACTIONS(4706), - [anon_sym_BANG_EQ] = ACTIONS(4706), - [anon_sym_GT_EQ] = ACTIONS(4706), - [anon_sym_LT_EQ] = ACTIONS(4706), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_EQ_GT] = ACTIONS(4706), - [anon_sym_switch] = ACTIONS(4706), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_and] = ACTIONS(4706), - [anon_sym_or] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_PIPE_PIPE] = ACTIONS(4706), - [anon_sym_QMARK_QMARK] = ACTIONS(4706), - [anon_sym_from] = ACTIONS(4706), - [anon_sym_into] = ACTIONS(4706), - [anon_sym_join] = ACTIONS(4706), - [anon_sym_on] = ACTIONS(4706), - [anon_sym_equals] = ACTIONS(4706), - [anon_sym_let] = ACTIONS(4706), - [anon_sym_orderby] = ACTIONS(4706), - [anon_sym_group] = ACTIONS(4706), - [anon_sym_by] = ACTIONS(4706), - [anon_sym_select] = ACTIONS(4706), - [anon_sym_as] = ACTIONS(4706), - [anon_sym_is] = ACTIONS(4706), - [anon_sym_DASH_GT] = ACTIONS(4706), - [anon_sym_with] = ACTIONS(4706), - [aux_sym_preproc_if_token3] = ACTIONS(4706), - [aux_sym_preproc_else_token1] = ACTIONS(4706), - [aux_sym_preproc_elif_token1] = ACTIONS(4706), + [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), @@ -445225,99 +455905,81 @@ 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), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_where] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4207), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4207), - [anon_sym_BANG_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4213), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(4207), - [anon_sym_PIPE_PIPE] = ACTIONS(4207), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_from] = ACTIONS(4205), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_join] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4205), - [anon_sym_orderby] = ACTIONS(4205), - [anon_sym_ascending] = ACTIONS(4205), - [anon_sym_descending] = ACTIONS(4205), - [anon_sym_group] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(4210), - [anon_sym_is] = ACTIONS(4207), - [anon_sym_DASH_GT] = ACTIONS(4207), - [anon_sym_with] = ACTIONS(4207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [2823] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym_tuple_pattern] = STATE(6762), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5557), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2823), [sym_preproc_endregion] = STATE(2823), [sym_preproc_line] = STATE(2823), @@ -445327,43 +455989,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2823), [sym_preproc_define] = STATE(2823), [sym_preproc_undef] = STATE(2823), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(4713), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [sym_discard] = ACTIONS(4717), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -445385,65 +456073,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), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_where] = ACTIONS(3562), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3562), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3562), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [anon_sym_from] = ACTIONS(3562), - [anon_sym_into] = ACTIONS(3562), - [anon_sym_join] = ACTIONS(3562), - [anon_sym_on] = ACTIONS(3562), - [anon_sym_equals] = ACTIONS(3562), - [anon_sym_let] = ACTIONS(3562), - [anon_sym_orderby] = ACTIONS(3562), - [anon_sym_group] = ACTIONS(3562), - [anon_sym_by] = ACTIONS(3562), - [anon_sym_select] = ACTIONS(3562), - [anon_sym_as] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(3562), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3562), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445465,65 +456157,69 @@ 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), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_where] = ACTIONS(4106), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4108), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [anon_sym_from] = ACTIONS(4106), - [anon_sym_into] = ACTIONS(4106), - [anon_sym_join] = ACTIONS(4106), - [anon_sym_let] = ACTIONS(4106), - [anon_sym_orderby] = ACTIONS(4106), - [anon_sym_ascending] = ACTIONS(4106), - [anon_sym_descending] = ACTIONS(4106), - [anon_sym_group] = ACTIONS(4106), - [anon_sym_select] = ACTIONS(4106), - [anon_sym_as] = ACTIONS(4108), - [anon_sym_is] = ACTIONS(4106), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4106), + [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), @@ -445545,65 +456241,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), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [anon_sym_from] = ACTIONS(3598), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_join] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_orderby] = ACTIONS(3598), - [anon_sym_group] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_select] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445616,7 +456316,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2827] = { - [sym_initializer_expression] = STATE(2891), [sym_preproc_region] = STATE(2827), [sym_preproc_endregion] = STATE(2827), [sym_preproc_line] = STATE(2827), @@ -445626,64 +456325,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(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(1243), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_CARET] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_LT] = ACTIONS(4719), - [anon_sym_GT_GT] = ACTIONS(4721), - [anon_sym_GT_GT_GT] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_EQ_GT] = ACTIONS(4719), - [anon_sym_switch] = ACTIONS(4719), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_and] = ACTIONS(4719), - [anon_sym_or] = ACTIONS(4721), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_QMARK_QMARK] = ACTIONS(4719), - [anon_sym_from] = ACTIONS(4719), - [anon_sym_into] = ACTIONS(4719), - [anon_sym_join] = ACTIONS(4719), - [anon_sym_on] = ACTIONS(4719), - [anon_sym_equals] = ACTIONS(4719), - [anon_sym_let] = ACTIONS(4719), - [anon_sym_orderby] = ACTIONS(4719), - [anon_sym_group] = ACTIONS(4719), - [anon_sym_by] = ACTIONS(4719), - [anon_sym_select] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4719), - [aux_sym_preproc_if_token3] = ACTIONS(4719), - [aux_sym_preproc_else_token1] = ACTIONS(4719), - [aux_sym_preproc_elif_token1] = ACTIONS(4719), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445705,65 +456409,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), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3393), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_join] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_orderby] = ACTIONS(3393), - [anon_sym_group] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_select] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = 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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445776,8 +456484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2829] = { - [sym_argument_list] = STATE(2936), - [sym_bracketed_argument_list] = STATE(2358), [sym_preproc_region] = STATE(2829), [sym_preproc_endregion] = STATE(2829), [sym_preproc_line] = STATE(2829), @@ -445787,63 +456493,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(4671), - [anon_sym_COLON] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(4647), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4723), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(4675), - [anon_sym_PLUS_PLUS] = ACTIONS(4677), - [anon_sym_DASH_DASH] = ACTIONS(4677), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4723), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_CARET] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4723), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_GT_GT_GT] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_DOT] = ACTIONS(4659), - [anon_sym_EQ_GT] = ACTIONS(4723), - [anon_sym_switch] = ACTIONS(4723), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_and] = ACTIONS(4723), - [anon_sym_or] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_QMARK_QMARK] = ACTIONS(4723), - [anon_sym_from] = ACTIONS(4723), - [anon_sym_into] = ACTIONS(4723), - [anon_sym_join] = ACTIONS(4723), - [anon_sym_on] = ACTIONS(4723), - [anon_sym_equals] = ACTIONS(4723), - [anon_sym_let] = ACTIONS(4723), - [anon_sym_orderby] = ACTIONS(4723), - [anon_sym_group] = ACTIONS(4723), - [anon_sym_by] = ACTIONS(4723), - [anon_sym_select] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(4723), - [aux_sym_preproc_if_token3] = ACTIONS(4723), - [aux_sym_preproc_else_token1] = ACTIONS(4723), - [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [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), @@ -445865,65 +456577,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), - [anon_sym_EQ] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4092), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_from] = ACTIONS(4090), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_join] = 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_select] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4092), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4090), - [anon_sym_with] = ACTIONS(4090), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -445945,64 +456661,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), @@ -446024,64 +456745,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4732), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_from] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_join] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_let] = ACTIONS(4730), - [anon_sym_orderby] = ACTIONS(4730), - [anon_sym_group] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_select] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [sym_string_literal_encoding] = ACTIONS(4734), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), @@ -446094,7 +456820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2833] = { - [sym_initializer_expression] = STATE(3016), [sym_preproc_region] = STATE(2833), [sym_preproc_endregion] = STATE(2833), [sym_preproc_line] = STATE(2833), @@ -446104,63 +456829,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2833), [sym_preproc_define] = STATE(2833), [sym_preproc_undef] = STATE(2833), - [anon_sym_SEMI] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4702), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_RBRACK] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_LT] = ACTIONS(4704), - [anon_sym_GT] = ACTIONS(4704), - [anon_sym_in] = ACTIONS(4702), - [anon_sym_where] = ACTIONS(4702), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4704), - [anon_sym_PLUS_PLUS] = ACTIONS(4702), - [anon_sym_DASH_DASH] = ACTIONS(4702), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_STAR] = ACTIONS(4702), - [anon_sym_SLASH] = ACTIONS(4704), - [anon_sym_PERCENT] = ACTIONS(4702), - [anon_sym_CARET] = ACTIONS(4702), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4704), - [anon_sym_LT_LT] = ACTIONS(4702), - [anon_sym_GT_GT] = ACTIONS(4704), - [anon_sym_GT_GT_GT] = ACTIONS(4702), - [anon_sym_EQ_EQ] = ACTIONS(4702), - [anon_sym_BANG_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_EQ_GT] = ACTIONS(4702), - [anon_sym_switch] = ACTIONS(4702), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4702), - [anon_sym_or] = ACTIONS(4704), - [anon_sym_AMP_AMP] = ACTIONS(4702), - [anon_sym_PIPE_PIPE] = ACTIONS(4702), - [anon_sym_QMARK_QMARK] = ACTIONS(4702), - [anon_sym_from] = ACTIONS(4702), - [anon_sym_join] = ACTIONS(4702), - [anon_sym_on] = ACTIONS(4702), - [anon_sym_equals] = ACTIONS(4702), - [anon_sym_let] = ACTIONS(4702), - [anon_sym_orderby] = ACTIONS(4702), - [anon_sym_group] = ACTIONS(4702), - [anon_sym_by] = ACTIONS(4702), - [anon_sym_select] = ACTIONS(4702), - [anon_sym_as] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(4702), - [anon_sym_DASH_GT] = ACTIONS(4702), - [anon_sym_with] = ACTIONS(4702), - [aux_sym_preproc_if_token3] = ACTIONS(4702), - [aux_sym_preproc_else_token1] = ACTIONS(4702), - [aux_sym_preproc_elif_token1] = ACTIONS(4702), + [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), @@ -446182,64 +456913,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2834), [sym_preproc_define] = STATE(2834), [sym_preproc_undef] = STATE(2834), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_from] = ACTIONS(3393), - [anon_sym_join] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_let] = ACTIONS(3393), - [anon_sym_orderby] = ACTIONS(3393), - [anon_sym_group] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_select] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = 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(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_alias] = ACTIONS(4637), + [anon_sym_global] = ACTIONS(4637), + [anon_sym_using] = ACTIONS(4637), + [anon_sym_unsafe] = ACTIONS(4637), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_LBRACK] = ACTIONS(4639), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_event] = ACTIONS(4637), + [anon_sym_namespace] = ACTIONS(4637), + [anon_sym_class] = ACTIONS(4637), + [anon_sym_ref] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_RBRACE] = ACTIONS(4639), + [anon_sym_interface] = ACTIONS(4637), + [anon_sym_delegate] = ACTIONS(4637), + [anon_sym_record] = ACTIONS(4637), + [anon_sym_abstract] = ACTIONS(4637), + [anon_sym_async] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_file] = ACTIONS(4637), + [anon_sym_fixed] = ACTIONS(4637), + [anon_sym_internal] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_override] = ACTIONS(4637), + [anon_sym_partial] = ACTIONS(4637), + [anon_sym_private] = ACTIONS(4637), + [anon_sym_protected] = ACTIONS(4637), + [anon_sym_public] = ACTIONS(4637), + [anon_sym_readonly] = ACTIONS(4637), + [anon_sym_required] = ACTIONS(4637), + [anon_sym_sealed] = ACTIONS(4637), + [anon_sym_virtual] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym_where] = ACTIONS(4637), + [anon_sym_notnull] = ACTIONS(4637), + [anon_sym_unmanaged] = ACTIONS(4637), + [anon_sym_TILDE] = ACTIONS(4639), + [anon_sym_implicit] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_scoped] = ACTIONS(4637), + [anon_sym_var] = ACTIONS(4637), + [sym_predefined_type] = ACTIONS(4637), + [anon_sym_yield] = ACTIONS(4637), + [anon_sym_when] = ACTIONS(4637), + [anon_sym_from] = ACTIONS(4637), + [anon_sym_into] = ACTIONS(4637), + [anon_sym_join] = ACTIONS(4637), + [anon_sym_on] = ACTIONS(4637), + [anon_sym_equals] = ACTIONS(4637), + [anon_sym_let] = ACTIONS(4637), + [anon_sym_orderby] = ACTIONS(4637), + [anon_sym_ascending] = ACTIONS(4637), + [anon_sym_descending] = ACTIONS(4637), + [anon_sym_group] = ACTIONS(4637), + [anon_sym_by] = ACTIONS(4637), + [anon_sym_select] = ACTIONS(4637), + [aux_sym_preproc_if_token1] = ACTIONS(4639), + [aux_sym_preproc_if_token3] = ACTIONS(4639), + [aux_sym_preproc_else_token1] = ACTIONS(4639), + [aux_sym_preproc_elif_token1] = ACTIONS(4639), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446261,64 +456997,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2835), [sym_preproc_define] = STATE(2835), [sym_preproc_undef] = STATE(2835), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3562), - [anon_sym_where] = ACTIONS(3562), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3562), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3562), - [anon_sym_or] = ACTIONS(3565), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [anon_sym_from] = ACTIONS(3562), - [anon_sym_join] = ACTIONS(3562), - [anon_sym_on] = ACTIONS(3562), - [anon_sym_equals] = ACTIONS(3562), - [anon_sym_let] = ACTIONS(3562), - [anon_sym_orderby] = ACTIONS(3562), - [anon_sym_group] = ACTIONS(3562), - [anon_sym_by] = ACTIONS(3562), - [anon_sym_select] = ACTIONS(3562), - [anon_sym_as] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(3562), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3562), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [sym__identifier_token] = ACTIONS(4641), + [anon_sym_extern] = ACTIONS(4641), + [anon_sym_alias] = ACTIONS(4641), + [anon_sym_global] = ACTIONS(4641), + [anon_sym_using] = ACTIONS(4641), + [anon_sym_unsafe] = ACTIONS(4641), + [anon_sym_static] = ACTIONS(4641), + [anon_sym_LBRACK] = ACTIONS(4643), + [anon_sym_LPAREN] = ACTIONS(4643), + [anon_sym_event] = ACTIONS(4641), + [anon_sym_namespace] = ACTIONS(4641), + [anon_sym_class] = ACTIONS(4641), + [anon_sym_ref] = ACTIONS(4641), + [anon_sym_struct] = ACTIONS(4641), + [anon_sym_enum] = ACTIONS(4641), + [anon_sym_RBRACE] = ACTIONS(4643), + [anon_sym_interface] = ACTIONS(4641), + [anon_sym_delegate] = ACTIONS(4641), + [anon_sym_record] = ACTIONS(4641), + [anon_sym_abstract] = ACTIONS(4641), + [anon_sym_async] = ACTIONS(4641), + [anon_sym_const] = ACTIONS(4641), + [anon_sym_file] = ACTIONS(4641), + [anon_sym_fixed] = ACTIONS(4641), + [anon_sym_internal] = ACTIONS(4641), + [anon_sym_new] = ACTIONS(4641), + [anon_sym_override] = ACTIONS(4641), + [anon_sym_partial] = ACTIONS(4641), + [anon_sym_private] = ACTIONS(4641), + [anon_sym_protected] = ACTIONS(4641), + [anon_sym_public] = ACTIONS(4641), + [anon_sym_readonly] = ACTIONS(4641), + [anon_sym_required] = ACTIONS(4641), + [anon_sym_sealed] = ACTIONS(4641), + [anon_sym_virtual] = ACTIONS(4641), + [anon_sym_volatile] = ACTIONS(4641), + [anon_sym_where] = ACTIONS(4641), + [anon_sym_notnull] = ACTIONS(4641), + [anon_sym_unmanaged] = ACTIONS(4641), + [anon_sym_TILDE] = ACTIONS(4643), + [anon_sym_implicit] = ACTIONS(4641), + [anon_sym_explicit] = ACTIONS(4641), + [anon_sym_scoped] = ACTIONS(4641), + [anon_sym_var] = ACTIONS(4641), + [sym_predefined_type] = ACTIONS(4641), + [anon_sym_yield] = ACTIONS(4641), + [anon_sym_when] = ACTIONS(4641), + [anon_sym_from] = ACTIONS(4641), + [anon_sym_into] = ACTIONS(4641), + [anon_sym_join] = ACTIONS(4641), + [anon_sym_on] = ACTIONS(4641), + [anon_sym_equals] = ACTIONS(4641), + [anon_sym_let] = ACTIONS(4641), + [anon_sym_orderby] = ACTIONS(4641), + [anon_sym_ascending] = ACTIONS(4641), + [anon_sym_descending] = ACTIONS(4641), + [anon_sym_group] = ACTIONS(4641), + [anon_sym_by] = ACTIONS(4641), + [anon_sym_select] = ACTIONS(4641), + [aux_sym_preproc_if_token1] = ACTIONS(4643), + [aux_sym_preproc_if_token3] = ACTIONS(4643), + [aux_sym_preproc_else_token1] = ACTIONS(4643), + [aux_sym_preproc_elif_token1] = ACTIONS(4643), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446340,64 +457081,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2836), [sym_preproc_define] = STATE(2836), [sym_preproc_undef] = STATE(2836), - [anon_sym_EQ] = ACTIONS(4736), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_PLUS_EQ] = ACTIONS(4738), - [anon_sym_DASH_EQ] = ACTIONS(4738), - [anon_sym_STAR_EQ] = ACTIONS(4738), - [anon_sym_SLASH_EQ] = ACTIONS(4738), - [anon_sym_PERCENT_EQ] = ACTIONS(4738), - [anon_sym_AMP_EQ] = ACTIONS(4738), - [anon_sym_CARET_EQ] = ACTIONS(4738), - [anon_sym_PIPE_EQ] = ACTIONS(4738), - [anon_sym_LT_LT_EQ] = ACTIONS(4738), - [anon_sym_GT_GT_EQ] = ACTIONS(4738), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4738), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4738), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_ascending] = ACTIONS(4684), - [anon_sym_descending] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [sym__identifier_token] = ACTIONS(4645), + [anon_sym_extern] = ACTIONS(4645), + [anon_sym_alias] = ACTIONS(4645), + [anon_sym_global] = ACTIONS(4645), + [anon_sym_using] = ACTIONS(4645), + [anon_sym_unsafe] = ACTIONS(4645), + [anon_sym_static] = ACTIONS(4645), + [anon_sym_LBRACK] = ACTIONS(4647), + [anon_sym_LPAREN] = ACTIONS(4647), + [anon_sym_event] = ACTIONS(4645), + [anon_sym_namespace] = ACTIONS(4645), + [anon_sym_class] = ACTIONS(4645), + [anon_sym_ref] = ACTIONS(4645), + [anon_sym_struct] = ACTIONS(4645), + [anon_sym_enum] = ACTIONS(4645), + [anon_sym_RBRACE] = ACTIONS(4647), + [anon_sym_interface] = ACTIONS(4645), + [anon_sym_delegate] = ACTIONS(4645), + [anon_sym_record] = ACTIONS(4645), + [anon_sym_abstract] = ACTIONS(4645), + [anon_sym_async] = ACTIONS(4645), + [anon_sym_const] = ACTIONS(4645), + [anon_sym_file] = ACTIONS(4645), + [anon_sym_fixed] = ACTIONS(4645), + [anon_sym_internal] = ACTIONS(4645), + [anon_sym_new] = ACTIONS(4645), + [anon_sym_override] = ACTIONS(4645), + [anon_sym_partial] = ACTIONS(4645), + [anon_sym_private] = ACTIONS(4645), + [anon_sym_protected] = ACTIONS(4645), + [anon_sym_public] = ACTIONS(4645), + [anon_sym_readonly] = ACTIONS(4645), + [anon_sym_required] = ACTIONS(4645), + [anon_sym_sealed] = ACTIONS(4645), + [anon_sym_virtual] = ACTIONS(4645), + [anon_sym_volatile] = ACTIONS(4645), + [anon_sym_where] = ACTIONS(4645), + [anon_sym_notnull] = ACTIONS(4645), + [anon_sym_unmanaged] = ACTIONS(4645), + [anon_sym_TILDE] = ACTIONS(4647), + [anon_sym_implicit] = ACTIONS(4645), + [anon_sym_explicit] = ACTIONS(4645), + [anon_sym_scoped] = ACTIONS(4645), + [anon_sym_var] = ACTIONS(4645), + [sym_predefined_type] = ACTIONS(4645), + [anon_sym_yield] = ACTIONS(4645), + [anon_sym_when] = ACTIONS(4645), + [anon_sym_from] = ACTIONS(4645), + [anon_sym_into] = ACTIONS(4645), + [anon_sym_join] = ACTIONS(4645), + [anon_sym_on] = ACTIONS(4645), + [anon_sym_equals] = ACTIONS(4645), + [anon_sym_let] = ACTIONS(4645), + [anon_sym_orderby] = ACTIONS(4645), + [anon_sym_ascending] = ACTIONS(4645), + [anon_sym_descending] = ACTIONS(4645), + [anon_sym_group] = ACTIONS(4645), + [anon_sym_by] = ACTIONS(4645), + [anon_sym_select] = ACTIONS(4645), + [aux_sym_preproc_if_token1] = ACTIONS(4647), + [aux_sym_preproc_if_token3] = ACTIONS(4647), + [aux_sym_preproc_else_token1] = ACTIONS(4647), + [aux_sym_preproc_elif_token1] = ACTIONS(4647), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446419,64 +457165,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2837), [sym_preproc_define] = STATE(2837), [sym_preproc_undef] = STATE(2837), - [anon_sym_SEMI] = ACTIONS(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4007), - [anon_sym_into] = ACTIONS(4007), - [anon_sym_join] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_orderby] = ACTIONS(4007), - [anon_sym_group] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [sym__identifier_token] = ACTIONS(4649), + [anon_sym_extern] = ACTIONS(4649), + [anon_sym_alias] = ACTIONS(4649), + [anon_sym_global] = ACTIONS(4649), + [anon_sym_using] = ACTIONS(4649), + [anon_sym_unsafe] = ACTIONS(4649), + [anon_sym_static] = ACTIONS(4649), + [anon_sym_LBRACK] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(4651), + [anon_sym_event] = ACTIONS(4649), + [anon_sym_namespace] = ACTIONS(4649), + [anon_sym_class] = ACTIONS(4649), + [anon_sym_ref] = ACTIONS(4649), + [anon_sym_struct] = ACTIONS(4649), + [anon_sym_enum] = ACTIONS(4649), + [anon_sym_RBRACE] = ACTIONS(4651), + [anon_sym_interface] = ACTIONS(4649), + [anon_sym_delegate] = ACTIONS(4649), + [anon_sym_record] = ACTIONS(4649), + [anon_sym_abstract] = ACTIONS(4649), + [anon_sym_async] = ACTIONS(4649), + [anon_sym_const] = ACTIONS(4649), + [anon_sym_file] = ACTIONS(4649), + [anon_sym_fixed] = ACTIONS(4649), + [anon_sym_internal] = ACTIONS(4649), + [anon_sym_new] = ACTIONS(4649), + [anon_sym_override] = ACTIONS(4649), + [anon_sym_partial] = ACTIONS(4649), + [anon_sym_private] = ACTIONS(4649), + [anon_sym_protected] = ACTIONS(4649), + [anon_sym_public] = ACTIONS(4649), + [anon_sym_readonly] = ACTIONS(4649), + [anon_sym_required] = ACTIONS(4649), + [anon_sym_sealed] = ACTIONS(4649), + [anon_sym_virtual] = ACTIONS(4649), + [anon_sym_volatile] = ACTIONS(4649), + [anon_sym_where] = ACTIONS(4649), + [anon_sym_notnull] = ACTIONS(4649), + [anon_sym_unmanaged] = ACTIONS(4649), + [anon_sym_TILDE] = ACTIONS(4651), + [anon_sym_implicit] = ACTIONS(4649), + [anon_sym_explicit] = ACTIONS(4649), + [anon_sym_scoped] = ACTIONS(4649), + [anon_sym_var] = ACTIONS(4649), + [sym_predefined_type] = ACTIONS(4649), + [anon_sym_yield] = ACTIONS(4649), + [anon_sym_when] = ACTIONS(4649), + [anon_sym_from] = ACTIONS(4649), + [anon_sym_into] = ACTIONS(4649), + [anon_sym_join] = ACTIONS(4649), + [anon_sym_on] = ACTIONS(4649), + [anon_sym_equals] = ACTIONS(4649), + [anon_sym_let] = ACTIONS(4649), + [anon_sym_orderby] = ACTIONS(4649), + [anon_sym_ascending] = ACTIONS(4649), + [anon_sym_descending] = ACTIONS(4649), + [anon_sym_group] = ACTIONS(4649), + [anon_sym_by] = ACTIONS(4649), + [anon_sym_select] = ACTIONS(4649), + [aux_sym_preproc_if_token1] = ACTIONS(4651), + [aux_sym_preproc_if_token3] = ACTIONS(4651), + [aux_sym_preproc_else_token1] = ACTIONS(4651), + [aux_sym_preproc_elif_token1] = ACTIONS(4651), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446489,7 +457240,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2838] = { - [sym_type_argument_list] = STATE(2946), [sym_preproc_region] = STATE(2838), [sym_preproc_endregion] = STATE(2838), [sym_preproc_line] = STATE(2838), @@ -446499,63 +457249,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2838), [sym_preproc_define] = STATE(2838), [sym_preproc_undef] = STATE(2838), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(4743), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [sym__identifier_token] = ACTIONS(4653), + [anon_sym_extern] = ACTIONS(4653), + [anon_sym_alias] = ACTIONS(4653), + [anon_sym_global] = ACTIONS(4653), + [anon_sym_using] = ACTIONS(4653), + [anon_sym_unsafe] = ACTIONS(4653), + [anon_sym_static] = ACTIONS(4653), + [anon_sym_LBRACK] = ACTIONS(4655), + [anon_sym_LPAREN] = ACTIONS(4655), + [anon_sym_event] = ACTIONS(4653), + [anon_sym_namespace] = ACTIONS(4653), + [anon_sym_class] = ACTIONS(4653), + [anon_sym_ref] = ACTIONS(4653), + [anon_sym_struct] = ACTIONS(4653), + [anon_sym_enum] = ACTIONS(4653), + [anon_sym_RBRACE] = ACTIONS(4655), + [anon_sym_interface] = ACTIONS(4653), + [anon_sym_delegate] = ACTIONS(4653), + [anon_sym_record] = ACTIONS(4653), + [anon_sym_abstract] = ACTIONS(4653), + [anon_sym_async] = ACTIONS(4653), + [anon_sym_const] = ACTIONS(4653), + [anon_sym_file] = ACTIONS(4653), + [anon_sym_fixed] = ACTIONS(4653), + [anon_sym_internal] = ACTIONS(4653), + [anon_sym_new] = ACTIONS(4653), + [anon_sym_override] = ACTIONS(4653), + [anon_sym_partial] = ACTIONS(4653), + [anon_sym_private] = ACTIONS(4653), + [anon_sym_protected] = ACTIONS(4653), + [anon_sym_public] = ACTIONS(4653), + [anon_sym_readonly] = ACTIONS(4653), + [anon_sym_required] = ACTIONS(4653), + [anon_sym_sealed] = ACTIONS(4653), + [anon_sym_virtual] = ACTIONS(4653), + [anon_sym_volatile] = ACTIONS(4653), + [anon_sym_where] = ACTIONS(4653), + [anon_sym_notnull] = ACTIONS(4653), + [anon_sym_unmanaged] = ACTIONS(4653), + [anon_sym_TILDE] = ACTIONS(4655), + [anon_sym_implicit] = ACTIONS(4653), + [anon_sym_explicit] = ACTIONS(4653), + [anon_sym_scoped] = ACTIONS(4653), + [anon_sym_var] = ACTIONS(4653), + [sym_predefined_type] = ACTIONS(4653), + [anon_sym_yield] = ACTIONS(4653), + [anon_sym_when] = ACTIONS(4653), + [anon_sym_from] = ACTIONS(4653), + [anon_sym_into] = ACTIONS(4653), + [anon_sym_join] = ACTIONS(4653), + [anon_sym_on] = ACTIONS(4653), + [anon_sym_equals] = ACTIONS(4653), + [anon_sym_let] = ACTIONS(4653), + [anon_sym_orderby] = ACTIONS(4653), + [anon_sym_ascending] = ACTIONS(4653), + [anon_sym_descending] = ACTIONS(4653), + [anon_sym_group] = ACTIONS(4653), + [anon_sym_by] = ACTIONS(4653), + [anon_sym_select] = ACTIONS(4653), + [aux_sym_preproc_if_token1] = ACTIONS(4655), + [aux_sym_preproc_if_token3] = ACTIONS(4655), + [aux_sym_preproc_else_token1] = ACTIONS(4655), + [aux_sym_preproc_elif_token1] = ACTIONS(4655), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446568,28 +457324,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2839] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5881), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_identifier] = STATE(5575), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2839), [sym_preproc_endregion] = STATE(2839), [sym_preproc_line] = STATE(2839), @@ -446599,42 +457333,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2839), [sym_preproc_define] = STATE(2839), [sym_preproc_undef] = STATE(2839), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [sym__identifier_token] = ACTIONS(4657), + [anon_sym_extern] = ACTIONS(4657), + [anon_sym_alias] = ACTIONS(4657), + [anon_sym_global] = ACTIONS(4657), + [anon_sym_using] = ACTIONS(4657), + [anon_sym_unsafe] = ACTIONS(4657), + [anon_sym_static] = ACTIONS(4657), + [anon_sym_LBRACK] = ACTIONS(4659), + [anon_sym_LPAREN] = ACTIONS(4659), + [anon_sym_event] = ACTIONS(4657), + [anon_sym_namespace] = ACTIONS(4657), + [anon_sym_class] = ACTIONS(4657), + [anon_sym_ref] = ACTIONS(4657), + [anon_sym_struct] = ACTIONS(4657), + [anon_sym_enum] = ACTIONS(4657), + [anon_sym_RBRACE] = ACTIONS(4659), + [anon_sym_interface] = ACTIONS(4657), + [anon_sym_delegate] = ACTIONS(4657), + [anon_sym_record] = ACTIONS(4657), + [anon_sym_abstract] = ACTIONS(4657), + [anon_sym_async] = ACTIONS(4657), + [anon_sym_const] = ACTIONS(4657), + [anon_sym_file] = ACTIONS(4657), + [anon_sym_fixed] = ACTIONS(4657), + [anon_sym_internal] = ACTIONS(4657), + [anon_sym_new] = ACTIONS(4657), + [anon_sym_override] = ACTIONS(4657), + [anon_sym_partial] = ACTIONS(4657), + [anon_sym_private] = ACTIONS(4657), + [anon_sym_protected] = ACTIONS(4657), + [anon_sym_public] = ACTIONS(4657), + [anon_sym_readonly] = ACTIONS(4657), + [anon_sym_required] = ACTIONS(4657), + [anon_sym_sealed] = ACTIONS(4657), + [anon_sym_virtual] = ACTIONS(4657), + [anon_sym_volatile] = ACTIONS(4657), + [anon_sym_where] = ACTIONS(4657), + [anon_sym_notnull] = ACTIONS(4657), + [anon_sym_unmanaged] = ACTIONS(4657), + [anon_sym_TILDE] = ACTIONS(4659), + [anon_sym_implicit] = ACTIONS(4657), + [anon_sym_explicit] = ACTIONS(4657), + [anon_sym_scoped] = ACTIONS(4657), + [anon_sym_var] = ACTIONS(4657), + [sym_predefined_type] = ACTIONS(4657), + [anon_sym_yield] = ACTIONS(4657), + [anon_sym_when] = ACTIONS(4657), + [anon_sym_from] = ACTIONS(4657), + [anon_sym_into] = ACTIONS(4657), + [anon_sym_join] = ACTIONS(4657), + [anon_sym_on] = ACTIONS(4657), + [anon_sym_equals] = ACTIONS(4657), + [anon_sym_let] = ACTIONS(4657), + [anon_sym_orderby] = ACTIONS(4657), + [anon_sym_ascending] = ACTIONS(4657), + [anon_sym_descending] = ACTIONS(4657), + [anon_sym_group] = ACTIONS(4657), + [anon_sym_by] = ACTIONS(4657), + [anon_sym_select] = ACTIONS(4657), + [aux_sym_preproc_if_token1] = ACTIONS(4659), + [aux_sym_preproc_if_token3] = ACTIONS(4659), + [aux_sym_preproc_else_token1] = ACTIONS(4659), + [aux_sym_preproc_elif_token1] = ACTIONS(4659), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446656,64 +457417,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2840), [sym_preproc_define] = STATE(2840), [sym_preproc_undef] = STATE(2840), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3653), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3653), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [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_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(3660), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), @@ -446735,64 +457501,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2841), [sym_preproc_define] = STATE(2841), [sym_preproc_undef] = STATE(2841), - [anon_sym_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4031), - [anon_sym_into] = ACTIONS(4031), - [anon_sym_join] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_orderby] = ACTIONS(4031), - [anon_sym_group] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [sym__identifier_token] = ACTIONS(4661), + [anon_sym_extern] = ACTIONS(4661), + [anon_sym_alias] = ACTIONS(4661), + [anon_sym_global] = ACTIONS(4661), + [anon_sym_using] = ACTIONS(4661), + [anon_sym_unsafe] = ACTIONS(4661), + [anon_sym_static] = ACTIONS(4661), + [anon_sym_LBRACK] = ACTIONS(4663), + [anon_sym_LPAREN] = ACTIONS(4663), + [anon_sym_event] = ACTIONS(4661), + [anon_sym_namespace] = ACTIONS(4661), + [anon_sym_class] = ACTIONS(4661), + [anon_sym_ref] = ACTIONS(4661), + [anon_sym_struct] = ACTIONS(4661), + [anon_sym_enum] = ACTIONS(4661), + [anon_sym_RBRACE] = ACTIONS(4663), + [anon_sym_interface] = ACTIONS(4661), + [anon_sym_delegate] = ACTIONS(4661), + [anon_sym_record] = ACTIONS(4661), + [anon_sym_abstract] = ACTIONS(4661), + [anon_sym_async] = ACTIONS(4661), + [anon_sym_const] = ACTIONS(4661), + [anon_sym_file] = ACTIONS(4661), + [anon_sym_fixed] = ACTIONS(4661), + [anon_sym_internal] = ACTIONS(4661), + [anon_sym_new] = ACTIONS(4661), + [anon_sym_override] = ACTIONS(4661), + [anon_sym_partial] = ACTIONS(4661), + [anon_sym_private] = ACTIONS(4661), + [anon_sym_protected] = ACTIONS(4661), + [anon_sym_public] = ACTIONS(4661), + [anon_sym_readonly] = ACTIONS(4661), + [anon_sym_required] = ACTIONS(4661), + [anon_sym_sealed] = ACTIONS(4661), + [anon_sym_virtual] = ACTIONS(4661), + [anon_sym_volatile] = ACTIONS(4661), + [anon_sym_where] = ACTIONS(4661), + [anon_sym_notnull] = ACTIONS(4661), + [anon_sym_unmanaged] = ACTIONS(4661), + [anon_sym_TILDE] = ACTIONS(4663), + [anon_sym_implicit] = ACTIONS(4661), + [anon_sym_explicit] = ACTIONS(4661), + [anon_sym_scoped] = ACTIONS(4661), + [anon_sym_var] = ACTIONS(4661), + [sym_predefined_type] = ACTIONS(4661), + [anon_sym_yield] = ACTIONS(4661), + [anon_sym_when] = ACTIONS(4661), + [anon_sym_from] = ACTIONS(4661), + [anon_sym_into] = ACTIONS(4661), + [anon_sym_join] = ACTIONS(4661), + [anon_sym_on] = ACTIONS(4661), + [anon_sym_equals] = ACTIONS(4661), + [anon_sym_let] = ACTIONS(4661), + [anon_sym_orderby] = ACTIONS(4661), + [anon_sym_ascending] = ACTIONS(4661), + [anon_sym_descending] = ACTIONS(4661), + [anon_sym_group] = ACTIONS(4661), + [anon_sym_by] = ACTIONS(4661), + [anon_sym_select] = ACTIONS(4661), + [aux_sym_preproc_if_token1] = ACTIONS(4663), + [aux_sym_preproc_if_token3] = ACTIONS(4663), + [aux_sym_preproc_else_token1] = ACTIONS(4663), + [aux_sym_preproc_elif_token1] = ACTIONS(4663), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446814,64 +457585,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2842), [sym_preproc_define] = STATE(2842), [sym_preproc_undef] = STATE(2842), - [anon_sym_SEMI] = ACTIONS(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4033), - [anon_sym_where] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_EQ_GT] = ACTIONS(4035), - [anon_sym_switch] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4035), - [anon_sym_or] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_from] = ACTIONS(4035), - [anon_sym_into] = ACTIONS(4035), - [anon_sym_join] = ACTIONS(4035), - [anon_sym_on] = ACTIONS(4035), - [anon_sym_equals] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4035), - [anon_sym_orderby] = ACTIONS(4035), - [anon_sym_group] = ACTIONS(4035), - [anon_sym_by] = ACTIONS(4035), - [anon_sym_select] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_is] = ACTIONS(4035), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4035), - [aux_sym_preproc_if_token3] = ACTIONS(4035), - [aux_sym_preproc_else_token1] = ACTIONS(4035), - [aux_sym_preproc_elif_token1] = ACTIONS(4035), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446893,64 +457669,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2843), [sym_preproc_define] = STATE(2843), [sym_preproc_undef] = STATE(2843), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_in] = ACTIONS(4749), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_QMARK] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_CARET] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_LT_LT] = ACTIONS(4747), - [anon_sym_GT_GT] = ACTIONS(4749), - [anon_sym_GT_GT_GT] = ACTIONS(4747), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_GT_EQ] = ACTIONS(4747), - [anon_sym_LT_EQ] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_EQ_GT] = ACTIONS(4747), - [anon_sym_switch] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4747), - [anon_sym_and] = ACTIONS(4747), - [anon_sym_or] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4747), - [anon_sym_PIPE_PIPE] = ACTIONS(4747), - [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_select] = ACTIONS(4747), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4747), - [anon_sym_with] = ACTIONS(4747), - [aux_sym_raw_string_literal_token1] = ACTIONS(4751), - [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(4665), + [anon_sym_extern] = ACTIONS(4665), + [anon_sym_alias] = ACTIONS(4665), + [anon_sym_global] = ACTIONS(4665), + [anon_sym_using] = ACTIONS(4665), + [anon_sym_unsafe] = ACTIONS(4665), + [anon_sym_static] = ACTIONS(4665), + [anon_sym_LBRACK] = ACTIONS(4667), + [anon_sym_LPAREN] = ACTIONS(4667), + [anon_sym_event] = ACTIONS(4665), + [anon_sym_namespace] = ACTIONS(4665), + [anon_sym_class] = ACTIONS(4665), + [anon_sym_ref] = ACTIONS(4665), + [anon_sym_struct] = ACTIONS(4665), + [anon_sym_enum] = ACTIONS(4665), + [anon_sym_RBRACE] = ACTIONS(4667), + [anon_sym_interface] = ACTIONS(4665), + [anon_sym_delegate] = ACTIONS(4665), + [anon_sym_record] = ACTIONS(4665), + [anon_sym_abstract] = ACTIONS(4665), + [anon_sym_async] = ACTIONS(4665), + [anon_sym_const] = ACTIONS(4665), + [anon_sym_file] = ACTIONS(4665), + [anon_sym_fixed] = ACTIONS(4665), + [anon_sym_internal] = ACTIONS(4665), + [anon_sym_new] = ACTIONS(4665), + [anon_sym_override] = ACTIONS(4665), + [anon_sym_partial] = ACTIONS(4665), + [anon_sym_private] = ACTIONS(4665), + [anon_sym_protected] = ACTIONS(4665), + [anon_sym_public] = ACTIONS(4665), + [anon_sym_readonly] = ACTIONS(4665), + [anon_sym_required] = ACTIONS(4665), + [anon_sym_sealed] = ACTIONS(4665), + [anon_sym_virtual] = ACTIONS(4665), + [anon_sym_volatile] = ACTIONS(4665), + [anon_sym_where] = ACTIONS(4665), + [anon_sym_notnull] = ACTIONS(4665), + [anon_sym_unmanaged] = ACTIONS(4665), + [anon_sym_TILDE] = ACTIONS(4667), + [anon_sym_implicit] = ACTIONS(4665), + [anon_sym_explicit] = ACTIONS(4665), + [anon_sym_scoped] = ACTIONS(4665), + [anon_sym_var] = ACTIONS(4665), + [sym_predefined_type] = ACTIONS(4665), + [anon_sym_yield] = ACTIONS(4665), + [anon_sym_when] = ACTIONS(4665), + [anon_sym_from] = ACTIONS(4665), + [anon_sym_into] = ACTIONS(4665), + [anon_sym_join] = ACTIONS(4665), + [anon_sym_on] = ACTIONS(4665), + [anon_sym_equals] = ACTIONS(4665), + [anon_sym_let] = ACTIONS(4665), + [anon_sym_orderby] = ACTIONS(4665), + [anon_sym_ascending] = ACTIONS(4665), + [anon_sym_descending] = ACTIONS(4665), + [anon_sym_group] = ACTIONS(4665), + [anon_sym_by] = ACTIONS(4665), + [anon_sym_select] = ACTIONS(4665), + [aux_sym_preproc_if_token1] = ACTIONS(4667), + [aux_sym_preproc_if_token3] = ACTIONS(4667), + [aux_sym_preproc_else_token1] = ACTIONS(4667), + [aux_sym_preproc_elif_token1] = ACTIONS(4667), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -446972,64 +457753,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4056), - [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_LT] = ACTIONS(4054), - [anon_sym_GT] = ACTIONS(4054), - [anon_sym_in] = ACTIONS(4054), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = 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_EQ_GT] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4056), - [anon_sym_and] = ACTIONS(4056), - [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(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4056), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4056), - [aux_sym_preproc_else_token1] = ACTIONS(4056), - [aux_sym_preproc_elif_token1] = ACTIONS(4056), + [sym__identifier_token] = ACTIONS(4669), + [anon_sym_extern] = ACTIONS(4669), + [anon_sym_alias] = ACTIONS(4669), + [anon_sym_global] = ACTIONS(4669), + [anon_sym_using] = ACTIONS(4669), + [anon_sym_unsafe] = ACTIONS(4669), + [anon_sym_static] = ACTIONS(4669), + [anon_sym_LBRACK] = ACTIONS(4671), + [anon_sym_LPAREN] = ACTIONS(4671), + [anon_sym_event] = ACTIONS(4669), + [anon_sym_namespace] = ACTIONS(4669), + [anon_sym_class] = ACTIONS(4669), + [anon_sym_ref] = ACTIONS(4669), + [anon_sym_struct] = ACTIONS(4669), + [anon_sym_enum] = ACTIONS(4669), + [anon_sym_RBRACE] = ACTIONS(4671), + [anon_sym_interface] = ACTIONS(4669), + [anon_sym_delegate] = ACTIONS(4669), + [anon_sym_record] = ACTIONS(4669), + [anon_sym_abstract] = ACTIONS(4669), + [anon_sym_async] = ACTIONS(4669), + [anon_sym_const] = ACTIONS(4669), + [anon_sym_file] = ACTIONS(4669), + [anon_sym_fixed] = ACTIONS(4669), + [anon_sym_internal] = ACTIONS(4669), + [anon_sym_new] = ACTIONS(4669), + [anon_sym_override] = ACTIONS(4669), + [anon_sym_partial] = ACTIONS(4669), + [anon_sym_private] = ACTIONS(4669), + [anon_sym_protected] = ACTIONS(4669), + [anon_sym_public] = ACTIONS(4669), + [anon_sym_readonly] = ACTIONS(4669), + [anon_sym_required] = ACTIONS(4669), + [anon_sym_sealed] = ACTIONS(4669), + [anon_sym_virtual] = ACTIONS(4669), + [anon_sym_volatile] = ACTIONS(4669), + [anon_sym_where] = ACTIONS(4669), + [anon_sym_notnull] = ACTIONS(4669), + [anon_sym_unmanaged] = ACTIONS(4669), + [anon_sym_TILDE] = ACTIONS(4671), + [anon_sym_implicit] = ACTIONS(4669), + [anon_sym_explicit] = ACTIONS(4669), + [anon_sym_scoped] = ACTIONS(4669), + [anon_sym_var] = ACTIONS(4669), + [sym_predefined_type] = ACTIONS(4669), + [anon_sym_yield] = ACTIONS(4669), + [anon_sym_when] = ACTIONS(4669), + [anon_sym_from] = ACTIONS(4669), + [anon_sym_into] = ACTIONS(4669), + [anon_sym_join] = ACTIONS(4669), + [anon_sym_on] = ACTIONS(4669), + [anon_sym_equals] = ACTIONS(4669), + [anon_sym_let] = ACTIONS(4669), + [anon_sym_orderby] = ACTIONS(4669), + [anon_sym_ascending] = ACTIONS(4669), + [anon_sym_descending] = ACTIONS(4669), + [anon_sym_group] = ACTIONS(4669), + [anon_sym_by] = ACTIONS(4669), + [anon_sym_select] = ACTIONS(4669), + [aux_sym_preproc_if_token1] = ACTIONS(4671), + [aux_sym_preproc_if_token3] = ACTIONS(4671), + [aux_sym_preproc_else_token1] = ACTIONS(4671), + [aux_sym_preproc_elif_token1] = ACTIONS(4671), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447051,64 +457837,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_RBRACK] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_in] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4753), - [anon_sym_QMARK] = ACTIONS(4755), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_AMP] = ACTIONS(4755), - [anon_sym_LT_LT] = ACTIONS(4753), - [anon_sym_GT_GT] = ACTIONS(4755), - [anon_sym_GT_GT_GT] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_EQ_GT] = ACTIONS(4753), - [anon_sym_switch] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_and] = ACTIONS(4753), - [anon_sym_or] = ACTIONS(4755), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_QMARK_QMARK] = ACTIONS(4753), - [anon_sym_from] = ACTIONS(4753), - [anon_sym_into] = ACTIONS(4753), - [anon_sym_join] = ACTIONS(4753), - [anon_sym_on] = ACTIONS(4753), - [anon_sym_equals] = ACTIONS(4753), - [anon_sym_let] = ACTIONS(4753), - [anon_sym_orderby] = ACTIONS(4753), - [anon_sym_group] = ACTIONS(4753), - [anon_sym_by] = ACTIONS(4753), - [anon_sym_select] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4753), - [anon_sym_DASH_GT] = ACTIONS(4753), - [anon_sym_with] = ACTIONS(4753), - [aux_sym_preproc_if_token3] = ACTIONS(4753), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4753), + [sym__identifier_token] = ACTIONS(4673), + [anon_sym_extern] = ACTIONS(4673), + [anon_sym_alias] = ACTIONS(4673), + [anon_sym_global] = ACTIONS(4673), + [anon_sym_using] = ACTIONS(4673), + [anon_sym_unsafe] = ACTIONS(4673), + [anon_sym_static] = ACTIONS(4673), + [anon_sym_LBRACK] = ACTIONS(4675), + [anon_sym_LPAREN] = ACTIONS(4675), + [anon_sym_event] = ACTIONS(4673), + [anon_sym_namespace] = ACTIONS(4673), + [anon_sym_class] = ACTIONS(4673), + [anon_sym_ref] = ACTIONS(4673), + [anon_sym_struct] = ACTIONS(4673), + [anon_sym_enum] = ACTIONS(4673), + [anon_sym_RBRACE] = ACTIONS(4675), + [anon_sym_interface] = ACTIONS(4673), + [anon_sym_delegate] = ACTIONS(4673), + [anon_sym_record] = ACTIONS(4673), + [anon_sym_abstract] = ACTIONS(4673), + [anon_sym_async] = ACTIONS(4673), + [anon_sym_const] = ACTIONS(4673), + [anon_sym_file] = ACTIONS(4673), + [anon_sym_fixed] = ACTIONS(4673), + [anon_sym_internal] = ACTIONS(4673), + [anon_sym_new] = ACTIONS(4673), + [anon_sym_override] = ACTIONS(4673), + [anon_sym_partial] = ACTIONS(4673), + [anon_sym_private] = ACTIONS(4673), + [anon_sym_protected] = ACTIONS(4673), + [anon_sym_public] = ACTIONS(4673), + [anon_sym_readonly] = ACTIONS(4673), + [anon_sym_required] = ACTIONS(4673), + [anon_sym_sealed] = ACTIONS(4673), + [anon_sym_virtual] = ACTIONS(4673), + [anon_sym_volatile] = ACTIONS(4673), + [anon_sym_where] = ACTIONS(4673), + [anon_sym_notnull] = ACTIONS(4673), + [anon_sym_unmanaged] = ACTIONS(4673), + [anon_sym_TILDE] = ACTIONS(4675), + [anon_sym_implicit] = ACTIONS(4673), + [anon_sym_explicit] = ACTIONS(4673), + [anon_sym_scoped] = ACTIONS(4673), + [anon_sym_var] = ACTIONS(4673), + [sym_predefined_type] = ACTIONS(4673), + [anon_sym_yield] = ACTIONS(4673), + [anon_sym_when] = ACTIONS(4673), + [anon_sym_from] = ACTIONS(4673), + [anon_sym_into] = ACTIONS(4673), + [anon_sym_join] = ACTIONS(4673), + [anon_sym_on] = ACTIONS(4673), + [anon_sym_equals] = ACTIONS(4673), + [anon_sym_let] = ACTIONS(4673), + [anon_sym_orderby] = ACTIONS(4673), + [anon_sym_ascending] = ACTIONS(4673), + [anon_sym_descending] = ACTIONS(4673), + [anon_sym_group] = ACTIONS(4673), + [anon_sym_by] = ACTIONS(4673), + [anon_sym_select] = ACTIONS(4673), + [aux_sym_preproc_if_token1] = ACTIONS(4675), + [aux_sym_preproc_if_token3] = ACTIONS(4675), + [aux_sym_preproc_else_token1] = ACTIONS(4675), + [aux_sym_preproc_elif_token1] = ACTIONS(4675), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447130,64 +457921,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3598), - [anon_sym_where] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3596), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [anon_sym_from] = ACTIONS(3598), - [anon_sym_join] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_orderby] = ACTIONS(3598), - [anon_sym_group] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_select] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447200,7 +457996,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2847] = { - [sym_attribute_list] = STATE(3007), [sym_preproc_region] = STATE(2847), [sym_preproc_endregion] = STATE(2847), [sym_preproc_line] = STATE(2847), @@ -447210,63 +458005,69 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2847), - [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(4762), - [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(4762), - [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), + [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_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), @@ -447288,64 +458089,69 @@ 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), - [anon_sym_SEMI] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_EQ_GT] = ACTIONS(3907), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3907), - [aux_sym_preproc_else_token1] = ACTIONS(3907), - [aux_sym_preproc_elif_token1] = ACTIONS(3907), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447367,74 +458173,79 @@ 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), - [anon_sym_SEMI] = ACTIONS(3863), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3861), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3863), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = 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_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3863), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3863), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = 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__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), }, [2850] = { [sym_preproc_region] = STATE(2850), @@ -447446,74 +458257,78 @@ 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), - [anon_sym_SEMI] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_RBRACK] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_in] = ACTIONS(3944), - [anon_sym_where] = ACTIONS(3946), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_EQ_GT] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_or] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_from] = ACTIONS(3946), - [anon_sym_into] = ACTIONS(3946), - [anon_sym_join] = ACTIONS(3946), - [anon_sym_on] = ACTIONS(3946), - [anon_sym_equals] = ACTIONS(3946), - [anon_sym_let] = ACTIONS(3946), - [anon_sym_orderby] = ACTIONS(3946), - [anon_sym_group] = ACTIONS(3946), - [anon_sym_by] = ACTIONS(3946), - [anon_sym_select] = ACTIONS(3946), - [anon_sym_as] = ACTIONS(3946), - [anon_sym_is] = ACTIONS(3946), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3946), - [aux_sym_preproc_if_token3] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -447525,76 +458340,103 @@ 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), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4156), }, [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), @@ -447604,64 +458446,45 @@ 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), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_QMARK_QMARK] = ACTIONS(4764), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447683,74 +458506,78 @@ 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), - [anon_sym_SEMI] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACK] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_RPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_in] = ACTIONS(3952), - [anon_sym_where] = ACTIONS(3954), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_EQ_GT] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3954), - [anon_sym_or] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_from] = ACTIONS(3954), - [anon_sym_into] = ACTIONS(3954), - [anon_sym_join] = ACTIONS(3954), - [anon_sym_on] = ACTIONS(3954), - [anon_sym_equals] = ACTIONS(3954), - [anon_sym_let] = ACTIONS(3954), - [anon_sym_orderby] = ACTIONS(3954), - [anon_sym_group] = ACTIONS(3954), - [anon_sym_by] = ACTIONS(3954), - [anon_sym_select] = ACTIONS(3954), - [anon_sym_as] = ACTIONS(3954), - [anon_sym_is] = ACTIONS(3954), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3954), - [aux_sym_preproc_if_token3] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4156), }, [2854] = { [sym_preproc_region] = STATE(2854), @@ -447762,64 +458589,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_in] = ACTIONS(3940), - [anon_sym_where] = ACTIONS(3942), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_EQ_GT] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3942), - [anon_sym_or] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_from] = ACTIONS(3942), - [anon_sym_into] = ACTIONS(3942), - [anon_sym_join] = ACTIONS(3942), - [anon_sym_on] = ACTIONS(3942), - [anon_sym_equals] = ACTIONS(3942), - [anon_sym_let] = ACTIONS(3942), - [anon_sym_orderby] = ACTIONS(3942), - [anon_sym_group] = ACTIONS(3942), - [anon_sym_by] = ACTIONS(3942), - [anon_sym_select] = ACTIONS(3942), - [anon_sym_as] = ACTIONS(3942), - [anon_sym_is] = ACTIONS(3942), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3942), - [aux_sym_preproc_if_token3] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [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), @@ -447830,8 +458660,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4197), }, [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), @@ -447841,64 +458674,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_where] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3608), - [anon_sym_into] = ACTIONS(3608), - [anon_sym_join] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_let] = ACTIONS(3608), - [anon_sym_orderby] = ACTIONS(3608), - [anon_sym_group] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_select] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -447920,76 +458755,104 @@ 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), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_where] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_EQ_GT] = ACTIONS(4049), - [anon_sym_switch] = ACTIONS(4049), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4049), - [anon_sym_or] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_from] = ACTIONS(4049), - [anon_sym_into] = ACTIONS(4049), - [anon_sym_join] = ACTIONS(4049), - [anon_sym_on] = ACTIONS(4049), - [anon_sym_equals] = ACTIONS(4049), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_orderby] = ACTIONS(4049), - [anon_sym_group] = ACTIONS(4049), - [anon_sym_by] = ACTIONS(4049), - [anon_sym_select] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4049), - [aux_sym_preproc_if_token3] = ACTIONS(4049), - [aux_sym_preproc_else_token1] = ACTIONS(4049), - [aux_sym_preproc_elif_token1] = ACTIONS(4049), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), }, [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), @@ -447999,64 +458862,44 @@ 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), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_RBRACK] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_in] = ACTIONS(3936), - [anon_sym_where] = ACTIONS(3938), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_EQ_GT] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_or] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_from] = ACTIONS(3938), - [anon_sym_into] = ACTIONS(3938), - [anon_sym_join] = ACTIONS(3938), - [anon_sym_on] = ACTIONS(3938), - [anon_sym_equals] = ACTIONS(3938), - [anon_sym_let] = ACTIONS(3938), - [anon_sym_orderby] = ACTIONS(3938), - [anon_sym_group] = ACTIONS(3938), - [anon_sym_by] = ACTIONS(3938), - [anon_sym_select] = ACTIONS(3938), - [anon_sym_as] = ACTIONS(3938), - [anon_sym_is] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3938), - [aux_sym_preproc_if_token3] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448069,7 +458912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2858] = { - [sym_initializer_expression] = STATE(3021), [sym_preproc_region] = STATE(2858), [sym_preproc_endregion] = STATE(2858), [sym_preproc_line] = STATE(2858), @@ -448079,75 +458921,82 @@ 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), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4708), - [anon_sym_COLON] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4706), - [anon_sym_RBRACK] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4706), - [anon_sym_where] = ACTIONS(4706), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4706), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_CARET] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4711), - [anon_sym_LT_LT] = ACTIONS(4706), - [anon_sym_GT_GT] = ACTIONS(4711), - [anon_sym_GT_GT_GT] = ACTIONS(4706), - [anon_sym_EQ_EQ] = ACTIONS(4706), - [anon_sym_BANG_EQ] = ACTIONS(4706), - [anon_sym_GT_EQ] = ACTIONS(4706), - [anon_sym_LT_EQ] = ACTIONS(4706), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_EQ_GT] = ACTIONS(4706), - [anon_sym_switch] = ACTIONS(4706), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_and] = ACTIONS(4706), - [anon_sym_or] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_PIPE_PIPE] = ACTIONS(4706), - [anon_sym_QMARK_QMARK] = ACTIONS(4706), - [anon_sym_from] = ACTIONS(4706), - [anon_sym_join] = ACTIONS(4706), - [anon_sym_on] = ACTIONS(4706), - [anon_sym_equals] = ACTIONS(4706), - [anon_sym_let] = ACTIONS(4706), - [anon_sym_orderby] = ACTIONS(4706), - [anon_sym_group] = ACTIONS(4706), - [anon_sym_by] = ACTIONS(4706), - [anon_sym_select] = ACTIONS(4706), - [anon_sym_as] = ACTIONS(4706), - [anon_sym_is] = ACTIONS(4706), - [anon_sym_DASH_GT] = ACTIONS(4706), - [anon_sym_with] = ACTIONS(4706), - [aux_sym_preproc_if_token3] = ACTIONS(4706), - [aux_sym_preproc_else_token1] = ACTIONS(4706), - [aux_sym_preproc_elif_token1] = ACTIONS(4706), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -448157,64 +459006,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_where] = ACTIONS(3934), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3934), - [anon_sym_into] = ACTIONS(3934), - [anon_sym_join] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_let] = ACTIONS(3934), - [anon_sym_orderby] = ACTIONS(3934), - [anon_sym_group] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_select] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448236,64 +459087,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_QMARK_QMARK] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4768), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [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), @@ -448306,6 +459160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -448315,64 +459172,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2861), [sym_preproc_define] = STATE(2861), [sym_preproc_undef] = STATE(2861), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(4774), - [anon_sym_DASH_EQ] = ACTIONS(4774), - [anon_sym_STAR_EQ] = ACTIONS(4774), - [anon_sym_SLASH_EQ] = ACTIONS(4774), - [anon_sym_PERCENT_EQ] = ACTIONS(4774), - [anon_sym_AMP_EQ] = ACTIONS(4774), - [anon_sym_CARET_EQ] = ACTIONS(4774), - [anon_sym_PIPE_EQ] = ACTIONS(4774), - [anon_sym_LT_LT_EQ] = ACTIONS(4774), - [anon_sym_GT_GT_EQ] = ACTIONS(4774), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4774), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [aux_sym__class_declaration_initializer_repeat1] = STATE(2861), + [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(4726), + [anon_sym_event] = ACTIONS(4721), + [anon_sym_class] = ACTIONS(4721), + [anon_sym_ref] = ACTIONS(4721), + [anon_sym_struct] = ACTIONS(4721), + [anon_sym_enum] = ACTIONS(4721), + [anon_sym_interface] = ACTIONS(4721), + [anon_sym_delegate] = ACTIONS(4721), + [anon_sym_record] = 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_TILDE] = ACTIONS(4726), + [anon_sym_implicit] = ACTIONS(4721), + [anon_sym_explicit] = 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(4728), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448394,64 +459251,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_RBRACK] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_RPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_in] = ACTIONS(3926), - [anon_sym_where] = ACTIONS(3928), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_EQ_GT] = ACTIONS(3928), - [anon_sym_switch] = ACTIONS(3928), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3928), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_from] = ACTIONS(3928), - [anon_sym_into] = ACTIONS(3928), - [anon_sym_join] = ACTIONS(3928), - [anon_sym_on] = ACTIONS(3928), - [anon_sym_equals] = ACTIONS(3928), - [anon_sym_let] = ACTIONS(3928), - [anon_sym_orderby] = ACTIONS(3928), - [anon_sym_group] = ACTIONS(3928), - [anon_sym_by] = ACTIONS(3928), - [anon_sym_select] = ACTIONS(3928), - [anon_sym_as] = ACTIONS(3928), - [anon_sym_is] = ACTIONS(3928), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3928), - [aux_sym_preproc_if_token3] = ACTIONS(3928), - [aux_sym_preproc_else_token1] = ACTIONS(3928), - [aux_sym_preproc_elif_token1] = ACTIONS(3928), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448473,64 +459333,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_RBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_in] = ACTIONS(3922), - [anon_sym_where] = ACTIONS(3924), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_EQ_GT] = ACTIONS(3924), - [anon_sym_switch] = ACTIONS(3924), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_from] = ACTIONS(3924), - [anon_sym_into] = ACTIONS(3924), - [anon_sym_join] = ACTIONS(3924), - [anon_sym_on] = ACTIONS(3924), - [anon_sym_equals] = ACTIONS(3924), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_orderby] = ACTIONS(3924), - [anon_sym_group] = ACTIONS(3924), - [anon_sym_by] = ACTIONS(3924), - [anon_sym_select] = ACTIONS(3924), - [anon_sym_as] = ACTIONS(3924), - [anon_sym_is] = ACTIONS(3924), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3924), - [aux_sym_preproc_if_token3] = ACTIONS(3924), - [aux_sym_preproc_else_token1] = ACTIONS(3924), - [aux_sym_preproc_elif_token1] = ACTIONS(3924), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448552,64 +459415,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [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_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448622,7 +459488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2865] = { - [sym_initializer_expression] = STATE(2983), [sym_preproc_region] = STATE(2865), [sym_preproc_endregion] = STATE(2865), [sym_preproc_line] = STATE(2865), @@ -448632,63 +459497,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4719), - [anon_sym_where] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_CARET] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_LT] = ACTIONS(4719), - [anon_sym_GT_GT] = ACTIONS(4721), - [anon_sym_GT_GT_GT] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_EQ_GT] = ACTIONS(4719), - [anon_sym_switch] = ACTIONS(4719), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_and] = ACTIONS(4719), - [anon_sym_or] = ACTIONS(4721), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_QMARK_QMARK] = ACTIONS(4719), - [anon_sym_from] = ACTIONS(4719), - [anon_sym_join] = ACTIONS(4719), - [anon_sym_on] = ACTIONS(4719), - [anon_sym_equals] = ACTIONS(4719), - [anon_sym_let] = ACTIONS(4719), - [anon_sym_orderby] = ACTIONS(4719), - [anon_sym_group] = ACTIONS(4719), - [anon_sym_by] = ACTIONS(4719), - [anon_sym_select] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4719), - [aux_sym_preproc_if_token3] = ACTIONS(4719), - [aux_sym_preproc_else_token1] = ACTIONS(4719), - [aux_sym_preproc_elif_token1] = ACTIONS(4719), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448710,64 +459579,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448780,6 +459652,30 @@ 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_preproc_region] = STATE(2867), [sym_preproc_endregion] = STATE(2867), [sym_preproc_line] = STATE(2867), @@ -448789,64 +459685,43 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448868,64 +459743,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_where] = ACTIONS(3627), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_from] = ACTIONS(3627), - [anon_sym_into] = ACTIONS(3627), - [anon_sym_join] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_let] = ACTIONS(3627), - [anon_sym_orderby] = ACTIONS(3627), - [anon_sym_group] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_select] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -448947,64 +459825,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_where] = ACTIONS(3623), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_from] = ACTIONS(3623), - [anon_sym_into] = ACTIONS(3623), - [anon_sym_join] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_let] = ACTIONS(3623), - [anon_sym_orderby] = ACTIONS(3623), - [anon_sym_group] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_select] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449026,64 +459907,67 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449105,64 +459989,66 @@ 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_SEMI] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_where] = ACTIONS(3642), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3642), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [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_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(3642), - [anon_sym_with] = ACTIONS(3642), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = ACTIONS(3642), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449175,7 +460061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2872] = { - [sym_initializer_expression] = STATE(3029), [sym_preproc_region] = STATE(2872), [sym_preproc_endregion] = STATE(2872), [sym_preproc_line] = STATE(2872), @@ -449185,63 +460070,66 @@ 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_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(4776), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(4783), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_PLUS_PLUS] = ACTIONS(4780), - [anon_sym_DASH_DASH] = ACTIONS(4780), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_GT_GT_GT] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_GT_EQ] = ACTIONS(4780), - [anon_sym_LT_EQ] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4780), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_QMARK_QMARK] = ACTIONS(4780), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4780), - [anon_sym_with] = ACTIONS(4780), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449263,64 +460151,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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449333,7 +460223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2874] = { - [sym_type_argument_list] = STATE(2946), [sym_preproc_region] = STATE(2874), [sym_preproc_endregion] = STATE(2874), [sym_preproc_line] = STATE(2874), @@ -449343,63 +460232,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), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4740), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449412,6 +460304,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_preproc_region] = STATE(2875), [sym_preproc_endregion] = STATE(2875), [sym_preproc_line] = STATE(2875), @@ -449421,64 +460336,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), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4793), - [anon_sym_QMARK] = ACTIONS(4795), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_AMP] = ACTIONS(4795), - [anon_sym_LT_LT] = ACTIONS(4793), - [anon_sym_GT_GT] = ACTIONS(4795), - [anon_sym_GT_GT_GT] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_EQ_GT] = ACTIONS(4793), - [anon_sym_switch] = ACTIONS(4793), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_and] = ACTIONS(4793), - [anon_sym_or] = ACTIONS(4795), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_QMARK_QMARK] = ACTIONS(4793), - [anon_sym_from] = ACTIONS(4793), - [anon_sym_into] = ACTIONS(4793), - [anon_sym_join] = ACTIONS(4793), - [anon_sym_on] = ACTIONS(4793), - [anon_sym_equals] = ACTIONS(4793), - [anon_sym_let] = ACTIONS(4793), - [anon_sym_orderby] = ACTIONS(4793), - [anon_sym_group] = ACTIONS(4793), - [anon_sym_by] = ACTIONS(4793), - [anon_sym_select] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4793), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_with] = ACTIONS(4793), - [sym_string_literal_encoding] = ACTIONS(4797), - [aux_sym_preproc_if_token3] = ACTIONS(4793), - [aux_sym_preproc_else_token1] = ACTIONS(4793), - [aux_sym_preproc_elif_token1] = ACTIONS(4793), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449500,63 +460394,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_RPAREN] = ACTIONS(4799), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_LT] = ACTIONS(4801), - [anon_sym_GT] = ACTIONS(4801), - [anon_sym_in] = ACTIONS(4801), - [anon_sym_where] = ACTIONS(4799), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_PLUS_PLUS] = ACTIONS(4799), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_LT] = ACTIONS(4799), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_GT_GT_GT] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4799), - [anon_sym_BANG_EQ] = ACTIONS(4799), - [anon_sym_GT_EQ] = ACTIONS(4799), - [anon_sym_LT_EQ] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_EQ_GT] = ACTIONS(4799), - [anon_sym_switch] = ACTIONS(4799), - [anon_sym_DOT_DOT] = ACTIONS(4799), - [anon_sym_and] = ACTIONS(4799), - [anon_sym_or] = ACTIONS(4801), - [anon_sym_AMP_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4799), - [anon_sym_QMARK_QMARK] = ACTIONS(4799), - [anon_sym_from] = ACTIONS(4799), - [anon_sym_into] = ACTIONS(4799), - [anon_sym_join] = ACTIONS(4799), - [anon_sym_on] = ACTIONS(4799), - [anon_sym_equals] = ACTIONS(4799), - [anon_sym_let] = ACTIONS(4799), - [anon_sym_orderby] = ACTIONS(4799), - [anon_sym_group] = ACTIONS(4799), - [anon_sym_by] = ACTIONS(4799), - [anon_sym_select] = ACTIONS(4799), - [anon_sym_as] = ACTIONS(4799), - [anon_sym_is] = ACTIONS(4799), - [anon_sym_DASH_GT] = ACTIONS(4799), - [anon_sym_with] = ACTIONS(4799), - [aux_sym_preproc_if_token3] = ACTIONS(4799), - [aux_sym_preproc_else_token1] = ACTIONS(4799), - [aux_sym_preproc_elif_token1] = ACTIONS(4799), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449578,63 +460475,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), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_RBRACK] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4805), - [anon_sym_in] = ACTIONS(4805), - [anon_sym_where] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_PLUS_PLUS] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_LT] = ACTIONS(4803), - [anon_sym_GT_GT] = ACTIONS(4805), - [anon_sym_GT_GT_GT] = ACTIONS(4803), - [anon_sym_EQ_EQ] = ACTIONS(4803), - [anon_sym_BANG_EQ] = ACTIONS(4803), - [anon_sym_GT_EQ] = ACTIONS(4803), - [anon_sym_LT_EQ] = ACTIONS(4803), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_EQ_GT] = ACTIONS(4803), - [anon_sym_switch] = ACTIONS(4803), - [anon_sym_DOT_DOT] = ACTIONS(4803), - [anon_sym_and] = ACTIONS(4803), - [anon_sym_or] = ACTIONS(4805), - [anon_sym_AMP_AMP] = ACTIONS(4803), - [anon_sym_PIPE_PIPE] = ACTIONS(4803), - [anon_sym_QMARK_QMARK] = ACTIONS(4803), - [anon_sym_from] = ACTIONS(4803), - [anon_sym_into] = ACTIONS(4803), - [anon_sym_join] = ACTIONS(4803), - [anon_sym_on] = ACTIONS(4803), - [anon_sym_equals] = ACTIONS(4803), - [anon_sym_let] = ACTIONS(4803), - [anon_sym_orderby] = ACTIONS(4803), - [anon_sym_group] = ACTIONS(4803), - [anon_sym_by] = ACTIONS(4803), - [anon_sym_select] = ACTIONS(4803), - [anon_sym_as] = ACTIONS(4803), - [anon_sym_is] = ACTIONS(4803), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4803), - [aux_sym_preproc_if_token3] = ACTIONS(4803), - [aux_sym_preproc_else_token1] = ACTIONS(4803), - [aux_sym_preproc_elif_token1] = ACTIONS(4803), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449656,63 +460556,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), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_where] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3653), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_from] = 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_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(3660), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449734,63 +460637,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), - [anon_sym_SEMI] = ACTIONS(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4035), - [anon_sym_where] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_EQ_GT] = ACTIONS(4035), - [anon_sym_switch] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4035), - [anon_sym_or] = ACTIONS(4033), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_from] = ACTIONS(4035), - [anon_sym_join] = ACTIONS(4035), - [anon_sym_on] = ACTIONS(4035), - [anon_sym_equals] = ACTIONS(4035), - [anon_sym_let] = ACTIONS(4035), - [anon_sym_orderby] = ACTIONS(4035), - [anon_sym_group] = ACTIONS(4035), - [anon_sym_by] = ACTIONS(4035), - [anon_sym_select] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_is] = ACTIONS(4035), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4035), - [aux_sym_preproc_if_token3] = ACTIONS(4035), - [aux_sym_preproc_else_token1] = ACTIONS(4035), - [aux_sym_preproc_elif_token1] = ACTIONS(4035), + [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), @@ -449803,6 +460709,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_preproc_region] = STATE(2880), [sym_preproc_endregion] = STATE(2880), [sym_preproc_line] = STATE(2880), @@ -449812,63 +460725,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), - [anon_sym_SEMI] = ACTIONS(4807), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_COLON] = ACTIONS(4807), - [anon_sym_COMMA] = ACTIONS(4807), - [anon_sym_RBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_RPAREN] = ACTIONS(4807), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4809), - [anon_sym_GT] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4809), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4807), - [anon_sym_DASH_DASH] = ACTIONS(4807), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_CARET] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(4807), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_GT_GT_GT] = ACTIONS(4807), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_GT_EQ] = ACTIONS(4807), - [anon_sym_LT_EQ] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_EQ_GT] = ACTIONS(4807), - [anon_sym_switch] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4807), - [anon_sym_and] = ACTIONS(4807), - [anon_sym_or] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_QMARK_QMARK] = ACTIONS(4807), - [anon_sym_from] = ACTIONS(4807), - [anon_sym_into] = ACTIONS(4807), - [anon_sym_join] = ACTIONS(4807), - [anon_sym_on] = ACTIONS(4807), - [anon_sym_equals] = ACTIONS(4807), - [anon_sym_let] = ACTIONS(4807), - [anon_sym_orderby] = ACTIONS(4807), - [anon_sym_group] = ACTIONS(4807), - [anon_sym_by] = ACTIONS(4807), - [anon_sym_select] = ACTIONS(4807), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), - [anon_sym_with] = ACTIONS(4807), - [aux_sym_preproc_if_token3] = ACTIONS(4807), - [aux_sym_preproc_else_token1] = ACTIONS(4807), - [aux_sym_preproc_elif_token1] = ACTIONS(4807), + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449890,63 +460799,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -449968,63 +460880,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(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_QMARK_QMARK] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_join] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_let] = ACTIONS(4815), - [anon_sym_orderby] = ACTIONS(4815), - [anon_sym_group] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_select] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450046,63 +460961,66 @@ 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_SEMI] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_where] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_EQ_GT] = ACTIONS(3907), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3905), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_from] = ACTIONS(3907), - [anon_sym_join] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_let] = ACTIONS(3907), - [anon_sym_orderby] = ACTIONS(3907), - [anon_sym_group] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3907), - [aux_sym_preproc_else_token1] = ACTIONS(3907), - [aux_sym_preproc_elif_token1] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(4136), + [anon_sym_LBRACK] = ACTIONS(4148), + [anon_sym_COLON] = ACTIONS(4134), + [anon_sym_COMMA] = ACTIONS(4148), + [anon_sym_LPAREN] = ACTIONS(4148), + [anon_sym_LT] = ACTIONS(4150), + [anon_sym_GT] = ACTIONS(4150), + [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_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_into] = ACTIONS(4148), + [anon_sym_join] = ACTIONS(4148), + [anon_sym_let] = ACTIONS(4148), + [anon_sym_orderby] = ACTIONS(4148), + [anon_sym_ascending] = ACTIONS(4148), + [anon_sym_descending] = ACTIONS(4148), + [anon_sym_group] = ACTIONS(4148), + [anon_sym_select] = ACTIONS(4148), + [anon_sym_as] = ACTIONS(4150), + [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), @@ -450124,63 +461042,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2884), [sym_preproc_define] = STATE(2884), [sym_preproc_undef] = STATE(2884), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_COLON] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_RBRACK] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_RPAREN] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4819), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_GT_GT_GT] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_EQ_GT] = ACTIONS(4819), - [anon_sym_switch] = ACTIONS(4819), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_or] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_QMARK_QMARK] = ACTIONS(4819), - [anon_sym_from] = ACTIONS(4819), - [anon_sym_into] = ACTIONS(4819), - [anon_sym_join] = ACTIONS(4819), - [anon_sym_on] = ACTIONS(4819), - [anon_sym_equals] = ACTIONS(4819), - [anon_sym_let] = ACTIONS(4819), - [anon_sym_orderby] = ACTIONS(4819), - [anon_sym_group] = ACTIONS(4819), - [anon_sym_by] = ACTIONS(4819), - [anon_sym_select] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4819), - [anon_sym_with] = ACTIONS(4819), - [aux_sym_preproc_if_token3] = ACTIONS(4819), - [aux_sym_preproc_else_token1] = ACTIONS(4819), - [aux_sym_preproc_elif_token1] = ACTIONS(4819), + [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), @@ -450202,63 +461123,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2885), [sym_preproc_define] = STATE(2885), [sym_preproc_undef] = STATE(2885), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_COLON] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4823), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4823), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4823), - [anon_sym_CARET] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_LT] = ACTIONS(4823), - [anon_sym_GT_GT] = ACTIONS(4825), - [anon_sym_GT_GT_GT] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_EQ_GT] = ACTIONS(4823), - [anon_sym_switch] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_and] = ACTIONS(4823), - [anon_sym_or] = ACTIONS(4825), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_QMARK_QMARK] = ACTIONS(4823), - [anon_sym_from] = ACTIONS(4823), - [anon_sym_into] = ACTIONS(4823), - [anon_sym_join] = ACTIONS(4823), - [anon_sym_on] = ACTIONS(4823), - [anon_sym_equals] = ACTIONS(4823), - [anon_sym_let] = ACTIONS(4823), - [anon_sym_orderby] = ACTIONS(4823), - [anon_sym_group] = ACTIONS(4823), - [anon_sym_by] = ACTIONS(4823), - [anon_sym_select] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4823), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_with] = ACTIONS(4823), - [aux_sym_preproc_if_token3] = ACTIONS(4823), - [aux_sym_preproc_else_token1] = ACTIONS(4823), - [aux_sym_preproc_elif_token1] = ACTIONS(4823), + [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), @@ -450280,63 +461204,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), - [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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450358,63 +461285,66 @@ 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), - [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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450436,63 +461366,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_CARET] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4835), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_EQ_GT] = ACTIONS(4835), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_QMARK_QMARK] = ACTIONS(4835), - [anon_sym_from] = ACTIONS(4835), - [anon_sym_into] = ACTIONS(4835), - [anon_sym_join] = ACTIONS(4835), - [anon_sym_on] = ACTIONS(4835), - [anon_sym_equals] = ACTIONS(4835), - [anon_sym_let] = ACTIONS(4835), - [anon_sym_orderby] = ACTIONS(4835), - [anon_sym_group] = ACTIONS(4835), - [anon_sym_by] = ACTIONS(4835), - [anon_sym_select] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_with] = ACTIONS(4835), - [aux_sym_preproc_if_token3] = ACTIONS(4835), - [aux_sym_preproc_else_token1] = ACTIONS(4835), - [aux_sym_preproc_elif_token1] = ACTIONS(4835), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450514,63 +461447,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3642), - [anon_sym_where] = ACTIONS(3642), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3642), - [anon_sym_or] = ACTIONS(3631), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [anon_sym_QMARK_QMARK] = ACTIONS(3642), - [anon_sym_from] = 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_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(3642), - [anon_sym_with] = ACTIONS(3642), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = ACTIONS(3642), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450592,63 +461528,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450661,6 +461600,8 @@ 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), @@ -450670,63 +461611,64 @@ 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(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_COLON] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_in] = ACTIONS(4841), - [anon_sym_where] = ACTIONS(4839), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4839), - [anon_sym_CARET] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4839), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_GT_GT_GT] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_EQ_GT] = ACTIONS(4839), - [anon_sym_switch] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_and] = ACTIONS(4839), - [anon_sym_or] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_QMARK_QMARK] = ACTIONS(4839), - [anon_sym_from] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4839), - [anon_sym_join] = ACTIONS(4839), - [anon_sym_on] = ACTIONS(4839), - [anon_sym_equals] = ACTIONS(4839), - [anon_sym_let] = ACTIONS(4839), - [anon_sym_orderby] = ACTIONS(4839), - [anon_sym_group] = ACTIONS(4839), - [anon_sym_by] = ACTIONS(4839), - [anon_sym_select] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_with] = ACTIONS(4839), - [aux_sym_preproc_if_token3] = ACTIONS(4839), - [aux_sym_preproc_else_token1] = ACTIONS(4839), - [aux_sym_preproc_elif_token1] = ACTIONS(4839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450748,63 +461690,66 @@ 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(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4843), - [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(4845), - [anon_sym_PLUS_PLUS] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4843), - [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(4845), - [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(4843), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450826,63 +461771,66 @@ 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_SEMI] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [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_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4849), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4849), - [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(4849), - [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(4849), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450904,63 +461852,66 @@ 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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4851), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -450973,6 +461924,13 @@ 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_preproc_region] = STATE(2895), [sym_preproc_endregion] = STATE(2895), [sym_preproc_line] = STATE(2895), @@ -450982,63 +461940,59 @@ 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), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [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(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [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(4856), - [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(4854), - [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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451051,6 +462005,29 @@ 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), @@ -451060,63 +462037,43 @@ 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), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(4858), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_where] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), - [anon_sym_from] = ACTIONS(1971), - [anon_sym_into] = ACTIONS(1971), - [anon_sym_join] = ACTIONS(1971), - [anon_sym_on] = ACTIONS(1971), - [anon_sym_equals] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_orderby] = ACTIONS(1971), - [anon_sym_group] = ACTIONS(1971), - [anon_sym_by] = ACTIONS(1971), - [anon_sym_select] = ACTIONS(1971), - [anon_sym_as] = ACTIONS(1971), - [anon_sym_is] = ACTIONS(1971), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_with] = ACTIONS(1971), - [aux_sym_preproc_if_token3] = ACTIONS(1971), - [aux_sym_preproc_else_token1] = ACTIONS(1971), - [aux_sym_preproc_elif_token1] = ACTIONS(1971), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451129,6 +462086,13 @@ 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_preproc_region] = STATE(2897), [sym_preproc_endregion] = STATE(2897), [sym_preproc_line] = STATE(2897), @@ -451138,63 +462102,59 @@ 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), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451216,63 +462176,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_SEMI] = ACTIONS(4864), - [anon_sym_LBRACK] = ACTIONS(4864), - [anon_sym_COLON] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_RBRACK] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_RPAREN] = ACTIONS(4864), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_LT] = ACTIONS(4866), - [anon_sym_GT] = ACTIONS(4866), - [anon_sym_in] = ACTIONS(4866), - [anon_sym_where] = ACTIONS(4864), - [anon_sym_QMARK] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4864), - [anon_sym_DASH_DASH] = ACTIONS(4864), - [anon_sym_PLUS] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_CARET] = ACTIONS(4864), - [anon_sym_PIPE] = ACTIONS(4866), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_LT_LT] = ACTIONS(4864), - [anon_sym_GT_GT] = ACTIONS(4866), - [anon_sym_GT_GT_GT] = ACTIONS(4864), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_GT_EQ] = ACTIONS(4864), - [anon_sym_LT_EQ] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_EQ_GT] = ACTIONS(4864), - [anon_sym_switch] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_and] = ACTIONS(4864), - [anon_sym_or] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4864), - [anon_sym_PIPE_PIPE] = ACTIONS(4864), - [anon_sym_QMARK_QMARK] = ACTIONS(4864), - [anon_sym_from] = ACTIONS(4864), - [anon_sym_into] = ACTIONS(4864), - [anon_sym_join] = ACTIONS(4864), - [anon_sym_on] = ACTIONS(4864), - [anon_sym_equals] = ACTIONS(4864), - [anon_sym_let] = ACTIONS(4864), - [anon_sym_orderby] = ACTIONS(4864), - [anon_sym_group] = ACTIONS(4864), - [anon_sym_by] = ACTIONS(4864), - [anon_sym_select] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4864), - [anon_sym_with] = ACTIONS(4864), - [aux_sym_preproc_if_token3] = ACTIONS(4864), - [aux_sym_preproc_else_token1] = ACTIONS(4864), - [aux_sym_preproc_elif_token1] = ACTIONS(4864), + [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), @@ -451294,63 +462256,65 @@ 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_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4870), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_EQ] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451363,6 +462327,7 @@ 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), @@ -451372,63 +462337,64 @@ 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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451441,11 +462407,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2901] = { - [sym_attribute_list] = STATE(3519), - [sym_modifier] = STATE(3622), - [sym_accessor_declaration] = STATE(3436), - [sym_identifier] = STATE(6200), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2901), [sym_preproc_endregion] = STATE(2901), [sym_preproc_line] = STATE(2901), @@ -451455,58 +462416,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3045), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3210), - [aux_sym_accessor_list_repeat1] = STATE(2926), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4872), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4876), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_async] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_file] = ACTIONS(4878), - [anon_sym_fixed] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_new] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_partial] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_readonly] = ACTIONS(4872), - [anon_sym_required] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_virtual] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(4880), - [anon_sym_set] = ACTIONS(4880), - [anon_sym_add] = ACTIONS(4880), - [anon_sym_remove] = ACTIONS(4880), - [anon_sym_init] = ACTIONS(4880), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451528,63 +462496,65 @@ 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_SEMI] = ACTIONS(4056), - [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_LT] = ACTIONS(4054), - [anon_sym_GT] = ACTIONS(4054), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_where] = ACTIONS(4056), - [anon_sym_QMARK] = 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_EQ_GT] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4056), - [anon_sym_and] = ACTIONS(4056), - [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(4056), - [anon_sym_join] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_orderby] = ACTIONS(4056), - [anon_sym_group] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_select] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4056), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4056), - [aux_sym_preproc_else_token1] = ACTIONS(4056), - [aux_sym_preproc_elif_token1] = ACTIONS(4056), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451606,63 +462576,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(3623), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3623), - [anon_sym_where] = ACTIONS(3623), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3621), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_from] = ACTIONS(3623), - [anon_sym_join] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_let] = ACTIONS(3623), - [anon_sym_orderby] = ACTIONS(3623), - [anon_sym_group] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_select] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451684,63 +462656,65 @@ 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(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COLON] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_RBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4884), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_QMARK] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4882), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_CARET] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4882), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_GT_GT_GT] = ACTIONS(4882), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_EQ_GT] = ACTIONS(4882), - [anon_sym_switch] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4882), - [anon_sym_and] = ACTIONS(4882), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_QMARK_QMARK] = ACTIONS(4882), - [anon_sym_from] = ACTIONS(4882), - [anon_sym_into] = ACTIONS(4882), - [anon_sym_join] = ACTIONS(4882), - [anon_sym_on] = ACTIONS(4882), - [anon_sym_equals] = ACTIONS(4882), - [anon_sym_let] = ACTIONS(4882), - [anon_sym_orderby] = ACTIONS(4882), - [anon_sym_group] = ACTIONS(4882), - [anon_sym_by] = ACTIONS(4882), - [anon_sym_select] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_with] = ACTIONS(4882), - [aux_sym_preproc_if_token3] = ACTIONS(4882), - [aux_sym_preproc_else_token1] = ACTIONS(4882), - [aux_sym_preproc_elif_token1] = ACTIONS(4882), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451753,6 +462727,7 @@ 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), @@ -451762,63 +462737,64 @@ 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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4851), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451831,6 +462807,29 @@ 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), @@ -451840,63 +462839,42 @@ 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), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451909,6 +462887,8 @@ 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), @@ -451918,63 +462898,63 @@ 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(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -451987,6 +462967,8 @@ 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_preproc_region] = STATE(2908), [sym_preproc_endregion] = STATE(2908), [sym_preproc_line] = STATE(2908), @@ -451996,63 +462978,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(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4892), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4892), - [anon_sym_DASH] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_GT_GT_GT] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4892), - [anon_sym_EQ_GT] = ACTIONS(4890), - [anon_sym_switch] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_QMARK_QMARK] = ACTIONS(4890), - [anon_sym_from] = ACTIONS(4890), - [anon_sym_into] = ACTIONS(4890), - [anon_sym_join] = ACTIONS(4890), - [anon_sym_on] = ACTIONS(4890), - [anon_sym_equals] = ACTIONS(4890), - [anon_sym_let] = ACTIONS(4890), - [anon_sym_orderby] = ACTIONS(4890), - [anon_sym_group] = ACTIONS(4890), - [anon_sym_by] = ACTIONS(4890), - [anon_sym_select] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_with] = ACTIONS(4890), - [aux_sym_preproc_if_token3] = ACTIONS(4890), - [aux_sym_preproc_else_token1] = ACTIONS(4890), - [aux_sym_preproc_elif_token1] = ACTIONS(4890), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452065,6 +463047,7 @@ 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), @@ -452074,63 +463057,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(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_COLON] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RBRACK] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4896), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_QMARK] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4894), - [anon_sym_PLUS] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_CARET] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_GT_GT_GT] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_GT_EQ] = ACTIONS(4894), - [anon_sym_LT_EQ] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4896), - [anon_sym_EQ_GT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_or] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_QMARK_QMARK] = ACTIONS(4894), - [anon_sym_from] = ACTIONS(4894), - [anon_sym_into] = ACTIONS(4894), - [anon_sym_join] = ACTIONS(4894), - [anon_sym_on] = ACTIONS(4894), - [anon_sym_equals] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_orderby] = ACTIONS(4894), - [anon_sym_group] = ACTIONS(4894), - [anon_sym_by] = ACTIONS(4894), - [anon_sym_select] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_with] = ACTIONS(4894), - [aux_sym_preproc_if_token3] = ACTIONS(4894), - [aux_sym_preproc_else_token1] = ACTIONS(4894), - [aux_sym_preproc_elif_token1] = ACTIONS(4894), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452143,6 +463127,8 @@ 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), @@ -452152,63 +463138,63 @@ 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(4898), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_COLON] = ACTIONS(4898), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_RBRACK] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_QMARK] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4898), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_CARET] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4900), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4900), - [anon_sym_GT_GT_GT] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_EQ_GT] = ACTIONS(4898), - [anon_sym_switch] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_and] = ACTIONS(4898), - [anon_sym_or] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_QMARK_QMARK] = ACTIONS(4898), - [anon_sym_from] = ACTIONS(4898), - [anon_sym_into] = ACTIONS(4898), - [anon_sym_join] = ACTIONS(4898), - [anon_sym_on] = ACTIONS(4898), - [anon_sym_equals] = ACTIONS(4898), - [anon_sym_let] = ACTIONS(4898), - [anon_sym_orderby] = ACTIONS(4898), - [anon_sym_group] = ACTIONS(4898), - [anon_sym_by] = ACTIONS(4898), - [anon_sym_select] = ACTIONS(4898), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_with] = ACTIONS(4898), - [aux_sym_preproc_if_token3] = ACTIONS(4898), - [aux_sym_preproc_else_token1] = ACTIONS(4898), - [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452230,63 +463216,65 @@ 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_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_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452308,63 +463296,65 @@ 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_SEMI] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2905), - [anon_sym_where] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_EQ_GT] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2907), - [anon_sym_into] = ACTIONS(2907), - [anon_sym_join] = ACTIONS(2907), - [anon_sym_on] = ACTIONS(2907), - [anon_sym_equals] = ACTIONS(2907), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_orderby] = ACTIONS(2907), - [anon_sym_group] = ACTIONS(2907), - [anon_sym_by] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [aux_sym_preproc_if_token3] = ACTIONS(2907), - [aux_sym_preproc_else_token1] = ACTIONS(2907), - [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [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), @@ -452386,63 +463376,65 @@ 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_SEMI] = ACTIONS(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_where] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4029), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_from] = ACTIONS(4031), - [anon_sym_join] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_let] = ACTIONS(4031), - [anon_sym_orderby] = ACTIONS(4031), - [anon_sym_group] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452464,63 +463456,65 @@ 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_SEMI] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_EQ_GT] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2915), - [anon_sym_into] = ACTIONS(2915), - [anon_sym_join] = ACTIONS(2915), - [anon_sym_on] = ACTIONS(2915), - [anon_sym_equals] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_orderby] = ACTIONS(2915), - [anon_sym_group] = ACTIONS(2915), - [anon_sym_by] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [aux_sym_preproc_if_token3] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452533,6 +463527,7 @@ 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), @@ -452542,63 +463537,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(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452620,63 +463616,65 @@ 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_SEMI] = ACTIONS(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4732), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_from] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_join] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_let] = ACTIONS(4730), - [anon_sym_orderby] = ACTIONS(4730), - [anon_sym_group] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_select] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452698,63 +463696,65 @@ 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_SEMI] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_COLON] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_RBRACK] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4910), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4910), - [anon_sym_CARET] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4912), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4912), - [anon_sym_GT_GT_GT] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_EQ_GT] = ACTIONS(4910), - [anon_sym_switch] = ACTIONS(4910), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_and] = ACTIONS(4910), - [anon_sym_or] = ACTIONS(4912), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_QMARK_QMARK] = ACTIONS(4910), - [anon_sym_from] = ACTIONS(4910), - [anon_sym_into] = ACTIONS(4910), - [anon_sym_join] = ACTIONS(4910), - [anon_sym_on] = ACTIONS(4910), - [anon_sym_equals] = ACTIONS(4910), - [anon_sym_let] = ACTIONS(4910), - [anon_sym_orderby] = ACTIONS(4910), - [anon_sym_group] = ACTIONS(4910), - [anon_sym_by] = ACTIONS(4910), - [anon_sym_select] = ACTIONS(4910), - [anon_sym_as] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4910), - [anon_sym_DASH_GT] = ACTIONS(4910), - [anon_sym_with] = ACTIONS(4910), - [aux_sym_preproc_if_token3] = ACTIONS(4910), - [aux_sym_preproc_else_token1] = ACTIONS(4910), - [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452776,63 +463776,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(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_COLON] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4914), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4914), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_GT_GT_GT] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_EQ_GT] = ACTIONS(4914), - [anon_sym_switch] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_and] = ACTIONS(4914), - [anon_sym_or] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_QMARK_QMARK] = ACTIONS(4914), - [anon_sym_from] = ACTIONS(4914), - [anon_sym_into] = ACTIONS(4914), - [anon_sym_join] = ACTIONS(4914), - [anon_sym_on] = ACTIONS(4914), - [anon_sym_equals] = ACTIONS(4914), - [anon_sym_let] = ACTIONS(4914), - [anon_sym_orderby] = ACTIONS(4914), - [anon_sym_group] = ACTIONS(4914), - [anon_sym_by] = ACTIONS(4914), - [anon_sym_select] = ACTIONS(4914), - [anon_sym_as] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4914), - [anon_sym_DASH_GT] = ACTIONS(4914), - [anon_sym_with] = ACTIONS(4914), - [aux_sym_preproc_if_token3] = ACTIONS(4914), - [aux_sym_preproc_else_token1] = ACTIONS(4914), - [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452854,63 +463855,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(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3612), - [anon_sym_where] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [anon_sym_from] = 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_group] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_select] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -452932,63 +463934,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(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_COLON] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_CARET] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4918), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_GT_GT_GT] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_EQ_GT] = ACTIONS(4918), - [anon_sym_switch] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_and] = ACTIONS(4918), - [anon_sym_or] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_QMARK_QMARK] = ACTIONS(4918), - [anon_sym_from] = ACTIONS(4918), - [anon_sym_into] = ACTIONS(4918), - [anon_sym_join] = ACTIONS(4918), - [anon_sym_on] = ACTIONS(4918), - [anon_sym_equals] = ACTIONS(4918), - [anon_sym_let] = ACTIONS(4918), - [anon_sym_orderby] = ACTIONS(4918), - [anon_sym_group] = ACTIONS(4918), - [anon_sym_by] = ACTIONS(4918), - [anon_sym_select] = ACTIONS(4918), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4918), - [anon_sym_with] = ACTIONS(4918), - [aux_sym_preproc_if_token3] = ACTIONS(4918), - [aux_sym_preproc_else_token1] = ACTIONS(4918), - [aux_sym_preproc_elif_token1] = ACTIONS(4918), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453010,63 +464013,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(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_CARET] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_GT_GT] = ACTIONS(4924), - [anon_sym_GT_GT_GT] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_EQ_GT] = ACTIONS(4922), - [anon_sym_switch] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_and] = ACTIONS(4922), - [anon_sym_or] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_QMARK_QMARK] = ACTIONS(4922), - [anon_sym_from] = ACTIONS(4922), - [anon_sym_into] = ACTIONS(4922), - [anon_sym_join] = ACTIONS(4922), - [anon_sym_on] = ACTIONS(4922), - [anon_sym_equals] = ACTIONS(4922), - [anon_sym_let] = ACTIONS(4922), - [anon_sym_orderby] = ACTIONS(4922), - [anon_sym_group] = ACTIONS(4922), - [anon_sym_by] = ACTIONS(4922), - [anon_sym_select] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4922), - [anon_sym_with] = ACTIONS(4922), - [aux_sym_preproc_if_token3] = ACTIONS(4922), - [aux_sym_preproc_else_token1] = ACTIONS(4922), - [aux_sym_preproc_elif_token1] = ACTIONS(4922), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453088,63 +464092,64 @@ 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(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_COLON] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4928), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(4928), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4928), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_CARET] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4928), - [anon_sym_LT_LT] = ACTIONS(4926), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym_GT_GT_GT] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_EQ_GT] = ACTIONS(4926), - [anon_sym_switch] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_and] = ACTIONS(4926), - [anon_sym_or] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_QMARK_QMARK] = ACTIONS(4926), - [anon_sym_from] = ACTIONS(4926), - [anon_sym_into] = ACTIONS(4926), - [anon_sym_join] = ACTIONS(4926), - [anon_sym_on] = ACTIONS(4926), - [anon_sym_equals] = ACTIONS(4926), - [anon_sym_let] = ACTIONS(4926), - [anon_sym_orderby] = ACTIONS(4926), - [anon_sym_group] = ACTIONS(4926), - [anon_sym_by] = ACTIONS(4926), - [anon_sym_select] = ACTIONS(4926), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [anon_sym_with] = ACTIONS(4926), - [aux_sym_preproc_if_token3] = ACTIONS(4926), - [aux_sym_preproc_else_token1] = ACTIONS(4926), - [aux_sym_preproc_elif_token1] = ACTIONS(4926), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453157,6 +464162,7 @@ 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), @@ -453166,63 +464172,63 @@ 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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453235,27 +464241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2924] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter] = STATE(6648), - [sym__parameter_array] = STATE(6649), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5539), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2924), [sym_preproc_endregion] = STATE(2924), [sym_preproc_line] = STATE(2924), @@ -453265,42 +464250,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_RBRACK] = ACTIONS(4930), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -453322,63 +464329,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(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_COLON] = ACTIONS(4932), - [anon_sym_COMMA] = ACTIONS(4932), - [anon_sym_RBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_in] = ACTIONS(4934), - [anon_sym_where] = ACTIONS(4932), - [anon_sym_QMARK] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_CARET] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_LT_LT] = ACTIONS(4932), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_GT_GT_GT] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_GT_EQ] = ACTIONS(4932), - [anon_sym_LT_EQ] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_EQ_GT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_and] = ACTIONS(4932), - [anon_sym_or] = ACTIONS(4934), - [anon_sym_AMP_AMP] = ACTIONS(4932), - [anon_sym_PIPE_PIPE] = ACTIONS(4932), - [anon_sym_QMARK_QMARK] = ACTIONS(4932), - [anon_sym_from] = ACTIONS(4932), - [anon_sym_into] = ACTIONS(4932), - [anon_sym_join] = ACTIONS(4932), - [anon_sym_on] = ACTIONS(4932), - [anon_sym_equals] = ACTIONS(4932), - [anon_sym_let] = ACTIONS(4932), - [anon_sym_orderby] = ACTIONS(4932), - [anon_sym_group] = ACTIONS(4932), - [anon_sym_by] = ACTIONS(4932), - [anon_sym_select] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4932), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_with] = ACTIONS(4932), - [aux_sym_preproc_if_token3] = ACTIONS(4932), - [aux_sym_preproc_else_token1] = ACTIONS(4932), - [aux_sym_preproc_elif_token1] = ACTIONS(4932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453391,11 +464399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2926] = { - [sym_attribute_list] = STATE(3519), - [sym_modifier] = STATE(3622), - [sym_accessor_declaration] = STATE(3436), - [sym_identifier] = STATE(6200), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2926), [sym_preproc_endregion] = STATE(2926), [sym_preproc_line] = STATE(2926), @@ -453405,58 +464408,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3045), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3210), - [aux_sym_accessor_list_repeat1] = STATE(2960), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4872), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_async] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_file] = ACTIONS(4878), - [anon_sym_fixed] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_new] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_partial] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_readonly] = ACTIONS(4872), - [anon_sym_required] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_virtual] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(4880), - [anon_sym_set] = ACTIONS(4880), - [anon_sym_add] = ACTIONS(4880), - [anon_sym_remove] = ACTIONS(4880), - [anon_sym_init] = ACTIONS(4880), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453478,63 +464487,64 @@ 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(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_COLON] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4938), - [anon_sym_CARET] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_LT_LT] = ACTIONS(4938), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_GT_GT_GT] = ACTIONS(4938), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_EQ_GT] = ACTIONS(4938), - [anon_sym_switch] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_and] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_QMARK_QMARK] = ACTIONS(4938), - [anon_sym_from] = ACTIONS(4938), - [anon_sym_into] = ACTIONS(4938), - [anon_sym_join] = ACTIONS(4938), - [anon_sym_on] = ACTIONS(4938), - [anon_sym_equals] = ACTIONS(4938), - [anon_sym_let] = ACTIONS(4938), - [anon_sym_orderby] = ACTIONS(4938), - [anon_sym_group] = ACTIONS(4938), - [anon_sym_by] = ACTIONS(4938), - [anon_sym_select] = ACTIONS(4938), - [anon_sym_as] = ACTIONS(4938), - [anon_sym_is] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [anon_sym_with] = ACTIONS(4938), - [aux_sym_preproc_if_token3] = ACTIONS(4938), - [aux_sym_preproc_else_token1] = ACTIONS(4938), - [aux_sym_preproc_elif_token1] = ACTIONS(4938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453556,63 +464566,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(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4942), - [anon_sym_QMARK] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4942), - [anon_sym_CARET] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4944), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4944), - [anon_sym_GT_GT_GT] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_EQ_GT] = ACTIONS(4942), - [anon_sym_switch] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_and] = ACTIONS(4942), - [anon_sym_or] = ACTIONS(4944), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_QMARK_QMARK] = ACTIONS(4942), - [anon_sym_from] = ACTIONS(4942), - [anon_sym_into] = ACTIONS(4942), - [anon_sym_join] = ACTIONS(4942), - [anon_sym_on] = ACTIONS(4942), - [anon_sym_equals] = ACTIONS(4942), - [anon_sym_let] = ACTIONS(4942), - [anon_sym_orderby] = ACTIONS(4942), - [anon_sym_group] = ACTIONS(4942), - [anon_sym_by] = ACTIONS(4942), - [anon_sym_select] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4942), - [anon_sym_DASH_GT] = ACTIONS(4942), - [anon_sym_with] = ACTIONS(4942), - [aux_sym_preproc_if_token3] = ACTIONS(4942), - [aux_sym_preproc_else_token1] = ACTIONS(4942), - [aux_sym_preproc_elif_token1] = ACTIONS(4942), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453634,63 +464645,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(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_COLON] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4946), - [anon_sym_CARET] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4948), - [anon_sym_LT_LT] = ACTIONS(4946), - [anon_sym_GT_GT] = ACTIONS(4948), - [anon_sym_GT_GT_GT] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_EQ_GT] = ACTIONS(4946), - [anon_sym_switch] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_and] = ACTIONS(4946), - [anon_sym_or] = ACTIONS(4948), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_QMARK_QMARK] = ACTIONS(4946), - [anon_sym_from] = ACTIONS(4946), - [anon_sym_into] = ACTIONS(4946), - [anon_sym_join] = ACTIONS(4946), - [anon_sym_on] = ACTIONS(4946), - [anon_sym_equals] = ACTIONS(4946), - [anon_sym_let] = ACTIONS(4946), - [anon_sym_orderby] = ACTIONS(4946), - [anon_sym_group] = ACTIONS(4946), - [anon_sym_by] = ACTIONS(4946), - [anon_sym_select] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4946), - [anon_sym_DASH_GT] = ACTIONS(4946), - [anon_sym_with] = ACTIONS(4946), - [aux_sym_preproc_if_token3] = ACTIONS(4946), - [aux_sym_preproc_else_token1] = ACTIONS(4946), - [aux_sym_preproc_elif_token1] = ACTIONS(4946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453712,63 +464724,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(3863), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3863), - [anon_sym_where] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3863), - [anon_sym_or] = ACTIONS(3861), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_from] = 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_group] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3863), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3863), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = ACTIONS(3863), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453790,63 +464803,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(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_RBRACK] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4950), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4950), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_CARET] = ACTIONS(4950), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4952), - [anon_sym_GT_GT_GT] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_EQ_GT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4950), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_and] = ACTIONS(4950), - [anon_sym_or] = ACTIONS(4952), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_QMARK_QMARK] = ACTIONS(4950), - [anon_sym_from] = ACTIONS(4950), - [anon_sym_into] = ACTIONS(4950), - [anon_sym_join] = ACTIONS(4950), - [anon_sym_on] = ACTIONS(4950), - [anon_sym_equals] = ACTIONS(4950), - [anon_sym_let] = ACTIONS(4950), - [anon_sym_orderby] = ACTIONS(4950), - [anon_sym_group] = ACTIONS(4950), - [anon_sym_by] = ACTIONS(4950), - [anon_sym_select] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4950), - [anon_sym_DASH_GT] = ACTIONS(4950), - [anon_sym_with] = ACTIONS(4950), - [aux_sym_preproc_if_token3] = ACTIONS(4950), - [aux_sym_preproc_else_token1] = ACTIONS(4950), - [aux_sym_preproc_elif_token1] = ACTIONS(4950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453868,63 +464882,64 @@ 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(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_RBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_in] = ACTIONS(3924), - [anon_sym_where] = ACTIONS(3924), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_EQ_GT] = ACTIONS(3924), - [anon_sym_switch] = ACTIONS(3924), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_or] = ACTIONS(3922), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_from] = ACTIONS(3924), - [anon_sym_join] = ACTIONS(3924), - [anon_sym_on] = ACTIONS(3924), - [anon_sym_equals] = ACTIONS(3924), - [anon_sym_let] = ACTIONS(3924), - [anon_sym_orderby] = ACTIONS(3924), - [anon_sym_group] = ACTIONS(3924), - [anon_sym_by] = ACTIONS(3924), - [anon_sym_select] = ACTIONS(3924), - [anon_sym_as] = ACTIONS(3924), - [anon_sym_is] = ACTIONS(3924), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3924), - [aux_sym_preproc_if_token3] = ACTIONS(3924), - [aux_sym_preproc_else_token1] = ACTIONS(3924), - [aux_sym_preproc_elif_token1] = ACTIONS(3924), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -453937,6 +464952,7 @@ 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), @@ -453946,63 +464962,63 @@ 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(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_COLON] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_RBRACK] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4954), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4954), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_CARET] = ACTIONS(4954), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(4956), - [anon_sym_LT_LT] = ACTIONS(4954), - [anon_sym_GT_GT] = ACTIONS(4956), - [anon_sym_GT_GT_GT] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_EQ_GT] = ACTIONS(4954), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_and] = ACTIONS(4954), - [anon_sym_or] = ACTIONS(4956), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_QMARK_QMARK] = ACTIONS(4954), - [anon_sym_from] = ACTIONS(4954), - [anon_sym_into] = ACTIONS(4954), - [anon_sym_join] = ACTIONS(4954), - [anon_sym_on] = ACTIONS(4954), - [anon_sym_equals] = ACTIONS(4954), - [anon_sym_let] = ACTIONS(4954), - [anon_sym_orderby] = ACTIONS(4954), - [anon_sym_group] = ACTIONS(4954), - [anon_sym_by] = ACTIONS(4954), - [anon_sym_select] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4954), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4954), - [aux_sym_preproc_if_token3] = ACTIONS(4954), - [aux_sym_preproc_else_token1] = ACTIONS(4954), - [aux_sym_preproc_elif_token1] = ACTIONS(4954), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454024,63 +465040,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), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_RBRACK] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4958), - [anon_sym_QMARK] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4958), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4958), - [anon_sym_CARET] = ACTIONS(4958), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4960), - [anon_sym_LT_LT] = ACTIONS(4958), - [anon_sym_GT_GT] = ACTIONS(4960), - [anon_sym_GT_GT_GT] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_EQ_GT] = ACTIONS(4958), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_or] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_QMARK_QMARK] = ACTIONS(4958), - [anon_sym_from] = ACTIONS(4958), - [anon_sym_into] = ACTIONS(4958), - [anon_sym_join] = ACTIONS(4958), - [anon_sym_on] = ACTIONS(4958), - [anon_sym_equals] = ACTIONS(4958), - [anon_sym_let] = ACTIONS(4958), - [anon_sym_orderby] = ACTIONS(4958), - [anon_sym_group] = ACTIONS(4958), - [anon_sym_by] = ACTIONS(4958), - [anon_sym_select] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4958), - [anon_sym_DASH_GT] = ACTIONS(4958), - [anon_sym_with] = ACTIONS(4958), - [aux_sym_preproc_if_token3] = ACTIONS(4958), - [aux_sym_preproc_else_token1] = ACTIONS(4958), - [aux_sym_preproc_elif_token1] = ACTIONS(4958), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454102,63 +465119,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(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454180,63 +465198,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(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_from] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_join] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_orderby] = ACTIONS(4962), - [anon_sym_group] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_select] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454258,63 +465277,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(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_and] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_QMARK_QMARK] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3083), - [anon_sym_into] = ACTIONS(3083), - [anon_sym_join] = ACTIONS(3083), - [anon_sym_on] = ACTIONS(3083), - [anon_sym_equals] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_orderby] = ACTIONS(3083), - [anon_sym_group] = ACTIONS(3083), - [anon_sym_by] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_with] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454327,6 +465347,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_region] = STATE(2938), [sym_preproc_endregion] = STATE(2938), [sym_preproc_line] = STATE(2938), @@ -454336,63 +465358,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), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454414,63 +465435,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(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACK] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_RPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_in] = ACTIONS(3954), - [anon_sym_where] = ACTIONS(3954), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_EQ_GT] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3954), - [anon_sym_or] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_from] = ACTIONS(3954), - [anon_sym_join] = ACTIONS(3954), - [anon_sym_on] = ACTIONS(3954), - [anon_sym_equals] = ACTIONS(3954), - [anon_sym_let] = ACTIONS(3954), - [anon_sym_orderby] = ACTIONS(3954), - [anon_sym_group] = ACTIONS(3954), - [anon_sym_by] = ACTIONS(3954), - [anon_sym_select] = ACTIONS(3954), - [anon_sym_as] = ACTIONS(3954), - [anon_sym_is] = ACTIONS(3954), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3954), - [aux_sym_preproc_if_token3] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454492,63 +465514,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(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3934), - [anon_sym_where] = ACTIONS(3934), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3934), - [anon_sym_join] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_let] = ACTIONS(3934), - [anon_sym_orderby] = ACTIONS(3934), - [anon_sym_group] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_select] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454570,63 +465593,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(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4966), - [anon_sym_switch] = ACTIONS(4966), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_QMARK_QMARK] = ACTIONS(4966), - [anon_sym_from] = ACTIONS(4966), - [anon_sym_into] = ACTIONS(4966), - [anon_sym_join] = ACTIONS(4966), - [anon_sym_on] = ACTIONS(4966), - [anon_sym_equals] = ACTIONS(4966), - [anon_sym_let] = ACTIONS(4966), - [anon_sym_orderby] = ACTIONS(4966), - [anon_sym_group] = ACTIONS(4966), - [anon_sym_by] = ACTIONS(4966), - [anon_sym_select] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4966), - [aux_sym_preproc_else_token1] = ACTIONS(4966), - [aux_sym_preproc_elif_token1] = ACTIONS(4966), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454639,6 +465663,7 @@ 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), @@ -454648,63 +465673,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2942), [sym_preproc_define] = STATE(2942), [sym_preproc_undef] = STATE(2942), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_RBRACK] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_RPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_in] = ACTIONS(3928), - [anon_sym_where] = ACTIONS(3928), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_EQ_GT] = ACTIONS(3928), - [anon_sym_switch] = ACTIONS(3928), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3928), - [anon_sym_or] = ACTIONS(3926), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_from] = ACTIONS(3928), - [anon_sym_join] = ACTIONS(3928), - [anon_sym_on] = ACTIONS(3928), - [anon_sym_equals] = ACTIONS(3928), - [anon_sym_let] = ACTIONS(3928), - [anon_sym_orderby] = ACTIONS(3928), - [anon_sym_group] = ACTIONS(3928), - [anon_sym_by] = ACTIONS(3928), - [anon_sym_select] = ACTIONS(3928), - [anon_sym_as] = ACTIONS(3928), - [anon_sym_is] = ACTIONS(3928), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3928), - [aux_sym_preproc_if_token3] = ACTIONS(3928), - [aux_sym_preproc_else_token1] = ACTIONS(3928), - [aux_sym_preproc_elif_token1] = ACTIONS(3928), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454726,63 +465751,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(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4970), - [anon_sym_CARET] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_LT_LT] = ACTIONS(4970), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_GT_GT_GT] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_QMARK_QMARK] = ACTIONS(4970), - [anon_sym_from] = ACTIONS(4970), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_join] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_let] = ACTIONS(4970), - [anon_sym_orderby] = ACTIONS(4970), - [anon_sym_group] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_select] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [anon_sym_with] = ACTIONS(4970), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454804,63 +465830,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(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_COLON] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4974), - [anon_sym_QMARK] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4974), - [anon_sym_CARET] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4976), - [anon_sym_LT_LT] = ACTIONS(4974), - [anon_sym_GT_GT] = ACTIONS(4976), - [anon_sym_GT_GT_GT] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_EQ_GT] = ACTIONS(4974), - [anon_sym_switch] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_and] = ACTIONS(4974), - [anon_sym_or] = ACTIONS(4976), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_QMARK_QMARK] = ACTIONS(4974), - [anon_sym_from] = ACTIONS(4974), - [anon_sym_into] = ACTIONS(4974), - [anon_sym_join] = ACTIONS(4974), - [anon_sym_on] = ACTIONS(4974), - [anon_sym_equals] = ACTIONS(4974), - [anon_sym_let] = ACTIONS(4974), - [anon_sym_orderby] = ACTIONS(4974), - [anon_sym_group] = ACTIONS(4974), - [anon_sym_by] = ACTIONS(4974), - [anon_sym_select] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_with] = ACTIONS(4974), - [aux_sym_preproc_if_token3] = ACTIONS(4974), - [aux_sym_preproc_else_token1] = ACTIONS(4974), - [aux_sym_preproc_elif_token1] = ACTIONS(4974), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454882,63 +465909,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(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_COLON] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4978), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_CARET] = ACTIONS(4978), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4978), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym_GT_GT_GT] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_EQ_GT] = ACTIONS(4978), - [anon_sym_switch] = ACTIONS(4978), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_and] = ACTIONS(4978), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_QMARK_QMARK] = ACTIONS(4978), - [anon_sym_from] = ACTIONS(4978), - [anon_sym_into] = ACTIONS(4978), - [anon_sym_join] = ACTIONS(4978), - [anon_sym_on] = ACTIONS(4978), - [anon_sym_equals] = ACTIONS(4978), - [anon_sym_let] = ACTIONS(4978), - [anon_sym_orderby] = ACTIONS(4978), - [anon_sym_group] = ACTIONS(4978), - [anon_sym_by] = ACTIONS(4978), - [anon_sym_select] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4978), - [anon_sym_DASH_GT] = ACTIONS(4978), - [anon_sym_with] = ACTIONS(4978), - [aux_sym_preproc_if_token3] = ACTIONS(4978), - [aux_sym_preproc_else_token1] = ACTIONS(4978), - [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -454951,6 +465979,7 @@ 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), @@ -454960,63 +465989,63 @@ 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(3627), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3627), - [anon_sym_where] = ACTIONS(3627), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3625), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_from] = ACTIONS(3627), - [anon_sym_join] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_let] = ACTIONS(3627), - [anon_sym_orderby] = ACTIONS(3627), - [anon_sym_group] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_select] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455038,63 +466067,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(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4007), - [anon_sym_where] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4005), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_from] = ACTIONS(4007), - [anon_sym_join] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_let] = ACTIONS(4007), - [anon_sym_orderby] = ACTIONS(4007), - [anon_sym_group] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455116,63 +466146,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(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_GT_GT_GT] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_EQ_GT] = ACTIONS(4982), - [anon_sym_switch] = ACTIONS(4982), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_and] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_QMARK_QMARK] = ACTIONS(4982), - [anon_sym_from] = ACTIONS(4982), - [anon_sym_into] = ACTIONS(4982), - [anon_sym_join] = ACTIONS(4982), - [anon_sym_on] = ACTIONS(4982), - [anon_sym_equals] = ACTIONS(4982), - [anon_sym_let] = ACTIONS(4982), - [anon_sym_orderby] = ACTIONS(4982), - [anon_sym_group] = ACTIONS(4982), - [anon_sym_by] = ACTIONS(4982), - [anon_sym_select] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [anon_sym_with] = ACTIONS(4982), - [aux_sym_preproc_if_token3] = ACTIONS(4982), - [aux_sym_preproc_else_token1] = ACTIONS(4982), - [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455194,63 +466225,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_SEMI] = ACTIONS(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_COLON] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_in] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4986), - [anon_sym_QMARK] = ACTIONS(4988), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4986), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4986), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_GT_GT_GT] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_EQ_GT] = ACTIONS(4986), - [anon_sym_switch] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_and] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_QMARK_QMARK] = ACTIONS(4986), - [anon_sym_from] = ACTIONS(4986), - [anon_sym_into] = ACTIONS(4986), - [anon_sym_join] = ACTIONS(4986), - [anon_sym_on] = ACTIONS(4986), - [anon_sym_equals] = ACTIONS(4986), - [anon_sym_let] = ACTIONS(4986), - [anon_sym_orderby] = ACTIONS(4986), - [anon_sym_group] = ACTIONS(4986), - [anon_sym_by] = ACTIONS(4986), - [anon_sym_select] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), - [anon_sym_with] = ACTIONS(4986), - [aux_sym_preproc_if_token3] = ACTIONS(4986), - [aux_sym_preproc_else_token1] = ACTIONS(4986), - [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455272,63 +466304,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(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4990), - [anon_sym_QMARK] = ACTIONS(4992), - [anon_sym_BANG] = ACTIONS(4992), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_GT_GT_GT] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_EQ_GT] = ACTIONS(4990), - [anon_sym_switch] = ACTIONS(4990), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_QMARK_QMARK] = ACTIONS(4990), - [anon_sym_from] = ACTIONS(4990), - [anon_sym_into] = ACTIONS(4990), - [anon_sym_join] = ACTIONS(4990), - [anon_sym_on] = ACTIONS(4990), - [anon_sym_equals] = ACTIONS(4990), - [anon_sym_let] = ACTIONS(4990), - [anon_sym_orderby] = ACTIONS(4990), - [anon_sym_group] = ACTIONS(4990), - [anon_sym_by] = ACTIONS(4990), - [anon_sym_select] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [anon_sym_with] = ACTIONS(4990), - [aux_sym_preproc_if_token3] = ACTIONS(4990), - [aux_sym_preproc_else_token1] = ACTIONS(4990), - [aux_sym_preproc_elif_token1] = ACTIONS(4990), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455350,63 +466383,64 @@ 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(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_RBRACK] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_in] = ACTIONS(3938), - [anon_sym_where] = ACTIONS(3938), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_EQ_GT] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_or] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_from] = ACTIONS(3938), - [anon_sym_join] = ACTIONS(3938), - [anon_sym_on] = ACTIONS(3938), - [anon_sym_equals] = ACTIONS(3938), - [anon_sym_let] = ACTIONS(3938), - [anon_sym_orderby] = ACTIONS(3938), - [anon_sym_group] = ACTIONS(3938), - [anon_sym_by] = ACTIONS(3938), - [anon_sym_select] = ACTIONS(3938), - [anon_sym_as] = ACTIONS(3938), - [anon_sym_is] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3938), - [aux_sym_preproc_if_token3] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455428,63 +466462,64 @@ 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(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_GT_GT_GT] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_EQ_GT] = ACTIONS(4994), - [anon_sym_switch] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_QMARK_QMARK] = ACTIONS(4994), - [anon_sym_from] = ACTIONS(4994), - [anon_sym_into] = ACTIONS(4994), - [anon_sym_join] = ACTIONS(4994), - [anon_sym_on] = ACTIONS(4994), - [anon_sym_equals] = ACTIONS(4994), - [anon_sym_let] = ACTIONS(4994), - [anon_sym_orderby] = ACTIONS(4994), - [anon_sym_group] = ACTIONS(4994), - [anon_sym_by] = ACTIONS(4994), - [anon_sym_select] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_with] = ACTIONS(4994), - [aux_sym_preproc_if_token3] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455506,63 +466541,64 @@ 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(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_RBRACK] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_in] = ACTIONS(3946), - [anon_sym_where] = ACTIONS(3946), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_EQ_GT] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_or] = ACTIONS(3944), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_from] = ACTIONS(3946), - [anon_sym_join] = ACTIONS(3946), - [anon_sym_on] = ACTIONS(3946), - [anon_sym_equals] = ACTIONS(3946), - [anon_sym_let] = ACTIONS(3946), - [anon_sym_orderby] = ACTIONS(3946), - [anon_sym_group] = ACTIONS(3946), - [anon_sym_by] = ACTIONS(3946), - [anon_sym_select] = ACTIONS(3946), - [anon_sym_as] = ACTIONS(3946), - [anon_sym_is] = ACTIONS(3946), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3946), - [aux_sym_preproc_if_token3] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455584,63 +466620,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2954), [sym_preproc_define] = STATE(2954), [sym_preproc_undef] = STATE(2954), - [anon_sym_SEMI] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_in] = ACTIONS(3942), - [anon_sym_where] = ACTIONS(3942), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_EQ_GT] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3942), - [anon_sym_or] = ACTIONS(3940), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_from] = ACTIONS(3942), - [anon_sym_join] = ACTIONS(3942), - [anon_sym_on] = ACTIONS(3942), - [anon_sym_equals] = ACTIONS(3942), - [anon_sym_let] = ACTIONS(3942), - [anon_sym_orderby] = ACTIONS(3942), - [anon_sym_group] = ACTIONS(3942), - [anon_sym_by] = ACTIONS(3942), - [anon_sym_select] = ACTIONS(3942), - [anon_sym_as] = ACTIONS(3942), - [anon_sym_is] = ACTIONS(3942), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3942), - [aux_sym_preproc_if_token3] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455662,63 +466699,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2955), [sym_preproc_define] = STATE(2955), [sym_preproc_undef] = STATE(2955), - [anon_sym_SEMI] = ACTIONS(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455731,6 +466769,7 @@ 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), @@ -455740,63 +466779,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(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_COLON] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_and] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_QMARK_QMARK] = ACTIONS(2089), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_into] = ACTIONS(2089), - [anon_sym_join] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_equals] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_orderby] = ACTIONS(2089), - [anon_sym_group] = ACTIONS(2089), - [anon_sym_by] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_DASH_GT] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [aux_sym_preproc_if_token3] = ACTIONS(2089), - [aux_sym_preproc_else_token1] = ACTIONS(2089), - [aux_sym_preproc_elif_token1] = ACTIONS(2089), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455818,63 +466857,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2957), [sym_preproc_define] = STATE(2957), [sym_preproc_undef] = STATE(2957), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_GT_GT_GT] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_switch] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_QMARK_QMARK] = ACTIONS(4998), - [anon_sym_from] = ACTIONS(4998), - [anon_sym_into] = ACTIONS(4998), - [anon_sym_join] = ACTIONS(4998), - [anon_sym_on] = ACTIONS(4998), - [anon_sym_equals] = ACTIONS(4998), - [anon_sym_let] = ACTIONS(4998), - [anon_sym_orderby] = ACTIONS(4998), - [anon_sym_group] = ACTIONS(4998), - [anon_sym_by] = ACTIONS(4998), - [anon_sym_select] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [anon_sym_with] = ACTIONS(4998), - [aux_sym_preproc_if_token3] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455887,6 +466927,7 @@ 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), @@ -455896,63 +466937,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_EQ] = ACTIONS(5002), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5004), - [anon_sym_DASH_EQ] = ACTIONS(5004), - [anon_sym_STAR_EQ] = ACTIONS(5004), - [anon_sym_SLASH_EQ] = ACTIONS(5004), - [anon_sym_PERCENT_EQ] = ACTIONS(5004), - [anon_sym_AMP_EQ] = ACTIONS(5004), - [anon_sym_CARET_EQ] = ACTIONS(5004), - [anon_sym_PIPE_EQ] = ACTIONS(5004), - [anon_sym_LT_LT_EQ] = ACTIONS(5004), - [anon_sym_GT_GT_EQ] = ACTIONS(5004), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5004), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5004), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_ascending] = ACTIONS(4684), - [anon_sym_descending] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -455974,63 +467015,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2959), [sym_preproc_define] = STATE(2959), [sym_preproc_undef] = STATE(2959), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5006), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_EQ_GT] = ACTIONS(5006), - [anon_sym_switch] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_and] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_QMARK_QMARK] = ACTIONS(5006), - [anon_sym_from] = ACTIONS(5006), - [anon_sym_into] = ACTIONS(5006), - [anon_sym_join] = ACTIONS(5006), - [anon_sym_on] = ACTIONS(5006), - [anon_sym_equals] = ACTIONS(5006), - [anon_sym_let] = ACTIONS(5006), - [anon_sym_orderby] = ACTIONS(5006), - [anon_sym_group] = ACTIONS(5006), - [anon_sym_by] = ACTIONS(5006), - [anon_sym_select] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_with] = ACTIONS(5006), - [aux_sym_preproc_if_token3] = ACTIONS(5006), - [aux_sym_preproc_else_token1] = ACTIONS(5006), - [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [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_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_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_on] = ACTIONS(4929), + [anon_sym_equals] = ACTIONS(4929), + [anon_sym_let] = ACTIONS(4929), + [anon_sym_orderby] = ACTIONS(4929), + [anon_sym_group] = ACTIONS(4929), + [anon_sym_by] = ACTIONS(4929), + [anon_sym_select] = 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), @@ -456043,11 +467085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2960] = { - [sym_attribute_list] = STATE(3519), - [sym_modifier] = STATE(3622), - [sym_accessor_declaration] = STATE(3436), - [sym_identifier] = STATE(6200), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(2960), [sym_preproc_endregion] = STATE(2960), [sym_preproc_line] = STATE(2960), @@ -456057,58 +467094,64 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3045), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3210), - [aux_sym_accessor_list_repeat1] = STATE(2960), - [sym__identifier_token] = ACTIONS(5010), - [anon_sym_extern] = ACTIONS(5013), - [anon_sym_alias] = ACTIONS(5016), - [anon_sym_global] = ACTIONS(5016), - [anon_sym_unsafe] = ACTIONS(5013), - [anon_sym_static] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5022), - [anon_sym_abstract] = ACTIONS(5013), - [anon_sym_async] = ACTIONS(5013), - [anon_sym_const] = ACTIONS(5013), - [anon_sym_file] = ACTIONS(5024), - [anon_sym_fixed] = ACTIONS(5013), - [anon_sym_internal] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5013), - [anon_sym_override] = ACTIONS(5013), - [anon_sym_partial] = ACTIONS(5013), - [anon_sym_private] = ACTIONS(5013), - [anon_sym_protected] = ACTIONS(5013), - [anon_sym_public] = ACTIONS(5013), - [anon_sym_readonly] = ACTIONS(5013), - [anon_sym_required] = ACTIONS(5013), - [anon_sym_sealed] = ACTIONS(5013), - [anon_sym_virtual] = ACTIONS(5013), - [anon_sym_volatile] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5016), - [anon_sym_notnull] = ACTIONS(5016), - [anon_sym_unmanaged] = ACTIONS(5016), - [anon_sym_get] = ACTIONS(5027), - [anon_sym_set] = ACTIONS(5027), - [anon_sym_add] = ACTIONS(5027), - [anon_sym_remove] = ACTIONS(5027), - [anon_sym_init] = ACTIONS(5027), - [anon_sym_scoped] = ACTIONS(5016), - [anon_sym_var] = ACTIONS(5016), - [anon_sym_yield] = ACTIONS(5016), - [anon_sym_when] = ACTIONS(5016), - [anon_sym_from] = ACTIONS(5016), - [anon_sym_into] = ACTIONS(5016), - [anon_sym_join] = ACTIONS(5016), - [anon_sym_on] = ACTIONS(5016), - [anon_sym_equals] = 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_by] = ACTIONS(5016), - [anon_sym_select] = ACTIONS(5016), + [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), @@ -456130,63 +467173,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2961), [sym_preproc_define] = STATE(2961), [sym_preproc_undef] = STATE(2961), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_COLON] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5030), - [anon_sym_QMARK] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5030), - [anon_sym_CARET] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(5030), - [anon_sym_GT_GT] = ACTIONS(5032), - [anon_sym_GT_GT_GT] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_EQ_GT] = ACTIONS(5030), - [anon_sym_switch] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_and] = ACTIONS(5030), - [anon_sym_or] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_QMARK_QMARK] = ACTIONS(5030), - [anon_sym_from] = ACTIONS(5030), - [anon_sym_into] = ACTIONS(5030), - [anon_sym_join] = ACTIONS(5030), - [anon_sym_on] = ACTIONS(5030), - [anon_sym_equals] = ACTIONS(5030), - [anon_sym_let] = ACTIONS(5030), - [anon_sym_orderby] = ACTIONS(5030), - [anon_sym_group] = ACTIONS(5030), - [anon_sym_by] = ACTIONS(5030), - [anon_sym_select] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5030), - [anon_sym_DASH_GT] = ACTIONS(5030), - [anon_sym_with] = ACTIONS(5030), - [aux_sym_preproc_if_token3] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5030), - [aux_sym_preproc_elif_token1] = ACTIONS(5030), + [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), @@ -456208,63 +467252,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2962), [sym_preproc_define] = STATE(2962), [sym_preproc_undef] = STATE(2962), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5036), - [anon_sym_where] = ACTIONS(5034), - [anon_sym_QMARK] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5034), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_CARET] = ACTIONS(5034), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LT_LT] = ACTIONS(5034), - [anon_sym_GT_GT] = ACTIONS(5036), - [anon_sym_GT_GT_GT] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_EQ_GT] = ACTIONS(5034), - [anon_sym_switch] = ACTIONS(5034), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5036), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_QMARK_QMARK] = ACTIONS(5034), - [anon_sym_from] = ACTIONS(5034), - [anon_sym_into] = ACTIONS(5034), - [anon_sym_join] = ACTIONS(5034), - [anon_sym_on] = ACTIONS(5034), - [anon_sym_equals] = ACTIONS(5034), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_orderby] = ACTIONS(5034), - [anon_sym_group] = ACTIONS(5034), - [anon_sym_by] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5034), - [anon_sym_DASH_GT] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [aux_sym_preproc_if_token3] = ACTIONS(5034), - [aux_sym_preproc_else_token1] = ACTIONS(5034), - [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [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_where] = ACTIONS(4933), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_EQ_GT] = ACTIONS(4933), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_from] = ACTIONS(4933), + [anon_sym_into] = ACTIONS(4933), + [anon_sym_join] = ACTIONS(4933), + [anon_sym_on] = ACTIONS(4933), + [anon_sym_equals] = ACTIONS(4933), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_orderby] = ACTIONS(4933), + [anon_sym_group] = ACTIONS(4933), + [anon_sym_by] = ACTIONS(4933), + [anon_sym_select] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), + [aux_sym_preproc_if_token3] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4933), + [aux_sym_preproc_elif_token1] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456286,63 +467330,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2963), [sym_preproc_define] = STATE(2963), [sym_preproc_undef] = STATE(2963), - [anon_sym_SEMI] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_COLON] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_RBRACK] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_LT] = ACTIONS(5040), - [anon_sym_GT] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5040), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_QMARK] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_PLUS] = ACTIONS(5040), - [anon_sym_DASH] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_CARET] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_LT_LT] = ACTIONS(5038), - [anon_sym_GT_GT] = ACTIONS(5040), - [anon_sym_GT_GT_GT] = ACTIONS(5038), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_GT_EQ] = ACTIONS(5038), - [anon_sym_LT_EQ] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_EQ_GT] = ACTIONS(5038), - [anon_sym_switch] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5038), - [anon_sym_PIPE_PIPE] = ACTIONS(5038), - [anon_sym_QMARK_QMARK] = ACTIONS(5038), - [anon_sym_from] = ACTIONS(5038), - [anon_sym_into] = ACTIONS(5038), - [anon_sym_join] = ACTIONS(5038), - [anon_sym_on] = ACTIONS(5038), - [anon_sym_equals] = ACTIONS(5038), - [anon_sym_let] = ACTIONS(5038), - [anon_sym_orderby] = ACTIONS(5038), - [anon_sym_group] = ACTIONS(5038), - [anon_sym_by] = ACTIONS(5038), - [anon_sym_select] = ACTIONS(5038), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5038), - [anon_sym_with] = ACTIONS(5038), - [aux_sym_preproc_if_token3] = ACTIONS(5038), - [aux_sym_preproc_else_token1] = ACTIONS(5038), - [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [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), @@ -456364,63 +467408,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2964), [sym_preproc_define] = STATE(2964), [sym_preproc_undef] = STATE(2964), - [anon_sym_SEMI] = ACTIONS(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), + [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), @@ -456442,63 +467486,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2965), [sym_preproc_define] = STATE(2965), [sym_preproc_undef] = STATE(2965), - [anon_sym_SEMI] = ACTIONS(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), + [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), @@ -456520,63 +467564,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2966), [sym_preproc_define] = STATE(2966), [sym_preproc_undef] = STATE(2966), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4049), - [anon_sym_where] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_EQ_GT] = ACTIONS(4049), - [anon_sym_switch] = ACTIONS(4049), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4049), - [anon_sym_or] = ACTIONS(4047), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_from] = ACTIONS(4049), - [anon_sym_join] = ACTIONS(4049), - [anon_sym_on] = ACTIONS(4049), - [anon_sym_equals] = ACTIONS(4049), - [anon_sym_let] = ACTIONS(4049), - [anon_sym_orderby] = ACTIONS(4049), - [anon_sym_group] = ACTIONS(4049), - [anon_sym_by] = ACTIONS(4049), - [anon_sym_select] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4049), - [aux_sym_preproc_if_token3] = ACTIONS(4049), - [aux_sym_preproc_else_token1] = ACTIONS(4049), - [aux_sym_preproc_elif_token1] = ACTIONS(4049), + [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_where] = ACTIONS(4937), + [anon_sym_QMARK] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PLUS_PLUS] = ACTIONS(4937), + [anon_sym_DASH_DASH] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4937), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_PERCENT] = ACTIONS(4937), + [anon_sym_CARET] = ACTIONS(4937), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_AMP] = ACTIONS(4939), + [anon_sym_LT_LT] = ACTIONS(4937), + [anon_sym_GT_GT] = ACTIONS(4939), + [anon_sym_GT_GT_GT] = ACTIONS(4937), + [anon_sym_EQ_EQ] = ACTIONS(4937), + [anon_sym_BANG_EQ] = ACTIONS(4937), + [anon_sym_GT_EQ] = ACTIONS(4937), + [anon_sym_LT_EQ] = ACTIONS(4937), + [anon_sym_DOT] = ACTIONS(4939), + [anon_sym_EQ_GT] = ACTIONS(4937), + [anon_sym_switch] = ACTIONS(4937), + [anon_sym_DOT_DOT] = ACTIONS(4937), + [anon_sym_and] = ACTIONS(4937), + [anon_sym_or] = ACTIONS(4939), + [anon_sym_AMP_AMP] = ACTIONS(4937), + [anon_sym_PIPE_PIPE] = ACTIONS(4937), + [anon_sym_QMARK_QMARK] = ACTIONS(4937), + [anon_sym_from] = ACTIONS(4937), + [anon_sym_into] = ACTIONS(4937), + [anon_sym_join] = ACTIONS(4937), + [anon_sym_on] = ACTIONS(4937), + [anon_sym_equals] = ACTIONS(4937), + [anon_sym_let] = ACTIONS(4937), + [anon_sym_orderby] = ACTIONS(4937), + [anon_sym_group] = ACTIONS(4937), + [anon_sym_by] = ACTIONS(4937), + [anon_sym_select] = ACTIONS(4937), + [anon_sym_as] = ACTIONS(4937), + [anon_sym_is] = ACTIONS(4937), + [anon_sym_DASH_GT] = ACTIONS(4937), + [anon_sym_with] = ACTIONS(4937), + [aux_sym_preproc_if_token3] = ACTIONS(4937), + [aux_sym_preproc_else_token1] = ACTIONS(4937), + [aux_sym_preproc_elif_token1] = ACTIONS(4937), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456598,63 +467642,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2967), [sym_preproc_define] = STATE(2967), [sym_preproc_undef] = STATE(2967), - [anon_sym_SEMI] = ACTIONS(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), + [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_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_into] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456676,63 +467720,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2968), [sym_preproc_define] = STATE(2968), [sym_preproc_undef] = STATE(2968), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4684), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_CARET] = ACTIONS(4684), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4684), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4684), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4684), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), @@ -456754,63 +467798,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2969), [sym_preproc_define] = STATE(2969), [sym_preproc_undef] = STATE(2969), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3608), - [anon_sym_where] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3608), - [anon_sym_join] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_let] = ACTIONS(3608), - [anon_sym_orderby] = ACTIONS(3608), - [anon_sym_group] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_select] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456823,27 +467867,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2970] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter] = STATE(6641), - [sym__parameter_array] = STATE(6643), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5539), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(2970), [sym_preproc_endregion] = STATE(2970), [sym_preproc_line] = STATE(2970), @@ -456853,42 +467876,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2970), [sym_preproc_define] = STATE(2970), [sym_preproc_undef] = STATE(2970), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2579), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_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_into] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -456910,63 +467954,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2971), [sym_preproc_define] = STATE(2971), [sym_preproc_undef] = STATE(2971), - [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(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_COLON] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_RBRACE] = ACTIONS(4949), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_in] = ACTIONS(4951), + [anon_sym_where] = ACTIONS(4949), + [anon_sym_QMARK] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PLUS_PLUS] = ACTIONS(4949), + [anon_sym_DASH_DASH] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4949), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_PERCENT] = ACTIONS(4949), + [anon_sym_CARET] = ACTIONS(4949), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_LT_LT] = ACTIONS(4949), + [anon_sym_GT_GT] = ACTIONS(4951), + [anon_sym_GT_GT_GT] = ACTIONS(4949), + [anon_sym_EQ_EQ] = ACTIONS(4949), + [anon_sym_BANG_EQ] = ACTIONS(4949), + [anon_sym_GT_EQ] = ACTIONS(4949), + [anon_sym_LT_EQ] = ACTIONS(4949), + [anon_sym_DOT] = ACTIONS(4951), + [anon_sym_EQ_GT] = ACTIONS(4949), + [anon_sym_switch] = ACTIONS(4949), + [anon_sym_DOT_DOT] = ACTIONS(4949), + [anon_sym_and] = ACTIONS(4949), + [anon_sym_or] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_PIPE_PIPE] = ACTIONS(4949), + [anon_sym_QMARK_QMARK] = ACTIONS(4949), + [anon_sym_from] = ACTIONS(4949), + [anon_sym_into] = ACTIONS(4949), + [anon_sym_join] = ACTIONS(4949), + [anon_sym_on] = ACTIONS(4949), + [anon_sym_equals] = ACTIONS(4949), + [anon_sym_let] = ACTIONS(4949), + [anon_sym_orderby] = ACTIONS(4949), + [anon_sym_group] = ACTIONS(4949), + [anon_sym_by] = ACTIONS(4949), + [anon_sym_select] = ACTIONS(4949), + [anon_sym_as] = ACTIONS(4949), + [anon_sym_is] = ACTIONS(4949), + [anon_sym_DASH_GT] = ACTIONS(4949), + [anon_sym_with] = ACTIONS(4949), + [aux_sym_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), @@ -456988,63 +468032,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2972), [sym_preproc_define] = STATE(2972), [sym_preproc_undef] = STATE(2972), - [anon_sym_SEMI] = ACTIONS(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), + [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), + [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457066,63 +468110,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2973), [sym_preproc_define] = STATE(2973), [sym_preproc_undef] = STATE(2973), - [anon_sym_SEMI] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_COLON] = ACTIONS(5062), - [anon_sym_COMMA] = ACTIONS(5062), - [anon_sym_RBRACK] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_LT] = ACTIONS(5064), - [anon_sym_GT] = ACTIONS(5064), - [anon_sym_in] = ACTIONS(5064), - [anon_sym_where] = ACTIONS(5062), - [anon_sym_QMARK] = ACTIONS(5064), - [anon_sym_BANG] = ACTIONS(5064), - [anon_sym_PLUS_PLUS] = ACTIONS(5062), - [anon_sym_DASH_DASH] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_STAR] = ACTIONS(5062), - [anon_sym_SLASH] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_CARET] = ACTIONS(5062), - [anon_sym_PIPE] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LT_LT] = ACTIONS(5062), - [anon_sym_GT_GT] = ACTIONS(5064), - [anon_sym_GT_GT_GT] = ACTIONS(5062), - [anon_sym_EQ_EQ] = ACTIONS(5062), - [anon_sym_BANG_EQ] = ACTIONS(5062), - [anon_sym_GT_EQ] = ACTIONS(5062), - [anon_sym_LT_EQ] = ACTIONS(5062), - [anon_sym_DOT] = ACTIONS(5064), - [anon_sym_EQ_GT] = ACTIONS(5062), - [anon_sym_switch] = ACTIONS(5062), - [anon_sym_DOT_DOT] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_or] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_PIPE_PIPE] = ACTIONS(5062), - [anon_sym_QMARK_QMARK] = ACTIONS(5062), - [anon_sym_from] = ACTIONS(5062), - [anon_sym_into] = ACTIONS(5062), - [anon_sym_join] = ACTIONS(5062), - [anon_sym_on] = ACTIONS(5062), - [anon_sym_equals] = ACTIONS(5062), - [anon_sym_let] = ACTIONS(5062), - [anon_sym_orderby] = ACTIONS(5062), - [anon_sym_group] = ACTIONS(5062), - [anon_sym_by] = ACTIONS(5062), - [anon_sym_select] = ACTIONS(5062), - [anon_sym_as] = ACTIONS(5062), - [anon_sym_is] = ACTIONS(5062), - [anon_sym_DASH_GT] = ACTIONS(5062), - [anon_sym_with] = ACTIONS(5062), - [aux_sym_preproc_if_token3] = ACTIONS(5062), - [aux_sym_preproc_else_token1] = ACTIONS(5062), - [aux_sym_preproc_elif_token1] = ACTIONS(5062), + [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_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_into] = 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), @@ -457144,63 +468188,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2974), [sym_preproc_define] = STATE(2974), [sym_preproc_undef] = STATE(2974), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), + [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_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_into] = 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), @@ -457222,63 +468266,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2975), [sym_preproc_define] = STATE(2975), [sym_preproc_undef] = STATE(2975), - [anon_sym_SEMI] = ACTIONS(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_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_into] = 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), + [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_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_into] = 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), @@ -457300,63 +468344,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2976), [sym_preproc_define] = STATE(2976), [sym_preproc_undef] = STATE(2976), - [anon_sym_SEMI] = ACTIONS(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_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_into] = 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(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), @@ -457378,62 +468422,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2977), [sym_preproc_define] = STATE(2977), [sym_preproc_undef] = STATE(2977), - [sym__identifier_token] = ACTIONS(5076), - [anon_sym_extern] = ACTIONS(5076), - [anon_sym_alias] = ACTIONS(5076), - [anon_sym_global] = ACTIONS(5076), - [anon_sym_unsafe] = ACTIONS(5076), - [anon_sym_static] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5078), - [anon_sym_LPAREN] = ACTIONS(5078), - [anon_sym_event] = ACTIONS(5076), - [anon_sym_class] = ACTIONS(5076), - [anon_sym_ref] = ACTIONS(5076), - [anon_sym_struct] = ACTIONS(5076), - [anon_sym_enum] = ACTIONS(5076), - [anon_sym_interface] = ACTIONS(5076), - [anon_sym_delegate] = ACTIONS(5076), - [anon_sym_record] = ACTIONS(5076), - [anon_sym_abstract] = ACTIONS(5076), - [anon_sym_async] = ACTIONS(5076), - [anon_sym_const] = ACTIONS(5076), - [anon_sym_file] = ACTIONS(5076), - [anon_sym_fixed] = ACTIONS(5076), - [anon_sym_internal] = ACTIONS(5076), - [anon_sym_new] = ACTIONS(5076), - [anon_sym_override] = ACTIONS(5076), - [anon_sym_partial] = ACTIONS(5076), - [anon_sym_private] = ACTIONS(5076), - [anon_sym_protected] = ACTIONS(5076), - [anon_sym_public] = ACTIONS(5076), - [anon_sym_readonly] = ACTIONS(5076), - [anon_sym_required] = ACTIONS(5076), - [anon_sym_sealed] = ACTIONS(5076), - [anon_sym_virtual] = ACTIONS(5076), - [anon_sym_volatile] = ACTIONS(5076), - [anon_sym_where] = ACTIONS(5076), - [anon_sym_notnull] = ACTIONS(5076), - [anon_sym_unmanaged] = ACTIONS(5076), - [anon_sym_TILDE] = ACTIONS(5078), - [anon_sym_implicit] = ACTIONS(5076), - [anon_sym_explicit] = ACTIONS(5076), - [anon_sym_scoped] = ACTIONS(5076), - [anon_sym_var] = ACTIONS(5076), - [sym_predefined_type] = ACTIONS(5076), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_when] = ACTIONS(5076), - [anon_sym_from] = ACTIONS(5076), - [anon_sym_into] = 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_ascending] = ACTIONS(5076), - [anon_sym_descending] = ACTIONS(5076), - [anon_sym_group] = ACTIONS(5076), - [anon_sym_by] = ACTIONS(5076), - [anon_sym_select] = ACTIONS(5076), + [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_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_into] = 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), @@ -457455,62 +468500,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2978), [sym_preproc_define] = STATE(2978), [sym_preproc_undef] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_where] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_EQ_GT] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2907), - [anon_sym_join] = ACTIONS(2907), - [anon_sym_on] = ACTIONS(2907), - [anon_sym_equals] = ACTIONS(2907), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_orderby] = ACTIONS(2907), - [anon_sym_group] = ACTIONS(2907), - [anon_sym_by] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [aux_sym_preproc_if_token3] = ACTIONS(2907), - [aux_sym_preproc_else_token1] = ACTIONS(2907), - [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [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), + [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457532,62 +468578,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2979), [sym_preproc_define] = STATE(2979), [sym_preproc_undef] = STATE(2979), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4982), - [anon_sym_where] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_GT_GT_GT] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_EQ_GT] = ACTIONS(4982), - [anon_sym_switch] = ACTIONS(4982), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_and] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_QMARK_QMARK] = ACTIONS(4982), - [anon_sym_from] = ACTIONS(4982), - [anon_sym_join] = ACTIONS(4982), - [anon_sym_on] = ACTIONS(4982), - [anon_sym_equals] = ACTIONS(4982), - [anon_sym_let] = ACTIONS(4982), - [anon_sym_orderby] = ACTIONS(4982), - [anon_sym_group] = ACTIONS(4982), - [anon_sym_by] = ACTIONS(4982), - [anon_sym_select] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [anon_sym_with] = ACTIONS(4982), - [aux_sym_preproc_if_token3] = ACTIONS(4982), - [aux_sym_preproc_else_token1] = ACTIONS(4982), - [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457609,62 +468656,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2980), [sym_preproc_define] = STATE(2980), [sym_preproc_undef] = STATE(2980), - [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_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), + [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_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_into] = 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), @@ -457686,62 +468734,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2981), [sym_preproc_define] = STATE(2981), [sym_preproc_undef] = STATE(2981), - [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(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_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_into] = 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), @@ -457763,62 +468812,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(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457840,62 +468890,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(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_COLON] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_in] = ACTIONS(4839), - [anon_sym_where] = ACTIONS(4839), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4839), - [anon_sym_CARET] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4839), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_GT_GT_GT] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_EQ_GT] = ACTIONS(4839), - [anon_sym_switch] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_and] = ACTIONS(4839), - [anon_sym_or] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_QMARK_QMARK] = ACTIONS(4839), - [anon_sym_from] = ACTIONS(4839), - [anon_sym_join] = ACTIONS(4839), - [anon_sym_on] = ACTIONS(4839), - [anon_sym_equals] = ACTIONS(4839), - [anon_sym_let] = ACTIONS(4839), - [anon_sym_orderby] = ACTIONS(4839), - [anon_sym_group] = ACTIONS(4839), - [anon_sym_by] = ACTIONS(4839), - [anon_sym_select] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_with] = ACTIONS(4839), - [aux_sym_preproc_if_token3] = ACTIONS(4839), - [aux_sym_preproc_else_token1] = ACTIONS(4839), - [aux_sym_preproc_elif_token1] = ACTIONS(4839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457917,62 +468968,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(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457994,62 +469046,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(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_COLON] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4974), - [anon_sym_where] = ACTIONS(4974), - [anon_sym_QMARK] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4974), - [anon_sym_CARET] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4976), - [anon_sym_LT_LT] = ACTIONS(4974), - [anon_sym_GT_GT] = ACTIONS(4976), - [anon_sym_GT_GT_GT] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_EQ_GT] = ACTIONS(4974), - [anon_sym_switch] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_and] = ACTIONS(4974), - [anon_sym_or] = ACTIONS(4976), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_QMARK_QMARK] = ACTIONS(4974), - [anon_sym_from] = ACTIONS(4974), - [anon_sym_join] = ACTIONS(4974), - [anon_sym_on] = ACTIONS(4974), - [anon_sym_equals] = ACTIONS(4974), - [anon_sym_let] = ACTIONS(4974), - [anon_sym_orderby] = ACTIONS(4974), - [anon_sym_group] = ACTIONS(4974), - [anon_sym_by] = ACTIONS(4974), - [anon_sym_select] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_with] = ACTIONS(4974), - [aux_sym_preproc_if_token3] = ACTIONS(4974), - [aux_sym_preproc_else_token1] = ACTIONS(4974), - [aux_sym_preproc_elif_token1] = ACTIONS(4974), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458071,62 +469124,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_SEMI] = ACTIONS(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4966), - [anon_sym_where] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4966), - [anon_sym_switch] = ACTIONS(4966), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_QMARK_QMARK] = ACTIONS(4966), - [anon_sym_from] = ACTIONS(4966), - [anon_sym_join] = ACTIONS(4966), - [anon_sym_on] = ACTIONS(4966), - [anon_sym_equals] = ACTIONS(4966), - [anon_sym_let] = ACTIONS(4966), - [anon_sym_orderby] = ACTIONS(4966), - [anon_sym_group] = ACTIONS(4966), - [anon_sym_by] = ACTIONS(4966), - [anon_sym_select] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4966), - [aux_sym_preproc_else_token1] = ACTIONS(4966), - [aux_sym_preproc_elif_token1] = ACTIONS(4966), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458148,62 +469202,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(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_CARET] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_GT_GT] = ACTIONS(4924), - [anon_sym_GT_GT_GT] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_EQ_GT] = ACTIONS(4922), - [anon_sym_switch] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_and] = ACTIONS(4922), - [anon_sym_or] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_QMARK_QMARK] = ACTIONS(4922), - [anon_sym_from] = ACTIONS(4922), - [anon_sym_join] = ACTIONS(4922), - [anon_sym_on] = ACTIONS(4922), - [anon_sym_equals] = ACTIONS(4922), - [anon_sym_let] = ACTIONS(4922), - [anon_sym_orderby] = ACTIONS(4922), - [anon_sym_group] = ACTIONS(4922), - [anon_sym_by] = ACTIONS(4922), - [anon_sym_select] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4922), - [anon_sym_with] = ACTIONS(4922), - [aux_sym_preproc_if_token3] = ACTIONS(4922), - [aux_sym_preproc_else_token1] = ACTIONS(4922), - [aux_sym_preproc_elif_token1] = ACTIONS(4922), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458225,62 +469280,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2988), [sym_preproc_define] = STATE(2988), [sym_preproc_undef] = STATE(2988), - [anon_sym_SEMI] = ACTIONS(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_COLON] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_CARET] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4918), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_GT_GT_GT] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_EQ_GT] = ACTIONS(4918), - [anon_sym_switch] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_and] = ACTIONS(4918), - [anon_sym_or] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_QMARK_QMARK] = ACTIONS(4918), - [anon_sym_from] = ACTIONS(4918), - [anon_sym_join] = ACTIONS(4918), - [anon_sym_on] = ACTIONS(4918), - [anon_sym_equals] = ACTIONS(4918), - [anon_sym_let] = ACTIONS(4918), - [anon_sym_orderby] = ACTIONS(4918), - [anon_sym_group] = ACTIONS(4918), - [anon_sym_by] = ACTIONS(4918), - [anon_sym_select] = ACTIONS(4918), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4918), - [anon_sym_with] = ACTIONS(4918), - [aux_sym_preproc_if_token3] = ACTIONS(4918), - [aux_sym_preproc_else_token1] = ACTIONS(4918), - [aux_sym_preproc_elif_token1] = ACTIONS(4918), + [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), @@ -458302,62 +469358,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2989), [sym_preproc_define] = STATE(2989), [sym_preproc_undef] = STATE(2989), - [anon_sym_SEMI] = ACTIONS(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [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_where] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [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(4856), - [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_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(4854), - [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(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), @@ -458379,62 +469436,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2990), [sym_preproc_define] = STATE(2990), [sym_preproc_undef] = STATE(2990), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_where] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_EQ_GT] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2915), - [anon_sym_join] = ACTIONS(2915), - [anon_sym_on] = ACTIONS(2915), - [anon_sym_equals] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_orderby] = ACTIONS(2915), - [anon_sym_group] = ACTIONS(2915), - [anon_sym_by] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [aux_sym_preproc_if_token3] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [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), @@ -458456,62 +469514,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2991), [sym_preproc_define] = STATE(2991), [sym_preproc_undef] = STATE(2991), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4994), - [anon_sym_where] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_GT_GT_GT] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_EQ_GT] = ACTIONS(4994), - [anon_sym_switch] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_QMARK_QMARK] = ACTIONS(4994), - [anon_sym_from] = ACTIONS(4994), - [anon_sym_join] = ACTIONS(4994), - [anon_sym_on] = ACTIONS(4994), - [anon_sym_equals] = ACTIONS(4994), - [anon_sym_let] = ACTIONS(4994), - [anon_sym_orderby] = ACTIONS(4994), - [anon_sym_group] = ACTIONS(4994), - [anon_sym_by] = ACTIONS(4994), - [anon_sym_select] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_with] = ACTIONS(4994), - [aux_sym_preproc_if_token3] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [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), @@ -458533,62 +469592,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2992), [sym_preproc_define] = STATE(2992), [sym_preproc_undef] = STATE(2992), - [anon_sym_SEMI] = ACTIONS(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(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), @@ -458610,62 +469670,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2993), [sym_preproc_define] = STATE(2993), [sym_preproc_undef] = STATE(2993), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4188), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [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_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_into] = 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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458687,62 +469748,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2994), [sym_preproc_define] = STATE(2994), [sym_preproc_undef] = STATE(2994), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4970), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4970), - [anon_sym_CARET] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_LT_LT] = ACTIONS(4970), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_GT_GT_GT] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_QMARK_QMARK] = ACTIONS(4970), - [anon_sym_from] = ACTIONS(4970), - [anon_sym_join] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_let] = ACTIONS(4970), - [anon_sym_orderby] = ACTIONS(4970), - [anon_sym_group] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_select] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [anon_sym_with] = ACTIONS(4970), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [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_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_EQ_GT] = ACTIONS(5016), + [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_on] = ACTIONS(5016), + [anon_sym_equals] = ACTIONS(5016), + [anon_sym_let] = ACTIONS(5016), + [anon_sym_orderby] = ACTIONS(5016), + [anon_sym_group] = ACTIONS(5016), + [anon_sym_by] = ACTIONS(5016), + [anon_sym_select] = 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), @@ -458764,62 +469826,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2995), [sym_preproc_define] = STATE(2995), [sym_preproc_undef] = STATE(2995), - [anon_sym_SEMI] = ACTIONS(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_COLON] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(4928), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4928), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_CARET] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4928), - [anon_sym_LT_LT] = ACTIONS(4926), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym_GT_GT_GT] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_EQ_GT] = ACTIONS(4926), - [anon_sym_switch] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_and] = ACTIONS(4926), - [anon_sym_or] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_QMARK_QMARK] = ACTIONS(4926), - [anon_sym_from] = ACTIONS(4926), - [anon_sym_join] = ACTIONS(4926), - [anon_sym_on] = ACTIONS(4926), - [anon_sym_equals] = ACTIONS(4926), - [anon_sym_let] = ACTIONS(4926), - [anon_sym_orderby] = ACTIONS(4926), - [anon_sym_group] = ACTIONS(4926), - [anon_sym_by] = ACTIONS(4926), - [anon_sym_select] = ACTIONS(4926), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [anon_sym_with] = ACTIONS(4926), - [aux_sym_preproc_if_token3] = ACTIONS(4926), - [aux_sym_preproc_else_token1] = ACTIONS(4926), - [aux_sym_preproc_elif_token1] = ACTIONS(4926), + [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), @@ -458841,62 +469904,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2996), [sym_preproc_define] = STATE(2996), [sym_preproc_undef] = STATE(2996), - [anon_sym_SEMI] = ACTIONS(4864), - [anon_sym_LBRACK] = ACTIONS(4864), - [anon_sym_COLON] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_RBRACK] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_RPAREN] = ACTIONS(4864), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_LT] = ACTIONS(4866), - [anon_sym_GT] = ACTIONS(4866), - [anon_sym_in] = ACTIONS(4864), - [anon_sym_where] = ACTIONS(4864), - [anon_sym_QMARK] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4864), - [anon_sym_DASH_DASH] = ACTIONS(4864), - [anon_sym_PLUS] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_CARET] = ACTIONS(4864), - [anon_sym_PIPE] = ACTIONS(4866), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_LT_LT] = ACTIONS(4864), - [anon_sym_GT_GT] = ACTIONS(4866), - [anon_sym_GT_GT_GT] = ACTIONS(4864), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_GT_EQ] = ACTIONS(4864), - [anon_sym_LT_EQ] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_EQ_GT] = ACTIONS(4864), - [anon_sym_switch] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_and] = ACTIONS(4864), - [anon_sym_or] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4864), - [anon_sym_PIPE_PIPE] = ACTIONS(4864), - [anon_sym_QMARK_QMARK] = ACTIONS(4864), - [anon_sym_from] = ACTIONS(4864), - [anon_sym_join] = ACTIONS(4864), - [anon_sym_on] = ACTIONS(4864), - [anon_sym_equals] = ACTIONS(4864), - [anon_sym_let] = ACTIONS(4864), - [anon_sym_orderby] = ACTIONS(4864), - [anon_sym_group] = ACTIONS(4864), - [anon_sym_by] = ACTIONS(4864), - [anon_sym_select] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4864), - [anon_sym_with] = ACTIONS(4864), - [aux_sym_preproc_if_token3] = ACTIONS(4864), - [aux_sym_preproc_else_token1] = ACTIONS(4864), - [aux_sym_preproc_elif_token1] = ACTIONS(4864), + [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_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_into] = 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), @@ -458918,62 +469982,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2997), [sym_preproc_define] = STATE(2997), [sym_preproc_undef] = STATE(2997), - [anon_sym_SEMI] = ACTIONS(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -458986,6 +470051,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -458995,62 +470082,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2998), [sym_preproc_define] = STATE(2998), [sym_preproc_undef] = STATE(2998), - [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_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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459072,62 +470138,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2999), [sym_preproc_define] = STATE(2999), [sym_preproc_undef] = STATE(2999), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_RPAREN] = ACTIONS(4799), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_LT] = ACTIONS(4801), - [anon_sym_GT] = ACTIONS(4801), - [anon_sym_in] = ACTIONS(4799), - [anon_sym_where] = ACTIONS(4799), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_PLUS_PLUS] = ACTIONS(4799), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_LT] = ACTIONS(4799), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_GT_GT_GT] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4799), - [anon_sym_BANG_EQ] = ACTIONS(4799), - [anon_sym_GT_EQ] = ACTIONS(4799), - [anon_sym_LT_EQ] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_EQ_GT] = ACTIONS(4799), - [anon_sym_switch] = ACTIONS(4799), - [anon_sym_DOT_DOT] = ACTIONS(4799), - [anon_sym_and] = ACTIONS(4799), - [anon_sym_or] = ACTIONS(4801), - [anon_sym_AMP_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4799), - [anon_sym_QMARK_QMARK] = ACTIONS(4799), - [anon_sym_from] = ACTIONS(4799), - [anon_sym_join] = ACTIONS(4799), - [anon_sym_on] = ACTIONS(4799), - [anon_sym_equals] = ACTIONS(4799), - [anon_sym_let] = ACTIONS(4799), - [anon_sym_orderby] = ACTIONS(4799), - [anon_sym_group] = ACTIONS(4799), - [anon_sym_by] = ACTIONS(4799), - [anon_sym_select] = ACTIONS(4799), - [anon_sym_as] = ACTIONS(4799), - [anon_sym_is] = ACTIONS(4799), - [anon_sym_DASH_GT] = ACTIONS(4799), - [anon_sym_with] = ACTIONS(4799), - [aux_sym_preproc_if_token3] = ACTIONS(4799), - [aux_sym_preproc_else_token1] = ACTIONS(4799), - [aux_sym_preproc_elif_token1] = ACTIONS(4799), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459149,62 +470216,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3000), [sym_preproc_define] = STATE(3000), [sym_preproc_undef] = STATE(3000), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_COLON] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RBRACK] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_QMARK] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4894), - [anon_sym_PLUS] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_CARET] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_GT_GT_GT] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_GT_EQ] = ACTIONS(4894), - [anon_sym_LT_EQ] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4896), - [anon_sym_EQ_GT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_or] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_QMARK_QMARK] = ACTIONS(4894), - [anon_sym_from] = ACTIONS(4894), - [anon_sym_join] = ACTIONS(4894), - [anon_sym_on] = ACTIONS(4894), - [anon_sym_equals] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_orderby] = ACTIONS(4894), - [anon_sym_group] = ACTIONS(4894), - [anon_sym_by] = ACTIONS(4894), - [anon_sym_select] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_with] = ACTIONS(4894), - [aux_sym_preproc_if_token3] = ACTIONS(4894), - [aux_sym_preproc_else_token1] = ACTIONS(4894), - [aux_sym_preproc_elif_token1] = ACTIONS(4894), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459226,62 +470294,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3001), [sym_preproc_define] = STATE(3001), [sym_preproc_undef] = STATE(3001), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(5080), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5082), - [anon_sym_DASH_EQ] = ACTIONS(5082), - [anon_sym_STAR_EQ] = ACTIONS(5082), - [anon_sym_SLASH_EQ] = ACTIONS(5082), - [anon_sym_PERCENT_EQ] = ACTIONS(5082), - [anon_sym_AMP_EQ] = ACTIONS(5082), - [anon_sym_CARET_EQ] = ACTIONS(5082), - [anon_sym_PIPE_EQ] = ACTIONS(5082), - [anon_sym_LT_LT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_EQ] = ACTIONS(5082), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5082), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5082), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459303,62 +470372,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(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_COLON] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_RBRACK] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_LT] = ACTIONS(5040), - [anon_sym_GT] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_QMARK] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_PLUS] = ACTIONS(5040), - [anon_sym_DASH] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_CARET] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_LT_LT] = ACTIONS(5038), - [anon_sym_GT_GT] = ACTIONS(5040), - [anon_sym_GT_GT_GT] = ACTIONS(5038), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_GT_EQ] = ACTIONS(5038), - [anon_sym_LT_EQ] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_EQ_GT] = ACTIONS(5038), - [anon_sym_switch] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5038), - [anon_sym_PIPE_PIPE] = ACTIONS(5038), - [anon_sym_QMARK_QMARK] = ACTIONS(5038), - [anon_sym_from] = ACTIONS(5038), - [anon_sym_join] = ACTIONS(5038), - [anon_sym_on] = ACTIONS(5038), - [anon_sym_equals] = ACTIONS(5038), - [anon_sym_let] = ACTIONS(5038), - [anon_sym_orderby] = ACTIONS(5038), - [anon_sym_group] = ACTIONS(5038), - [anon_sym_by] = ACTIONS(5038), - [anon_sym_select] = ACTIONS(5038), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5038), - [anon_sym_with] = ACTIONS(5038), - [aux_sym_preproc_if_token3] = ACTIONS(5038), - [aux_sym_preproc_else_token1] = ACTIONS(5038), - [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459380,62 +470450,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), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5034), - [anon_sym_where] = ACTIONS(5034), - [anon_sym_QMARK] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5034), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_CARET] = ACTIONS(5034), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LT_LT] = ACTIONS(5034), - [anon_sym_GT_GT] = ACTIONS(5036), - [anon_sym_GT_GT_GT] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_EQ_GT] = ACTIONS(5034), - [anon_sym_switch] = ACTIONS(5034), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5036), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_QMARK_QMARK] = ACTIONS(5034), - [anon_sym_from] = ACTIONS(5034), - [anon_sym_join] = ACTIONS(5034), - [anon_sym_on] = ACTIONS(5034), - [anon_sym_equals] = ACTIONS(5034), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_orderby] = ACTIONS(5034), - [anon_sym_group] = ACTIONS(5034), - [anon_sym_by] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5034), - [anon_sym_DASH_GT] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [aux_sym_preproc_if_token3] = ACTIONS(5034), - [aux_sym_preproc_else_token1] = ACTIONS(5034), - [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459457,62 +470528,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(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_COLON] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_in] = ACTIONS(4914), - [anon_sym_where] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4914), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4914), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_GT_GT_GT] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_EQ_GT] = ACTIONS(4914), - [anon_sym_switch] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_and] = ACTIONS(4914), - [anon_sym_or] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_QMARK_QMARK] = ACTIONS(4914), - [anon_sym_from] = ACTIONS(4914), - [anon_sym_join] = ACTIONS(4914), - [anon_sym_on] = ACTIONS(4914), - [anon_sym_equals] = ACTIONS(4914), - [anon_sym_let] = ACTIONS(4914), - [anon_sym_orderby] = ACTIONS(4914), - [anon_sym_group] = ACTIONS(4914), - [anon_sym_by] = ACTIONS(4914), - [anon_sym_select] = ACTIONS(4914), - [anon_sym_as] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4914), - [anon_sym_DASH_GT] = ACTIONS(4914), - [anon_sym_with] = ACTIONS(4914), - [aux_sym_preproc_if_token3] = ACTIONS(4914), - [aux_sym_preproc_else_token1] = ACTIONS(4914), - [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459534,62 +470606,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(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4892), - [anon_sym_DASH] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_GT_GT_GT] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4892), - [anon_sym_EQ_GT] = ACTIONS(4890), - [anon_sym_switch] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_QMARK_QMARK] = ACTIONS(4890), - [anon_sym_from] = ACTIONS(4890), - [anon_sym_join] = ACTIONS(4890), - [anon_sym_on] = ACTIONS(4890), - [anon_sym_equals] = ACTIONS(4890), - [anon_sym_let] = ACTIONS(4890), - [anon_sym_orderby] = ACTIONS(4890), - [anon_sym_group] = ACTIONS(4890), - [anon_sym_by] = ACTIONS(4890), - [anon_sym_select] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_with] = ACTIONS(4890), - [aux_sym_preproc_if_token3] = ACTIONS(4890), - [aux_sym_preproc_else_token1] = ACTIONS(4890), - [aux_sym_preproc_elif_token1] = ACTIONS(4890), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459611,62 +470684,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(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4843), - [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_where] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PLUS_PLUS] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4843), - [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(4845), - [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_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(4843), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459688,62 +470762,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), - [sym__identifier_token] = ACTIONS(5084), - [anon_sym_extern] = ACTIONS(5084), - [anon_sym_alias] = ACTIONS(5084), - [anon_sym_global] = ACTIONS(5084), - [anon_sym_unsafe] = ACTIONS(5084), - [anon_sym_static] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_event] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(5084), - [anon_sym_struct] = ACTIONS(5084), - [anon_sym_enum] = ACTIONS(5084), - [anon_sym_interface] = ACTIONS(5084), - [anon_sym_delegate] = ACTIONS(5084), - [anon_sym_record] = ACTIONS(5084), - [anon_sym_abstract] = ACTIONS(5084), - [anon_sym_async] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(5084), - [anon_sym_file] = ACTIONS(5084), - [anon_sym_fixed] = ACTIONS(5084), - [anon_sym_internal] = ACTIONS(5084), - [anon_sym_new] = ACTIONS(5084), - [anon_sym_override] = ACTIONS(5084), - [anon_sym_partial] = ACTIONS(5084), - [anon_sym_private] = ACTIONS(5084), - [anon_sym_protected] = ACTIONS(5084), - [anon_sym_public] = ACTIONS(5084), - [anon_sym_readonly] = ACTIONS(5084), - [anon_sym_required] = ACTIONS(5084), - [anon_sym_sealed] = ACTIONS(5084), - [anon_sym_virtual] = ACTIONS(5084), - [anon_sym_volatile] = ACTIONS(5084), - [anon_sym_where] = ACTIONS(5084), - [anon_sym_notnull] = ACTIONS(5084), - [anon_sym_unmanaged] = ACTIONS(5084), - [anon_sym_TILDE] = ACTIONS(5086), - [anon_sym_implicit] = ACTIONS(5084), - [anon_sym_explicit] = ACTIONS(5084), - [anon_sym_scoped] = ACTIONS(5084), - [anon_sym_var] = ACTIONS(5084), - [sym_predefined_type] = ACTIONS(5084), - [anon_sym_yield] = ACTIONS(5084), - [anon_sym_when] = 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_ascending] = ACTIONS(5084), - [anon_sym_descending] = ACTIONS(5084), - [anon_sym_group] = ACTIONS(5084), - [anon_sym_by] = ACTIONS(5084), - [anon_sym_select] = ACTIONS(5084), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -459765,139 +470840,141 @@ 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(4898), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_COLON] = ACTIONS(4898), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_RBRACK] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_QMARK] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4898), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_CARET] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4900), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4900), - [anon_sym_GT_GT_GT] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_EQ_GT] = ACTIONS(4898), - [anon_sym_switch] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_and] = ACTIONS(4898), - [anon_sym_or] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_QMARK_QMARK] = ACTIONS(4898), - [anon_sym_from] = ACTIONS(4898), - [anon_sym_join] = ACTIONS(4898), - [anon_sym_on] = ACTIONS(4898), - [anon_sym_equals] = ACTIONS(4898), - [anon_sym_let] = ACTIONS(4898), - [anon_sym_orderby] = ACTIONS(4898), - [anon_sym_group] = ACTIONS(4898), - [anon_sym_by] = ACTIONS(4898), - [anon_sym_select] = ACTIONS(4898), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_with] = ACTIONS(4898), - [aux_sym_preproc_if_token3] = ACTIONS(4898), - [aux_sym_preproc_else_token1] = ACTIONS(4898), - [aux_sym_preproc_elif_token1] = ACTIONS(4898), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3009] = { - [sym_preproc_region] = STATE(3009), - [sym_preproc_endregion] = STATE(3009), - [sym_preproc_line] = STATE(3009), - [sym_preproc_pragma] = STATE(3009), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3009] = { + [sym_preproc_region] = STATE(3009), + [sym_preproc_endregion] = STATE(3009), + [sym_preproc_line] = STATE(3009), + [sym_preproc_pragma] = STATE(3009), [sym_preproc_nullable] = STATE(3009), [sym_preproc_error] = STATE(3009), [sym_preproc_warning] = STATE(3009), [sym_preproc_define] = STATE(3009), [sym_preproc_undef] = STATE(3009), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COLON] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_RBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_QMARK] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4882), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_CARET] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4882), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_GT_GT_GT] = ACTIONS(4882), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_EQ_GT] = ACTIONS(4882), - [anon_sym_switch] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4882), - [anon_sym_and] = ACTIONS(4882), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_QMARK_QMARK] = ACTIONS(4882), - [anon_sym_from] = ACTIONS(4882), - [anon_sym_join] = ACTIONS(4882), - [anon_sym_on] = ACTIONS(4882), - [anon_sym_equals] = ACTIONS(4882), - [anon_sym_let] = ACTIONS(4882), - [anon_sym_orderby] = ACTIONS(4882), - [anon_sym_group] = ACTIONS(4882), - [anon_sym_by] = ACTIONS(4882), - [anon_sym_select] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_with] = ACTIONS(4882), - [aux_sym_preproc_if_token3] = ACTIONS(4882), - [aux_sym_preproc_else_token1] = ACTIONS(4882), - [aux_sym_preproc_elif_token1] = ACTIONS(4882), + [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), @@ -459919,62 +470996,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3010), [sym_preproc_define] = STATE(3010), [sym_preproc_undef] = STATE(3010), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_COLON] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4978), - [anon_sym_where] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4978), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_CARET] = ACTIONS(4978), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4978), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym_GT_GT_GT] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_EQ_GT] = ACTIONS(4978), - [anon_sym_switch] = ACTIONS(4978), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_and] = ACTIONS(4978), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_QMARK_QMARK] = ACTIONS(4978), - [anon_sym_from] = ACTIONS(4978), - [anon_sym_join] = ACTIONS(4978), - [anon_sym_on] = ACTIONS(4978), - [anon_sym_equals] = ACTIONS(4978), - [anon_sym_let] = ACTIONS(4978), - [anon_sym_orderby] = ACTIONS(4978), - [anon_sym_group] = ACTIONS(4978), - [anon_sym_by] = ACTIONS(4978), - [anon_sym_select] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4978), - [anon_sym_DASH_GT] = ACTIONS(4978), - [anon_sym_with] = ACTIONS(4978), - [aux_sym_preproc_if_token3] = ACTIONS(4978), - [aux_sym_preproc_else_token1] = ACTIONS(4978), - [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [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_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_into] = 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), @@ -459996,62 +471074,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3011), [sym_preproc_define] = STATE(3011), [sym_preproc_undef] = STATE(3011), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_COLON] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_RBRACK] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_RPAREN] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4819), - [anon_sym_where] = ACTIONS(4819), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_GT_GT_GT] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_EQ_GT] = ACTIONS(4819), - [anon_sym_switch] = ACTIONS(4819), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_or] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_QMARK_QMARK] = ACTIONS(4819), - [anon_sym_from] = ACTIONS(4819), - [anon_sym_join] = ACTIONS(4819), - [anon_sym_on] = ACTIONS(4819), - [anon_sym_equals] = ACTIONS(4819), - [anon_sym_let] = ACTIONS(4819), - [anon_sym_orderby] = ACTIONS(4819), - [anon_sym_group] = ACTIONS(4819), - [anon_sym_by] = ACTIONS(4819), - [anon_sym_select] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4819), - [anon_sym_with] = ACTIONS(4819), - [aux_sym_preproc_if_token3] = ACTIONS(4819), - [aux_sym_preproc_else_token1] = ACTIONS(4819), - [aux_sym_preproc_elif_token1] = ACTIONS(4819), + [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_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_into] = 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), @@ -460073,62 +471152,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3012), [sym_preproc_define] = STATE(3012), [sym_preproc_undef] = STATE(3012), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_COLON] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4938), - [anon_sym_where] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4938), - [anon_sym_CARET] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_LT_LT] = ACTIONS(4938), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_GT_GT_GT] = ACTIONS(4938), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_EQ_GT] = ACTIONS(4938), - [anon_sym_switch] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_and] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_QMARK_QMARK] = ACTIONS(4938), - [anon_sym_from] = ACTIONS(4938), - [anon_sym_join] = ACTIONS(4938), - [anon_sym_on] = ACTIONS(4938), - [anon_sym_equals] = ACTIONS(4938), - [anon_sym_let] = ACTIONS(4938), - [anon_sym_orderby] = ACTIONS(4938), - [anon_sym_group] = ACTIONS(4938), - [anon_sym_by] = ACTIONS(4938), - [anon_sym_select] = ACTIONS(4938), - [anon_sym_as] = ACTIONS(4938), - [anon_sym_is] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [anon_sym_with] = ACTIONS(4938), - [aux_sym_preproc_if_token3] = ACTIONS(4938), - [aux_sym_preproc_else_token1] = ACTIONS(4938), - [aux_sym_preproc_elif_token1] = ACTIONS(4938), + [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), @@ -460150,62 +471230,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3013), [sym_preproc_define] = STATE(3013), [sym_preproc_undef] = STATE(3013), - [anon_sym_EQ] = ACTIONS(5088), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5090), - [anon_sym_DASH_EQ] = ACTIONS(5090), - [anon_sym_STAR_EQ] = ACTIONS(5090), - [anon_sym_SLASH_EQ] = ACTIONS(5090), - [anon_sym_PERCENT_EQ] = ACTIONS(5090), - [anon_sym_AMP_EQ] = ACTIONS(5090), - [anon_sym_CARET_EQ] = ACTIONS(5090), - [anon_sym_PIPE_EQ] = ACTIONS(5090), - [anon_sym_LT_LT_EQ] = ACTIONS(5090), - [anon_sym_GT_GT_EQ] = ACTIONS(5090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5090), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_ascending] = ACTIONS(4684), - [anon_sym_descending] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -460227,62 +471308,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3014), [sym_preproc_define] = STATE(3014), [sym_preproc_undef] = STATE(3014), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3934), - [anon_sym_where] = ACTIONS(3934), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3932), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_from] = ACTIONS(3934), - [anon_sym_join] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_let] = ACTIONS(3934), - [anon_sym_orderby] = ACTIONS(3934), - [anon_sym_group] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_select] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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_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_into] = 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), @@ -460304,62 +471386,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3015), [sym_preproc_define] = STATE(3015), [sym_preproc_undef] = STATE(3015), - [anon_sym_EQ] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_PLUS_EQ] = ACTIONS(5096), - [anon_sym_DASH_EQ] = ACTIONS(5096), - [anon_sym_STAR_EQ] = ACTIONS(5096), - [anon_sym_SLASH_EQ] = ACTIONS(5096), - [anon_sym_PERCENT_EQ] = ACTIONS(5096), - [anon_sym_AMP_EQ] = ACTIONS(5096), - [anon_sym_CARET_EQ] = ACTIONS(5096), - [anon_sym_PIPE_EQ] = ACTIONS(5096), - [anon_sym_LT_LT_EQ] = ACTIONS(5096), - [anon_sym_GT_GT_EQ] = ACTIONS(5096), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5096), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5096), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_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_into] = 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), @@ -460381,62 +471464,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3016), [sym_preproc_define] = STATE(3016), [sym_preproc_undef] = STATE(3016), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_RBRACK] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4805), - [anon_sym_in] = ACTIONS(4803), - [anon_sym_where] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_PLUS_PLUS] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_LT] = ACTIONS(4803), - [anon_sym_GT_GT] = ACTIONS(4805), - [anon_sym_GT_GT_GT] = ACTIONS(4803), - [anon_sym_EQ_EQ] = ACTIONS(4803), - [anon_sym_BANG_EQ] = ACTIONS(4803), - [anon_sym_GT_EQ] = ACTIONS(4803), - [anon_sym_LT_EQ] = ACTIONS(4803), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_EQ_GT] = ACTIONS(4803), - [anon_sym_switch] = ACTIONS(4803), - [anon_sym_DOT_DOT] = ACTIONS(4803), - [anon_sym_and] = ACTIONS(4803), - [anon_sym_or] = ACTIONS(4805), - [anon_sym_AMP_AMP] = ACTIONS(4803), - [anon_sym_PIPE_PIPE] = ACTIONS(4803), - [anon_sym_QMARK_QMARK] = ACTIONS(4803), - [anon_sym_from] = ACTIONS(4803), - [anon_sym_join] = ACTIONS(4803), - [anon_sym_on] = ACTIONS(4803), - [anon_sym_equals] = ACTIONS(4803), - [anon_sym_let] = ACTIONS(4803), - [anon_sym_orderby] = ACTIONS(4803), - [anon_sym_group] = ACTIONS(4803), - [anon_sym_by] = ACTIONS(4803), - [anon_sym_select] = ACTIONS(4803), - [anon_sym_as] = ACTIONS(4803), - [anon_sym_is] = ACTIONS(4803), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4803), - [aux_sym_preproc_if_token3] = ACTIONS(4803), - [aux_sym_preproc_else_token1] = ACTIONS(4803), - [aux_sym_preproc_elif_token1] = ACTIONS(4803), + [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_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_into] = 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), @@ -460458,62 +471542,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(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(4998), - [anon_sym_where] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_GT_GT_GT] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_switch] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_QMARK_QMARK] = ACTIONS(4998), - [anon_sym_from] = ACTIONS(4998), - [anon_sym_join] = ACTIONS(4998), - [anon_sym_on] = ACTIONS(4998), - [anon_sym_equals] = ACTIONS(4998), - [anon_sym_let] = ACTIONS(4998), - [anon_sym_orderby] = ACTIONS(4998), - [anon_sym_group] = ACTIONS(4998), - [anon_sym_by] = ACTIONS(4998), - [anon_sym_select] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [anon_sym_with] = ACTIONS(4998), - [aux_sym_preproc_if_token3] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460535,62 +471620,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), - [anon_sym_SEMI] = ACTIONS(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460612,62 +471698,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(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_COLON] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5030), - [anon_sym_where] = ACTIONS(5030), - [anon_sym_QMARK] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5030), - [anon_sym_CARET] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(5030), - [anon_sym_GT_GT] = ACTIONS(5032), - [anon_sym_GT_GT_GT] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_EQ_GT] = ACTIONS(5030), - [anon_sym_switch] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_and] = ACTIONS(5030), - [anon_sym_or] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_QMARK_QMARK] = ACTIONS(5030), - [anon_sym_from] = ACTIONS(5030), - [anon_sym_join] = ACTIONS(5030), - [anon_sym_on] = ACTIONS(5030), - [anon_sym_equals] = ACTIONS(5030), - [anon_sym_let] = ACTIONS(5030), - [anon_sym_orderby] = ACTIONS(5030), - [anon_sym_group] = ACTIONS(5030), - [anon_sym_by] = ACTIONS(5030), - [anon_sym_select] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5030), - [anon_sym_DASH_GT] = ACTIONS(5030), - [anon_sym_with] = ACTIONS(5030), - [aux_sym_preproc_if_token3] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5030), - [aux_sym_preproc_elif_token1] = ACTIONS(5030), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460689,62 +471776,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(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_COLON] = ACTIONS(4932), - [anon_sym_COMMA] = ACTIONS(4932), - [anon_sym_RBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_in] = ACTIONS(4932), - [anon_sym_where] = ACTIONS(4932), - [anon_sym_QMARK] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_CARET] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_LT_LT] = ACTIONS(4932), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_GT_GT_GT] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_GT_EQ] = ACTIONS(4932), - [anon_sym_LT_EQ] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_EQ_GT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_and] = ACTIONS(4932), - [anon_sym_or] = ACTIONS(4934), - [anon_sym_AMP_AMP] = ACTIONS(4932), - [anon_sym_PIPE_PIPE] = ACTIONS(4932), - [anon_sym_QMARK_QMARK] = ACTIONS(4932), - [anon_sym_from] = ACTIONS(4932), - [anon_sym_join] = ACTIONS(4932), - [anon_sym_on] = ACTIONS(4932), - [anon_sym_equals] = ACTIONS(4932), - [anon_sym_let] = ACTIONS(4932), - [anon_sym_orderby] = ACTIONS(4932), - [anon_sym_group] = ACTIONS(4932), - [anon_sym_by] = ACTIONS(4932), - [anon_sym_select] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4932), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_with] = ACTIONS(4932), - [aux_sym_preproc_if_token3] = ACTIONS(4932), - [aux_sym_preproc_else_token1] = ACTIONS(4932), - [aux_sym_preproc_elif_token1] = ACTIONS(4932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460766,62 +471854,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460843,62 +471932,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460920,62 +472010,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), - [sym__identifier_token] = ACTIONS(5098), - [anon_sym_extern] = ACTIONS(5098), - [anon_sym_alias] = ACTIONS(5098), - [anon_sym_global] = ACTIONS(5098), - [anon_sym_unsafe] = ACTIONS(5098), - [anon_sym_static] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_LPAREN] = ACTIONS(5100), - [anon_sym_event] = ACTIONS(5098), - [anon_sym_class] = ACTIONS(5098), - [anon_sym_ref] = ACTIONS(5098), - [anon_sym_struct] = ACTIONS(5098), - [anon_sym_enum] = ACTIONS(5098), - [anon_sym_interface] = ACTIONS(5098), - [anon_sym_delegate] = ACTIONS(5098), - [anon_sym_record] = ACTIONS(5098), - [anon_sym_abstract] = ACTIONS(5098), - [anon_sym_async] = ACTIONS(5098), - [anon_sym_const] = ACTIONS(5098), - [anon_sym_file] = ACTIONS(5098), - [anon_sym_fixed] = ACTIONS(5098), - [anon_sym_internal] = ACTIONS(5098), - [anon_sym_new] = ACTIONS(5098), - [anon_sym_override] = ACTIONS(5098), - [anon_sym_partial] = ACTIONS(5098), - [anon_sym_private] = ACTIONS(5098), - [anon_sym_protected] = ACTIONS(5098), - [anon_sym_public] = ACTIONS(5098), - [anon_sym_readonly] = ACTIONS(5098), - [anon_sym_required] = ACTIONS(5098), - [anon_sym_sealed] = ACTIONS(5098), - [anon_sym_virtual] = ACTIONS(5098), - [anon_sym_volatile] = ACTIONS(5098), - [anon_sym_where] = ACTIONS(5098), - [anon_sym_notnull] = ACTIONS(5098), - [anon_sym_unmanaged] = ACTIONS(5098), - [anon_sym_TILDE] = ACTIONS(5100), - [anon_sym_implicit] = ACTIONS(5098), - [anon_sym_explicit] = ACTIONS(5098), - [anon_sym_scoped] = ACTIONS(5098), - [anon_sym_var] = ACTIONS(5098), - [sym_predefined_type] = ACTIONS(5098), - [anon_sym_yield] = ACTIONS(5098), - [anon_sym_when] = ACTIONS(5098), - [anon_sym_from] = ACTIONS(5098), - [anon_sym_into] = ACTIONS(5098), - [anon_sym_join] = ACTIONS(5098), - [anon_sym_on] = ACTIONS(5098), - [anon_sym_equals] = ACTIONS(5098), - [anon_sym_let] = ACTIONS(5098), - [anon_sym_orderby] = ACTIONS(5098), - [anon_sym_ascending] = ACTIONS(5098), - [anon_sym_descending] = ACTIONS(5098), - [anon_sym_group] = ACTIONS(5098), - [anon_sym_by] = ACTIONS(5098), - [anon_sym_select] = ACTIONS(5098), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -460997,62 +472088,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(4684), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4684), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4684), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_CARET] = ACTIONS(4684), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4684), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4684), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4684), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461074,62 +472166,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_where] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(4851), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3948), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_from] = ACTIONS(3950), - [anon_sym_join] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_let] = ACTIONS(3950), - [anon_sym_orderby] = ACTIONS(3950), - [anon_sym_group] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_select] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461151,62 +472244,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3026), [sym_preproc_define] = STATE(3026), [sym_preproc_undef] = STATE(3026), - [sym__identifier_token] = ACTIONS(5102), - [anon_sym_extern] = ACTIONS(5102), - [anon_sym_alias] = ACTIONS(5102), - [anon_sym_global] = ACTIONS(5102), - [anon_sym_unsafe] = ACTIONS(5102), - [anon_sym_static] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5104), - [anon_sym_LPAREN] = ACTIONS(5104), - [anon_sym_event] = ACTIONS(5102), - [anon_sym_class] = ACTIONS(5102), - [anon_sym_ref] = ACTIONS(5102), - [anon_sym_struct] = ACTIONS(5102), - [anon_sym_enum] = ACTIONS(5102), - [anon_sym_interface] = ACTIONS(5102), - [anon_sym_delegate] = ACTIONS(5102), - [anon_sym_record] = ACTIONS(5102), - [anon_sym_abstract] = ACTIONS(5102), - [anon_sym_async] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5102), - [anon_sym_file] = ACTIONS(5102), - [anon_sym_fixed] = ACTIONS(5102), - [anon_sym_internal] = ACTIONS(5102), - [anon_sym_new] = ACTIONS(5102), - [anon_sym_override] = ACTIONS(5102), - [anon_sym_partial] = ACTIONS(5102), - [anon_sym_private] = ACTIONS(5102), - [anon_sym_protected] = ACTIONS(5102), - [anon_sym_public] = ACTIONS(5102), - [anon_sym_readonly] = ACTIONS(5102), - [anon_sym_required] = ACTIONS(5102), - [anon_sym_sealed] = ACTIONS(5102), - [anon_sym_virtual] = ACTIONS(5102), - [anon_sym_volatile] = ACTIONS(5102), - [anon_sym_where] = ACTIONS(5102), - [anon_sym_notnull] = ACTIONS(5102), - [anon_sym_unmanaged] = ACTIONS(5102), - [anon_sym_TILDE] = ACTIONS(5104), - [anon_sym_implicit] = ACTIONS(5102), - [anon_sym_explicit] = ACTIONS(5102), - [anon_sym_scoped] = ACTIONS(5102), - [anon_sym_var] = ACTIONS(5102), - [sym_predefined_type] = ACTIONS(5102), - [anon_sym_yield] = ACTIONS(5102), - [anon_sym_when] = 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_ascending] = ACTIONS(5102), - [anon_sym_descending] = ACTIONS(5102), - [anon_sym_group] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_select] = ACTIONS(5102), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461219,7 +472313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3027] = { - [sym_modifier] = STATE(3047), [sym_preproc_region] = STATE(3027), [sym_preproc_endregion] = STATE(3027), [sym_preproc_line] = STATE(3027), @@ -461229,61 +472322,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3027), - [sym__identifier_token] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5108), - [anon_sym_alias] = ACTIONS(5106), - [anon_sym_global] = ACTIONS(5106), - [anon_sym_unsafe] = ACTIONS(5108), - [anon_sym_static] = ACTIONS(5108), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_event] = ACTIONS(5106), - [anon_sym_class] = ACTIONS(5106), - [anon_sym_ref] = ACTIONS(5106), - [anon_sym_struct] = ACTIONS(5106), - [anon_sym_enum] = ACTIONS(5106), - [anon_sym_interface] = ACTIONS(5106), - [anon_sym_delegate] = ACTIONS(5106), - [anon_sym_record] = ACTIONS(5106), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_async] = ACTIONS(5108), - [anon_sym_const] = ACTIONS(5108), - [anon_sym_file] = ACTIONS(5108), - [anon_sym_fixed] = ACTIONS(5108), - [anon_sym_internal] = ACTIONS(5108), - [anon_sym_new] = ACTIONS(5108), - [anon_sym_override] = ACTIONS(5108), - [anon_sym_partial] = ACTIONS(5108), - [anon_sym_private] = ACTIONS(5108), - [anon_sym_protected] = ACTIONS(5108), - [anon_sym_public] = ACTIONS(5108), - [anon_sym_readonly] = ACTIONS(5108), - [anon_sym_required] = ACTIONS(5108), - [anon_sym_sealed] = ACTIONS(5108), - [anon_sym_virtual] = ACTIONS(5108), - [anon_sym_volatile] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_notnull] = ACTIONS(5106), - [anon_sym_unmanaged] = ACTIONS(5106), - [anon_sym_implicit] = ACTIONS(5106), - [anon_sym_explicit] = ACTIONS(5106), - [anon_sym_scoped] = ACTIONS(5106), - [anon_sym_var] = ACTIONS(5106), - [sym_predefined_type] = ACTIONS(5106), - [anon_sym_yield] = ACTIONS(5106), - [anon_sym_when] = 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_ascending] = ACTIONS(5106), - [anon_sym_descending] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461305,62 +472400,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(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461382,62 +472478,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(4807), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_COLON] = ACTIONS(4807), - [anon_sym_COMMA] = ACTIONS(4807), - [anon_sym_RBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_RPAREN] = ACTIONS(4807), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4809), - [anon_sym_GT] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4807), - [anon_sym_DASH_DASH] = ACTIONS(4807), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_CARET] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(4807), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_GT_GT_GT] = ACTIONS(4807), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_GT_EQ] = ACTIONS(4807), - [anon_sym_LT_EQ] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_EQ_GT] = ACTIONS(4807), - [anon_sym_switch] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4807), - [anon_sym_and] = ACTIONS(4807), - [anon_sym_or] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_QMARK_QMARK] = ACTIONS(4807), - [anon_sym_from] = ACTIONS(4807), - [anon_sym_join] = ACTIONS(4807), - [anon_sym_on] = ACTIONS(4807), - [anon_sym_equals] = ACTIONS(4807), - [anon_sym_let] = ACTIONS(4807), - [anon_sym_orderby] = ACTIONS(4807), - [anon_sym_group] = ACTIONS(4807), - [anon_sym_by] = ACTIONS(4807), - [anon_sym_select] = ACTIONS(4807), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), - [anon_sym_with] = ACTIONS(4807), - [aux_sym_preproc_if_token3] = ACTIONS(4807), - [aux_sym_preproc_else_token1] = ACTIONS(4807), - [aux_sym_preproc_elif_token1] = ACTIONS(4807), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461459,62 +472556,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_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_where] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4207), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4207), - [anon_sym_BANG_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4213), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(4207), - [anon_sym_PIPE_PIPE] = ACTIONS(4207), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_from] = ACTIONS(4205), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_join] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4205), - [anon_sym_orderby] = ACTIONS(4205), - [anon_sym_group] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(4207), - [anon_sym_is] = ACTIONS(4207), - [anon_sym_DASH_GT] = ACTIONS(4207), - [anon_sym_with] = ACTIONS(4207), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461536,62 +472634,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), - [sym__identifier_token] = ACTIONS(5113), - [anon_sym_extern] = ACTIONS(5113), - [anon_sym_alias] = ACTIONS(5113), - [anon_sym_global] = ACTIONS(5113), - [anon_sym_unsafe] = ACTIONS(5113), - [anon_sym_static] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_event] = ACTIONS(5113), - [anon_sym_class] = ACTIONS(5113), - [anon_sym_ref] = ACTIONS(5113), - [anon_sym_struct] = ACTIONS(5113), - [anon_sym_enum] = ACTIONS(5113), - [anon_sym_interface] = ACTIONS(5113), - [anon_sym_delegate] = ACTIONS(5113), - [anon_sym_record] = ACTIONS(5113), - [anon_sym_abstract] = ACTIONS(5113), - [anon_sym_async] = ACTIONS(5113), - [anon_sym_const] = ACTIONS(5113), - [anon_sym_file] = ACTIONS(5113), - [anon_sym_fixed] = ACTIONS(5113), - [anon_sym_internal] = ACTIONS(5113), - [anon_sym_new] = ACTIONS(5113), - [anon_sym_override] = ACTIONS(5113), - [anon_sym_partial] = ACTIONS(5113), - [anon_sym_private] = ACTIONS(5113), - [anon_sym_protected] = ACTIONS(5113), - [anon_sym_public] = ACTIONS(5113), - [anon_sym_readonly] = ACTIONS(5113), - [anon_sym_required] = ACTIONS(5113), - [anon_sym_sealed] = ACTIONS(5113), - [anon_sym_virtual] = ACTIONS(5113), - [anon_sym_volatile] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_notnull] = ACTIONS(5113), - [anon_sym_unmanaged] = ACTIONS(5113), - [anon_sym_TILDE] = ACTIONS(5115), - [anon_sym_implicit] = ACTIONS(5113), - [anon_sym_explicit] = ACTIONS(5113), - [anon_sym_scoped] = ACTIONS(5113), - [anon_sym_var] = ACTIONS(5113), - [sym_predefined_type] = ACTIONS(5113), - [anon_sym_yield] = ACTIONS(5113), - [anon_sym_when] = ACTIONS(5113), - [anon_sym_from] = ACTIONS(5113), - [anon_sym_into] = ACTIONS(5113), - [anon_sym_join] = ACTIONS(5113), - [anon_sym_on] = ACTIONS(5113), - [anon_sym_equals] = ACTIONS(5113), - [anon_sym_let] = ACTIONS(5113), - [anon_sym_orderby] = ACTIONS(5113), - [anon_sym_ascending] = ACTIONS(5113), - [anon_sym_descending] = ACTIONS(5113), - [anon_sym_group] = ACTIONS(5113), - [anon_sym_by] = ACTIONS(5113), - [anon_sym_select] = ACTIONS(5113), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461613,62 +472712,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(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), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_COLON] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_in] = ACTIONS(5124), + [anon_sym_where] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5124), + [anon_sym_GT_GT_GT] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5124), + [anon_sym_EQ_GT] = ACTIONS(5122), + [anon_sym_switch] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5124), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_PIPE_PIPE] = ACTIONS(5122), + [anon_sym_QMARK_QMARK] = ACTIONS(5122), + [anon_sym_from] = ACTIONS(5122), + [anon_sym_into] = ACTIONS(5122), + [anon_sym_join] = ACTIONS(5122), + [anon_sym_on] = ACTIONS(5122), + [anon_sym_equals] = ACTIONS(5122), + [anon_sym_let] = ACTIONS(5122), + [anon_sym_orderby] = ACTIONS(5122), + [anon_sym_group] = ACTIONS(5122), + [anon_sym_by] = ACTIONS(5122), + [anon_sym_select] = ACTIONS(5122), + [anon_sym_as] = ACTIONS(5122), + [anon_sym_is] = ACTIONS(5122), + [anon_sym_DASH_GT] = ACTIONS(5122), + [anon_sym_with] = ACTIONS(5122), + [aux_sym_preproc_if_token3] = ACTIONS(5122), + [aux_sym_preproc_else_token1] = ACTIONS(5122), + [aux_sym_preproc_elif_token1] = ACTIONS(5122), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461690,62 +472790,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(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_COLON] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4946), - [anon_sym_where] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4946), - [anon_sym_CARET] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4948), - [anon_sym_LT_LT] = ACTIONS(4946), - [anon_sym_GT_GT] = ACTIONS(4948), - [anon_sym_GT_GT_GT] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_EQ_GT] = ACTIONS(4946), - [anon_sym_switch] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_and] = ACTIONS(4946), - [anon_sym_or] = ACTIONS(4948), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_QMARK_QMARK] = ACTIONS(4946), - [anon_sym_from] = ACTIONS(4946), - [anon_sym_join] = ACTIONS(4946), - [anon_sym_on] = ACTIONS(4946), - [anon_sym_equals] = ACTIONS(4946), - [anon_sym_let] = ACTIONS(4946), - [anon_sym_orderby] = ACTIONS(4946), - [anon_sym_group] = ACTIONS(4946), - [anon_sym_by] = ACTIONS(4946), - [anon_sym_select] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4946), - [anon_sym_DASH_GT] = ACTIONS(4946), - [anon_sym_with] = ACTIONS(4946), - [aux_sym_preproc_if_token3] = ACTIONS(4946), - [aux_sym_preproc_else_token1] = ACTIONS(4946), - [aux_sym_preproc_elif_token1] = ACTIONS(4946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461758,27 +472859,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3034] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter] = STATE(6543), - [sym__parameter_array] = STATE(6549), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5921), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5539), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3034), [sym_preproc_endregion] = STATE(3034), [sym_preproc_line] = STATE(3034), @@ -461788,41 +472868,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3041), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3406), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(1109), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461844,62 +472946,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(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_COLON] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4823), - [anon_sym_where] = ACTIONS(4823), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4823), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4823), - [anon_sym_CARET] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_LT] = ACTIONS(4823), - [anon_sym_GT_GT] = ACTIONS(4825), - [anon_sym_GT_GT_GT] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_EQ_GT] = ACTIONS(4823), - [anon_sym_switch] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_and] = ACTIONS(4823), - [anon_sym_or] = ACTIONS(4825), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_QMARK_QMARK] = ACTIONS(4823), - [anon_sym_from] = ACTIONS(4823), - [anon_sym_join] = ACTIONS(4823), - [anon_sym_on] = ACTIONS(4823), - [anon_sym_equals] = ACTIONS(4823), - [anon_sym_let] = ACTIONS(4823), - [anon_sym_orderby] = ACTIONS(4823), - [anon_sym_group] = ACTIONS(4823), - [anon_sym_by] = ACTIONS(4823), - [anon_sym_select] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4823), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_with] = ACTIONS(4823), - [aux_sym_preproc_if_token3] = ACTIONS(4823), - [aux_sym_preproc_else_token1] = ACTIONS(4823), - [aux_sym_preproc_elif_token1] = ACTIONS(4823), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461921,61 +473024,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_event] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(5117), - [anon_sym_implicit] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -461997,61 +473102,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_EQ] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_PLUS_EQ] = ACTIONS(5121), - [anon_sym_DASH_EQ] = ACTIONS(5121), - [anon_sym_STAR_EQ] = ACTIONS(5121), - [anon_sym_SLASH_EQ] = ACTIONS(5121), - [anon_sym_PERCENT_EQ] = ACTIONS(5121), - [anon_sym_AMP_EQ] = ACTIONS(5121), - [anon_sym_CARET_EQ] = ACTIONS(5121), - [anon_sym_PIPE_EQ] = ACTIONS(5121), - [anon_sym_LT_LT_EQ] = ACTIONS(5121), - [anon_sym_GT_GT_EQ] = ACTIONS(5121), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5121), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5121), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462073,61 +473180,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), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462149,61 +473258,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_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(4207), - [anon_sym_RBRACK] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(4207), - [anon_sym_RBRACE] = ACTIONS(4207), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), + [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), @@ -462225,61 +473336,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_event] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3766), - [anon_sym_implicit] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462292,25 +473405,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3041] = { - [sym_attribute_list] = STATE(5525), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5556), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -462320,41 +473420,57 @@ 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(5089), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(3363), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_params] = ACTIONS(4700), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462376,60 +473492,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_EQ] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5125), - [anon_sym_DASH_EQ] = ACTIONS(5125), - [anon_sym_STAR_EQ] = ACTIONS(5125), - [anon_sym_SLASH_EQ] = ACTIONS(5125), - [anon_sym_PERCENT_EQ] = ACTIONS(5125), - [anon_sym_AMP_EQ] = ACTIONS(5125), - [anon_sym_CARET_EQ] = ACTIONS(5125), - [anon_sym_PIPE_EQ] = ACTIONS(5125), - [anon_sym_LT_LT_EQ] = ACTIONS(5125), - [anon_sym_GT_GT_EQ] = ACTIONS(5125), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5125), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5125), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462442,26 +473561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3043] = { - [sym_attribute_list] = STATE(5876), - [sym_type_parameter] = STATE(6568), - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6574), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(6114), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3043), [sym_preproc_endregion] = STATE(3043), [sym_preproc_line] = STATE(3043), @@ -462471,40 +473570,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3043), [sym_preproc_define] = STATE(3043), [sym_preproc_undef] = STATE(3043), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5684), - [aux_sym_type_argument_list_repeat1] = STATE(6562), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_in] = ACTIONS(5137), - [anon_sym_out] = ACTIONS(5137), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -462517,8 +473639,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3044] = { - [sym_argument_list] = STATE(3067), - [sym_initializer_expression] = STATE(3271), [sym_preproc_region] = STATE(3044), [sym_preproc_endregion] = STATE(3044), [sym_preproc_line] = STATE(3044), @@ -462528,58 +473648,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3044), [sym_preproc_define] = STATE(3044), [sym_preproc_undef] = STATE(3044), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COLON] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_RBRACK] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4649), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4649), - [anon_sym_GT_GT_GT] = ACTIONS(4645), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_GT_EQ] = ACTIONS(4645), - [anon_sym_LT_EQ] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_EQ_GT] = ACTIONS(4645), - [anon_sym_switch] = ACTIONS(4645), - [anon_sym_when] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_or] = ACTIONS(4645), - [anon_sym_AMP_AMP] = ACTIONS(4645), - [anon_sym_PIPE_PIPE] = ACTIONS(4645), - [anon_sym_QMARK_QMARK] = ACTIONS(4645), - [anon_sym_into] = ACTIONS(4645), - [anon_sym_on] = ACTIONS(4645), - [anon_sym_equals] = ACTIONS(4645), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_with] = ACTIONS(4645), - [aux_sym_preproc_if_token3] = ACTIONS(4645), - [aux_sym_preproc_else_token1] = ACTIONS(4645), - [aux_sym_preproc_elif_token1] = ACTIONS(4645), + [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), @@ -462592,10 +473717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3045] = { - [sym_attribute_list] = STATE(3519), - [sym_modifier] = STATE(3622), - [sym_identifier] = STATE(6250), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3045), [sym_preproc_endregion] = STATE(3045), [sym_preproc_line] = STATE(3045), @@ -462605,56 +473726,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3045), [sym_preproc_define] = STATE(3045), [sym_preproc_undef] = STATE(3045), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3417), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3156), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4872), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_LBRACK] = ACTIONS(4874), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_async] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_file] = ACTIONS(4878), - [anon_sym_fixed] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_new] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_partial] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_readonly] = ACTIONS(4872), - [anon_sym_required] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_virtual] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5145), - [anon_sym_set] = ACTIONS(5145), - [anon_sym_add] = ACTIONS(5145), - [anon_sym_remove] = ACTIONS(5145), - [anon_sym_init] = ACTIONS(5145), - [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(5156), + [anon_sym_LBRACK] = ACTIONS(5156), + [anon_sym_COLON] = ACTIONS(5156), + [anon_sym_COMMA] = ACTIONS(5156), + [anon_sym_RBRACK] = ACTIONS(5156), + [anon_sym_LPAREN] = ACTIONS(5156), + [anon_sym_RPAREN] = ACTIONS(5156), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_LT] = ACTIONS(5158), + [anon_sym_GT] = ACTIONS(5158), + [anon_sym_in] = ACTIONS(5158), + [anon_sym_where] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5158), + [anon_sym_BANG] = ACTIONS(5158), + [anon_sym_PLUS_PLUS] = ACTIONS(5156), + [anon_sym_DASH_DASH] = ACTIONS(5156), + [anon_sym_PLUS] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_STAR] = ACTIONS(5156), + [anon_sym_SLASH] = ACTIONS(5158), + [anon_sym_PERCENT] = ACTIONS(5156), + [anon_sym_CARET] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(5158), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_LT_LT] = ACTIONS(5156), + [anon_sym_GT_GT] = ACTIONS(5158), + [anon_sym_GT_GT_GT] = ACTIONS(5156), + [anon_sym_EQ_EQ] = ACTIONS(5156), + [anon_sym_BANG_EQ] = ACTIONS(5156), + [anon_sym_GT_EQ] = ACTIONS(5156), + [anon_sym_LT_EQ] = ACTIONS(5156), + [anon_sym_DOT] = ACTIONS(5158), + [anon_sym_EQ_GT] = ACTIONS(5156), + [anon_sym_switch] = ACTIONS(5156), + [anon_sym_DOT_DOT] = ACTIONS(5156), + [anon_sym_and] = ACTIONS(5156), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_AMP_AMP] = ACTIONS(5156), + [anon_sym_PIPE_PIPE] = ACTIONS(5156), + [anon_sym_QMARK_QMARK] = ACTIONS(5156), + [anon_sym_from] = ACTIONS(5156), + [anon_sym_into] = ACTIONS(5156), + [anon_sym_join] = ACTIONS(5156), + [anon_sym_on] = ACTIONS(5156), + [anon_sym_equals] = ACTIONS(5156), + [anon_sym_let] = ACTIONS(5156), + [anon_sym_orderby] = ACTIONS(5156), + [anon_sym_group] = ACTIONS(5156), + [anon_sym_by] = ACTIONS(5156), + [anon_sym_select] = ACTIONS(5156), + [anon_sym_as] = ACTIONS(5156), + [anon_sym_is] = ACTIONS(5156), + [anon_sym_DASH_GT] = ACTIONS(5156), + [anon_sym_with] = ACTIONS(5156), + [aux_sym_preproc_if_token3] = ACTIONS(5156), + [aux_sym_preproc_else_token1] = ACTIONS(5156), + [aux_sym_preproc_elif_token1] = ACTIONS(5156), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462667,7 +473795,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3046] = { - [sym_type_argument_list] = STATE(3140), [sym_preproc_region] = STATE(3046), [sym_preproc_endregion] = STATE(3046), [sym_preproc_line] = STATE(3046), @@ -462677,59 +473804,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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(5150), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462751,60 +473882,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3047), [sym_preproc_define] = STATE(3047), [sym_preproc_undef] = STATE(3047), - [sym__identifier_token] = ACTIONS(5152), - [anon_sym_extern] = ACTIONS(5152), - [anon_sym_alias] = ACTIONS(5152), - [anon_sym_global] = ACTIONS(5152), - [anon_sym_unsafe] = ACTIONS(5152), - [anon_sym_static] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5154), - [anon_sym_event] = ACTIONS(5152), - [anon_sym_class] = ACTIONS(5152), - [anon_sym_ref] = ACTIONS(5152), - [anon_sym_struct] = ACTIONS(5152), - [anon_sym_enum] = ACTIONS(5152), - [anon_sym_interface] = ACTIONS(5152), - [anon_sym_delegate] = ACTIONS(5152), - [anon_sym_record] = ACTIONS(5152), - [anon_sym_abstract] = ACTIONS(5152), - [anon_sym_async] = ACTIONS(5152), - [anon_sym_const] = ACTIONS(5152), - [anon_sym_file] = ACTIONS(5152), - [anon_sym_fixed] = ACTIONS(5152), - [anon_sym_internal] = ACTIONS(5152), - [anon_sym_new] = ACTIONS(5152), - [anon_sym_override] = ACTIONS(5152), - [anon_sym_partial] = ACTIONS(5152), - [anon_sym_private] = ACTIONS(5152), - [anon_sym_protected] = ACTIONS(5152), - [anon_sym_public] = ACTIONS(5152), - [anon_sym_readonly] = ACTIONS(5152), - [anon_sym_required] = ACTIONS(5152), - [anon_sym_sealed] = ACTIONS(5152), - [anon_sym_virtual] = ACTIONS(5152), - [anon_sym_volatile] = ACTIONS(5152), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_notnull] = ACTIONS(5152), - [anon_sym_unmanaged] = ACTIONS(5152), - [anon_sym_implicit] = ACTIONS(5152), - [anon_sym_explicit] = ACTIONS(5152), - [anon_sym_scoped] = ACTIONS(5152), - [anon_sym_var] = ACTIONS(5152), - [sym_predefined_type] = ACTIONS(5152), - [anon_sym_yield] = ACTIONS(5152), - [anon_sym_when] = 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_ascending] = ACTIONS(5152), - [anon_sym_descending] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462826,60 +473960,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_EQ] = ACTIONS(4134), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_COLON] = ACTIONS(4136), - [anon_sym_COMMA] = 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_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_when] = ACTIONS(4136), - [anon_sym_DOT_DOT] = ACTIONS(4136), - [anon_sym_and] = ACTIONS(4136), - [anon_sym_or] = ACTIONS(4136), - [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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462901,60 +474038,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_event] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_implicit] = ACTIONS(3428), - [anon_sym_explicit] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -462967,7 +474107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3050] = { - [sym_block] = STATE(1891), [sym_preproc_region] = STATE(3050), [sym_preproc_endregion] = STATE(3050), [sym_preproc_line] = STATE(3050), @@ -462977,58 +474116,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3050), [sym_preproc_define] = STATE(3050), [sym_preproc_undef] = STATE(3050), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(5168), + [anon_sym_LBRACK] = ACTIONS(5168), + [anon_sym_COLON] = ACTIONS(5168), + [anon_sym_COMMA] = ACTIONS(5168), + [anon_sym_RBRACK] = ACTIONS(5168), + [anon_sym_LPAREN] = ACTIONS(5168), + [anon_sym_RPAREN] = ACTIONS(5168), + [anon_sym_RBRACE] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5170), + [anon_sym_GT] = ACTIONS(5170), + [anon_sym_in] = ACTIONS(5170), + [anon_sym_where] = ACTIONS(5168), + [anon_sym_QMARK] = ACTIONS(5170), + [anon_sym_BANG] = ACTIONS(5170), + [anon_sym_PLUS_PLUS] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5170), + [anon_sym_DASH] = ACTIONS(5170), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_PERCENT] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_PIPE] = ACTIONS(5170), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_LT_LT] = ACTIONS(5168), + [anon_sym_GT_GT] = ACTIONS(5170), + [anon_sym_GT_GT_GT] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5168), + [anon_sym_BANG_EQ] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5168), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_DOT] = ACTIONS(5170), + [anon_sym_EQ_GT] = ACTIONS(5168), + [anon_sym_switch] = ACTIONS(5168), + [anon_sym_DOT_DOT] = ACTIONS(5168), + [anon_sym_and] = ACTIONS(5168), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_AMP_AMP] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5168), + [anon_sym_QMARK_QMARK] = ACTIONS(5168), + [anon_sym_from] = ACTIONS(5168), + [anon_sym_into] = ACTIONS(5168), + [anon_sym_join] = ACTIONS(5168), + [anon_sym_on] = ACTIONS(5168), + [anon_sym_equals] = ACTIONS(5168), + [anon_sym_let] = ACTIONS(5168), + [anon_sym_orderby] = ACTIONS(5168), + [anon_sym_group] = ACTIONS(5168), + [anon_sym_by] = ACTIONS(5168), + [anon_sym_select] = ACTIONS(5168), + [anon_sym_as] = ACTIONS(5168), + [anon_sym_is] = ACTIONS(5168), + [anon_sym_DASH_GT] = ACTIONS(5168), + [anon_sym_with] = ACTIONS(5168), + [aux_sym_preproc_if_token3] = ACTIONS(5168), + [aux_sym_preproc_else_token1] = ACTIONS(5168), + [aux_sym_preproc_elif_token1] = ACTIONS(5168), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463041,27 +474185,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3051] = { - [sym_attribute_list] = STATE(5525), - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3051), [sym_preproc_endregion] = STATE(3051), [sym_preproc_line] = STATE(3051), @@ -463071,38 +474194,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3051), [sym_preproc_define] = STATE(3051), [sym_preproc_undef] = STATE(3051), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5089), - [aux_sym__lambda_expression_init_repeat1] = STATE(3288), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(4694), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463124,59 +474272,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(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_when] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [aux_sym_preproc_if_token3] = ACTIONS(3393), - [aux_sym_preproc_else_token1] = ACTIONS(3393), - [aux_sym_preproc_elif_token1] = ACTIONS(3393), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463189,7 +474341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3053] = { - [sym_type_argument_list] = STATE(3081), [sym_preproc_region] = STATE(3053), [sym_preproc_endregion] = STATE(3053), [sym_preproc_line] = STATE(3053), @@ -463199,71 +474350,75 @@ 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_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(5158), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3054] = { - [sym_type_argument_list] = STATE(3140), [sym_preproc_region] = STATE(3054), [sym_preproc_endregion] = STATE(3054), [sym_preproc_line] = STATE(3054), @@ -463273,58 +474428,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3054), [sym_preproc_define] = STATE(3054), [sym_preproc_undef] = STATE(3054), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), @@ -463346,59 +474506,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3055), [sym_preproc_define] = STATE(3055), [sym_preproc_undef] = STATE(3055), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5163), - [anon_sym_DASH_EQ] = ACTIONS(5163), - [anon_sym_STAR_EQ] = ACTIONS(5163), - [anon_sym_SLASH_EQ] = ACTIONS(5163), - [anon_sym_PERCENT_EQ] = ACTIONS(5163), - [anon_sym_AMP_EQ] = ACTIONS(5163), - [anon_sym_CARET_EQ] = ACTIONS(5163), - [anon_sym_PIPE_EQ] = ACTIONS(5163), - [anon_sym_LT_LT_EQ] = ACTIONS(5163), - [anon_sym_GT_GT_EQ] = ACTIONS(5163), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5163), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5163), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5184), + [anon_sym_COLON] = ACTIONS(5184), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RBRACK] = ACTIONS(5184), + [anon_sym_LPAREN] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_RBRACE] = ACTIONS(5184), + [anon_sym_LT] = ACTIONS(5186), + [anon_sym_GT] = ACTIONS(5186), + [anon_sym_in] = ACTIONS(5186), + [anon_sym_where] = ACTIONS(5184), + [anon_sym_QMARK] = ACTIONS(5186), + [anon_sym_BANG] = ACTIONS(5186), + [anon_sym_PLUS_PLUS] = ACTIONS(5184), + [anon_sym_DASH_DASH] = ACTIONS(5184), + [anon_sym_PLUS] = ACTIONS(5186), + [anon_sym_DASH] = ACTIONS(5186), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_SLASH] = ACTIONS(5186), + [anon_sym_PERCENT] = ACTIONS(5184), + [anon_sym_CARET] = ACTIONS(5184), + [anon_sym_PIPE] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(5186), + [anon_sym_LT_LT] = ACTIONS(5184), + [anon_sym_GT_GT] = ACTIONS(5186), + [anon_sym_GT_GT_GT] = ACTIONS(5184), + [anon_sym_EQ_EQ] = ACTIONS(5184), + [anon_sym_BANG_EQ] = ACTIONS(5184), + [anon_sym_GT_EQ] = ACTIONS(5184), + [anon_sym_LT_EQ] = ACTIONS(5184), + [anon_sym_DOT] = ACTIONS(5186), + [anon_sym_EQ_GT] = ACTIONS(5184), + [anon_sym_switch] = ACTIONS(5184), + [anon_sym_DOT_DOT] = ACTIONS(5184), + [anon_sym_and] = ACTIONS(5184), + [anon_sym_or] = ACTIONS(5186), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_QMARK_QMARK] = ACTIONS(5184), + [anon_sym_from] = ACTIONS(5184), + [anon_sym_into] = ACTIONS(5184), + [anon_sym_join] = ACTIONS(5184), + [anon_sym_on] = ACTIONS(5184), + [anon_sym_equals] = ACTIONS(5184), + [anon_sym_let] = ACTIONS(5184), + [anon_sym_orderby] = ACTIONS(5184), + [anon_sym_group] = ACTIONS(5184), + [anon_sym_by] = ACTIONS(5184), + [anon_sym_select] = ACTIONS(5184), + [anon_sym_as] = ACTIONS(5184), + [anon_sym_is] = ACTIONS(5184), + [anon_sym_DASH_GT] = ACTIONS(5184), + [anon_sym_with] = ACTIONS(5184), + [aux_sym_preproc_if_token3] = ACTIONS(5184), + [aux_sym_preproc_else_token1] = ACTIONS(5184), + [aux_sym_preproc_elif_token1] = ACTIONS(5184), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463420,59 +474584,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3056), [sym_preproc_define] = STATE(3056), [sym_preproc_undef] = STATE(3056), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_when] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(5188), + [anon_sym_LBRACK] = ACTIONS(5188), + [anon_sym_COLON] = ACTIONS(5188), + [anon_sym_COMMA] = ACTIONS(5188), + [anon_sym_RBRACK] = ACTIONS(5188), + [anon_sym_LPAREN] = ACTIONS(5188), + [anon_sym_RPAREN] = ACTIONS(5188), + [anon_sym_RBRACE] = ACTIONS(5188), + [anon_sym_LT] = ACTIONS(5190), + [anon_sym_GT] = ACTIONS(5190), + [anon_sym_in] = ACTIONS(5190), + [anon_sym_where] = ACTIONS(5188), + [anon_sym_QMARK] = ACTIONS(5190), + [anon_sym_BANG] = ACTIONS(5190), + [anon_sym_PLUS_PLUS] = ACTIONS(5188), + [anon_sym_DASH_DASH] = ACTIONS(5188), + [anon_sym_PLUS] = ACTIONS(5190), + [anon_sym_DASH] = ACTIONS(5190), + [anon_sym_STAR] = ACTIONS(5188), + [anon_sym_SLASH] = ACTIONS(5190), + [anon_sym_PERCENT] = ACTIONS(5188), + [anon_sym_CARET] = ACTIONS(5188), + [anon_sym_PIPE] = ACTIONS(5190), + [anon_sym_AMP] = ACTIONS(5190), + [anon_sym_LT_LT] = ACTIONS(5188), + [anon_sym_GT_GT] = ACTIONS(5190), + [anon_sym_GT_GT_GT] = ACTIONS(5188), + [anon_sym_EQ_EQ] = ACTIONS(5188), + [anon_sym_BANG_EQ] = ACTIONS(5188), + [anon_sym_GT_EQ] = ACTIONS(5188), + [anon_sym_LT_EQ] = ACTIONS(5188), + [anon_sym_DOT] = ACTIONS(5190), + [anon_sym_EQ_GT] = ACTIONS(5188), + [anon_sym_switch] = ACTIONS(5188), + [anon_sym_DOT_DOT] = ACTIONS(5188), + [anon_sym_and] = ACTIONS(5188), + [anon_sym_or] = ACTIONS(5190), + [anon_sym_AMP_AMP] = ACTIONS(5188), + [anon_sym_PIPE_PIPE] = ACTIONS(5188), + [anon_sym_QMARK_QMARK] = ACTIONS(5188), + [anon_sym_from] = ACTIONS(5188), + [anon_sym_into] = ACTIONS(5188), + [anon_sym_join] = ACTIONS(5188), + [anon_sym_on] = ACTIONS(5188), + [anon_sym_equals] = ACTIONS(5188), + [anon_sym_let] = ACTIONS(5188), + [anon_sym_orderby] = ACTIONS(5188), + [anon_sym_group] = ACTIONS(5188), + [anon_sym_by] = ACTIONS(5188), + [anon_sym_select] = ACTIONS(5188), + [anon_sym_as] = ACTIONS(5188), + [anon_sym_is] = ACTIONS(5188), + [anon_sym_DASH_GT] = ACTIONS(5188), + [anon_sym_with] = ACTIONS(5188), + [aux_sym_preproc_if_token3] = ACTIONS(5188), + [aux_sym_preproc_else_token1] = ACTIONS(5188), + [aux_sym_preproc_elif_token1] = ACTIONS(5188), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463494,59 +474662,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3057), [sym_preproc_define] = STATE(3057), [sym_preproc_undef] = STATE(3057), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463568,59 +474740,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3058), [sym_preproc_define] = STATE(3058), [sym_preproc_undef] = STATE(3058), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3565), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3562), - [anon_sym_when] = ACTIONS(3562), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3562), - [anon_sym_or] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [anon_sym_into] = ACTIONS(3562), - [anon_sym_on] = ACTIONS(3562), - [anon_sym_equals] = ACTIONS(3562), - [anon_sym_by] = ACTIONS(3562), - [anon_sym_as] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(3562), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3562), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463642,59 +474818,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3059), [sym_preproc_define] = STATE(3059), [sym_preproc_undef] = STATE(3059), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5167), - [anon_sym_DASH_EQ] = ACTIONS(5167), - [anon_sym_STAR_EQ] = ACTIONS(5167), - [anon_sym_SLASH_EQ] = ACTIONS(5167), - [anon_sym_PERCENT_EQ] = ACTIONS(5167), - [anon_sym_AMP_EQ] = ACTIONS(5167), - [anon_sym_CARET_EQ] = ACTIONS(5167), - [anon_sym_PIPE_EQ] = ACTIONS(5167), - [anon_sym_LT_LT_EQ] = ACTIONS(5167), - [anon_sym_GT_GT_EQ] = ACTIONS(5167), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5167), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5167), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463707,8 +474887,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3060] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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), @@ -463718,57 +474917,42 @@ 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), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4725), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4723), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_CARET] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4723), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_GT_GT_GT] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_EQ_GT] = ACTIONS(4723), - [anon_sym_switch] = ACTIONS(4723), - [anon_sym_when] = ACTIONS(4723), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_and] = ACTIONS(4723), - [anon_sym_or] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_QMARK_QMARK] = ACTIONS(4723), - [anon_sym_into] = ACTIONS(4723), - [anon_sym_on] = ACTIONS(4723), - [anon_sym_equals] = ACTIONS(4723), - [anon_sym_by] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = 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__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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463790,59 +474974,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3061), [sym_preproc_define] = STATE(3061), [sym_preproc_undef] = STATE(3061), - [anon_sym_EQ] = ACTIONS(5175), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5177), - [anon_sym_DASH_EQ] = ACTIONS(5177), - [anon_sym_STAR_EQ] = ACTIONS(5177), - [anon_sym_SLASH_EQ] = ACTIONS(5177), - [anon_sym_PERCENT_EQ] = ACTIONS(5177), - [anon_sym_AMP_EQ] = ACTIONS(5177), - [anon_sym_CARET_EQ] = ACTIONS(5177), - [anon_sym_PIPE_EQ] = ACTIONS(5177), - [anon_sym_LT_LT_EQ] = ACTIONS(5177), - [anon_sym_GT_GT_EQ] = ACTIONS(5177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5177), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5177), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463855,7 +475043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3062] = { - [sym_initializer_expression] = STATE(3273), [sym_preproc_region] = STATE(3062), [sym_preproc_endregion] = STATE(3062), [sym_preproc_line] = STATE(3062), @@ -463865,58 +475052,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3062), [sym_preproc_define] = STATE(3062), [sym_preproc_undef] = STATE(3062), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4708), - [anon_sym_COLON] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4706), - [anon_sym_RBRACK] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4711), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4706), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_CARET] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4711), - [anon_sym_LT_LT] = ACTIONS(4706), - [anon_sym_GT_GT] = ACTIONS(4711), - [anon_sym_GT_GT_GT] = ACTIONS(4706), - [anon_sym_EQ_EQ] = ACTIONS(4706), - [anon_sym_BANG_EQ] = ACTIONS(4706), - [anon_sym_GT_EQ] = ACTIONS(4706), - [anon_sym_LT_EQ] = ACTIONS(4706), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_EQ_GT] = ACTIONS(4706), - [anon_sym_switch] = ACTIONS(4706), - [anon_sym_when] = ACTIONS(4706), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_and] = ACTIONS(4706), - [anon_sym_or] = ACTIONS(4706), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_PIPE_PIPE] = ACTIONS(4706), - [anon_sym_QMARK_QMARK] = ACTIONS(4706), - [anon_sym_into] = ACTIONS(4706), - [anon_sym_on] = ACTIONS(4706), - [anon_sym_equals] = ACTIONS(4706), - [anon_sym_by] = ACTIONS(4706), - [anon_sym_as] = ACTIONS(4706), - [anon_sym_is] = ACTIONS(4706), - [anon_sym_DASH_GT] = ACTIONS(4706), - [anon_sym_with] = ACTIONS(4706), - [aux_sym_preproc_if_token3] = ACTIONS(4706), - [aux_sym_preproc_else_token1] = ACTIONS(4706), - [aux_sym_preproc_elif_token1] = ACTIONS(4706), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -463929,7 +475121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3063] = { - [sym_initializer_expression] = STATE(3272), [sym_preproc_region] = STATE(3063), [sym_preproc_endregion] = STATE(3063), [sym_preproc_line] = STATE(3063), @@ -463939,58 +475130,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3063), [sym_preproc_define] = STATE(3063), [sym_preproc_undef] = STATE(3063), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LBRACK] = ACTIONS(4776), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(5179), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_PLUS_PLUS] = ACTIONS(4780), - [anon_sym_DASH_DASH] = ACTIONS(4780), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_GT_GT_GT] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_GT_EQ] = ACTIONS(4780), - [anon_sym_LT_EQ] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4780), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4780), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_QMARK_QMARK] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4780), - [anon_sym_with] = ACTIONS(4780), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464003,8 +475199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3064] = { - [sym_argument_list] = STATE(3129), - [sym_initializer_expression] = STATE(3418), [sym_preproc_region] = STATE(3064), [sym_preproc_endregion] = STATE(3064), [sym_preproc_line] = STATE(3064), @@ -464014,57 +475208,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3064), [sym_preproc_define] = STATE(3064), [sym_preproc_undef] = STATE(3064), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COLON] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_RBRACK] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4649), - [anon_sym_GT_GT_GT] = ACTIONS(4645), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_GT_EQ] = ACTIONS(4645), - [anon_sym_LT_EQ] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_EQ_GT] = ACTIONS(4645), - [anon_sym_switch] = ACTIONS(4645), - [anon_sym_when] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_or] = ACTIONS(4645), - [anon_sym_AMP_AMP] = ACTIONS(4645), - [anon_sym_PIPE_PIPE] = ACTIONS(4645), - [anon_sym_QMARK_QMARK] = ACTIONS(4645), - [anon_sym_on] = ACTIONS(4645), - [anon_sym_equals] = ACTIONS(4645), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_with] = ACTIONS(4645), - [aux_sym_preproc_if_token3] = ACTIONS(4645), - [aux_sym_preproc_else_token1] = ACTIONS(4645), - [aux_sym_preproc_elif_token1] = ACTIONS(4645), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464077,8 +475277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3065] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), [sym_preproc_region] = STATE(3065), [sym_preproc_endregion] = STATE(3065), [sym_preproc_line] = STATE(3065), @@ -464088,57 +475286,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3065), [sym_preproc_define] = STATE(3065), [sym_preproc_undef] = STATE(3065), - [anon_sym_SEMI] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(4690), - [anon_sym_COMMA] = ACTIONS(4690), - [anon_sym_RBRACK] = ACTIONS(4690), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(4690), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_LT] = ACTIONS(4692), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(4692), - [anon_sym_DASH] = ACTIONS(4692), - [anon_sym_STAR] = ACTIONS(4690), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_PIPE] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4692), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4692), - [anon_sym_GT_GT_GT] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4690), - [anon_sym_BANG_EQ] = ACTIONS(4690), - [anon_sym_GT_EQ] = ACTIONS(4690), - [anon_sym_LT_EQ] = ACTIONS(4690), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_EQ_GT] = ACTIONS(4690), - [anon_sym_switch] = ACTIONS(4690), - [anon_sym_when] = ACTIONS(4690), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_and] = ACTIONS(4690), - [anon_sym_or] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4690), - [anon_sym_QMARK_QMARK] = ACTIONS(4690), - [anon_sym_into] = ACTIONS(4690), - [anon_sym_on] = ACTIONS(4690), - [anon_sym_equals] = ACTIONS(4690), - [anon_sym_by] = ACTIONS(4690), - [anon_sym_as] = ACTIONS(4690), - [anon_sym_is] = ACTIONS(4690), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(4690), - [aux_sym_preproc_if_token3] = ACTIONS(4690), - [aux_sym_preproc_else_token1] = ACTIONS(4690), - [aux_sym_preproc_elif_token1] = ACTIONS(4690), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464151,7 +475355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3066] = { - [sym_block] = STATE(1975), [sym_preproc_region] = STATE(3066), [sym_preproc_endregion] = STATE(3066), [sym_preproc_line] = STATE(3066), @@ -464161,58 +475364,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3066), [sym_preproc_define] = STATE(3066), [sym_preproc_undef] = STATE(3066), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464225,7 +475433,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3067] = { - [sym_initializer_expression] = STATE(3249), + [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), @@ -464235,58 +475465,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3067), [sym_preproc_define] = STATE(3067), [sym_preproc_undef] = STATE(3067), - [anon_sym_SEMI] = ACTIONS(4702), - [anon_sym_LBRACK] = ACTIONS(4702), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_RBRACK] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_LT] = ACTIONS(4704), - [anon_sym_GT] = ACTIONS(4704), - [anon_sym_in] = ACTIONS(4704), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4704), - [anon_sym_PLUS_PLUS] = ACTIONS(4702), - [anon_sym_DASH_DASH] = ACTIONS(4702), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_STAR] = ACTIONS(4702), - [anon_sym_SLASH] = ACTIONS(4704), - [anon_sym_PERCENT] = ACTIONS(4702), - [anon_sym_CARET] = ACTIONS(4702), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4704), - [anon_sym_LT_LT] = ACTIONS(4702), - [anon_sym_GT_GT] = ACTIONS(4704), - [anon_sym_GT_GT_GT] = ACTIONS(4702), - [anon_sym_EQ_EQ] = ACTIONS(4702), - [anon_sym_BANG_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_EQ_GT] = ACTIONS(4702), - [anon_sym_switch] = ACTIONS(4702), - [anon_sym_when] = ACTIONS(4702), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4702), - [anon_sym_or] = ACTIONS(4702), - [anon_sym_AMP_AMP] = ACTIONS(4702), - [anon_sym_PIPE_PIPE] = ACTIONS(4702), - [anon_sym_QMARK_QMARK] = ACTIONS(4702), - [anon_sym_into] = ACTIONS(4702), - [anon_sym_on] = ACTIONS(4702), - [anon_sym_equals] = ACTIONS(4702), - [anon_sym_by] = ACTIONS(4702), - [anon_sym_as] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(4702), - [anon_sym_DASH_GT] = ACTIONS(4702), - [anon_sym_with] = ACTIONS(4702), - [aux_sym_preproc_if_token3] = ACTIONS(4702), - [aux_sym_preproc_else_token1] = ACTIONS(4702), - [aux_sym_preproc_elif_token1] = ACTIONS(4702), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464299,8 +475510,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3068] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), [sym_preproc_region] = STATE(3068), [sym_preproc_endregion] = STATE(3068), [sym_preproc_line] = STATE(3068), @@ -464310,57 +475519,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(4669), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4673), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_LT] = ACTIONS(4669), - [anon_sym_GT_GT] = ACTIONS(4673), - [anon_sym_GT_GT_GT] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_EQ_GT] = ACTIONS(4669), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_when] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_and] = ACTIONS(4669), - [anon_sym_or] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_QMARK_QMARK] = ACTIONS(4669), - [anon_sym_into] = ACTIONS(4669), - [anon_sym_on] = ACTIONS(4669), - [anon_sym_equals] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(4669), - [aux_sym_preproc_if_token3] = ACTIONS(4669), - [aux_sym_preproc_else_token1] = ACTIONS(4669), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), + [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), @@ -464373,7 +475587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3069] = { - [sym_initializer_expression] = STATE(3268), [sym_preproc_region] = STATE(3069), [sym_preproc_endregion] = STATE(3069), [sym_preproc_line] = STATE(3069), @@ -464383,58 +475596,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_SEMI] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(1147), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4721), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_CARET] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_LT] = ACTIONS(4719), - [anon_sym_GT_GT] = ACTIONS(4721), - [anon_sym_GT_GT_GT] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_EQ_GT] = ACTIONS(4719), - [anon_sym_switch] = ACTIONS(4719), - [anon_sym_when] = ACTIONS(4719), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_and] = ACTIONS(4719), - [anon_sym_or] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_QMARK_QMARK] = ACTIONS(4719), - [anon_sym_into] = ACTIONS(4719), - [anon_sym_on] = ACTIONS(4719), - [anon_sym_equals] = ACTIONS(4719), - [anon_sym_by] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4719), - [aux_sym_preproc_if_token3] = ACTIONS(4719), - [aux_sym_preproc_else_token1] = ACTIONS(4719), - [aux_sym_preproc_elif_token1] = ACTIONS(4719), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464456,58 +475673,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(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_in] = ACTIONS(4793), - [anon_sym_QMARK] = ACTIONS(4795), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_AMP] = ACTIONS(4795), - [anon_sym_LT_LT] = ACTIONS(4793), - [anon_sym_GT_GT] = ACTIONS(4795), - [anon_sym_GT_GT_GT] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_EQ_GT] = ACTIONS(4793), - [anon_sym_switch] = ACTIONS(4793), - [anon_sym_when] = ACTIONS(4793), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_and] = ACTIONS(4793), - [anon_sym_or] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_QMARK_QMARK] = ACTIONS(4793), - [anon_sym_on] = ACTIONS(4793), - [anon_sym_equals] = ACTIONS(4793), - [anon_sym_by] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4793), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_with] = ACTIONS(4793), - [anon_sym_DQUOTE] = ACTIONS(4793), - [sym_string_literal_encoding] = ACTIONS(5190), - [aux_sym_preproc_if_token3] = ACTIONS(4793), - [aux_sym_preproc_else_token1] = ACTIONS(4793), - [aux_sym_preproc_elif_token1] = ACTIONS(4793), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464529,57 +475750,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_EQ] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3610), - [anon_sym_CARET] = ACTIONS(3610), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3610), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3610), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_PLUS_EQ] = ACTIONS(3612), - [anon_sym_DASH_EQ] = ACTIONS(3612), - [anon_sym_STAR_EQ] = ACTIONS(3612), - [anon_sym_SLASH_EQ] = ACTIONS(3612), - [anon_sym_PERCENT_EQ] = ACTIONS(3612), - [anon_sym_AMP_EQ] = ACTIONS(3612), - [anon_sym_CARET_EQ] = ACTIONS(3612), - [anon_sym_PIPE_EQ] = ACTIONS(3612), - [anon_sym_LT_LT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3612), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3610), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464590,7 +475816,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(3612), }, [3072] = { [sym_preproc_region] = STATE(3072), @@ -464602,58 +475827,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(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3653), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_into] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464675,58 +475904,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(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4005), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_when] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_into] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464748,58 +475981,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(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4732), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [sym_string_literal_encoding] = ACTIONS(5192), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464821,68 +476058,72 @@ 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_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3596), - [anon_sym_CARET] = ACTIONS(3596), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3596), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3596), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_PLUS_EQ] = ACTIONS(3598), - [anon_sym_DASH_EQ] = ACTIONS(3598), - [anon_sym_STAR_EQ] = ACTIONS(3598), - [anon_sym_SLASH_EQ] = ACTIONS(3598), - [anon_sym_PERCENT_EQ] = ACTIONS(3598), - [anon_sym_AMP_EQ] = ACTIONS(3598), - [anon_sym_CARET_EQ] = ACTIONS(3598), - [anon_sym_PIPE_EQ] = ACTIONS(3598), - [anon_sym_LT_LT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3598), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3596), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3598), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3076] = { [sym_preproc_region] = STATE(3076), @@ -464894,57 +476135,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_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_PLUS_EQ] = ACTIONS(3393), - [anon_sym_DASH_EQ] = ACTIONS(3393), - [anon_sym_STAR_EQ] = ACTIONS(3393), - [anon_sym_SLASH_EQ] = ACTIONS(3393), - [anon_sym_PERCENT_EQ] = ACTIONS(3393), - [anon_sym_AMP_EQ] = ACTIONS(3393), - [anon_sym_CARET_EQ] = ACTIONS(3393), - [anon_sym_PIPE_EQ] = ACTIONS(3393), - [anon_sym_LT_LT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3393), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3395), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -464955,7 +476201,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(3393), }, [3077] = { [sym_preproc_region] = STATE(3077), @@ -464967,58 +476212,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(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4029), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4031), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_into] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465040,58 +476289,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(3907), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3905), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_EQ_GT] = ACTIONS(3907), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_into] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3907), - [aux_sym_preproc_else_token1] = ACTIONS(3907), - [aux_sym_preproc_elif_token1] = ACTIONS(3907), + [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), @@ -465113,68 +476366,72 @@ 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_EQ] = ACTIONS(3621), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3621), - [anon_sym_CARET] = ACTIONS(3621), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3621), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3621), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3623), - [anon_sym_PLUS_EQ] = ACTIONS(3623), - [anon_sym_DASH_EQ] = ACTIONS(3623), - [anon_sym_STAR_EQ] = ACTIONS(3623), - [anon_sym_SLASH_EQ] = ACTIONS(3623), - [anon_sym_PERCENT_EQ] = ACTIONS(3623), - [anon_sym_AMP_EQ] = ACTIONS(3623), - [anon_sym_CARET_EQ] = ACTIONS(3623), - [anon_sym_PIPE_EQ] = ACTIONS(3623), - [anon_sym_LT_LT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3623), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3621), - [anon_sym_into] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(5200), + [anon_sym_LBRACK] = ACTIONS(5200), + [anon_sym_COLON] = ACTIONS(5200), + [anon_sym_COMMA] = ACTIONS(5200), + [anon_sym_RBRACK] = ACTIONS(5200), + [anon_sym_LPAREN] = ACTIONS(5200), + [anon_sym_RPAREN] = ACTIONS(5200), + [anon_sym_RBRACE] = ACTIONS(5200), + [anon_sym_LT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5202), + [anon_sym_in] = ACTIONS(5200), + [anon_sym_where] = ACTIONS(5200), + [anon_sym_QMARK] = ACTIONS(5202), + [anon_sym_BANG] = ACTIONS(5202), + [anon_sym_PLUS_PLUS] = ACTIONS(5200), + [anon_sym_DASH_DASH] = ACTIONS(5200), + [anon_sym_PLUS] = ACTIONS(5202), + [anon_sym_DASH] = ACTIONS(5202), + [anon_sym_STAR] = ACTIONS(5200), + [anon_sym_SLASH] = ACTIONS(5202), + [anon_sym_PERCENT] = ACTIONS(5200), + [anon_sym_CARET] = ACTIONS(5200), + [anon_sym_PIPE] = ACTIONS(5202), + [anon_sym_AMP] = ACTIONS(5202), + [anon_sym_LT_LT] = ACTIONS(5200), + [anon_sym_GT_GT] = ACTIONS(5202), + [anon_sym_GT_GT_GT] = ACTIONS(5200), + [anon_sym_EQ_EQ] = ACTIONS(5200), + [anon_sym_BANG_EQ] = ACTIONS(5200), + [anon_sym_GT_EQ] = ACTIONS(5200), + [anon_sym_LT_EQ] = ACTIONS(5200), + [anon_sym_DOT] = ACTIONS(5202), + [anon_sym_EQ_GT] = ACTIONS(5200), + [anon_sym_switch] = ACTIONS(5200), + [anon_sym_DOT_DOT] = ACTIONS(5200), + [anon_sym_and] = ACTIONS(5200), + [anon_sym_or] = ACTIONS(5202), + [anon_sym_AMP_AMP] = ACTIONS(5200), + [anon_sym_PIPE_PIPE] = ACTIONS(5200), + [anon_sym_QMARK_QMARK] = ACTIONS(5200), + [anon_sym_from] = ACTIONS(5200), + [anon_sym_join] = ACTIONS(5200), + [anon_sym_on] = ACTIONS(5200), + [anon_sym_equals] = ACTIONS(5200), + [anon_sym_let] = ACTIONS(5200), + [anon_sym_orderby] = ACTIONS(5200), + [anon_sym_group] = ACTIONS(5200), + [anon_sym_by] = ACTIONS(5200), + [anon_sym_select] = ACTIONS(5200), + [anon_sym_as] = ACTIONS(5200), + [anon_sym_is] = ACTIONS(5200), + [anon_sym_DASH_GT] = ACTIONS(5200), + [anon_sym_with] = ACTIONS(5200), + [aux_sym_preproc_if_token3] = ACTIONS(5200), + [aux_sym_preproc_else_token1] = ACTIONS(5200), + [aux_sym_preproc_elif_token1] = ACTIONS(5200), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3080] = { [sym_preproc_region] = STATE(3080), @@ -465186,58 +476443,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(3863), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3861), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3863), - [anon_sym_or] = ACTIONS(3863), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_into] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3863), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3863), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = ACTIONS(3863), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465259,68 +476520,72 @@ 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_EQ] = ACTIONS(3625), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3625), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3625), - [anon_sym_CARET] = ACTIONS(3625), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3625), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3625), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3627), - [anon_sym_PLUS_EQ] = ACTIONS(3627), - [anon_sym_DASH_EQ] = ACTIONS(3627), - [anon_sym_STAR_EQ] = ACTIONS(3627), - [anon_sym_SLASH_EQ] = ACTIONS(3627), - [anon_sym_PERCENT_EQ] = ACTIONS(3627), - [anon_sym_AMP_EQ] = ACTIONS(3627), - [anon_sym_CARET_EQ] = ACTIONS(3627), - [anon_sym_PIPE_EQ] = ACTIONS(3627), - [anon_sym_LT_LT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3627), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3625), - [anon_sym_into] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3627), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3082] = { [sym_preproc_region] = STATE(3082), @@ -465332,58 +476597,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(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_RBRACK] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_in] = ACTIONS(3944), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_EQ_GT] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_when] = ACTIONS(3946), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_or] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_into] = ACTIONS(3946), - [anon_sym_on] = ACTIONS(3946), - [anon_sym_equals] = ACTIONS(3946), - [anon_sym_by] = ACTIONS(3946), - [anon_sym_as] = ACTIONS(3946), - [anon_sym_is] = ACTIONS(3946), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3946), - [aux_sym_preproc_if_token3] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465405,58 +476674,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465478,58 +476751,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(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_RBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_in] = ACTIONS(3922), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_EQ_GT] = ACTIONS(3924), - [anon_sym_switch] = ACTIONS(3924), - [anon_sym_when] = ACTIONS(3924), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_or] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_into] = ACTIONS(3924), - [anon_sym_on] = ACTIONS(3924), - [anon_sym_equals] = ACTIONS(3924), - [anon_sym_by] = ACTIONS(3924), - [anon_sym_as] = ACTIONS(3924), - [anon_sym_is] = ACTIONS(3924), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3924), - [aux_sym_preproc_if_token3] = ACTIONS(3924), - [aux_sym_preproc_else_token1] = ACTIONS(3924), - [aux_sym_preproc_elif_token1] = ACTIONS(3924), + [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), @@ -465551,58 +476828,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(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_in] = ACTIONS(3940), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_EQ_GT] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_when] = ACTIONS(3942), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3942), - [anon_sym_or] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_into] = ACTIONS(3942), - [anon_sym_on] = ACTIONS(3942), - [anon_sym_equals] = ACTIONS(3942), - [anon_sym_by] = ACTIONS(3942), - [anon_sym_as] = ACTIONS(3942), - [anon_sym_is] = ACTIONS(3942), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3942), - [aux_sym_preproc_if_token3] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465624,58 +476905,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(3928), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_RBRACK] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_RPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_in] = ACTIONS(3926), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_EQ_GT] = ACTIONS(3928), - [anon_sym_switch] = ACTIONS(3928), - [anon_sym_when] = ACTIONS(3928), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3928), - [anon_sym_or] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_into] = ACTIONS(3928), - [anon_sym_on] = ACTIONS(3928), - [anon_sym_equals] = ACTIONS(3928), - [anon_sym_by] = ACTIONS(3928), - [anon_sym_as] = ACTIONS(3928), - [anon_sym_is] = ACTIONS(3928), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3928), - [aux_sym_preproc_if_token3] = ACTIONS(3928), - [aux_sym_preproc_else_token1] = ACTIONS(3928), - [aux_sym_preproc_elif_token1] = ACTIONS(3928), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465697,58 +476982,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(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_RBRACK] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_in] = ACTIONS(3936), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_EQ_GT] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_when] = ACTIONS(3938), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_or] = ACTIONS(3938), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_into] = ACTIONS(3938), - [anon_sym_on] = ACTIONS(3938), - [anon_sym_equals] = ACTIONS(3938), - [anon_sym_by] = ACTIONS(3938), - [anon_sym_as] = ACTIONS(3938), - [anon_sym_is] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3938), - [aux_sym_preproc_if_token3] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465770,58 +477059,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(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_when] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_into] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -465843,68 +477136,72 @@ 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_EQ] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3606), - [anon_sym_CARET] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3606), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3606), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3608), - [anon_sym_PLUS_EQ] = ACTIONS(3608), - [anon_sym_DASH_EQ] = ACTIONS(3608), - [anon_sym_STAR_EQ] = ACTIONS(3608), - [anon_sym_SLASH_EQ] = ACTIONS(3608), - [anon_sym_PERCENT_EQ] = ACTIONS(3608), - [anon_sym_AMP_EQ] = ACTIONS(3608), - [anon_sym_CARET_EQ] = ACTIONS(3608), - [anon_sym_PIPE_EQ] = ACTIONS(3608), - [anon_sym_LT_LT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3608), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3606), - [anon_sym_into] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3608), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3090] = { [sym_preproc_region] = STATE(3090), @@ -465916,68 +477213,72 @@ 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_EQ] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3665), - [anon_sym_COLON] = ACTIONS(3665), - [anon_sym_COMMA] = ACTIONS(3665), - [anon_sym_LPAREN] = ACTIONS(3665), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_GT] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3665), - [anon_sym_DASH_DASH] = ACTIONS(3665), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_PERCENT] = ACTIONS(3658), - [anon_sym_CARET] = ACTIONS(3658), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_LT_LT] = ACTIONS(3658), - [anon_sym_GT_GT] = ACTIONS(3658), - [anon_sym_GT_GT_GT] = ACTIONS(3658), - [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(3658), - [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(3658), - [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3091] = { [sym_preproc_region] = STATE(3091), @@ -465989,58 +477290,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(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_EQ_GT] = ACTIONS(4049), - [anon_sym_switch] = ACTIONS(4049), - [anon_sym_when] = ACTIONS(4049), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4049), - [anon_sym_or] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_into] = ACTIONS(4049), - [anon_sym_on] = ACTIONS(4049), - [anon_sym_equals] = ACTIONS(4049), - [anon_sym_by] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4049), - [aux_sym_preproc_if_token3] = ACTIONS(4049), - [aux_sym_preproc_else_token1] = ACTIONS(4049), - [aux_sym_preproc_elif_token1] = ACTIONS(4049), + [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), @@ -466062,58 +477367,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_SEMI] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_when] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_into] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466135,58 +477444,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(4056), - [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_LT] = ACTIONS(4054), - [anon_sym_GT] = ACTIONS(4054), - [anon_sym_in] = ACTIONS(4054), - [anon_sym_QMARK] = 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_EQ_GT] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4056), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), - [anon_sym_QMARK_QMARK] = ACTIONS(4056), - [anon_sym_into] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4056), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4056), - [aux_sym_preproc_else_token1] = ACTIONS(4056), - [aux_sym_preproc_elif_token1] = ACTIONS(4056), + [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), @@ -466208,58 +477521,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(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACK] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_RPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_in] = ACTIONS(3952), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_EQ_GT] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_when] = ACTIONS(3954), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3954), - [anon_sym_or] = ACTIONS(3954), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_into] = ACTIONS(3954), - [anon_sym_on] = ACTIONS(3954), - [anon_sym_equals] = ACTIONS(3954), - [anon_sym_by] = ACTIONS(3954), - [anon_sym_as] = ACTIONS(3954), - [anon_sym_is] = ACTIONS(3954), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3954), - [aux_sym_preproc_if_token3] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [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), @@ -466281,58 +477598,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(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4033), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_EQ_GT] = ACTIONS(4035), - [anon_sym_switch] = ACTIONS(4035), - [anon_sym_when] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4035), - [anon_sym_or] = ACTIONS(4035), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_into] = ACTIONS(4035), - [anon_sym_on] = ACTIONS(4035), - [anon_sym_equals] = ACTIONS(4035), - [anon_sym_by] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_is] = ACTIONS(4035), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4035), - [aux_sym_preproc_if_token3] = ACTIONS(4035), - [aux_sym_preproc_else_token1] = ACTIONS(4035), - [aux_sym_preproc_elif_token1] = ACTIONS(4035), + [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), @@ -466354,58 +477675,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(5194), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466427,68 +477752,72 @@ 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_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(4207), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym_LT] = ACTIONS(4210), - [anon_sym_GT] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4207), - [anon_sym_DASH_DASH] = ACTIONS(4207), - [anon_sym_PLUS] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4210), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_SLASH] = ACTIONS(4210), - [anon_sym_PERCENT] = ACTIONS(4210), - [anon_sym_CARET] = ACTIONS(4210), - [anon_sym_PIPE] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4210), - [anon_sym_LT_LT] = ACTIONS(4210), - [anon_sym_GT_GT] = ACTIONS(4210), - [anon_sym_GT_GT_GT] = ACTIONS(4210), - [anon_sym_EQ_EQ] = ACTIONS(4207), - [anon_sym_BANG_EQ] = ACTIONS(4207), - [anon_sym_GT_EQ] = ACTIONS(4207), - [anon_sym_LT_EQ] = ACTIONS(4207), - [anon_sym_DOT] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4207), - [anon_sym_DOT_DOT] = ACTIONS(4207), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(4207), - [anon_sym_PIPE_PIPE] = ACTIONS(4207), - [anon_sym_QMARK_QMARK] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(4207), - [anon_sym_is] = ACTIONS(4207), - [anon_sym_DASH_GT] = ACTIONS(4207), - [anon_sym_with] = ACTIONS(4207), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4205), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3098] = { [sym_preproc_region] = STATE(3098), @@ -466500,58 +477829,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(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3610), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_when] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [anon_sym_into] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466573,58 +477906,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466637,6 +477974,7 @@ 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), @@ -466646,58 +477984,61 @@ 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), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_RBRACK] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_in] = ACTIONS(4753), - [anon_sym_where] = ACTIONS(4753), - [anon_sym_QMARK] = ACTIONS(4755), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_AMP] = ACTIONS(4755), - [anon_sym_LT_LT] = ACTIONS(4753), - [anon_sym_GT_GT] = ACTIONS(4755), - [anon_sym_GT_GT_GT] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_EQ_GT] = ACTIONS(4753), - [anon_sym_switch] = ACTIONS(4753), - [anon_sym_when] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_and] = ACTIONS(4753), - [anon_sym_or] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_QMARK_QMARK] = ACTIONS(4753), - [anon_sym_on] = ACTIONS(4753), - [anon_sym_equals] = ACTIONS(4753), - [anon_sym_by] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4753), - [anon_sym_DASH_GT] = ACTIONS(4753), - [anon_sym_with] = ACTIONS(4753), - [aux_sym_preproc_if_token3] = ACTIONS(4753), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4753), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466719,58 +478060,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), @@ -466783,7 +478128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3102] = { - [sym_type_argument_list] = STATE(3220), [sym_preproc_region] = STATE(3102), [sym_preproc_endregion] = STATE(3102), [sym_preproc_line] = STATE(3102), @@ -466793,57 +478137,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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(5199), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(5202), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466865,58 +478214,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -466938,58 +478291,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3104), [sym_preproc_define] = STATE(3104), [sym_preproc_undef] = STATE(3104), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467011,68 +478368,72 @@ 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_EQ] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3600), - [anon_sym_CARET] = ACTIONS(3600), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3600), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3600), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_PLUS_EQ] = ACTIONS(3602), - [anon_sym_DASH_EQ] = ACTIONS(3602), - [anon_sym_STAR_EQ] = ACTIONS(3602), - [anon_sym_SLASH_EQ] = ACTIONS(3602), - [anon_sym_PERCENT_EQ] = ACTIONS(3602), - [anon_sym_AMP_EQ] = ACTIONS(3602), - [anon_sym_CARET_EQ] = ACTIONS(3602), - [anon_sym_PIPE_EQ] = ACTIONS(3602), - [anon_sym_LT_LT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3602), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3600), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3602), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3106] = { [sym_preproc_region] = STATE(3106), @@ -467084,58 +478445,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3106), [sym_preproc_define] = STATE(3106), [sym_preproc_undef] = STATE(3106), - [anon_sym_SEMI] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_STAR_EQ] = ACTIONS(5206), - [anon_sym_SLASH_EQ] = ACTIONS(5206), - [anon_sym_PERCENT_EQ] = ACTIONS(5206), - [anon_sym_AMP_EQ] = ACTIONS(5206), - [anon_sym_CARET_EQ] = ACTIONS(5206), - [anon_sym_PIPE_EQ] = ACTIONS(5206), - [anon_sym_LT_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_GT_EQ] = ACTIONS(5206), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5206), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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_where] = ACTIONS(4933), + [anon_sym_QMARK] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PLUS_PLUS] = ACTIONS(4933), + [anon_sym_DASH_DASH] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4933), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_PERCENT] = ACTIONS(4933), + [anon_sym_CARET] = ACTIONS(4933), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_AMP] = ACTIONS(4935), + [anon_sym_LT_LT] = ACTIONS(4933), + [anon_sym_GT_GT] = ACTIONS(4935), + [anon_sym_GT_GT_GT] = ACTIONS(4933), + [anon_sym_EQ_EQ] = ACTIONS(4933), + [anon_sym_BANG_EQ] = ACTIONS(4933), + [anon_sym_GT_EQ] = ACTIONS(4933), + [anon_sym_LT_EQ] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(4935), + [anon_sym_EQ_GT] = ACTIONS(4933), + [anon_sym_switch] = ACTIONS(4933), + [anon_sym_DOT_DOT] = ACTIONS(4933), + [anon_sym_and] = ACTIONS(4933), + [anon_sym_or] = ACTIONS(4935), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_QMARK_QMARK] = ACTIONS(4933), + [anon_sym_from] = ACTIONS(4933), + [anon_sym_join] = ACTIONS(4933), + [anon_sym_on] = ACTIONS(4933), + [anon_sym_equals] = ACTIONS(4933), + [anon_sym_let] = ACTIONS(4933), + [anon_sym_orderby] = ACTIONS(4933), + [anon_sym_group] = ACTIONS(4933), + [anon_sym_by] = ACTIONS(4933), + [anon_sym_select] = ACTIONS(4933), + [anon_sym_as] = ACTIONS(4933), + [anon_sym_is] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(4933), + [anon_sym_with] = ACTIONS(4933), + [aux_sym_preproc_if_token3] = ACTIONS(4933), + [aux_sym_preproc_else_token1] = ACTIONS(4933), + [aux_sym_preproc_elif_token1] = ACTIONS(4933), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467157,58 +478522,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(4793), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_RBRACK] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_RPAREN] = ACTIONS(4793), - [anon_sym_RBRACE] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_in] = ACTIONS(4795), - [anon_sym_QMARK] = ACTIONS(4795), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_AMP] = ACTIONS(4795), - [anon_sym_LT_LT] = ACTIONS(4793), - [anon_sym_GT_GT] = ACTIONS(4795), - [anon_sym_GT_GT_GT] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_EQ_GT] = ACTIONS(4793), - [anon_sym_switch] = ACTIONS(4793), - [anon_sym_when] = ACTIONS(4793), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_and] = ACTIONS(4793), - [anon_sym_or] = ACTIONS(4793), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_QMARK_QMARK] = ACTIONS(4793), - [anon_sym_into] = ACTIONS(4793), - [anon_sym_on] = ACTIONS(4793), - [anon_sym_equals] = ACTIONS(4793), - [anon_sym_by] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4793), - [anon_sym_is] = ACTIONS(4793), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_with] = ACTIONS(4793), - [sym_string_literal_encoding] = ACTIONS(5208), - [aux_sym_preproc_if_token3] = ACTIONS(4793), - [aux_sym_preproc_else_token1] = ACTIONS(4793), - [aux_sym_preproc_elif_token1] = ACTIONS(4793), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467230,58 +478599,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3108), [sym_preproc_define] = STATE(3108), [sym_preproc_undef] = STATE(3108), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3631), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_when] = ACTIONS(3642), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3642), - [anon_sym_or] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [anon_sym_QMARK_QMARK] = ACTIONS(3642), - [anon_sym_into] = ACTIONS(3642), - [anon_sym_on] = ACTIONS(3642), - [anon_sym_equals] = ACTIONS(3642), - [anon_sym_by] = ACTIONS(3642), - [anon_sym_as] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3642), - [anon_sym_DASH_GT] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3642), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = ACTIONS(3642), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467303,58 +478676,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3109), [sym_preproc_define] = STATE(3109), [sym_preproc_undef] = STATE(3109), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3598), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_when] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467376,58 +478753,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3110), [sym_preproc_define] = STATE(3110), [sym_preproc_undef] = STATE(3110), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3393), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_when] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [aux_sym_preproc_if_token3] = ACTIONS(3393), - [aux_sym_preproc_else_token1] = ACTIONS(3393), - [aux_sym_preproc_elif_token1] = ACTIONS(3393), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467449,57 +478830,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3111), [sym_preproc_define] = STATE(3111), [sym_preproc_undef] = STATE(3111), - [anon_sym_EQ] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_COLON] = ACTIONS(4106), - [anon_sym_COMMA] = ACTIONS(4106), - [anon_sym_LPAREN] = ACTIONS(4106), - [anon_sym_LT] = ACTIONS(4108), - [anon_sym_GT] = ACTIONS(4108), - [anon_sym_QMARK] = ACTIONS(4108), - [anon_sym_BANG] = ACTIONS(4108), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4108), - [anon_sym_SLASH] = ACTIONS(4108), - [anon_sym_PERCENT] = ACTIONS(4108), - [anon_sym_CARET] = ACTIONS(4108), - [anon_sym_PIPE] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_LT_LT] = ACTIONS(4108), - [anon_sym_GT_GT] = ACTIONS(4108), - [anon_sym_GT_GT_GT] = ACTIONS(4108), - [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(4108), - [anon_sym_switch] = ACTIONS(4106), - [anon_sym_DOT_DOT] = ACTIONS(4106), - [anon_sym_and] = ACTIONS(4106), - [anon_sym_or] = ACTIONS(4106), - [anon_sym_PLUS_EQ] = ACTIONS(4106), - [anon_sym_DASH_EQ] = ACTIONS(4106), - [anon_sym_STAR_EQ] = ACTIONS(4106), - [anon_sym_SLASH_EQ] = ACTIONS(4106), - [anon_sym_PERCENT_EQ] = ACTIONS(4106), - [anon_sym_AMP_EQ] = ACTIONS(4106), - [anon_sym_CARET_EQ] = ACTIONS(4106), - [anon_sym_PIPE_EQ] = ACTIONS(4106), - [anon_sym_LT_LT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_PIPE_PIPE] = ACTIONS(4106), - [anon_sym_QMARK_QMARK] = ACTIONS(4108), - [anon_sym_into] = ACTIONS(4106), - [anon_sym_as] = ACTIONS(4106), - [anon_sym_is] = ACTIONS(4106), - [anon_sym_DASH_GT] = ACTIONS(4106), - [anon_sym_with] = ACTIONS(4106), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467510,7 +478896,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), }, [3112] = { [sym_preproc_region] = STATE(3112), @@ -467522,57 +478907,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3112), [sym_preproc_define] = STATE(3112), [sym_preproc_undef] = STATE(3112), - [anon_sym_EQ] = ACTIONS(4086), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4084), - [anon_sym_COMMA] = ACTIONS(4084), - [anon_sym_LPAREN] = ACTIONS(4084), - [anon_sym_LT] = ACTIONS(4086), - [anon_sym_GT] = ACTIONS(4086), - [anon_sym_QMARK] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_CARET] = ACTIONS(4086), - [anon_sym_PIPE] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4086), - [anon_sym_LT_LT] = ACTIONS(4086), - [anon_sym_GT_GT] = ACTIONS(4086), - [anon_sym_GT_GT_GT] = ACTIONS(4086), - [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(4086), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_DOT_DOT] = ACTIONS(4084), - [anon_sym_and] = ACTIONS(4084), - [anon_sym_or] = ACTIONS(4084), - [anon_sym_PLUS_EQ] = ACTIONS(4084), - [anon_sym_DASH_EQ] = ACTIONS(4084), - [anon_sym_STAR_EQ] = ACTIONS(4084), - [anon_sym_SLASH_EQ] = ACTIONS(4084), - [anon_sym_PERCENT_EQ] = ACTIONS(4084), - [anon_sym_AMP_EQ] = ACTIONS(4084), - [anon_sym_CARET_EQ] = ACTIONS(4084), - [anon_sym_PIPE_EQ] = ACTIONS(4084), - [anon_sym_LT_LT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4084), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4084), - [anon_sym_AMP_AMP] = ACTIONS(4084), - [anon_sym_PIPE_PIPE] = ACTIONS(4084), - [anon_sym_QMARK_QMARK] = ACTIONS(4086), - [anon_sym_into] = ACTIONS(4084), - [anon_sym_as] = ACTIONS(4084), - [anon_sym_is] = ACTIONS(4084), - [anon_sym_DASH_GT] = ACTIONS(4084), - [anon_sym_with] = ACTIONS(4084), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467583,10 +478973,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), }, [3113] = { - [sym_initializer_expression] = STATE(3420), [sym_preproc_region] = STATE(3113), [sym_preproc_endregion] = STATE(3113), [sym_preproc_line] = STATE(3113), @@ -467596,57 +478984,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3113), [sym_preproc_define] = STATE(3113), [sym_preproc_undef] = STATE(3113), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_COLON] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_RBRACK] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(4719), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_in] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_CARET] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_LT] = ACTIONS(4719), - [anon_sym_GT_GT] = ACTIONS(4721), - [anon_sym_GT_GT_GT] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_EQ_GT] = ACTIONS(4719), - [anon_sym_switch] = ACTIONS(4719), - [anon_sym_when] = ACTIONS(4719), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_and] = ACTIONS(4719), - [anon_sym_or] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_QMARK_QMARK] = ACTIONS(4719), - [anon_sym_on] = ACTIONS(4719), - [anon_sym_equals] = ACTIONS(4719), - [anon_sym_by] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4719), - [anon_sym_is] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4719), - [aux_sym_preproc_if_token3] = ACTIONS(4719), - [aux_sym_preproc_else_token1] = ACTIONS(4719), - [aux_sym_preproc_elif_token1] = ACTIONS(4719), + [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), @@ -467668,58 +479061,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3114), [sym_preproc_define] = STATE(3114), [sym_preproc_undef] = STATE(3114), - [sym__identifier_token] = ACTIONS(3425), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3425), - [anon_sym_global] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3425), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3425), - [anon_sym_unmanaged] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3425), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_when] = ACTIONS(3425), - [anon_sym_from] = ACTIONS(3425), - [anon_sym_into] = ACTIONS(3425), - [anon_sym_join] = ACTIONS(3425), - [anon_sym_on] = ACTIONS(3425), - [anon_sym_equals] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_orderby] = ACTIONS(3425), - [anon_sym_ascending] = ACTIONS(3425), - [anon_sym_descending] = ACTIONS(3425), - [anon_sym_group] = ACTIONS(3425), - [anon_sym_by] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467741,58 +479138,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3115), [sym_preproc_define] = STATE(3115), [sym_preproc_undef] = STATE(3115), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [sym_string_literal_encoding] = ACTIONS(5210), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467814,58 +479215,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3116), [sym_preproc_define] = STATE(3116), [sym_preproc_undef] = STATE(3116), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym_LBRACK] = ACTIONS(3562), - [anon_sym_COLON] = ACTIONS(3565), - [anon_sym_COMMA] = ACTIONS(3562), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LPAREN] = ACTIONS(3562), - [anon_sym_RPAREN] = ACTIONS(3562), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(3565), - [anon_sym_GT] = ACTIONS(3565), - [anon_sym_in] = ACTIONS(3562), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3565), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS] = ACTIONS(3565), - [anon_sym_DASH] = ACTIONS(3565), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_SLASH] = ACTIONS(3565), - [anon_sym_PERCENT] = ACTIONS(3562), - [anon_sym_CARET] = ACTIONS(3562), - [anon_sym_PIPE] = ACTIONS(3565), - [anon_sym_AMP] = ACTIONS(3565), - [anon_sym_LT_LT] = ACTIONS(3562), - [anon_sym_GT_GT] = ACTIONS(3565), - [anon_sym_GT_GT_GT] = ACTIONS(3562), - [anon_sym_EQ_EQ] = ACTIONS(3562), - [anon_sym_BANG_EQ] = ACTIONS(3562), - [anon_sym_GT_EQ] = ACTIONS(3562), - [anon_sym_LT_EQ] = ACTIONS(3562), - [anon_sym_DOT] = ACTIONS(3565), - [anon_sym_EQ_GT] = ACTIONS(3562), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3562), - [anon_sym_when] = ACTIONS(3562), - [anon_sym_DOT_DOT] = ACTIONS(3562), - [anon_sym_and] = ACTIONS(3562), - [anon_sym_or] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_PIPE_PIPE] = ACTIONS(3562), - [anon_sym_QMARK_QMARK] = ACTIONS(3562), - [anon_sym_on] = ACTIONS(3562), - [anon_sym_equals] = ACTIONS(3562), - [anon_sym_by] = ACTIONS(3562), - [anon_sym_as] = ACTIONS(3562), - [anon_sym_is] = ACTIONS(3562), - [anon_sym_DASH_GT] = ACTIONS(3562), - [anon_sym_with] = ACTIONS(3562), - [aux_sym_preproc_if_token3] = ACTIONS(3562), - [aux_sym_preproc_else_token1] = ACTIONS(3562), - [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467878,8 +479283,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3117] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2738), [sym_preproc_region] = STATE(3117), [sym_preproc_endregion] = STATE(3117), [sym_preproc_line] = STATE(3117), @@ -467889,56 +479292,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3117), [sym_preproc_define] = STATE(3117), [sym_preproc_undef] = STATE(3117), - [anon_sym_SEMI] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(4690), - [anon_sym_COMMA] = ACTIONS(4690), - [anon_sym_RBRACK] = ACTIONS(4690), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4690), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_LT] = ACTIONS(4692), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4690), - [anon_sym_QMARK] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4692), - [anon_sym_DASH] = ACTIONS(4692), - [anon_sym_STAR] = ACTIONS(4690), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_PIPE] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4692), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4692), - [anon_sym_GT_GT_GT] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4690), - [anon_sym_BANG_EQ] = ACTIONS(4690), - [anon_sym_GT_EQ] = ACTIONS(4690), - [anon_sym_LT_EQ] = ACTIONS(4690), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4690), - [anon_sym_switch] = ACTIONS(4690), - [anon_sym_when] = ACTIONS(4690), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_and] = ACTIONS(4690), - [anon_sym_or] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4690), - [anon_sym_QMARK_QMARK] = ACTIONS(4690), - [anon_sym_on] = ACTIONS(4690), - [anon_sym_equals] = ACTIONS(4690), - [anon_sym_by] = ACTIONS(4690), - [anon_sym_as] = ACTIONS(4690), - [anon_sym_is] = ACTIONS(4690), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4690), - [aux_sym_preproc_if_token3] = ACTIONS(4690), - [aux_sym_preproc_else_token1] = ACTIONS(4690), - [aux_sym_preproc_elif_token1] = ACTIONS(4690), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -467951,7 +479360,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3118] = { - [sym_initializer_expression] = STATE(3282), [sym_preproc_region] = STATE(3118), [sym_preproc_endregion] = STATE(3118), [sym_preproc_line] = STATE(3118), @@ -467961,57 +479369,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3118), [sym_preproc_define] = STATE(3118), [sym_preproc_undef] = STATE(3118), - [anon_sym_SEMI] = ACTIONS(4706), - [anon_sym_LBRACK] = ACTIONS(4708), - [anon_sym_COLON] = ACTIONS(4706), - [anon_sym_COMMA] = ACTIONS(4706), - [anon_sym_RBRACK] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_RPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_in] = ACTIONS(4706), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4706), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_CARET] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4711), - [anon_sym_LT_LT] = ACTIONS(4706), - [anon_sym_GT_GT] = ACTIONS(4711), - [anon_sym_GT_GT_GT] = ACTIONS(4706), - [anon_sym_EQ_EQ] = ACTIONS(4706), - [anon_sym_BANG_EQ] = ACTIONS(4706), - [anon_sym_GT_EQ] = ACTIONS(4706), - [anon_sym_LT_EQ] = ACTIONS(4706), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_EQ_GT] = ACTIONS(4706), - [anon_sym_switch] = ACTIONS(4706), - [anon_sym_when] = ACTIONS(4706), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_and] = ACTIONS(4706), - [anon_sym_or] = ACTIONS(4706), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_PIPE_PIPE] = ACTIONS(4706), - [anon_sym_QMARK_QMARK] = ACTIONS(4706), - [anon_sym_on] = ACTIONS(4706), - [anon_sym_equals] = ACTIONS(4706), - [anon_sym_by] = ACTIONS(4706), - [anon_sym_as] = ACTIONS(4706), - [anon_sym_is] = ACTIONS(4706), - [anon_sym_DASH_GT] = ACTIONS(4706), - [anon_sym_with] = ACTIONS(4706), - [aux_sym_preproc_if_token3] = ACTIONS(4706), - [aux_sym_preproc_else_token1] = ACTIONS(4706), - [aux_sym_preproc_elif_token1] = ACTIONS(4706), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468024,8 +479437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3119] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2738), [sym_preproc_region] = STATE(3119), [sym_preproc_endregion] = STATE(3119), [sym_preproc_line] = STATE(3119), @@ -468035,56 +479446,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3119), [sym_preproc_define] = STATE(3119), [sym_preproc_undef] = STATE(3119), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_LT] = ACTIONS(4669), - [anon_sym_GT_GT] = ACTIONS(4673), - [anon_sym_GT_GT_GT] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4669), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_when] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_and] = ACTIONS(4669), - [anon_sym_or] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_QMARK_QMARK] = ACTIONS(4669), - [anon_sym_on] = ACTIONS(4669), - [anon_sym_equals] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4669), - [aux_sym_preproc_if_token3] = ACTIONS(4669), - [aux_sym_preproc_else_token1] = ACTIONS(4669), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), + [sym__identifier_token] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468106,58 +479522,61 @@ 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(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3606), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_when] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_into] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468179,57 +479598,61 @@ 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(4134), - [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(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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468240,7 +479663,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(4136), }, [3122] = { [sym_preproc_region] = STATE(3122), @@ -468252,57 +479674,61 @@ 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(4092), - [anon_sym_LBRACK] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(4090), - [anon_sym_COMMA] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(4092), - [anon_sym_GT] = ACTIONS(4092), - [anon_sym_QMARK] = ACTIONS(4092), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4092), - [anon_sym_SLASH] = ACTIONS(4092), - [anon_sym_PERCENT] = ACTIONS(4092), - [anon_sym_CARET] = ACTIONS(4092), - [anon_sym_PIPE] = ACTIONS(4092), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_LT_LT] = ACTIONS(4092), - [anon_sym_GT_GT] = ACTIONS(4092), - [anon_sym_GT_GT_GT] = ACTIONS(4092), - [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(4092), - [anon_sym_switch] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(4090), - [anon_sym_and] = ACTIONS(4090), - [anon_sym_or] = ACTIONS(4090), - [anon_sym_PLUS_EQ] = ACTIONS(4090), - [anon_sym_DASH_EQ] = ACTIONS(4090), - [anon_sym_STAR_EQ] = ACTIONS(4090), - [anon_sym_SLASH_EQ] = ACTIONS(4090), - [anon_sym_PERCENT_EQ] = ACTIONS(4090), - [anon_sym_AMP_EQ] = ACTIONS(4090), - [anon_sym_CARET_EQ] = ACTIONS(4090), - [anon_sym_PIPE_EQ] = ACTIONS(4090), - [anon_sym_LT_LT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4090), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_PIPE_PIPE] = ACTIONS(4090), - [anon_sym_QMARK_QMARK] = ACTIONS(4092), - [anon_sym_into] = ACTIONS(4090), - [anon_sym_as] = ACTIONS(4090), - [anon_sym_is] = ACTIONS(4090), - [anon_sym_DASH_GT] = ACTIONS(4090), - [anon_sym_with] = ACTIONS(4090), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468313,7 +479739,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(4090), }, [3123] = { [sym_preproc_region] = STATE(3123), @@ -468325,58 +479750,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3123), [sym_preproc_define] = STATE(3123), [sym_preproc_undef] = STATE(3123), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3598), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_GT] = ACTIONS(3596), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_PERCENT] = ACTIONS(3598), - [anon_sym_CARET] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_LT_LT] = ACTIONS(3598), - [anon_sym_GT_GT] = ACTIONS(3596), - [anon_sym_GT_GT_GT] = ACTIONS(3598), - [anon_sym_EQ_EQ] = ACTIONS(3598), - [anon_sym_BANG_EQ] = ACTIONS(3598), - [anon_sym_GT_EQ] = ACTIONS(3598), - [anon_sym_LT_EQ] = ACTIONS(3598), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_when] = ACTIONS(3598), - [anon_sym_DOT_DOT] = ACTIONS(3598), - [anon_sym_and] = ACTIONS(3598), - [anon_sym_or] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_PIPE_PIPE] = ACTIONS(3598), - [anon_sym_QMARK_QMARK] = ACTIONS(3598), - [anon_sym_into] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_equals] = ACTIONS(3598), - [anon_sym_by] = ACTIONS(3598), - [anon_sym_as] = ACTIONS(3598), - [anon_sym_is] = ACTIONS(3598), - [anon_sym_DASH_GT] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [aux_sym_preproc_if_token3] = ACTIONS(3598), - [aux_sym_preproc_else_token1] = ACTIONS(3598), - [aux_sym_preproc_elif_token1] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468398,58 +479826,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3124), [sym_preproc_define] = STATE(3124), [sym_preproc_undef] = STATE(3124), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_in] = ACTIONS(4749), - [anon_sym_QMARK] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_CARET] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_LT_LT] = ACTIONS(4747), - [anon_sym_GT_GT] = ACTIONS(4749), - [anon_sym_GT_GT_GT] = ACTIONS(4747), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_GT_EQ] = ACTIONS(4747), - [anon_sym_LT_EQ] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_EQ_GT] = ACTIONS(4747), - [anon_sym_switch] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4747), - [anon_sym_and] = ACTIONS(4747), - [anon_sym_or] = ACTIONS(4747), - [anon_sym_AMP_AMP] = ACTIONS(4747), - [anon_sym_PIPE_PIPE] = ACTIONS(4747), - [anon_sym_QMARK_QMARK] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4747), - [anon_sym_with] = ACTIONS(4747), - [aux_sym_raw_string_literal_token1] = ACTIONS(5218), - [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(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), @@ -468471,58 +479902,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3125), [sym_preproc_define] = STATE(3125), [sym_preproc_undef] = STATE(3125), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_GT] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_PERCENT] = ACTIONS(3393), - [anon_sym_CARET] = ACTIONS(3393), - [anon_sym_PIPE] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3393), - [anon_sym_GT_GT] = ACTIONS(3395), - [anon_sym_GT_GT_GT] = ACTIONS(3393), - [anon_sym_EQ_EQ] = ACTIONS(3393), - [anon_sym_BANG_EQ] = ACTIONS(3393), - [anon_sym_GT_EQ] = ACTIONS(3393), - [anon_sym_LT_EQ] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_when] = ACTIONS(3393), - [anon_sym_DOT_DOT] = ACTIONS(3393), - [anon_sym_and] = ACTIONS(3393), - [anon_sym_or] = ACTIONS(3393), - [anon_sym_AMP_AMP] = ACTIONS(3393), - [anon_sym_PIPE_PIPE] = ACTIONS(3393), - [anon_sym_QMARK_QMARK] = ACTIONS(3393), - [anon_sym_into] = ACTIONS(3393), - [anon_sym_on] = ACTIONS(3393), - [anon_sym_equals] = ACTIONS(3393), - [anon_sym_by] = ACTIONS(3393), - [anon_sym_as] = ACTIONS(3393), - [anon_sym_is] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3393), - [anon_sym_with] = ACTIONS(3393), - [aux_sym_preproc_if_token3] = ACTIONS(3393), - [aux_sym_preproc_else_token1] = ACTIONS(3393), - [aux_sym_preproc_elif_token1] = ACTIONS(3393), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468544,57 +479977,60 @@ 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(4128), - [anon_sym_LBRACK] = ACTIONS(4126), - [anon_sym_COLON] = ACTIONS(4126), - [anon_sym_COMMA] = ACTIONS(4126), - [anon_sym_LPAREN] = ACTIONS(4126), - [anon_sym_LT] = ACTIONS(4128), - [anon_sym_GT] = ACTIONS(4128), - [anon_sym_QMARK] = ACTIONS(4128), - [anon_sym_BANG] = ACTIONS(4128), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4128), - [anon_sym_SLASH] = ACTIONS(4128), - [anon_sym_PERCENT] = ACTIONS(4128), - [anon_sym_CARET] = ACTIONS(4128), - [anon_sym_PIPE] = ACTIONS(4128), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_LT_LT] = ACTIONS(4128), - [anon_sym_GT_GT] = ACTIONS(4128), - [anon_sym_GT_GT_GT] = ACTIONS(4128), - [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(4128), - [anon_sym_switch] = ACTIONS(4126), - [anon_sym_DOT_DOT] = ACTIONS(4126), - [anon_sym_and] = ACTIONS(4126), - [anon_sym_or] = ACTIONS(4126), - [anon_sym_PLUS_EQ] = ACTIONS(4126), - [anon_sym_DASH_EQ] = ACTIONS(4126), - [anon_sym_STAR_EQ] = ACTIONS(4126), - [anon_sym_SLASH_EQ] = ACTIONS(4126), - [anon_sym_PERCENT_EQ] = ACTIONS(4126), - [anon_sym_AMP_EQ] = ACTIONS(4126), - [anon_sym_CARET_EQ] = ACTIONS(4126), - [anon_sym_PIPE_EQ] = ACTIONS(4126), - [anon_sym_LT_LT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4126), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_PIPE_PIPE] = ACTIONS(4126), - [anon_sym_QMARK_QMARK] = ACTIONS(4128), - [anon_sym_into] = ACTIONS(4126), - [anon_sym_as] = ACTIONS(4126), - [anon_sym_is] = ACTIONS(4126), - [anon_sym_DASH_GT] = ACTIONS(4126), - [anon_sym_with] = ACTIONS(4126), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468605,9 +480041,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(4126), }, [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), @@ -468617,57 +480054,58 @@ 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_EQ] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4122), - [anon_sym_COLON] = ACTIONS(4122), - [anon_sym_COMMA] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym_LT] = ACTIONS(4124), - [anon_sym_GT] = ACTIONS(4124), - [anon_sym_QMARK] = ACTIONS(4124), - [anon_sym_BANG] = ACTIONS(4124), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4124), - [anon_sym_SLASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_CARET] = ACTIONS(4124), - [anon_sym_PIPE] = ACTIONS(4124), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_LT_LT] = ACTIONS(4124), - [anon_sym_GT_GT] = ACTIONS(4124), - [anon_sym_GT_GT_GT] = ACTIONS(4124), - [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(4124), - [anon_sym_switch] = ACTIONS(4122), - [anon_sym_DOT_DOT] = ACTIONS(4122), - [anon_sym_and] = ACTIONS(4122), - [anon_sym_or] = ACTIONS(4122), - [anon_sym_PLUS_EQ] = ACTIONS(4122), - [anon_sym_DASH_EQ] = ACTIONS(4122), - [anon_sym_STAR_EQ] = ACTIONS(4122), - [anon_sym_SLASH_EQ] = ACTIONS(4122), - [anon_sym_PERCENT_EQ] = ACTIONS(4122), - [anon_sym_AMP_EQ] = ACTIONS(4122), - [anon_sym_CARET_EQ] = ACTIONS(4122), - [anon_sym_PIPE_EQ] = ACTIONS(4122), - [anon_sym_LT_LT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4122), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_PIPE_PIPE] = ACTIONS(4122), - [anon_sym_QMARK_QMARK] = ACTIONS(4124), - [anon_sym_into] = ACTIONS(4122), - [anon_sym_as] = ACTIONS(4122), - [anon_sym_is] = ACTIONS(4122), - [anon_sym_DASH_GT] = ACTIONS(4122), - [anon_sym_with] = ACTIONS(4122), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468678,7 +480116,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), }, [3128] = { [sym_preproc_region] = STATE(3128), @@ -468690,58 +480127,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3128), [sym_preproc_define] = STATE(3128), [sym_preproc_undef] = STATE(3128), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_QMARK_QMARK] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468754,7 +480193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3129] = { - [sym_initializer_expression] = STATE(3425), + [sym_type_argument_list] = STATE(3158), [sym_preproc_region] = STATE(3129), [sym_preproc_endregion] = STATE(3129), [sym_preproc_line] = STATE(3129), @@ -468764,57 +480203,59 @@ 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(4702), - [anon_sym_LBRACK] = ACTIONS(4702), - [anon_sym_COLON] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_RBRACK] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_RPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(4702), - [anon_sym_LT] = ACTIONS(4704), - [anon_sym_GT] = ACTIONS(4704), - [anon_sym_in] = ACTIONS(4702), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4704), - [anon_sym_PLUS_PLUS] = ACTIONS(4702), - [anon_sym_DASH_DASH] = ACTIONS(4702), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_STAR] = ACTIONS(4702), - [anon_sym_SLASH] = ACTIONS(4704), - [anon_sym_PERCENT] = ACTIONS(4702), - [anon_sym_CARET] = ACTIONS(4702), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4704), - [anon_sym_LT_LT] = ACTIONS(4702), - [anon_sym_GT_GT] = ACTIONS(4704), - [anon_sym_GT_GT_GT] = ACTIONS(4702), - [anon_sym_EQ_EQ] = ACTIONS(4702), - [anon_sym_BANG_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_EQ_GT] = ACTIONS(4702), - [anon_sym_switch] = ACTIONS(4702), - [anon_sym_when] = ACTIONS(4702), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4702), - [anon_sym_or] = ACTIONS(4702), - [anon_sym_AMP_AMP] = ACTIONS(4702), - [anon_sym_PIPE_PIPE] = ACTIONS(4702), - [anon_sym_QMARK_QMARK] = ACTIONS(4702), - [anon_sym_on] = ACTIONS(4702), - [anon_sym_equals] = ACTIONS(4702), - [anon_sym_by] = ACTIONS(4702), - [anon_sym_as] = ACTIONS(4702), - [anon_sym_is] = ACTIONS(4702), - [anon_sym_DASH_GT] = ACTIONS(4702), - [anon_sym_with] = ACTIONS(4702), - [aux_sym_preproc_if_token3] = ACTIONS(4702), - [aux_sym_preproc_else_token1] = ACTIONS(4702), - [aux_sym_preproc_elif_token1] = ACTIONS(4702), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -468836,70 +480277,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3130), [sym_preproc_define] = STATE(3130), [sym_preproc_undef] = STATE(3130), - [anon_sym_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(3651), - [anon_sym_or] = ACTIONS(3651), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_into] = ACTIONS(3651), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3651), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -468909,70 +480355,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3131), [sym_preproc_define] = STATE(3131), [sym_preproc_undef] = STATE(3131), - [anon_sym_EQ] = ACTIONS(5220), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5222), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4684), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -468982,68 +480428,67 @@ 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_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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3133] = { [sym_preproc_region] = STATE(3133), @@ -469055,58 +480500,59 @@ 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(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4764), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_QMARK_QMARK] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469128,204 +480574,207 @@ 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(4114), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_LT] = ACTIONS(4114), - [anon_sym_GT] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_SLASH] = ACTIONS(4114), - [anon_sym_PERCENT] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_PIPE] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_LT] = ACTIONS(4114), - [anon_sym_GT_GT] = ACTIONS(4114), - [anon_sym_GT_GT_GT] = ACTIONS(4114), - [anon_sym_EQ_EQ] = ACTIONS(4112), - [anon_sym_BANG_EQ] = ACTIONS(4112), - [anon_sym_GT_EQ] = ACTIONS(4112), - [anon_sym_LT_EQ] = ACTIONS(4112), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_DOT_DOT] = ACTIONS(4112), - [anon_sym_and] = ACTIONS(4112), - [anon_sym_or] = ACTIONS(4112), - [anon_sym_PLUS_EQ] = ACTIONS(4112), - [anon_sym_DASH_EQ] = ACTIONS(4112), - [anon_sym_STAR_EQ] = ACTIONS(4112), - [anon_sym_SLASH_EQ] = ACTIONS(4112), - [anon_sym_PERCENT_EQ] = ACTIONS(4112), - [anon_sym_AMP_EQ] = ACTIONS(4112), - [anon_sym_CARET_EQ] = ACTIONS(4112), - [anon_sym_PIPE_EQ] = ACTIONS(4112), - [anon_sym_LT_LT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4112), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4112), - [anon_sym_AMP_AMP] = ACTIONS(4112), - [anon_sym_PIPE_PIPE] = ACTIONS(4112), - [anon_sym_QMARK_QMARK] = ACTIONS(4114), - [anon_sym_into] = ACTIONS(4112), - [anon_sym_as] = ACTIONS(4112), - [anon_sym_is] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4112), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4112), - }, - [3135] = { - [sym_preproc_region] = STATE(3135), - [sym_preproc_endregion] = STATE(3135), - [sym_preproc_line] = STATE(3135), - [sym_preproc_pragma] = STATE(3135), - [sym_preproc_nullable] = STATE(3135), - [sym_preproc_error] = STATE(3135), - [sym_preproc_warning] = STATE(3135), - [sym_preproc_define] = STATE(3135), - [sym_preproc_undef] = STATE(3135), - [anon_sym_EQ] = ACTIONS(4072), - [anon_sym_LBRACK] = ACTIONS(4070), - [anon_sym_COLON] = ACTIONS(4070), - [anon_sym_COMMA] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym_LT] = ACTIONS(4072), - [anon_sym_GT] = ACTIONS(4072), - [anon_sym_QMARK] = ACTIONS(4072), - [anon_sym_BANG] = ACTIONS(4072), - [anon_sym_PLUS_PLUS] = ACTIONS(4070), - [anon_sym_DASH_DASH] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_STAR] = ACTIONS(4072), - [anon_sym_SLASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_CARET] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(4072), - [anon_sym_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(4072), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_GT_GT_GT] = ACTIONS(4072), - [anon_sym_EQ_EQ] = ACTIONS(4070), - [anon_sym_BANG_EQ] = ACTIONS(4070), - [anon_sym_GT_EQ] = ACTIONS(4070), - [anon_sym_LT_EQ] = ACTIONS(4070), - [anon_sym_DOT] = ACTIONS(4072), - [anon_sym_switch] = ACTIONS(4070), - [anon_sym_DOT_DOT] = ACTIONS(4070), - [anon_sym_and] = ACTIONS(4070), - [anon_sym_or] = ACTIONS(4070), - [anon_sym_PLUS_EQ] = ACTIONS(4070), - [anon_sym_DASH_EQ] = ACTIONS(4070), - [anon_sym_STAR_EQ] = ACTIONS(4070), - [anon_sym_SLASH_EQ] = ACTIONS(4070), - [anon_sym_PERCENT_EQ] = ACTIONS(4070), - [anon_sym_AMP_EQ] = ACTIONS(4070), - [anon_sym_CARET_EQ] = ACTIONS(4070), - [anon_sym_PIPE_EQ] = ACTIONS(4070), - [anon_sym_LT_LT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4070), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4070), - [anon_sym_AMP_AMP] = ACTIONS(4070), - [anon_sym_PIPE_PIPE] = ACTIONS(4070), - [anon_sym_QMARK_QMARK] = ACTIONS(4072), - [anon_sym_into] = ACTIONS(4070), - [anon_sym_as] = ACTIONS(4070), - [anon_sym_is] = ACTIONS(4070), - [anon_sym_DASH_GT] = ACTIONS(4070), - [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(4070), - }, - [3136] = { - [sym_preproc_region] = STATE(3136), - [sym_preproc_endregion] = STATE(3136), - [sym_preproc_line] = STATE(3136), - [sym_preproc_pragma] = STATE(3136), - [sym_preproc_nullable] = STATE(3136), - [sym_preproc_error] = STATE(3136), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3135] = { + [sym_preproc_region] = STATE(3135), + [sym_preproc_endregion] = STATE(3135), + [sym_preproc_line] = STATE(3135), + [sym_preproc_pragma] = STATE(3135), + [sym_preproc_nullable] = STATE(3135), + [sym_preproc_error] = STATE(3135), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3136] = { + [sym_preproc_region] = STATE(3136), + [sym_preproc_endregion] = STATE(3136), + [sym_preproc_line] = STATE(3136), + [sym_preproc_pragma] = STATE(3136), + [sym_preproc_nullable] = STATE(3136), + [sym_preproc_error] = STATE(3136), [sym_preproc_warning] = STATE(3136), [sym_preproc_define] = STATE(3136), [sym_preproc_undef] = STATE(3136), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4768), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_QMARK_QMARK] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4768), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469338,6 +480787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3137] = { + [sym_block] = STATE(1970), [sym_preproc_region] = STATE(3137), [sym_preproc_endregion] = STATE(3137), [sym_preproc_line] = STATE(3137), @@ -469347,58 +480797,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), - [anon_sym_SEMI] = ACTIONS(4753), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_COLON] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_RBRACK] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_RPAREN] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_RBRACE] = ACTIONS(4753), - [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(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_AMP] = ACTIONS(4755), - [anon_sym_LT_LT] = ACTIONS(4753), - [anon_sym_GT_GT] = ACTIONS(4755), - [anon_sym_GT_GT_GT] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_EQ_GT] = ACTIONS(4753), - [anon_sym_switch] = ACTIONS(4753), - [anon_sym_when] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_and] = ACTIONS(4753), - [anon_sym_or] = ACTIONS(4753), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_QMARK_QMARK] = ACTIONS(4753), - [anon_sym_into] = ACTIONS(4753), - [anon_sym_on] = ACTIONS(4753), - [anon_sym_equals] = ACTIONS(4753), - [anon_sym_by] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4753), - [anon_sym_is] = ACTIONS(4753), - [anon_sym_DASH_GT] = ACTIONS(4753), - [anon_sym_with] = ACTIONS(4753), - [aux_sym_preproc_if_token3] = ACTIONS(4753), - [aux_sym_preproc_else_token1] = ACTIONS(4753), - [aux_sym_preproc_elif_token1] = ACTIONS(4753), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469411,6 +480861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3138] = { + [sym_initializer_expression] = STATE(3284), [sym_preproc_region] = STATE(3138), [sym_preproc_endregion] = STATE(3138), [sym_preproc_line] = STATE(3138), @@ -469420,58 +480871,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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469484,6 +480935,8 @@ 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_preproc_region] = STATE(3139), [sym_preproc_endregion] = STATE(3139), [sym_preproc_line] = STATE(3139), @@ -469493,58 +480946,57 @@ 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_EQ] = ACTIONS(5224), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5226), - [anon_sym_DASH_EQ] = ACTIONS(5226), - [anon_sym_STAR_EQ] = ACTIONS(5226), - [anon_sym_SLASH_EQ] = ACTIONS(5226), - [anon_sym_PERCENT_EQ] = ACTIONS(5226), - [anon_sym_AMP_EQ] = ACTIONS(5226), - [anon_sym_CARET_EQ] = ACTIONS(5226), - [anon_sym_PIPE_EQ] = ACTIONS(5226), - [anon_sym_LT_LT_EQ] = ACTIONS(5226), - [anon_sym_GT_GT_EQ] = ACTIONS(5226), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5226), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469566,58 +481018,59 @@ 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_SEMI] = ACTIONS(3627), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3625), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_when] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_into] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469630,7 +481083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3141] = { - [sym_type_argument_list] = STATE(3220), + [sym_type_argument_list] = STATE(3158), [sym_preproc_region] = STATE(3141), [sym_preproc_endregion] = STATE(3141), [sym_preproc_line] = STATE(3141), @@ -469640,57 +481093,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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(5199), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469703,8 +481157,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3142] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2738), + [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), @@ -469714,56 +481168,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(4723), - [anon_sym_LBRACK] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4723), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4723), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_CARET] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4723), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_GT_GT_GT] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4723), - [anon_sym_switch] = ACTIONS(4723), - [anon_sym_when] = ACTIONS(4723), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_and] = ACTIONS(4723), - [anon_sym_or] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_QMARK_QMARK] = ACTIONS(4723), - [anon_sym_on] = ACTIONS(4723), - [anon_sym_equals] = ACTIONS(4723), - [anon_sym_by] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4723), - [aux_sym_preproc_if_token3] = ACTIONS(4723), - [aux_sym_preproc_else_token1] = ACTIONS(4723), - [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469776,6 +481231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3143] = { + [sym_block] = STATE(2037), [sym_preproc_region] = STATE(3143), [sym_preproc_endregion] = STATE(3143), [sym_preproc_line] = STATE(3143), @@ -469785,58 +481241,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), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_QMARK_QMARK] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4768), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -469849,6 +481305,7 @@ 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), @@ -469858,58 +481315,58 @@ 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(3623), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3621), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_when] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_into] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), @@ -469922,6 +481379,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -469931,57 +481390,57 @@ 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(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [anon_sym_DQUOTE] = ACTIONS(4730), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), @@ -469994,6 +481453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3146] = { + [sym_initializer_expression] = STATE(3324), [sym_preproc_region] = STATE(3146), [sym_preproc_endregion] = STATE(3146), [sym_preproc_line] = STATE(3146), @@ -470003,57 +481463,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(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_COLON] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4948), - [anon_sym_QMARK] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4946), - [anon_sym_CARET] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4948), - [anon_sym_LT_LT] = ACTIONS(4946), - [anon_sym_GT_GT] = ACTIONS(4948), - [anon_sym_GT_GT_GT] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_EQ_GT] = ACTIONS(4946), - [anon_sym_switch] = ACTIONS(4946), - [anon_sym_when] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_and] = ACTIONS(4946), - [anon_sym_or] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_QMARK_QMARK] = ACTIONS(4946), - [anon_sym_into] = ACTIONS(4946), - [anon_sym_on] = ACTIONS(4946), - [anon_sym_equals] = ACTIONS(4946), - [anon_sym_by] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4946), - [anon_sym_DASH_GT] = ACTIONS(4946), - [anon_sym_with] = ACTIONS(4946), - [aux_sym_preproc_if_token3] = ACTIONS(4946), - [aux_sym_preproc_else_token1] = ACTIONS(4946), - [aux_sym_preproc_elif_token1] = ACTIONS(4946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470066,6 +481527,7 @@ 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), @@ -470075,57 +481537,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3147), [sym_preproc_define] = STATE(3147), [sym_preproc_undef] = STATE(3147), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), @@ -470136,6 +481598,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(3662), }, [3148] = { [sym_preproc_region] = STATE(3148), @@ -470147,57 +481610,59 @@ 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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(5228), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470219,57 +481684,59 @@ 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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3948), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470282,6 +481749,7 @@ 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), @@ -470291,57 +481759,58 @@ 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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(5228), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(3948), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470354,7 +481823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3151] = { - [sym_initializer_expression] = STATE(3281), [sym_preproc_region] = STATE(3151), [sym_preproc_endregion] = STATE(3151), [sym_preproc_line] = STATE(3151), @@ -470364,56 +481832,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(4780), - [anon_sym_LBRACK] = ACTIONS(4776), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(5234), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_PLUS_PLUS] = ACTIONS(4780), - [anon_sym_DASH_DASH] = ACTIONS(4780), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_GT_GT_GT] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_GT_EQ] = ACTIONS(4780), - [anon_sym_LT_EQ] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4780), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4780), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_QMARK_QMARK] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4780), - [anon_sym_with] = ACTIONS(4780), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470435,57 +481905,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(4986), - [anon_sym_LBRACK] = ACTIONS(4986), - [anon_sym_COLON] = ACTIONS(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_RBRACK] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_RPAREN] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_in] = ACTIONS(4988), - [anon_sym_QMARK] = ACTIONS(4988), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4986), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4986), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_GT_GT_GT] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_EQ_GT] = ACTIONS(4986), - [anon_sym_switch] = ACTIONS(4986), - [anon_sym_when] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_and] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_QMARK_QMARK] = ACTIONS(4986), - [anon_sym_into] = ACTIONS(4986), - [anon_sym_on] = ACTIONS(4986), - [anon_sym_equals] = ACTIONS(4986), - [anon_sym_by] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4986), - [anon_sym_is] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), - [anon_sym_with] = ACTIONS(4986), - [aux_sym_preproc_if_token3] = ACTIONS(4986), - [aux_sym_preproc_else_token1] = ACTIONS(4986), - [aux_sym_preproc_elif_token1] = ACTIONS(4986), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470498,7 +481969,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3153] = { - [sym_type_argument_list] = STATE(2868), [sym_preproc_region] = STATE(3153), [sym_preproc_endregion] = STATE(3153), [sym_preproc_line] = STATE(3153), @@ -470508,56 +481978,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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3600), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3600), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_COLON_COLON] = ACTIONS(5238), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470579,57 +482051,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_EQ] = ACTIONS(5240), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5242), - [anon_sym_DASH_EQ] = ACTIONS(5242), - [anon_sym_STAR_EQ] = ACTIONS(5242), - [anon_sym_SLASH_EQ] = ACTIONS(5242), - [anon_sym_PERCENT_EQ] = ACTIONS(5242), - [anon_sym_AMP_EQ] = ACTIONS(5242), - [anon_sym_CARET_EQ] = ACTIONS(5242), - [anon_sym_PIPE_EQ] = ACTIONS(5242), - [anon_sym_LT_LT_EQ] = ACTIONS(5242), - [anon_sym_GT_GT_EQ] = ACTIONS(5242), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5242), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5242), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470651,57 +482124,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_EQ] = ACTIONS(5244), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5246), - [anon_sym_DASH_EQ] = ACTIONS(5246), - [anon_sym_STAR_EQ] = ACTIONS(5246), - [anon_sym_SLASH_EQ] = ACTIONS(5246), - [anon_sym_PERCENT_EQ] = ACTIONS(5246), - [anon_sym_AMP_EQ] = ACTIONS(5246), - [anon_sym_CARET_EQ] = ACTIONS(5246), - [anon_sym_PIPE_EQ] = ACTIONS(5246), - [anon_sym_LT_LT_EQ] = ACTIONS(5246), - [anon_sym_GT_GT_EQ] = ACTIONS(5246), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5246), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5246), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470714,9 +482188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3156] = { - [sym_modifier] = STATE(3622), - [sym_identifier] = STATE(6211), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3156), [sym_preproc_endregion] = STATE(3156), [sym_preproc_line] = STATE(3156), @@ -470726,54 +482197,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3446), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4872), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_async] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_file] = ACTIONS(4878), - [anon_sym_fixed] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_new] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_partial] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_readonly] = ACTIONS(4872), - [anon_sym_required] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_virtual] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5248), - [anon_sym_set] = ACTIONS(5248), - [anon_sym_add] = ACTIONS(5248), - [anon_sym_remove] = ACTIONS(5248), - [anon_sym_init] = ACTIONS(5248), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -470795,67 +482270,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_SEMI] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3934), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(3932), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_when] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), }, [3158] = { [sym_preproc_region] = STATE(3158), @@ -470867,57 +482343,58 @@ 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(3938), - [anon_sym_LBRACK] = ACTIONS(3938), - [anon_sym_COLON] = ACTIONS(3938), - [anon_sym_COMMA] = ACTIONS(3938), - [anon_sym_RBRACK] = ACTIONS(3938), - [anon_sym_LPAREN] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3938), - [anon_sym_RBRACE] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3936), - [anon_sym_GT] = ACTIONS(3936), - [anon_sym_in] = ACTIONS(3938), - [anon_sym_QMARK] = ACTIONS(3936), - [anon_sym_BANG] = ACTIONS(3936), - [anon_sym_PLUS_PLUS] = ACTIONS(3938), - [anon_sym_DASH_DASH] = ACTIONS(3938), - [anon_sym_PLUS] = ACTIONS(3936), - [anon_sym_DASH] = ACTIONS(3936), - [anon_sym_STAR] = ACTIONS(3938), - [anon_sym_SLASH] = ACTIONS(3936), - [anon_sym_PERCENT] = ACTIONS(3938), - [anon_sym_CARET] = ACTIONS(3938), - [anon_sym_PIPE] = ACTIONS(3936), - [anon_sym_AMP] = ACTIONS(3936), - [anon_sym_LT_LT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_GT_GT_GT] = ACTIONS(3938), - [anon_sym_EQ_EQ] = ACTIONS(3938), - [anon_sym_BANG_EQ] = ACTIONS(3938), - [anon_sym_GT_EQ] = ACTIONS(3938), - [anon_sym_LT_EQ] = ACTIONS(3938), - [anon_sym_DOT] = ACTIONS(3936), - [anon_sym_EQ_GT] = ACTIONS(3938), - [anon_sym_switch] = ACTIONS(3938), - [anon_sym_when] = ACTIONS(3938), - [anon_sym_DOT_DOT] = ACTIONS(3938), - [anon_sym_and] = ACTIONS(3938), - [anon_sym_or] = ACTIONS(3938), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_QMARK_QMARK] = ACTIONS(3938), - [anon_sym_on] = ACTIONS(3938), - [anon_sym_equals] = ACTIONS(3938), - [anon_sym_by] = ACTIONS(3938), - [anon_sym_as] = ACTIONS(3938), - [anon_sym_is] = ACTIONS(3938), - [anon_sym_DASH_GT] = ACTIONS(3938), - [anon_sym_with] = ACTIONS(3938), - [aux_sym_preproc_if_token3] = ACTIONS(3938), - [aux_sym_preproc_else_token1] = ACTIONS(3938), - [aux_sym_preproc_elif_token1] = ACTIONS(3938), + [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), @@ -470939,67 +482416,68 @@ 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_SEMI] = ACTIONS(3942), - [anon_sym_LBRACK] = ACTIONS(3942), - [anon_sym_COLON] = ACTIONS(3942), - [anon_sym_COMMA] = ACTIONS(3942), - [anon_sym_RBRACK] = ACTIONS(3942), - [anon_sym_LPAREN] = ACTIONS(3942), - [anon_sym_RPAREN] = ACTIONS(3942), - [anon_sym_LBRACE] = ACTIONS(3942), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_LT] = ACTIONS(3940), - [anon_sym_GT] = ACTIONS(3940), - [anon_sym_in] = ACTIONS(3942), - [anon_sym_QMARK] = ACTIONS(3940), - [anon_sym_BANG] = ACTIONS(3940), - [anon_sym_PLUS_PLUS] = ACTIONS(3942), - [anon_sym_DASH_DASH] = ACTIONS(3942), - [anon_sym_PLUS] = ACTIONS(3940), - [anon_sym_DASH] = ACTIONS(3940), - [anon_sym_STAR] = ACTIONS(3942), - [anon_sym_SLASH] = ACTIONS(3940), - [anon_sym_PERCENT] = ACTIONS(3942), - [anon_sym_CARET] = ACTIONS(3942), - [anon_sym_PIPE] = ACTIONS(3940), - [anon_sym_AMP] = ACTIONS(3940), - [anon_sym_LT_LT] = ACTIONS(3942), - [anon_sym_GT_GT] = ACTIONS(3940), - [anon_sym_GT_GT_GT] = ACTIONS(3942), - [anon_sym_EQ_EQ] = ACTIONS(3942), - [anon_sym_BANG_EQ] = ACTIONS(3942), - [anon_sym_GT_EQ] = ACTIONS(3942), - [anon_sym_LT_EQ] = ACTIONS(3942), - [anon_sym_DOT] = ACTIONS(3940), - [anon_sym_EQ_GT] = ACTIONS(3942), - [anon_sym_switch] = ACTIONS(3942), - [anon_sym_when] = ACTIONS(3942), - [anon_sym_DOT_DOT] = ACTIONS(3942), - [anon_sym_and] = ACTIONS(3942), - [anon_sym_or] = ACTIONS(3942), - [anon_sym_AMP_AMP] = ACTIONS(3942), - [anon_sym_PIPE_PIPE] = ACTIONS(3942), - [anon_sym_QMARK_QMARK] = ACTIONS(3942), - [anon_sym_on] = ACTIONS(3942), - [anon_sym_equals] = ACTIONS(3942), - [anon_sym_by] = ACTIONS(3942), - [anon_sym_as] = ACTIONS(3942), - [anon_sym_is] = ACTIONS(3942), - [anon_sym_DASH_GT] = ACTIONS(3942), - [anon_sym_with] = ACTIONS(3942), - [aux_sym_preproc_if_token3] = ACTIONS(3942), - [aux_sym_preproc_else_token1] = ACTIONS(3942), - [aux_sym_preproc_elif_token1] = ACTIONS(3942), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -471011,57 +482489,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471083,67 +482562,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_SEMI] = ACTIONS(3946), - [anon_sym_LBRACK] = ACTIONS(3946), - [anon_sym_COLON] = ACTIONS(3946), - [anon_sym_COMMA] = ACTIONS(3946), - [anon_sym_RBRACK] = ACTIONS(3946), - [anon_sym_LPAREN] = ACTIONS(3946), - [anon_sym_RPAREN] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3946), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_LT] = ACTIONS(3944), - [anon_sym_GT] = ACTIONS(3944), - [anon_sym_in] = ACTIONS(3946), - [anon_sym_QMARK] = ACTIONS(3944), - [anon_sym_BANG] = ACTIONS(3944), - [anon_sym_PLUS_PLUS] = ACTIONS(3946), - [anon_sym_DASH_DASH] = ACTIONS(3946), - [anon_sym_PLUS] = ACTIONS(3944), - [anon_sym_DASH] = ACTIONS(3944), - [anon_sym_STAR] = ACTIONS(3946), - [anon_sym_SLASH] = ACTIONS(3944), - [anon_sym_PERCENT] = ACTIONS(3946), - [anon_sym_CARET] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_AMP] = ACTIONS(3944), - [anon_sym_LT_LT] = ACTIONS(3946), - [anon_sym_GT_GT] = ACTIONS(3944), - [anon_sym_GT_GT_GT] = ACTIONS(3946), - [anon_sym_EQ_EQ] = ACTIONS(3946), - [anon_sym_BANG_EQ] = ACTIONS(3946), - [anon_sym_GT_EQ] = ACTIONS(3946), - [anon_sym_LT_EQ] = ACTIONS(3946), - [anon_sym_DOT] = ACTIONS(3944), - [anon_sym_EQ_GT] = ACTIONS(3946), - [anon_sym_switch] = ACTIONS(3946), - [anon_sym_when] = ACTIONS(3946), - [anon_sym_DOT_DOT] = ACTIONS(3946), - [anon_sym_and] = ACTIONS(3946), - [anon_sym_or] = ACTIONS(3946), - [anon_sym_AMP_AMP] = ACTIONS(3946), - [anon_sym_PIPE_PIPE] = ACTIONS(3946), - [anon_sym_QMARK_QMARK] = ACTIONS(3946), - [anon_sym_on] = ACTIONS(3946), - [anon_sym_equals] = ACTIONS(3946), - [anon_sym_by] = ACTIONS(3946), - [anon_sym_as] = ACTIONS(3946), - [anon_sym_is] = ACTIONS(3946), - [anon_sym_DASH_GT] = ACTIONS(3946), - [anon_sym_with] = ACTIONS(3946), - [aux_sym_preproc_if_token3] = ACTIONS(3946), - [aux_sym_preproc_else_token1] = ACTIONS(3946), - [aux_sym_preproc_elif_token1] = ACTIONS(3946), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), }, [3162] = { [sym_preproc_region] = STATE(3162), @@ -471155,69 +482635,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3162), [sym_preproc_define] = STATE(3162), [sym_preproc_undef] = STATE(3162), - [anon_sym_EQ] = ACTIONS(5250), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5252), - [anon_sym_DASH_EQ] = ACTIONS(5252), - [anon_sym_STAR_EQ] = ACTIONS(5252), - [anon_sym_SLASH_EQ] = ACTIONS(5252), - [anon_sym_PERCENT_EQ] = ACTIONS(5252), - [anon_sym_AMP_EQ] = ACTIONS(5252), - [anon_sym_CARET_EQ] = ACTIONS(5252), - [anon_sym_PIPE_EQ] = ACTIONS(5252), - [anon_sym_LT_LT_EQ] = ACTIONS(5252), - [anon_sym_GT_GT_EQ] = ACTIONS(5252), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5252), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5252), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4684), + [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), }, [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), @@ -471227,57 +482710,56 @@ 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_EQ] = ACTIONS(5254), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5256), - [anon_sym_DASH_EQ] = ACTIONS(5256), - [anon_sym_STAR_EQ] = ACTIONS(5256), - [anon_sym_SLASH_EQ] = ACTIONS(5256), - [anon_sym_PERCENT_EQ] = ACTIONS(5256), - [anon_sym_AMP_EQ] = ACTIONS(5256), - [anon_sym_CARET_EQ] = ACTIONS(5256), - [anon_sym_PIPE_EQ] = ACTIONS(5256), - [anon_sym_LT_LT_EQ] = ACTIONS(5256), - [anon_sym_GT_GT_EQ] = ACTIONS(5256), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5256), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5256), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471299,57 +482781,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(4990), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_COLON] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_RBRACK] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_RPAREN] = ACTIONS(4990), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_in] = ACTIONS(4992), - [anon_sym_QMARK] = ACTIONS(4992), - [anon_sym_BANG] = ACTIONS(4992), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_GT_GT_GT] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_EQ_GT] = ACTIONS(4990), - [anon_sym_switch] = ACTIONS(4990), - [anon_sym_when] = ACTIONS(4990), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4990), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_QMARK_QMARK] = ACTIONS(4990), - [anon_sym_into] = ACTIONS(4990), - [anon_sym_on] = ACTIONS(4990), - [anon_sym_equals] = ACTIONS(4990), - [anon_sym_by] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4990), - [anon_sym_is] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [anon_sym_with] = ACTIONS(4990), - [aux_sym_preproc_if_token3] = ACTIONS(4990), - [aux_sym_preproc_else_token1] = ACTIONS(4990), - [aux_sym_preproc_elif_token1] = ACTIONS(4990), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471371,57 +482854,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3165), [sym_preproc_define] = STATE(3165), [sym_preproc_undef] = STATE(3165), - [anon_sym_SEMI] = ACTIONS(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_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), @@ -471432,6 +482915,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(4860), }, [3166] = { [sym_preproc_region] = STATE(3166), @@ -471443,57 +482927,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(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(5258), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1969), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_when] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1971), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), - [anon_sym_into] = ACTIONS(1971), - [anon_sym_on] = ACTIONS(1971), - [anon_sym_equals] = ACTIONS(1971), - [anon_sym_by] = ACTIONS(1971), - [anon_sym_as] = ACTIONS(1971), - [anon_sym_is] = ACTIONS(1971), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_with] = ACTIONS(1971), - [aux_sym_preproc_if_token3] = ACTIONS(1971), - [aux_sym_preproc_else_token1] = ACTIONS(1971), - [aux_sym_preproc_elif_token1] = ACTIONS(1971), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471506,6 +482991,7 @@ 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), @@ -471515,57 +483001,57 @@ 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(3863), - [anon_sym_LBRACK] = ACTIONS(3863), - [anon_sym_COLON] = ACTIONS(3863), - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym_RPAREN] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_RBRACE] = ACTIONS(3863), - [anon_sym_LT] = ACTIONS(3861), - [anon_sym_GT] = ACTIONS(3861), - [anon_sym_in] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3861), - [anon_sym_BANG] = ACTIONS(3861), - [anon_sym_PLUS_PLUS] = ACTIONS(3863), - [anon_sym_DASH_DASH] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3861), - [anon_sym_DASH] = ACTIONS(3861), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_SLASH] = ACTIONS(3861), - [anon_sym_PERCENT] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_PIPE] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT_LT] = ACTIONS(3863), - [anon_sym_GT_GT] = ACTIONS(3861), - [anon_sym_GT_GT_GT] = ACTIONS(3863), - [anon_sym_EQ_EQ] = ACTIONS(3863), - [anon_sym_BANG_EQ] = ACTIONS(3863), - [anon_sym_GT_EQ] = ACTIONS(3863), - [anon_sym_LT_EQ] = ACTIONS(3863), - [anon_sym_DOT] = ACTIONS(3861), - [anon_sym_EQ_GT] = ACTIONS(3863), - [anon_sym_switch] = ACTIONS(3863), - [anon_sym_when] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3863), - [anon_sym_and] = ACTIONS(3863), - [anon_sym_or] = ACTIONS(3863), - [anon_sym_AMP_AMP] = ACTIONS(3863), - [anon_sym_PIPE_PIPE] = ACTIONS(3863), - [anon_sym_QMARK_QMARK] = ACTIONS(3863), - [anon_sym_on] = ACTIONS(3863), - [anon_sym_equals] = ACTIONS(3863), - [anon_sym_by] = ACTIONS(3863), - [anon_sym_as] = ACTIONS(3863), - [anon_sym_is] = ACTIONS(3863), - [anon_sym_DASH_GT] = ACTIONS(3863), - [anon_sym_with] = ACTIONS(3863), - [aux_sym_preproc_if_token3] = ACTIONS(3863), - [aux_sym_preproc_else_token1] = ACTIONS(3863), - [aux_sym_preproc_elif_token1] = ACTIONS(3863), + [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), @@ -471578,6 +483064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3168] = { + [sym_initializer_expression] = STATE(3384), [sym_preproc_region] = STATE(3168), [sym_preproc_endregion] = STATE(3168), [sym_preproc_line] = STATE(3168), @@ -471587,57 +483074,57 @@ 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(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4837), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_CARET] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4835), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_EQ_GT] = ACTIONS(4835), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_QMARK_QMARK] = ACTIONS(4835), - [anon_sym_into] = ACTIONS(4835), - [anon_sym_on] = ACTIONS(4835), - [anon_sym_equals] = ACTIONS(4835), - [anon_sym_by] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_with] = ACTIONS(4835), - [aux_sym_preproc_if_token3] = ACTIONS(4835), - [aux_sym_preproc_else_token1] = ACTIONS(4835), - [aux_sym_preproc_elif_token1] = ACTIONS(4835), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471659,57 +483146,57 @@ 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_SEMI] = ACTIONS(3907), - [anon_sym_LBRACK] = ACTIONS(3907), - [anon_sym_COLON] = ACTIONS(3907), - [anon_sym_COMMA] = ACTIONS(3907), - [anon_sym_RBRACK] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym_RPAREN] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3907), - [anon_sym_RBRACE] = ACTIONS(3907), - [anon_sym_LT] = ACTIONS(3905), - [anon_sym_GT] = ACTIONS(3905), - [anon_sym_in] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3905), - [anon_sym_BANG] = ACTIONS(3905), - [anon_sym_PLUS_PLUS] = ACTIONS(3907), - [anon_sym_DASH_DASH] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3905), - [anon_sym_DASH] = ACTIONS(3905), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_SLASH] = ACTIONS(3905), - [anon_sym_PERCENT] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_PIPE] = ACTIONS(3905), - [anon_sym_AMP] = ACTIONS(3905), - [anon_sym_LT_LT] = ACTIONS(3907), - [anon_sym_GT_GT] = ACTIONS(3905), - [anon_sym_GT_GT_GT] = ACTIONS(3907), - [anon_sym_EQ_EQ] = ACTIONS(3907), - [anon_sym_BANG_EQ] = ACTIONS(3907), - [anon_sym_GT_EQ] = ACTIONS(3907), - [anon_sym_LT_EQ] = ACTIONS(3907), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_EQ_GT] = ACTIONS(3907), - [anon_sym_switch] = ACTIONS(3907), - [anon_sym_when] = ACTIONS(3907), - [anon_sym_DOT_DOT] = ACTIONS(3907), - [anon_sym_and] = ACTIONS(3907), - [anon_sym_or] = ACTIONS(3907), - [anon_sym_AMP_AMP] = ACTIONS(3907), - [anon_sym_PIPE_PIPE] = ACTIONS(3907), - [anon_sym_QMARK_QMARK] = ACTIONS(3907), - [anon_sym_on] = ACTIONS(3907), - [anon_sym_equals] = ACTIONS(3907), - [anon_sym_by] = ACTIONS(3907), - [anon_sym_as] = ACTIONS(3907), - [anon_sym_is] = ACTIONS(3907), - [anon_sym_DASH_GT] = ACTIONS(3907), - [anon_sym_with] = ACTIONS(3907), - [aux_sym_preproc_if_token3] = ACTIONS(3907), - [aux_sym_preproc_else_token1] = ACTIONS(3907), - [aux_sym_preproc_elif_token1] = ACTIONS(3907), + [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), @@ -471720,6 +483207,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(4199), }, [3170] = { [sym_preproc_region] = STATE(3170), @@ -471731,57 +483219,58 @@ 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(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_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), + [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), @@ -471803,57 +483292,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(4031), - [anon_sym_LBRACK] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4031), - [anon_sym_COMMA] = ACTIONS(4031), - [anon_sym_RBRACK] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym_RPAREN] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_LT] = ACTIONS(4029), - [anon_sym_GT] = ACTIONS(4029), - [anon_sym_in] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4029), - [anon_sym_BANG] = ACTIONS(4029), - [anon_sym_PLUS_PLUS] = ACTIONS(4031), - [anon_sym_DASH_DASH] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4029), - [anon_sym_DASH] = ACTIONS(4029), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_SLASH] = ACTIONS(4029), - [anon_sym_PERCENT] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_PIPE] = ACTIONS(4029), - [anon_sym_AMP] = ACTIONS(4029), - [anon_sym_LT_LT] = ACTIONS(4031), - [anon_sym_GT_GT] = ACTIONS(4029), - [anon_sym_GT_GT_GT] = ACTIONS(4031), - [anon_sym_EQ_EQ] = ACTIONS(4031), - [anon_sym_BANG_EQ] = ACTIONS(4031), - [anon_sym_GT_EQ] = ACTIONS(4031), - [anon_sym_LT_EQ] = ACTIONS(4031), - [anon_sym_DOT] = ACTIONS(4029), - [anon_sym_EQ_GT] = ACTIONS(4031), - [anon_sym_switch] = ACTIONS(4031), - [anon_sym_when] = ACTIONS(4031), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_and] = ACTIONS(4031), - [anon_sym_or] = ACTIONS(4031), - [anon_sym_AMP_AMP] = ACTIONS(4031), - [anon_sym_PIPE_PIPE] = ACTIONS(4031), - [anon_sym_QMARK_QMARK] = ACTIONS(4031), - [anon_sym_on] = ACTIONS(4031), - [anon_sym_equals] = ACTIONS(4031), - [anon_sym_by] = ACTIONS(4031), - [anon_sym_as] = ACTIONS(4031), - [anon_sym_is] = ACTIONS(4031), - [anon_sym_DASH_GT] = ACTIONS(4031), - [anon_sym_with] = ACTIONS(4031), - [aux_sym_preproc_if_token3] = ACTIONS(4031), - [aux_sym_preproc_else_token1] = ACTIONS(4031), - [aux_sym_preproc_elif_token1] = ACTIONS(4031), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471875,57 +483365,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3172), [sym_preproc_define] = STATE(3172), [sym_preproc_undef] = STATE(3172), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(5260), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -471947,67 +483438,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_SEMI] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_COLON] = ACTIONS(3642), - [anon_sym_COMMA] = ACTIONS(3642), - [anon_sym_RBRACK] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_RPAREN] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3631), - [anon_sym_GT] = ACTIONS(3631), - [anon_sym_in] = ACTIONS(3642), - [anon_sym_QMARK] = ACTIONS(3631), - [anon_sym_BANG] = ACTIONS(3631), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3631), - [anon_sym_DASH] = ACTIONS(3631), - [anon_sym_STAR] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3631), - [anon_sym_PERCENT] = ACTIONS(3642), - [anon_sym_CARET] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3631), - [anon_sym_AMP] = ACTIONS(3631), - [anon_sym_LT_LT] = ACTIONS(3642), - [anon_sym_GT_GT] = ACTIONS(3631), - [anon_sym_GT_GT_GT] = ACTIONS(3642), - [anon_sym_EQ_EQ] = ACTIONS(3642), - [anon_sym_BANG_EQ] = ACTIONS(3642), - [anon_sym_GT_EQ] = ACTIONS(3642), - [anon_sym_LT_EQ] = ACTIONS(3642), - [anon_sym_DOT] = ACTIONS(3631), - [anon_sym_EQ_GT] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_when] = ACTIONS(3642), - [anon_sym_DOT_DOT] = ACTIONS(3642), - [anon_sym_and] = ACTIONS(3642), - [anon_sym_or] = ACTIONS(3642), - [anon_sym_AMP_AMP] = ACTIONS(3642), - [anon_sym_PIPE_PIPE] = ACTIONS(3642), - [anon_sym_QMARK_QMARK] = ACTIONS(3642), - [anon_sym_on] = ACTIONS(3642), - [anon_sym_equals] = ACTIONS(3642), - [anon_sym_by] = ACTIONS(3642), - [anon_sym_as] = ACTIONS(3642), - [anon_sym_is] = ACTIONS(3642), - [anon_sym_DASH_GT] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3642), - [aux_sym_preproc_if_token3] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = 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), + [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), }, [3174] = { [sym_preproc_region] = STATE(3174), @@ -472019,57 +483511,58 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), @@ -472091,69 +483584,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3175), [sym_preproc_define] = STATE(3175), [sym_preproc_undef] = STATE(3175), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_RBRACK] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_in] = ACTIONS(4952), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4950), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_CARET] = ACTIONS(4950), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4952), - [anon_sym_GT_GT_GT] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_EQ_GT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4950), - [anon_sym_when] = ACTIONS(4950), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_and] = ACTIONS(4950), - [anon_sym_or] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_QMARK_QMARK] = ACTIONS(4950), - [anon_sym_into] = ACTIONS(4950), - [anon_sym_on] = ACTIONS(4950), - [anon_sym_equals] = ACTIONS(4950), - [anon_sym_by] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4950), - [anon_sym_DASH_GT] = ACTIONS(4950), - [anon_sym_with] = ACTIONS(4950), - [aux_sym_preproc_if_token3] = ACTIONS(4950), - [aux_sym_preproc_else_token1] = ACTIONS(4950), - [aux_sym_preproc_elif_token1] = ACTIONS(4950), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -472163,57 +483658,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3176), [sym_preproc_define] = STATE(3176), [sym_preproc_undef] = STATE(3176), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_in] = ACTIONS(4964), - [anon_sym_QMARK] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_when] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472235,57 +483730,58 @@ 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(4747), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_COLON] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_in] = ACTIONS(4747), - [anon_sym_QMARK] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_CARET] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_LT_LT] = ACTIONS(4747), - [anon_sym_GT_GT] = ACTIONS(4749), - [anon_sym_GT_GT_GT] = ACTIONS(4747), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_GT_EQ] = ACTIONS(4747), - [anon_sym_LT_EQ] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_EQ_GT] = ACTIONS(4747), - [anon_sym_switch] = ACTIONS(4747), - [anon_sym_when] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4747), - [anon_sym_and] = ACTIONS(4747), - [anon_sym_or] = ACTIONS(4747), - [anon_sym_AMP_AMP] = ACTIONS(4747), - [anon_sym_PIPE_PIPE] = ACTIONS(4747), - [anon_sym_QMARK_QMARK] = ACTIONS(4747), - [anon_sym_on] = ACTIONS(4747), - [anon_sym_equals] = ACTIONS(4747), - [anon_sym_by] = ACTIONS(4747), - [anon_sym_as] = ACTIONS(4747), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4747), - [anon_sym_with] = ACTIONS(4747), - [aux_sym_raw_string_literal_token1] = ACTIONS(5262), - [aux_sym_preproc_if_token3] = ACTIONS(4747), - [aux_sym_preproc_else_token1] = ACTIONS(4747), - [aux_sym_preproc_elif_token1] = ACTIONS(4747), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472307,57 +483803,58 @@ 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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472379,57 +483876,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3179), [sym_preproc_define] = STATE(3179), [sym_preproc_undef] = STATE(3179), - [anon_sym_SEMI] = ACTIONS(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_EQ_GT] = ACTIONS(5006), - [anon_sym_switch] = ACTIONS(5006), - [anon_sym_when] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_and] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_QMARK_QMARK] = ACTIONS(5006), - [anon_sym_into] = ACTIONS(5006), - [anon_sym_on] = ACTIONS(5006), - [anon_sym_equals] = ACTIONS(5006), - [anon_sym_by] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_with] = ACTIONS(5006), - [aux_sym_preproc_if_token3] = ACTIONS(5006), - [aux_sym_preproc_else_token1] = ACTIONS(5006), - [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472451,67 +483949,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_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_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), }, [3181] = { [sym_preproc_region] = STATE(3181), @@ -472523,57 +484022,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472595,57 +484095,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3182), [sym_preproc_define] = STATE(3182), [sym_preproc_undef] = STATE(3182), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(5266), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472667,57 +484168,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5268), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_struct] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_record] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472739,57 +484241,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3184), [sym_preproc_define] = STATE(3184), [sym_preproc_undef] = STATE(3184), - [anon_sym_SEMI] = ACTIONS(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_COLON] = ACTIONS(5270), - [anon_sym_COMMA] = ACTIONS(5270), - [anon_sym_RBRACK] = ACTIONS(5270), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_RPAREN] = ACTIONS(5270), - [anon_sym_RBRACE] = ACTIONS(5270), - [anon_sym_LT] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(5272), - [anon_sym_in] = ACTIONS(5272), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_BANG] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5270), - [anon_sym_DASH_DASH] = ACTIONS(5270), - [anon_sym_PLUS] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(5272), - [anon_sym_STAR] = ACTIONS(5270), - [anon_sym_SLASH] = ACTIONS(5272), - [anon_sym_PERCENT] = ACTIONS(5270), - [anon_sym_CARET] = ACTIONS(5270), - [anon_sym_PIPE] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(5272), - [anon_sym_LT_LT] = ACTIONS(5270), - [anon_sym_GT_GT] = ACTIONS(5272), - [anon_sym_GT_GT_GT] = ACTIONS(5270), - [anon_sym_EQ_EQ] = ACTIONS(5270), - [anon_sym_BANG_EQ] = ACTIONS(5270), - [anon_sym_GT_EQ] = ACTIONS(5270), - [anon_sym_LT_EQ] = ACTIONS(5270), - [anon_sym_DOT] = ACTIONS(5272), - [anon_sym_EQ_GT] = ACTIONS(5270), - [anon_sym_switch] = ACTIONS(5270), - [anon_sym_when] = ACTIONS(5270), - [anon_sym_DOT_DOT] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_or] = ACTIONS(5270), - [anon_sym_AMP_AMP] = ACTIONS(5270), - [anon_sym_PIPE_PIPE] = ACTIONS(5270), - [anon_sym_QMARK_QMARK] = ACTIONS(5270), - [anon_sym_into] = ACTIONS(5270), - [anon_sym_on] = ACTIONS(5270), - [anon_sym_equals] = ACTIONS(5270), - [anon_sym_by] = ACTIONS(5270), - [anon_sym_as] = ACTIONS(5270), - [anon_sym_is] = ACTIONS(5270), - [anon_sym_DASH_GT] = ACTIONS(5270), - [anon_sym_with] = ACTIONS(5270), - [aux_sym_preproc_if_token3] = ACTIONS(5270), - [aux_sym_preproc_else_token1] = ACTIONS(5270), - [aux_sym_preproc_elif_token1] = ACTIONS(5270), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472800,6 +484302,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(4134), }, [3185] = { [sym_preproc_region] = STATE(3185), @@ -472811,57 +484314,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(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4944), - [anon_sym_QMARK] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4942), - [anon_sym_CARET] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4944), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4944), - [anon_sym_GT_GT_GT] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_EQ_GT] = ACTIONS(4942), - [anon_sym_switch] = ACTIONS(4942), - [anon_sym_when] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_and] = ACTIONS(4942), - [anon_sym_or] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_QMARK_QMARK] = ACTIONS(4942), - [anon_sym_into] = ACTIONS(4942), - [anon_sym_on] = ACTIONS(4942), - [anon_sym_equals] = ACTIONS(4942), - [anon_sym_by] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4942), - [anon_sym_DASH_GT] = ACTIONS(4942), - [anon_sym_with] = ACTIONS(4942), - [aux_sym_preproc_if_token3] = ACTIONS(4942), - [aux_sym_preproc_else_token1] = ACTIONS(4942), - [aux_sym_preproc_elif_token1] = ACTIONS(4942), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472883,57 +484387,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3186), [sym_preproc_define] = STATE(3186), [sym_preproc_undef] = STATE(3186), - [anon_sym_SEMI] = ACTIONS(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_COLON] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_RBRACK] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_in] = ACTIONS(4956), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4954), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_CARET] = ACTIONS(4954), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(4956), - [anon_sym_LT_LT] = ACTIONS(4954), - [anon_sym_GT_GT] = ACTIONS(4956), - [anon_sym_GT_GT_GT] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_EQ_GT] = ACTIONS(4954), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_when] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_and] = ACTIONS(4954), - [anon_sym_or] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_QMARK_QMARK] = ACTIONS(4954), - [anon_sym_into] = ACTIONS(4954), - [anon_sym_on] = ACTIONS(4954), - [anon_sym_equals] = ACTIONS(4954), - [anon_sym_by] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4954), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4954), - [aux_sym_preproc_if_token3] = ACTIONS(4954), - [aux_sym_preproc_else_token1] = ACTIONS(4954), - [aux_sym_preproc_elif_token1] = ACTIONS(4954), + [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), @@ -472944,6 +484448,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(3445), }, [3187] = { [sym_preproc_region] = STATE(3187), @@ -472955,57 +484460,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3187), [sym_preproc_define] = STATE(3187), [sym_preproc_undef] = STATE(3187), - [anon_sym_SEMI] = ACTIONS(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_RBRACK] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_in] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4958), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4958), - [anon_sym_CARET] = ACTIONS(4958), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4960), - [anon_sym_LT_LT] = ACTIONS(4958), - [anon_sym_GT_GT] = ACTIONS(4960), - [anon_sym_GT_GT_GT] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_EQ_GT] = ACTIONS(4958), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_when] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_or] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_QMARK_QMARK] = ACTIONS(4958), - [anon_sym_into] = ACTIONS(4958), - [anon_sym_on] = ACTIONS(4958), - [anon_sym_equals] = ACTIONS(4958), - [anon_sym_by] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4958), - [anon_sym_DASH_GT] = ACTIONS(4958), - [anon_sym_with] = ACTIONS(4958), - [aux_sym_preproc_if_token3] = ACTIONS(4958), - [aux_sym_preproc_else_token1] = ACTIONS(4958), - [aux_sym_preproc_elif_token1] = ACTIONS(4958), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473027,67 +484533,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3188), [sym_preproc_define] = STATE(3188), [sym_preproc_undef] = STATE(3188), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_COLON] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2091), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_when] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_and] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_QMARK_QMARK] = ACTIONS(2089), - [anon_sym_into] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_equals] = ACTIONS(2089), - [anon_sym_by] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_DASH_GT] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [aux_sym_preproc_if_token3] = ACTIONS(2089), - [aux_sym_preproc_else_token1] = ACTIONS(2089), - [aux_sym_preproc_elif_token1] = ACTIONS(2089), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), @@ -473099,67 +484606,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3189), [sym_preproc_define] = STATE(3189), [sym_preproc_undef] = STATE(3189), - [anon_sym_SEMI] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), @@ -473171,57 +484679,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3190), [sym_preproc_define] = STATE(3190), [sym_preproc_undef] = STATE(3190), - [anon_sym_SEMI] = ACTIONS(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_EQ] = ACTIONS(4130), + [anon_sym_LBRACK] = ACTIONS(4128), + [anon_sym_COLON] = ACTIONS(4128), + [anon_sym_COMMA] = ACTIONS(4128), + [anon_sym_LPAREN] = ACTIONS(4128), + [anon_sym_LT] = ACTIONS(4130), + [anon_sym_GT] = ACTIONS(4130), + [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(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_into] = 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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473232,6 +484740,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(4128), }, [3191] = { [sym_preproc_region] = STATE(3191), @@ -473243,57 +484752,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(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_COLON] = ACTIONS(5062), - [anon_sym_COMMA] = ACTIONS(5062), - [anon_sym_RBRACK] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_LT] = ACTIONS(5064), - [anon_sym_GT] = ACTIONS(5064), - [anon_sym_in] = ACTIONS(5064), - [anon_sym_QMARK] = ACTIONS(5064), - [anon_sym_BANG] = ACTIONS(5064), - [anon_sym_PLUS_PLUS] = ACTIONS(5062), - [anon_sym_DASH_DASH] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_STAR] = ACTIONS(5062), - [anon_sym_SLASH] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_CARET] = ACTIONS(5062), - [anon_sym_PIPE] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LT_LT] = ACTIONS(5062), - [anon_sym_GT_GT] = ACTIONS(5064), - [anon_sym_GT_GT_GT] = ACTIONS(5062), - [anon_sym_EQ_EQ] = ACTIONS(5062), - [anon_sym_BANG_EQ] = ACTIONS(5062), - [anon_sym_GT_EQ] = ACTIONS(5062), - [anon_sym_LT_EQ] = ACTIONS(5062), - [anon_sym_DOT] = ACTIONS(5064), - [anon_sym_EQ_GT] = ACTIONS(5062), - [anon_sym_switch] = ACTIONS(5062), - [anon_sym_when] = ACTIONS(5062), - [anon_sym_DOT_DOT] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_or] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_PIPE_PIPE] = ACTIONS(5062), - [anon_sym_QMARK_QMARK] = ACTIONS(5062), - [anon_sym_into] = ACTIONS(5062), - [anon_sym_on] = ACTIONS(5062), - [anon_sym_equals] = ACTIONS(5062), - [anon_sym_by] = ACTIONS(5062), - [anon_sym_as] = ACTIONS(5062), - [anon_sym_is] = ACTIONS(5062), - [anon_sym_DASH_GT] = ACTIONS(5062), - [anon_sym_with] = ACTIONS(5062), - [aux_sym_preproc_if_token3] = ACTIONS(5062), - [aux_sym_preproc_else_token1] = ACTIONS(5062), - [aux_sym_preproc_elif_token1] = ACTIONS(5062), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473315,57 +484825,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3192), [sym_preproc_define] = STATE(3192), [sym_preproc_undef] = STATE(3192), - [anon_sym_SEMI] = ACTIONS(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), + [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), @@ -473378,6 +484889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3193] = { + [sym_initializer_expression] = STATE(3517), [sym_preproc_region] = STATE(3193), [sym_preproc_endregion] = STATE(3193), [sym_preproc_line] = STATE(3193), @@ -473387,57 +484899,57 @@ 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(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_when] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_QMARK_QMARK] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473450,6 +484962,8 @@ 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_preproc_region] = STATE(3194), [sym_preproc_endregion] = STATE(3194), [sym_preproc_line] = STATE(3194), @@ -473459,57 +484973,56 @@ 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(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_COLON] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5032), - [anon_sym_QMARK] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5030), - [anon_sym_CARET] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(5030), - [anon_sym_GT_GT] = ACTIONS(5032), - [anon_sym_GT_GT_GT] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_EQ_GT] = ACTIONS(5030), - [anon_sym_switch] = ACTIONS(5030), - [anon_sym_when] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_and] = ACTIONS(5030), - [anon_sym_or] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_QMARK_QMARK] = ACTIONS(5030), - [anon_sym_into] = ACTIONS(5030), - [anon_sym_on] = ACTIONS(5030), - [anon_sym_equals] = ACTIONS(5030), - [anon_sym_by] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5030), - [anon_sym_DASH_GT] = ACTIONS(5030), - [anon_sym_with] = ACTIONS(5030), - [aux_sym_preproc_if_token3] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5030), - [aux_sym_preproc_elif_token1] = ACTIONS(5030), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473531,57 +485044,58 @@ 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(5274), - [anon_sym_LBRACK] = ACTIONS(5274), - [anon_sym_COLON] = ACTIONS(5274), - [anon_sym_COMMA] = ACTIONS(5274), - [anon_sym_RBRACK] = ACTIONS(5274), - [anon_sym_LPAREN] = ACTIONS(5274), - [anon_sym_RPAREN] = ACTIONS(5274), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_LT] = ACTIONS(5276), - [anon_sym_GT] = ACTIONS(5276), - [anon_sym_in] = ACTIONS(5276), - [anon_sym_QMARK] = ACTIONS(5276), - [anon_sym_BANG] = ACTIONS(5276), - [anon_sym_PLUS_PLUS] = ACTIONS(5274), - [anon_sym_DASH_DASH] = ACTIONS(5274), - [anon_sym_PLUS] = ACTIONS(5276), - [anon_sym_DASH] = ACTIONS(5276), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_SLASH] = ACTIONS(5276), - [anon_sym_PERCENT] = ACTIONS(5274), - [anon_sym_CARET] = ACTIONS(5274), - [anon_sym_PIPE] = ACTIONS(5276), - [anon_sym_AMP] = ACTIONS(5276), - [anon_sym_LT_LT] = ACTIONS(5274), - [anon_sym_GT_GT] = ACTIONS(5276), - [anon_sym_GT_GT_GT] = ACTIONS(5274), - [anon_sym_EQ_EQ] = ACTIONS(5274), - [anon_sym_BANG_EQ] = ACTIONS(5274), - [anon_sym_GT_EQ] = ACTIONS(5274), - [anon_sym_LT_EQ] = ACTIONS(5274), - [anon_sym_DOT] = ACTIONS(5276), - [anon_sym_EQ_GT] = ACTIONS(5274), - [anon_sym_switch] = ACTIONS(5274), - [anon_sym_when] = ACTIONS(5274), - [anon_sym_DOT_DOT] = ACTIONS(5274), - [anon_sym_and] = ACTIONS(5274), - [anon_sym_or] = ACTIONS(5274), - [anon_sym_AMP_AMP] = ACTIONS(5274), - [anon_sym_PIPE_PIPE] = ACTIONS(5274), - [anon_sym_QMARK_QMARK] = ACTIONS(5274), - [anon_sym_into] = ACTIONS(5274), - [anon_sym_on] = ACTIONS(5274), - [anon_sym_equals] = ACTIONS(5274), - [anon_sym_by] = ACTIONS(5274), - [anon_sym_as] = ACTIONS(5274), - [anon_sym_is] = ACTIONS(5274), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5274), - [aux_sym_preproc_if_token3] = ACTIONS(5274), - [aux_sym_preproc_else_token1] = ACTIONS(5274), - [aux_sym_preproc_elif_token1] = ACTIONS(5274), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473603,57 +485117,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3196), [sym_preproc_define] = STATE(3196), [sym_preproc_undef] = STATE(3196), - [anon_sym_SEMI] = ACTIONS(5278), - [anon_sym_LBRACK] = ACTIONS(5278), - [anon_sym_COLON] = ACTIONS(5278), - [anon_sym_COMMA] = ACTIONS(5278), - [anon_sym_RBRACK] = ACTIONS(5278), - [anon_sym_LPAREN] = ACTIONS(5278), - [anon_sym_RPAREN] = ACTIONS(5278), - [anon_sym_RBRACE] = ACTIONS(5278), - [anon_sym_LT] = ACTIONS(5280), - [anon_sym_GT] = ACTIONS(5280), - [anon_sym_in] = ACTIONS(5280), - [anon_sym_QMARK] = ACTIONS(5280), - [anon_sym_BANG] = ACTIONS(5280), - [anon_sym_PLUS_PLUS] = ACTIONS(5278), - [anon_sym_DASH_DASH] = ACTIONS(5278), - [anon_sym_PLUS] = ACTIONS(5280), - [anon_sym_DASH] = ACTIONS(5280), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_SLASH] = ACTIONS(5280), - [anon_sym_PERCENT] = ACTIONS(5278), - [anon_sym_CARET] = ACTIONS(5278), - [anon_sym_PIPE] = ACTIONS(5280), - [anon_sym_AMP] = ACTIONS(5280), - [anon_sym_LT_LT] = ACTIONS(5278), - [anon_sym_GT_GT] = ACTIONS(5280), - [anon_sym_GT_GT_GT] = ACTIONS(5278), - [anon_sym_EQ_EQ] = ACTIONS(5278), - [anon_sym_BANG_EQ] = ACTIONS(5278), - [anon_sym_GT_EQ] = ACTIONS(5278), - [anon_sym_LT_EQ] = ACTIONS(5278), - [anon_sym_DOT] = ACTIONS(5280), - [anon_sym_EQ_GT] = ACTIONS(5278), - [anon_sym_switch] = ACTIONS(5278), - [anon_sym_when] = ACTIONS(5278), - [anon_sym_DOT_DOT] = ACTIONS(5278), - [anon_sym_and] = ACTIONS(5278), - [anon_sym_or] = ACTIONS(5278), - [anon_sym_AMP_AMP] = ACTIONS(5278), - [anon_sym_PIPE_PIPE] = ACTIONS(5278), - [anon_sym_QMARK_QMARK] = ACTIONS(5278), - [anon_sym_into] = ACTIONS(5278), - [anon_sym_on] = ACTIONS(5278), - [anon_sym_equals] = ACTIONS(5278), - [anon_sym_by] = ACTIONS(5278), - [anon_sym_as] = ACTIONS(5278), - [anon_sym_is] = ACTIONS(5278), - [anon_sym_DASH_GT] = ACTIONS(5278), - [anon_sym_with] = ACTIONS(5278), - [aux_sym_preproc_if_token3] = ACTIONS(5278), - [aux_sym_preproc_else_token1] = ACTIONS(5278), - [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473675,67 +485190,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3197), [sym_preproc_define] = STATE(3197), [sym_preproc_undef] = STATE(3197), - [anon_sym_SEMI] = ACTIONS(5282), - [anon_sym_LBRACK] = ACTIONS(5282), - [anon_sym_COLON] = ACTIONS(5282), - [anon_sym_COMMA] = ACTIONS(5282), - [anon_sym_RBRACK] = ACTIONS(5282), - [anon_sym_LPAREN] = ACTIONS(5282), - [anon_sym_RPAREN] = ACTIONS(5282), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_in] = ACTIONS(5284), - [anon_sym_QMARK] = ACTIONS(5284), - [anon_sym_BANG] = ACTIONS(5284), - [anon_sym_PLUS_PLUS] = ACTIONS(5282), - [anon_sym_DASH_DASH] = ACTIONS(5282), - [anon_sym_PLUS] = ACTIONS(5284), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_STAR] = ACTIONS(5282), - [anon_sym_SLASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5282), - [anon_sym_CARET] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5282), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_GT_GT_GT] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), - [anon_sym_GT_EQ] = ACTIONS(5282), - [anon_sym_LT_EQ] = ACTIONS(5282), - [anon_sym_DOT] = ACTIONS(5284), - [anon_sym_EQ_GT] = ACTIONS(5282), - [anon_sym_switch] = ACTIONS(5282), - [anon_sym_when] = ACTIONS(5282), - [anon_sym_DOT_DOT] = ACTIONS(5282), - [anon_sym_and] = ACTIONS(5282), - [anon_sym_or] = ACTIONS(5282), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_QMARK_QMARK] = ACTIONS(5282), - [anon_sym_into] = ACTIONS(5282), - [anon_sym_on] = ACTIONS(5282), - [anon_sym_equals] = ACTIONS(5282), - [anon_sym_by] = ACTIONS(5282), - [anon_sym_as] = ACTIONS(5282), - [anon_sym_is] = ACTIONS(5282), - [anon_sym_DASH_GT] = ACTIONS(5282), - [anon_sym_with] = ACTIONS(5282), - [aux_sym_preproc_if_token3] = ACTIONS(5282), - [aux_sym_preproc_else_token1] = ACTIONS(5282), - [aux_sym_preproc_elif_token1] = ACTIONS(5282), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), }, [3198] = { [sym_preproc_region] = STATE(3198), @@ -473747,57 +485263,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(4007), - [anon_sym_LBRACK] = ACTIONS(4007), - [anon_sym_COLON] = ACTIONS(4007), - [anon_sym_COMMA] = ACTIONS(4007), - [anon_sym_RBRACK] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym_RPAREN] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_LT] = ACTIONS(4005), - [anon_sym_GT] = ACTIONS(4005), - [anon_sym_in] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4005), - [anon_sym_BANG] = ACTIONS(4005), - [anon_sym_PLUS_PLUS] = ACTIONS(4007), - [anon_sym_DASH_DASH] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4005), - [anon_sym_DASH] = ACTIONS(4005), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_SLASH] = ACTIONS(4005), - [anon_sym_PERCENT] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_PIPE] = ACTIONS(4005), - [anon_sym_AMP] = ACTIONS(4005), - [anon_sym_LT_LT] = ACTIONS(4007), - [anon_sym_GT_GT] = ACTIONS(4005), - [anon_sym_GT_GT_GT] = ACTIONS(4007), - [anon_sym_EQ_EQ] = ACTIONS(4007), - [anon_sym_BANG_EQ] = ACTIONS(4007), - [anon_sym_GT_EQ] = ACTIONS(4007), - [anon_sym_LT_EQ] = ACTIONS(4007), - [anon_sym_DOT] = ACTIONS(4005), - [anon_sym_EQ_GT] = ACTIONS(4007), - [anon_sym_switch] = ACTIONS(4007), - [anon_sym_when] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(4007), - [anon_sym_and] = ACTIONS(4007), - [anon_sym_or] = ACTIONS(4007), - [anon_sym_AMP_AMP] = ACTIONS(4007), - [anon_sym_PIPE_PIPE] = ACTIONS(4007), - [anon_sym_QMARK_QMARK] = ACTIONS(4007), - [anon_sym_on] = ACTIONS(4007), - [anon_sym_equals] = ACTIONS(4007), - [anon_sym_by] = ACTIONS(4007), - [anon_sym_as] = ACTIONS(4007), - [anon_sym_is] = ACTIONS(4007), - [anon_sym_DASH_GT] = ACTIONS(4007), - [anon_sym_with] = ACTIONS(4007), - [aux_sym_preproc_if_token3] = ACTIONS(4007), - [aux_sym_preproc_else_token1] = ACTIONS(4007), - [aux_sym_preproc_elif_token1] = ACTIONS(4007), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473810,6 +485327,9 @@ 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), @@ -473819,57 +485339,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3199), [sym_preproc_define] = STATE(3199), [sym_preproc_undef] = STATE(3199), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_in] = ACTIONS(3660), - [anon_sym_QMARK] = ACTIONS(3653), - [anon_sym_BANG] = ACTIONS(3653), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3660), - [anon_sym_CARET] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_LT_LT] = ACTIONS(3660), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_GT_GT_GT] = ACTIONS(3660), - [anon_sym_EQ_EQ] = ACTIONS(3660), - [anon_sym_BANG_EQ] = ACTIONS(3660), - [anon_sym_GT_EQ] = ACTIONS(3660), - [anon_sym_LT_EQ] = ACTIONS(3660), - [anon_sym_DOT] = ACTIONS(3653), - [anon_sym_EQ_GT] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_when] = ACTIONS(3660), - [anon_sym_DOT_DOT] = ACTIONS(3660), - [anon_sym_and] = ACTIONS(3660), - [anon_sym_or] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_PIPE_PIPE] = ACTIONS(3660), - [anon_sym_QMARK_QMARK] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_equals] = ACTIONS(3660), - [anon_sym_by] = ACTIONS(3660), - [anon_sym_as] = ACTIONS(3660), - [anon_sym_is] = ACTIONS(3660), - [anon_sym_DASH_GT] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [aux_sym_preproc_if_token3] = ACTIONS(3660), - [aux_sym_preproc_else_token1] = ACTIONS(3660), - [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473891,57 +485409,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(4035), - [anon_sym_LBRACK] = ACTIONS(4035), - [anon_sym_COLON] = ACTIONS(4035), - [anon_sym_COMMA] = ACTIONS(4035), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym_RPAREN] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_RBRACE] = ACTIONS(4035), - [anon_sym_LT] = ACTIONS(4033), - [anon_sym_GT] = ACTIONS(4033), - [anon_sym_in] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(4033), - [anon_sym_BANG] = ACTIONS(4033), - [anon_sym_PLUS_PLUS] = ACTIONS(4035), - [anon_sym_DASH_DASH] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_SLASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(4033), - [anon_sym_AMP] = ACTIONS(4033), - [anon_sym_LT_LT] = ACTIONS(4035), - [anon_sym_GT_GT] = ACTIONS(4033), - [anon_sym_GT_GT_GT] = ACTIONS(4035), - [anon_sym_EQ_EQ] = ACTIONS(4035), - [anon_sym_BANG_EQ] = ACTIONS(4035), - [anon_sym_GT_EQ] = ACTIONS(4035), - [anon_sym_LT_EQ] = ACTIONS(4035), - [anon_sym_DOT] = ACTIONS(4033), - [anon_sym_EQ_GT] = ACTIONS(4035), - [anon_sym_switch] = ACTIONS(4035), - [anon_sym_when] = ACTIONS(4035), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_and] = ACTIONS(4035), - [anon_sym_or] = ACTIONS(4035), - [anon_sym_AMP_AMP] = ACTIONS(4035), - [anon_sym_PIPE_PIPE] = ACTIONS(4035), - [anon_sym_QMARK_QMARK] = ACTIONS(4035), - [anon_sym_on] = ACTIONS(4035), - [anon_sym_equals] = ACTIONS(4035), - [anon_sym_by] = ACTIONS(4035), - [anon_sym_as] = ACTIONS(4035), - [anon_sym_is] = ACTIONS(4035), - [anon_sym_DASH_GT] = ACTIONS(4035), - [anon_sym_with] = ACTIONS(4035), - [aux_sym_preproc_if_token3] = ACTIONS(4035), - [aux_sym_preproc_else_token1] = ACTIONS(4035), - [aux_sym_preproc_elif_token1] = ACTIONS(4035), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -473963,57 +485482,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(4056), - [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_LT] = ACTIONS(4054), - [anon_sym_GT] = ACTIONS(4054), - [anon_sym_in] = ACTIONS(4056), - [anon_sym_QMARK] = 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_EQ_GT] = ACTIONS(4056), - [anon_sym_switch] = ACTIONS(4056), - [anon_sym_when] = ACTIONS(4056), - [anon_sym_DOT_DOT] = ACTIONS(4056), - [anon_sym_and] = ACTIONS(4056), - [anon_sym_or] = ACTIONS(4056), - [anon_sym_AMP_AMP] = ACTIONS(4056), - [anon_sym_PIPE_PIPE] = ACTIONS(4056), - [anon_sym_QMARK_QMARK] = ACTIONS(4056), - [anon_sym_on] = ACTIONS(4056), - [anon_sym_equals] = ACTIONS(4056), - [anon_sym_by] = ACTIONS(4056), - [anon_sym_as] = ACTIONS(4056), - [anon_sym_is] = ACTIONS(4056), - [anon_sym_DASH_GT] = ACTIONS(4056), - [anon_sym_with] = ACTIONS(4056), - [aux_sym_preproc_if_token3] = ACTIONS(4056), - [aux_sym_preproc_else_token1] = ACTIONS(4056), - [aux_sym_preproc_elif_token1] = ACTIONS(4056), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474035,57 +485555,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(3743), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COLON] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_in] = ACTIONS(5286), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_EQ_GT] = ACTIONS(3743), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_when] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(3743), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_into] = ACTIONS(3743), - [anon_sym_on] = ACTIONS(3743), - [anon_sym_equals] = ACTIONS(3743), - [anon_sym_by] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(3743), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), - [aux_sym_preproc_if_token3] = ACTIONS(3743), - [aux_sym_preproc_else_token1] = ACTIONS(3743), - [aux_sym_preproc_elif_token1] = ACTIONS(3743), + [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), @@ -474107,57 +485628,58 @@ 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(5288), - [anon_sym_LBRACK] = ACTIONS(5288), - [anon_sym_COLON] = ACTIONS(5288), - [anon_sym_COMMA] = ACTIONS(5288), - [anon_sym_RBRACK] = ACTIONS(5288), - [anon_sym_LPAREN] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_in] = ACTIONS(5290), - [anon_sym_QMARK] = ACTIONS(5290), - [anon_sym_BANG] = ACTIONS(5290), - [anon_sym_PLUS_PLUS] = ACTIONS(5288), - [anon_sym_DASH_DASH] = ACTIONS(5288), - [anon_sym_PLUS] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(5290), - [anon_sym_STAR] = ACTIONS(5288), - [anon_sym_SLASH] = ACTIONS(5290), - [anon_sym_PERCENT] = ACTIONS(5288), - [anon_sym_CARET] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5290), - [anon_sym_GT_GT_GT] = ACTIONS(5288), - [anon_sym_EQ_EQ] = ACTIONS(5288), - [anon_sym_BANG_EQ] = ACTIONS(5288), - [anon_sym_GT_EQ] = ACTIONS(5288), - [anon_sym_LT_EQ] = ACTIONS(5288), - [anon_sym_DOT] = ACTIONS(5290), - [anon_sym_EQ_GT] = ACTIONS(5288), - [anon_sym_switch] = ACTIONS(5288), - [anon_sym_when] = ACTIONS(5288), - [anon_sym_DOT_DOT] = ACTIONS(5288), - [anon_sym_and] = ACTIONS(5288), - [anon_sym_or] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_QMARK_QMARK] = ACTIONS(5288), - [anon_sym_into] = ACTIONS(5288), - [anon_sym_on] = ACTIONS(5288), - [anon_sym_equals] = ACTIONS(5288), - [anon_sym_by] = ACTIONS(5288), - [anon_sym_as] = ACTIONS(5288), - [anon_sym_is] = ACTIONS(5288), - [anon_sym_DASH_GT] = ACTIONS(5288), - [anon_sym_with] = ACTIONS(5288), - [aux_sym_preproc_if_token3] = ACTIONS(5288), - [aux_sym_preproc_else_token1] = ACTIONS(5288), - [aux_sym_preproc_elif_token1] = ACTIONS(5288), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474179,57 +485701,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3204), [sym_preproc_define] = STATE(3204), [sym_preproc_undef] = STATE(3204), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LBRACK] = ACTIONS(5292), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_RBRACK] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_in] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_EQ_GT] = ACTIONS(5292), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_when] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_into] = ACTIONS(5292), - [anon_sym_on] = ACTIONS(5292), - [anon_sym_equals] = ACTIONS(5292), - [anon_sym_by] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5292), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), - [aux_sym_preproc_if_token3] = ACTIONS(5292), - [aux_sym_preproc_else_token1] = ACTIONS(5292), - [aux_sym_preproc_elif_token1] = ACTIONS(5292), + [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), @@ -474240,6 +485762,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(3662), }, [3205] = { [sym_preproc_region] = STATE(3205), @@ -474251,57 +485774,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(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(5000), - [anon_sym_QMARK] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_GT_GT_GT] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_switch] = ACTIONS(4998), - [anon_sym_when] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_QMARK_QMARK] = ACTIONS(4998), - [anon_sym_into] = ACTIONS(4998), - [anon_sym_on] = ACTIONS(4998), - [anon_sym_equals] = ACTIONS(4998), - [anon_sym_by] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [anon_sym_with] = ACTIONS(4998), - [aux_sym_preproc_if_token3] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474323,57 +485847,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3206), [sym_preproc_define] = STATE(3206), [sym_preproc_undef] = STATE(3206), - [anon_sym_SEMI] = ACTIONS(5292), - [anon_sym_LBRACK] = ACTIONS(5292), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_RBRACK] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_in] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_EQ_GT] = ACTIONS(5292), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_when] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_into] = ACTIONS(5292), - [anon_sym_on] = ACTIONS(5292), - [anon_sym_equals] = ACTIONS(5292), - [anon_sym_by] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5292), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), - [aux_sym_preproc_if_token3] = ACTIONS(5292), - [aux_sym_preproc_else_token1] = ACTIONS(5292), - [aux_sym_preproc_elif_token1] = ACTIONS(5292), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474395,57 +485920,58 @@ 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(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_COMMA] = ACTIONS(3608), - [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_RPAREN] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_GT] = ACTIONS(3606), - [anon_sym_in] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_PIPE] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3606), - [anon_sym_GT_GT_GT] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3608), - [anon_sym_BANG_EQ] = ACTIONS(3608), - [anon_sym_GT_EQ] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3608), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_EQ_GT] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_when] = ACTIONS(3608), - [anon_sym_DOT_DOT] = ACTIONS(3608), - [anon_sym_and] = ACTIONS(3608), - [anon_sym_or] = ACTIONS(3608), - [anon_sym_AMP_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3608), - [anon_sym_QMARK_QMARK] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_equals] = ACTIONS(3608), - [anon_sym_by] = ACTIONS(3608), - [anon_sym_as] = ACTIONS(3608), - [anon_sym_is] = ACTIONS(3608), - [anon_sym_DASH_GT] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [aux_sym_preproc_if_token3] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), + [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), @@ -474467,57 +485993,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), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_COLON] = ACTIONS(3612), - [anon_sym_COMMA] = ACTIONS(3612), - [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_RPAREN] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_GT] = ACTIONS(3610), - [anon_sym_in] = ACTIONS(3612), - [anon_sym_QMARK] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_STAR] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_PERCENT] = ACTIONS(3612), - [anon_sym_CARET] = ACTIONS(3612), - [anon_sym_PIPE] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_LT_LT] = ACTIONS(3612), - [anon_sym_GT_GT] = ACTIONS(3610), - [anon_sym_GT_GT_GT] = ACTIONS(3612), - [anon_sym_EQ_EQ] = ACTIONS(3612), - [anon_sym_BANG_EQ] = ACTIONS(3612), - [anon_sym_GT_EQ] = ACTIONS(3612), - [anon_sym_LT_EQ] = ACTIONS(3612), - [anon_sym_DOT] = ACTIONS(3610), - [anon_sym_EQ_GT] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_when] = ACTIONS(3612), - [anon_sym_DOT_DOT] = ACTIONS(3612), - [anon_sym_and] = ACTIONS(3612), - [anon_sym_or] = ACTIONS(3612), - [anon_sym_AMP_AMP] = ACTIONS(3612), - [anon_sym_PIPE_PIPE] = ACTIONS(3612), - [anon_sym_QMARK_QMARK] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_equals] = ACTIONS(3612), - [anon_sym_by] = ACTIONS(3612), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_is] = ACTIONS(3612), - [anon_sym_DASH_GT] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [aux_sym_preproc_if_token3] = ACTIONS(3612), - [aux_sym_preproc_else_token1] = ACTIONS(3612), - [aux_sym_preproc_elif_token1] = ACTIONS(3612), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474539,57 +486066,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(3623), - [anon_sym_LBRACK] = ACTIONS(3623), - [anon_sym_COLON] = ACTIONS(3623), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_RBRACK] = ACTIONS(3623), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3623), - [anon_sym_LT] = ACTIONS(3621), - [anon_sym_GT] = ACTIONS(3621), - [anon_sym_in] = ACTIONS(3623), - [anon_sym_QMARK] = ACTIONS(3621), - [anon_sym_BANG] = ACTIONS(3621), - [anon_sym_PLUS_PLUS] = ACTIONS(3623), - [anon_sym_DASH_DASH] = ACTIONS(3623), - [anon_sym_PLUS] = ACTIONS(3621), - [anon_sym_DASH] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3623), - [anon_sym_SLASH] = ACTIONS(3621), - [anon_sym_PERCENT] = ACTIONS(3623), - [anon_sym_CARET] = ACTIONS(3623), - [anon_sym_PIPE] = ACTIONS(3621), - [anon_sym_AMP] = ACTIONS(3621), - [anon_sym_LT_LT] = ACTIONS(3623), - [anon_sym_GT_GT] = ACTIONS(3621), - [anon_sym_GT_GT_GT] = ACTIONS(3623), - [anon_sym_EQ_EQ] = ACTIONS(3623), - [anon_sym_BANG_EQ] = ACTIONS(3623), - [anon_sym_GT_EQ] = ACTIONS(3623), - [anon_sym_LT_EQ] = ACTIONS(3623), - [anon_sym_DOT] = ACTIONS(3621), - [anon_sym_EQ_GT] = ACTIONS(3623), - [anon_sym_switch] = ACTIONS(3623), - [anon_sym_when] = ACTIONS(3623), - [anon_sym_DOT_DOT] = ACTIONS(3623), - [anon_sym_and] = ACTIONS(3623), - [anon_sym_or] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3623), - [anon_sym_PIPE_PIPE] = ACTIONS(3623), - [anon_sym_QMARK_QMARK] = ACTIONS(3623), - [anon_sym_on] = ACTIONS(3623), - [anon_sym_equals] = ACTIONS(3623), - [anon_sym_by] = ACTIONS(3623), - [anon_sym_as] = ACTIONS(3623), - [anon_sym_is] = ACTIONS(3623), - [anon_sym_DASH_GT] = ACTIONS(3623), - [anon_sym_with] = ACTIONS(3623), - [aux_sym_preproc_if_token3] = ACTIONS(3623), - [aux_sym_preproc_else_token1] = ACTIONS(3623), - [aux_sym_preproc_elif_token1] = ACTIONS(3623), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474602,9 +486130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3210] = { - [sym_modifier] = STATE(3622), - [sym_identifier] = STATE(6250), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3210), [sym_preproc_endregion] = STATE(3210), [sym_preproc_line] = STATE(3210), @@ -474614,64 +486139,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3446), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(4872), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_abstract] = ACTIONS(4872), - [anon_sym_async] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_file] = ACTIONS(4878), - [anon_sym_fixed] = ACTIONS(4872), - [anon_sym_internal] = ACTIONS(4872), - [anon_sym_new] = ACTIONS(4872), - [anon_sym_override] = ACTIONS(4872), - [anon_sym_partial] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [anon_sym_readonly] = ACTIONS(4872), - [anon_sym_required] = ACTIONS(4872), - [anon_sym_sealed] = ACTIONS(4872), - [anon_sym_virtual] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_get] = ACTIONS(5145), - [anon_sym_set] = ACTIONS(5145), - [anon_sym_add] = ACTIONS(5145), - [anon_sym_remove] = ACTIONS(5145), - [anon_sym_init] = ACTIONS(5145), - [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), + [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), }, [3211] = { [sym_preproc_region] = STATE(3211), @@ -474683,57 +486212,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(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(3954), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACK] = ACTIONS(3954), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym_RPAREN] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3954), - [anon_sym_LT] = ACTIONS(3952), - [anon_sym_GT] = ACTIONS(3952), - [anon_sym_in] = ACTIONS(3954), - [anon_sym_QMARK] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3954), - [anon_sym_SLASH] = ACTIONS(3952), - [anon_sym_PERCENT] = ACTIONS(3954), - [anon_sym_CARET] = ACTIONS(3954), - [anon_sym_PIPE] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3952), - [anon_sym_LT_LT] = ACTIONS(3954), - [anon_sym_GT_GT] = ACTIONS(3952), - [anon_sym_GT_GT_GT] = ACTIONS(3954), - [anon_sym_EQ_EQ] = ACTIONS(3954), - [anon_sym_BANG_EQ] = ACTIONS(3954), - [anon_sym_GT_EQ] = ACTIONS(3954), - [anon_sym_LT_EQ] = ACTIONS(3954), - [anon_sym_DOT] = ACTIONS(3952), - [anon_sym_EQ_GT] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_when] = ACTIONS(3954), - [anon_sym_DOT_DOT] = ACTIONS(3954), - [anon_sym_and] = ACTIONS(3954), - [anon_sym_or] = ACTIONS(3954), - [anon_sym_AMP_AMP] = ACTIONS(3954), - [anon_sym_PIPE_PIPE] = ACTIONS(3954), - [anon_sym_QMARK_QMARK] = ACTIONS(3954), - [anon_sym_on] = ACTIONS(3954), - [anon_sym_equals] = ACTIONS(3954), - [anon_sym_by] = ACTIONS(3954), - [anon_sym_as] = ACTIONS(3954), - [anon_sym_is] = ACTIONS(3954), - [anon_sym_DASH_GT] = ACTIONS(3954), - [anon_sym_with] = ACTIONS(3954), - [aux_sym_preproc_if_token3] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -474755,57 +486285,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3212), [sym_preproc_define] = STATE(3212), [sym_preproc_undef] = STATE(3212), - [anon_sym_SEMI] = ACTIONS(4049), - [anon_sym_LBRACK] = ACTIONS(4049), - [anon_sym_COLON] = ACTIONS(4049), - [anon_sym_COMMA] = ACTIONS(4049), - [anon_sym_RBRACK] = ACTIONS(4049), - [anon_sym_LPAREN] = ACTIONS(4049), - [anon_sym_RPAREN] = ACTIONS(4049), - [anon_sym_LBRACE] = ACTIONS(4049), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_LT] = ACTIONS(4047), - [anon_sym_GT] = ACTIONS(4047), - [anon_sym_in] = ACTIONS(4049), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_PLUS_PLUS] = ACTIONS(4049), - [anon_sym_DASH_DASH] = ACTIONS(4049), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4049), - [anon_sym_SLASH] = ACTIONS(4047), - [anon_sym_PERCENT] = ACTIONS(4049), - [anon_sym_CARET] = ACTIONS(4049), - [anon_sym_PIPE] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_LT] = ACTIONS(4049), - [anon_sym_GT_GT] = ACTIONS(4047), - [anon_sym_GT_GT_GT] = ACTIONS(4049), - [anon_sym_EQ_EQ] = ACTIONS(4049), - [anon_sym_BANG_EQ] = ACTIONS(4049), - [anon_sym_GT_EQ] = ACTIONS(4049), - [anon_sym_LT_EQ] = ACTIONS(4049), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_EQ_GT] = ACTIONS(4049), - [anon_sym_switch] = ACTIONS(4049), - [anon_sym_when] = ACTIONS(4049), - [anon_sym_DOT_DOT] = ACTIONS(4049), - [anon_sym_and] = ACTIONS(4049), - [anon_sym_or] = ACTIONS(4049), - [anon_sym_AMP_AMP] = ACTIONS(4049), - [anon_sym_PIPE_PIPE] = ACTIONS(4049), - [anon_sym_QMARK_QMARK] = ACTIONS(4049), - [anon_sym_on] = ACTIONS(4049), - [anon_sym_equals] = ACTIONS(4049), - [anon_sym_by] = ACTIONS(4049), - [anon_sym_as] = ACTIONS(4049), - [anon_sym_is] = ACTIONS(4049), - [anon_sym_DASH_GT] = ACTIONS(4049), - [anon_sym_with] = ACTIONS(4049), - [aux_sym_preproc_if_token3] = ACTIONS(4049), - [aux_sym_preproc_else_token1] = ACTIONS(4049), - [aux_sym_preproc_elif_token1] = ACTIONS(4049), + [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), @@ -474816,6 +486346,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(3677), }, [3213] = { [sym_preproc_region] = STATE(3213), @@ -474827,67 +486358,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3213), [sym_preproc_define] = STATE(3213), [sym_preproc_undef] = STATE(3213), - [anon_sym_SEMI] = ACTIONS(5296), - [anon_sym_LBRACK] = ACTIONS(5296), - [anon_sym_COLON] = ACTIONS(5296), - [anon_sym_COMMA] = ACTIONS(5296), - [anon_sym_RBRACK] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_RPAREN] = ACTIONS(5296), - [anon_sym_RBRACE] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5298), - [anon_sym_GT] = ACTIONS(5298), - [anon_sym_in] = ACTIONS(5298), - [anon_sym_QMARK] = ACTIONS(5298), - [anon_sym_BANG] = ACTIONS(5298), - [anon_sym_PLUS_PLUS] = ACTIONS(5296), - [anon_sym_DASH_DASH] = ACTIONS(5296), - [anon_sym_PLUS] = ACTIONS(5298), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_SLASH] = ACTIONS(5298), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_CARET] = ACTIONS(5296), - [anon_sym_PIPE] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym_LT_LT] = ACTIONS(5296), - [anon_sym_GT_GT] = ACTIONS(5298), - [anon_sym_GT_GT_GT] = ACTIONS(5296), - [anon_sym_EQ_EQ] = ACTIONS(5296), - [anon_sym_BANG_EQ] = ACTIONS(5296), - [anon_sym_GT_EQ] = ACTIONS(5296), - [anon_sym_LT_EQ] = ACTIONS(5296), - [anon_sym_DOT] = ACTIONS(5298), - [anon_sym_EQ_GT] = ACTIONS(5296), - [anon_sym_switch] = ACTIONS(5296), - [anon_sym_when] = ACTIONS(5296), - [anon_sym_DOT_DOT] = ACTIONS(5296), - [anon_sym_and] = ACTIONS(5296), - [anon_sym_or] = ACTIONS(5296), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_PIPE_PIPE] = ACTIONS(5296), - [anon_sym_QMARK_QMARK] = ACTIONS(5296), - [anon_sym_into] = ACTIONS(5296), - [anon_sym_on] = ACTIONS(5296), - [anon_sym_equals] = ACTIONS(5296), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_as] = ACTIONS(5296), - [anon_sym_is] = ACTIONS(5296), - [anon_sym_DASH_GT] = ACTIONS(5296), - [anon_sym_with] = ACTIONS(5296), - [aux_sym_preproc_if_token3] = ACTIONS(5296), - [aux_sym_preproc_else_token1] = ACTIONS(5296), - [aux_sym_preproc_elif_token1] = ACTIONS(5296), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_preproc_region] = STATE(3214), @@ -474899,67 +486431,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3214), [sym_preproc_define] = STATE(3214), [sym_preproc_undef] = STATE(3214), - [anon_sym_SEMI] = ACTIONS(5300), - [anon_sym_LBRACK] = ACTIONS(5300), - [anon_sym_COLON] = ACTIONS(5300), - [anon_sym_COMMA] = ACTIONS(5300), - [anon_sym_RBRACK] = ACTIONS(5300), - [anon_sym_LPAREN] = ACTIONS(5300), - [anon_sym_RPAREN] = ACTIONS(5300), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_LT] = ACTIONS(5302), - [anon_sym_GT] = ACTIONS(5302), - [anon_sym_in] = ACTIONS(5302), - [anon_sym_QMARK] = ACTIONS(5302), - [anon_sym_BANG] = ACTIONS(5302), - [anon_sym_PLUS_PLUS] = ACTIONS(5300), - [anon_sym_DASH_DASH] = ACTIONS(5300), - [anon_sym_PLUS] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_SLASH] = ACTIONS(5302), - [anon_sym_PERCENT] = ACTIONS(5300), - [anon_sym_CARET] = ACTIONS(5300), - [anon_sym_PIPE] = ACTIONS(5302), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym_LT_LT] = ACTIONS(5300), - [anon_sym_GT_GT] = ACTIONS(5302), - [anon_sym_GT_GT_GT] = ACTIONS(5300), - [anon_sym_EQ_EQ] = ACTIONS(5300), - [anon_sym_BANG_EQ] = ACTIONS(5300), - [anon_sym_GT_EQ] = ACTIONS(5300), - [anon_sym_LT_EQ] = ACTIONS(5300), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_EQ_GT] = ACTIONS(5300), - [anon_sym_switch] = ACTIONS(5300), - [anon_sym_when] = ACTIONS(5300), - [anon_sym_DOT_DOT] = ACTIONS(5300), - [anon_sym_and] = ACTIONS(5300), - [anon_sym_or] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_PIPE_PIPE] = ACTIONS(5300), - [anon_sym_QMARK_QMARK] = ACTIONS(5300), - [anon_sym_into] = ACTIONS(5300), - [anon_sym_on] = ACTIONS(5300), - [anon_sym_equals] = ACTIONS(5300), - [anon_sym_by] = ACTIONS(5300), - [anon_sym_as] = ACTIONS(5300), - [anon_sym_is] = ACTIONS(5300), - [anon_sym_DASH_GT] = ACTIONS(5300), - [anon_sym_with] = ACTIONS(5300), - [aux_sym_preproc_if_token3] = ACTIONS(5300), - [aux_sym_preproc_else_token1] = ACTIONS(5300), - [aux_sym_preproc_elif_token1] = ACTIONS(5300), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -474971,57 +486504,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(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_when] = ACTIONS(3083), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_and] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_QMARK_QMARK] = ACTIONS(3083), - [anon_sym_into] = ACTIONS(3083), - [anon_sym_on] = ACTIONS(3083), - [anon_sym_equals] = ACTIONS(3083), - [anon_sym_by] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_with] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475034,6 +486568,7 @@ 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), @@ -475043,57 +486578,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(4799), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_RPAREN] = ACTIONS(4799), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_LT] = ACTIONS(4801), - [anon_sym_GT] = ACTIONS(4801), - [anon_sym_in] = ACTIONS(4801), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_PLUS_PLUS] = ACTIONS(4799), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_LT] = ACTIONS(4799), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_GT_GT_GT] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4799), - [anon_sym_BANG_EQ] = ACTIONS(4799), - [anon_sym_GT_EQ] = ACTIONS(4799), - [anon_sym_LT_EQ] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_EQ_GT] = ACTIONS(4799), - [anon_sym_switch] = ACTIONS(4799), - [anon_sym_when] = ACTIONS(4799), - [anon_sym_DOT_DOT] = ACTIONS(4799), - [anon_sym_and] = ACTIONS(4799), - [anon_sym_or] = ACTIONS(4799), - [anon_sym_AMP_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4799), - [anon_sym_QMARK_QMARK] = ACTIONS(4799), - [anon_sym_into] = ACTIONS(4799), - [anon_sym_on] = ACTIONS(4799), - [anon_sym_equals] = ACTIONS(4799), - [anon_sym_by] = ACTIONS(4799), - [anon_sym_as] = ACTIONS(4799), - [anon_sym_is] = ACTIONS(4799), - [anon_sym_DASH_GT] = ACTIONS(4799), - [anon_sym_with] = ACTIONS(4799), - [aux_sym_preproc_if_token3] = ACTIONS(4799), - [aux_sym_preproc_else_token1] = ACTIONS(4799), - [aux_sym_preproc_elif_token1] = ACTIONS(4799), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475115,69 +486650,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3217), [sym_preproc_define] = STATE(3217), [sym_preproc_undef] = STATE(3217), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym_LBRACK] = ACTIONS(3928), - [anon_sym_COLON] = ACTIONS(3928), - [anon_sym_COMMA] = ACTIONS(3928), - [anon_sym_RBRACK] = ACTIONS(3928), - [anon_sym_LPAREN] = ACTIONS(3928), - [anon_sym_RPAREN] = ACTIONS(3928), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_LT] = ACTIONS(3926), - [anon_sym_GT] = ACTIONS(3926), - [anon_sym_in] = ACTIONS(3928), - [anon_sym_QMARK] = ACTIONS(3926), - [anon_sym_BANG] = ACTIONS(3926), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS] = ACTIONS(3926), - [anon_sym_DASH] = ACTIONS(3926), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_SLASH] = ACTIONS(3926), - [anon_sym_PERCENT] = ACTIONS(3928), - [anon_sym_CARET] = ACTIONS(3928), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_AMP] = ACTIONS(3926), - [anon_sym_LT_LT] = ACTIONS(3928), - [anon_sym_GT_GT] = ACTIONS(3926), - [anon_sym_GT_GT_GT] = ACTIONS(3928), - [anon_sym_EQ_EQ] = ACTIONS(3928), - [anon_sym_BANG_EQ] = ACTIONS(3928), - [anon_sym_GT_EQ] = ACTIONS(3928), - [anon_sym_LT_EQ] = ACTIONS(3928), - [anon_sym_DOT] = ACTIONS(3926), - [anon_sym_EQ_GT] = ACTIONS(3928), - [anon_sym_switch] = ACTIONS(3928), - [anon_sym_when] = ACTIONS(3928), - [anon_sym_DOT_DOT] = ACTIONS(3928), - [anon_sym_and] = ACTIONS(3928), - [anon_sym_or] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_PIPE_PIPE] = ACTIONS(3928), - [anon_sym_QMARK_QMARK] = ACTIONS(3928), - [anon_sym_on] = ACTIONS(3928), - [anon_sym_equals] = ACTIONS(3928), - [anon_sym_by] = ACTIONS(3928), - [anon_sym_as] = ACTIONS(3928), - [anon_sym_is] = ACTIONS(3928), - [anon_sym_DASH_GT] = ACTIONS(3928), - [anon_sym_with] = ACTIONS(3928), - [aux_sym_preproc_if_token3] = ACTIONS(3928), - [aux_sym_preproc_else_token1] = ACTIONS(3928), - [aux_sym_preproc_elif_token1] = ACTIONS(3928), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), @@ -475187,57 +486725,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3218), [sym_preproc_define] = STATE(3218), [sym_preproc_undef] = STATE(3218), - [anon_sym_SEMI] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(3924), - [anon_sym_COLON] = ACTIONS(3924), - [anon_sym_COMMA] = ACTIONS(3924), - [anon_sym_RBRACK] = ACTIONS(3924), - [anon_sym_LPAREN] = ACTIONS(3924), - [anon_sym_RPAREN] = ACTIONS(3924), - [anon_sym_LBRACE] = ACTIONS(3924), - [anon_sym_RBRACE] = ACTIONS(3924), - [anon_sym_LT] = ACTIONS(3922), - [anon_sym_GT] = ACTIONS(3922), - [anon_sym_in] = ACTIONS(3924), - [anon_sym_QMARK] = ACTIONS(3922), - [anon_sym_BANG] = ACTIONS(3922), - [anon_sym_PLUS_PLUS] = ACTIONS(3924), - [anon_sym_DASH_DASH] = ACTIONS(3924), - [anon_sym_PLUS] = ACTIONS(3922), - [anon_sym_DASH] = ACTIONS(3922), - [anon_sym_STAR] = ACTIONS(3924), - [anon_sym_SLASH] = ACTIONS(3922), - [anon_sym_PERCENT] = ACTIONS(3924), - [anon_sym_CARET] = ACTIONS(3924), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_AMP] = ACTIONS(3922), - [anon_sym_LT_LT] = ACTIONS(3924), - [anon_sym_GT_GT] = ACTIONS(3922), - [anon_sym_GT_GT_GT] = ACTIONS(3924), - [anon_sym_EQ_EQ] = ACTIONS(3924), - [anon_sym_BANG_EQ] = ACTIONS(3924), - [anon_sym_GT_EQ] = ACTIONS(3924), - [anon_sym_LT_EQ] = ACTIONS(3924), - [anon_sym_DOT] = ACTIONS(3922), - [anon_sym_EQ_GT] = ACTIONS(3924), - [anon_sym_switch] = ACTIONS(3924), - [anon_sym_when] = ACTIONS(3924), - [anon_sym_DOT_DOT] = ACTIONS(3924), - [anon_sym_and] = ACTIONS(3924), - [anon_sym_or] = ACTIONS(3924), - [anon_sym_AMP_AMP] = ACTIONS(3924), - [anon_sym_PIPE_PIPE] = ACTIONS(3924), - [anon_sym_QMARK_QMARK] = ACTIONS(3924), - [anon_sym_on] = ACTIONS(3924), - [anon_sym_equals] = ACTIONS(3924), - [anon_sym_by] = ACTIONS(3924), - [anon_sym_as] = ACTIONS(3924), - [anon_sym_is] = ACTIONS(3924), - [anon_sym_DASH_GT] = ACTIONS(3924), - [anon_sym_with] = ACTIONS(3924), - [aux_sym_preproc_if_token3] = ACTIONS(3924), - [aux_sym_preproc_else_token1] = ACTIONS(3924), - [aux_sym_preproc_elif_token1] = ACTIONS(3924), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475259,57 +486796,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3219), [sym_preproc_define] = STATE(3219), [sym_preproc_undef] = STATE(3219), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_when] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475331,57 +486869,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3220), [sym_preproc_define] = STATE(3220), [sym_preproc_undef] = STATE(3220), - [anon_sym_SEMI] = ACTIONS(3627), - [anon_sym_LBRACK] = ACTIONS(3627), - [anon_sym_COLON] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3627), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_LPAREN] = ACTIONS(3627), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACE] = ACTIONS(3627), - [anon_sym_RBRACE] = ACTIONS(3627), - [anon_sym_LT] = ACTIONS(3625), - [anon_sym_GT] = ACTIONS(3625), - [anon_sym_in] = ACTIONS(3627), - [anon_sym_QMARK] = ACTIONS(3625), - [anon_sym_BANG] = ACTIONS(3625), - [anon_sym_PLUS_PLUS] = ACTIONS(3627), - [anon_sym_DASH_DASH] = ACTIONS(3627), - [anon_sym_PLUS] = ACTIONS(3625), - [anon_sym_DASH] = ACTIONS(3625), - [anon_sym_STAR] = ACTIONS(3627), - [anon_sym_SLASH] = ACTIONS(3625), - [anon_sym_PERCENT] = ACTIONS(3627), - [anon_sym_CARET] = ACTIONS(3627), - [anon_sym_PIPE] = ACTIONS(3625), - [anon_sym_AMP] = ACTIONS(3625), - [anon_sym_LT_LT] = ACTIONS(3627), - [anon_sym_GT_GT] = ACTIONS(3625), - [anon_sym_GT_GT_GT] = ACTIONS(3627), - [anon_sym_EQ_EQ] = ACTIONS(3627), - [anon_sym_BANG_EQ] = ACTIONS(3627), - [anon_sym_GT_EQ] = ACTIONS(3627), - [anon_sym_LT_EQ] = ACTIONS(3627), - [anon_sym_DOT] = ACTIONS(3625), - [anon_sym_EQ_GT] = ACTIONS(3627), - [anon_sym_switch] = ACTIONS(3627), - [anon_sym_when] = ACTIONS(3627), - [anon_sym_DOT_DOT] = ACTIONS(3627), - [anon_sym_and] = ACTIONS(3627), - [anon_sym_or] = ACTIONS(3627), - [anon_sym_AMP_AMP] = ACTIONS(3627), - [anon_sym_PIPE_PIPE] = ACTIONS(3627), - [anon_sym_QMARK_QMARK] = ACTIONS(3627), - [anon_sym_on] = ACTIONS(3627), - [anon_sym_equals] = ACTIONS(3627), - [anon_sym_by] = ACTIONS(3627), - [anon_sym_as] = ACTIONS(3627), - [anon_sym_is] = ACTIONS(3627), - [anon_sym_DASH_GT] = ACTIONS(3627), - [anon_sym_with] = ACTIONS(3627), - [aux_sym_preproc_if_token3] = ACTIONS(3627), - [aux_sym_preproc_else_token1] = ACTIONS(3627), - [aux_sym_preproc_elif_token1] = ACTIONS(3627), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475403,57 +486942,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3221), [sym_preproc_define] = STATE(3221), [sym_preproc_undef] = STATE(3221), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4972), - [anon_sym_QMARK] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4970), - [anon_sym_CARET] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_LT_LT] = ACTIONS(4970), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_GT_GT_GT] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4970), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_QMARK_QMARK] = ACTIONS(4970), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [anon_sym_with] = ACTIONS(4970), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475475,57 +487015,58 @@ 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(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_COLON] = ACTIONS(3602), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_in] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_EQ_GT] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_when] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_equals] = ACTIONS(3602), - [anon_sym_by] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [aux_sym_preproc_if_token3] = ACTIONS(3602), - [aux_sym_preproc_else_token1] = ACTIONS(3602), - [aux_sym_preproc_elif_token1] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475547,57 +487088,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3223), [sym_preproc_define] = STATE(3223), [sym_preproc_undef] = STATE(3223), - [anon_sym_SEMI] = ACTIONS(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_COLON] = ACTIONS(4932), - [anon_sym_COMMA] = ACTIONS(4932), - [anon_sym_RBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_in] = ACTIONS(4934), - [anon_sym_QMARK] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_CARET] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_LT_LT] = ACTIONS(4932), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_GT_GT_GT] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_GT_EQ] = ACTIONS(4932), - [anon_sym_LT_EQ] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_EQ_GT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4932), - [anon_sym_when] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_and] = ACTIONS(4932), - [anon_sym_or] = ACTIONS(4932), - [anon_sym_AMP_AMP] = ACTIONS(4932), - [anon_sym_PIPE_PIPE] = ACTIONS(4932), - [anon_sym_QMARK_QMARK] = ACTIONS(4932), - [anon_sym_into] = ACTIONS(4932), - [anon_sym_on] = ACTIONS(4932), - [anon_sym_equals] = ACTIONS(4932), - [anon_sym_by] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4932), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_with] = ACTIONS(4932), - [aux_sym_preproc_if_token3] = ACTIONS(4932), - [aux_sym_preproc_else_token1] = ACTIONS(4932), - [aux_sym_preproc_elif_token1] = ACTIONS(4932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475619,57 +487161,58 @@ 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_SEMI] = ACTIONS(5304), - [anon_sym_LBRACK] = ACTIONS(5304), - [anon_sym_COLON] = ACTIONS(5304), - [anon_sym_COMMA] = ACTIONS(5304), - [anon_sym_RBRACK] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym_RPAREN] = ACTIONS(5304), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_LT] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5306), - [anon_sym_in] = ACTIONS(5306), - [anon_sym_QMARK] = ACTIONS(5306), - [anon_sym_BANG] = ACTIONS(5306), - [anon_sym_PLUS_PLUS] = ACTIONS(5304), - [anon_sym_DASH_DASH] = ACTIONS(5304), - [anon_sym_PLUS] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_SLASH] = ACTIONS(5306), - [anon_sym_PERCENT] = ACTIONS(5304), - [anon_sym_CARET] = ACTIONS(5304), - [anon_sym_PIPE] = ACTIONS(5306), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym_LT_LT] = ACTIONS(5304), - [anon_sym_GT_GT] = ACTIONS(5306), - [anon_sym_GT_GT_GT] = ACTIONS(5304), - [anon_sym_EQ_EQ] = ACTIONS(5304), - [anon_sym_BANG_EQ] = ACTIONS(5304), - [anon_sym_GT_EQ] = ACTIONS(5304), - [anon_sym_LT_EQ] = ACTIONS(5304), - [anon_sym_DOT] = ACTIONS(5306), - [anon_sym_EQ_GT] = ACTIONS(5304), - [anon_sym_switch] = ACTIONS(5304), - [anon_sym_when] = ACTIONS(5304), - [anon_sym_DOT_DOT] = ACTIONS(5304), - [anon_sym_and] = ACTIONS(5304), - [anon_sym_or] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_PIPE_PIPE] = ACTIONS(5304), - [anon_sym_QMARK_QMARK] = ACTIONS(5304), - [anon_sym_into] = ACTIONS(5304), - [anon_sym_on] = ACTIONS(5304), - [anon_sym_equals] = ACTIONS(5304), - [anon_sym_by] = ACTIONS(5304), - [anon_sym_as] = ACTIONS(5304), - [anon_sym_is] = ACTIONS(5304), - [anon_sym_DASH_GT] = ACTIONS(5304), - [anon_sym_with] = ACTIONS(5304), - [aux_sym_preproc_if_token3] = ACTIONS(5304), - [aux_sym_preproc_else_token1] = ACTIONS(5304), - [aux_sym_preproc_elif_token1] = ACTIONS(5304), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475691,57 +487234,58 @@ 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(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_COLON] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4928), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(4928), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4928), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_CARET] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4928), - [anon_sym_LT_LT] = ACTIONS(4926), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym_GT_GT_GT] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_EQ_GT] = ACTIONS(4926), - [anon_sym_switch] = ACTIONS(4926), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_and] = ACTIONS(4926), - [anon_sym_or] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_QMARK_QMARK] = ACTIONS(4926), - [anon_sym_into] = ACTIONS(4926), - [anon_sym_on] = ACTIONS(4926), - [anon_sym_equals] = ACTIONS(4926), - [anon_sym_by] = ACTIONS(4926), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [anon_sym_with] = ACTIONS(4926), - [aux_sym_preproc_if_token3] = ACTIONS(4926), - [aux_sym_preproc_else_token1] = ACTIONS(4926), - [aux_sym_preproc_elif_token1] = ACTIONS(4926), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475763,57 +487307,58 @@ 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(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4924), - [anon_sym_QMARK] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_CARET] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_GT_GT] = ACTIONS(4924), - [anon_sym_GT_GT_GT] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_EQ_GT] = ACTIONS(4922), - [anon_sym_switch] = ACTIONS(4922), - [anon_sym_when] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_and] = ACTIONS(4922), - [anon_sym_or] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_QMARK_QMARK] = ACTIONS(4922), - [anon_sym_into] = ACTIONS(4922), - [anon_sym_on] = ACTIONS(4922), - [anon_sym_equals] = ACTIONS(4922), - [anon_sym_by] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4922), - [anon_sym_with] = ACTIONS(4922), - [aux_sym_preproc_if_token3] = ACTIONS(4922), - [aux_sym_preproc_else_token1] = ACTIONS(4922), - [aux_sym_preproc_elif_token1] = ACTIONS(4922), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475835,57 +487380,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(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_COLON] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4920), - [anon_sym_QMARK] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_CARET] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4918), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_GT_GT_GT] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_EQ_GT] = ACTIONS(4918), - [anon_sym_switch] = ACTIONS(4918), - [anon_sym_when] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_and] = ACTIONS(4918), - [anon_sym_or] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_QMARK_QMARK] = ACTIONS(4918), - [anon_sym_into] = ACTIONS(4918), - [anon_sym_on] = ACTIONS(4918), - [anon_sym_equals] = ACTIONS(4918), - [anon_sym_by] = ACTIONS(4918), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4918), - [anon_sym_with] = ACTIONS(4918), - [aux_sym_preproc_if_token3] = ACTIONS(4918), - [aux_sym_preproc_else_token1] = ACTIONS(4918), - [aux_sym_preproc_elif_token1] = ACTIONS(4918), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475907,57 +487452,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(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_COLON] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_in] = ACTIONS(4916), - [anon_sym_QMARK] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4914), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4914), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_GT_GT_GT] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_EQ_GT] = ACTIONS(4914), - [anon_sym_switch] = ACTIONS(4914), - [anon_sym_when] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_and] = ACTIONS(4914), - [anon_sym_or] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_QMARK_QMARK] = ACTIONS(4914), - [anon_sym_into] = ACTIONS(4914), - [anon_sym_on] = ACTIONS(4914), - [anon_sym_equals] = ACTIONS(4914), - [anon_sym_by] = ACTIONS(4914), - [anon_sym_as] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4914), - [anon_sym_DASH_GT] = ACTIONS(4914), - [anon_sym_with] = ACTIONS(4914), - [aux_sym_preproc_if_token3] = ACTIONS(4914), - [aux_sym_preproc_else_token1] = ACTIONS(4914), - [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -475979,57 +487524,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(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4908), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(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), @@ -476051,57 +487596,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(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2905), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_EQ_GT] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_when] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_into] = ACTIONS(2907), - [anon_sym_on] = ACTIONS(2907), - [anon_sym_equals] = ACTIONS(2907), - [anon_sym_by] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [aux_sym_preproc_if_token3] = ACTIONS(2907), - [aux_sym_preproc_else_token1] = ACTIONS(2907), - [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476123,57 +487668,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(5308), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_COLON] = ACTIONS(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RBRACK] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_RPAREN] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_in] = ACTIONS(5310), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_EQ_GT] = ACTIONS(5308), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_when] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_into] = ACTIONS(5308), - [anon_sym_on] = ACTIONS(5308), - [anon_sym_equals] = ACTIONS(5308), - [anon_sym_by] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5308), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), - [aux_sym_preproc_if_token3] = ACTIONS(5308), - [aux_sym_preproc_else_token1] = ACTIONS(5308), - [aux_sym_preproc_elif_token1] = ACTIONS(5308), + [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), @@ -476195,57 +487740,57 @@ 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(5308), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_COLON] = ACTIONS(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RBRACK] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_RPAREN] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_in] = ACTIONS(5310), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_EQ_GT] = ACTIONS(5308), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_when] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_into] = ACTIONS(5308), - [anon_sym_on] = ACTIONS(5308), - [anon_sym_equals] = ACTIONS(5308), - [anon_sym_by] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5308), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), - [aux_sym_preproc_if_token3] = ACTIONS(5308), - [aux_sym_preproc_else_token1] = ACTIONS(5308), - [aux_sym_preproc_elif_token1] = ACTIONS(5308), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476267,57 +487812,57 @@ 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(4898), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_COLON] = ACTIONS(4898), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_RBRACK] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4900), - [anon_sym_QMARK] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4898), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_CARET] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4900), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4900), - [anon_sym_GT_GT_GT] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_EQ_GT] = ACTIONS(4898), - [anon_sym_switch] = ACTIONS(4898), - [anon_sym_when] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_and] = ACTIONS(4898), - [anon_sym_or] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_QMARK_QMARK] = ACTIONS(4898), - [anon_sym_into] = ACTIONS(4898), - [anon_sym_on] = ACTIONS(4898), - [anon_sym_equals] = ACTIONS(4898), - [anon_sym_by] = ACTIONS(4898), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_with] = ACTIONS(4898), - [aux_sym_preproc_if_token3] = ACTIONS(4898), - [aux_sym_preproc_else_token1] = ACTIONS(4898), - [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [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), @@ -476339,57 +487884,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(5312), - [anon_sym_LBRACK] = ACTIONS(5312), - [anon_sym_COLON] = ACTIONS(5312), - [anon_sym_COMMA] = ACTIONS(5312), - [anon_sym_RBRACK] = ACTIONS(5312), - [anon_sym_LPAREN] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_in] = ACTIONS(5314), - [anon_sym_QMARK] = ACTIONS(5314), - [anon_sym_BANG] = ACTIONS(5314), - [anon_sym_PLUS_PLUS] = ACTIONS(5312), - [anon_sym_DASH_DASH] = ACTIONS(5312), - [anon_sym_PLUS] = ACTIONS(5314), - [anon_sym_DASH] = ACTIONS(5314), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_SLASH] = ACTIONS(5314), - [anon_sym_PERCENT] = ACTIONS(5312), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5314), - [anon_sym_LT_LT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5314), - [anon_sym_GT_GT_GT] = ACTIONS(5312), - [anon_sym_EQ_EQ] = ACTIONS(5312), - [anon_sym_BANG_EQ] = ACTIONS(5312), - [anon_sym_GT_EQ] = ACTIONS(5312), - [anon_sym_LT_EQ] = ACTIONS(5312), - [anon_sym_DOT] = ACTIONS(5314), - [anon_sym_EQ_GT] = ACTIONS(5312), - [anon_sym_switch] = ACTIONS(5312), - [anon_sym_when] = ACTIONS(5312), - [anon_sym_DOT_DOT] = ACTIONS(5312), - [anon_sym_and] = ACTIONS(5312), - [anon_sym_or] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_QMARK_QMARK] = ACTIONS(5312), - [anon_sym_into] = ACTIONS(5312), - [anon_sym_on] = ACTIONS(5312), - [anon_sym_equals] = ACTIONS(5312), - [anon_sym_by] = ACTIONS(5312), - [anon_sym_as] = ACTIONS(5312), - [anon_sym_is] = ACTIONS(5312), - [anon_sym_DASH_GT] = ACTIONS(5312), - [anon_sym_with] = ACTIONS(5312), - [aux_sym_preproc_if_token3] = ACTIONS(5312), - [aux_sym_preproc_else_token1] = ACTIONS(5312), - [aux_sym_preproc_elif_token1] = ACTIONS(5312), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476411,57 +487956,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(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_COLON] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RBRACK] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4894), - [anon_sym_PLUS] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_CARET] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_GT_GT_GT] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_GT_EQ] = ACTIONS(4894), - [anon_sym_LT_EQ] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4896), - [anon_sym_EQ_GT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_QMARK_QMARK] = ACTIONS(4894), - [anon_sym_into] = ACTIONS(4894), - [anon_sym_on] = ACTIONS(4894), - [anon_sym_equals] = ACTIONS(4894), - [anon_sym_by] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_with] = ACTIONS(4894), - [aux_sym_preproc_if_token3] = ACTIONS(4894), - [aux_sym_preproc_else_token1] = ACTIONS(4894), - [aux_sym_preproc_elif_token1] = ACTIONS(4894), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476483,57 +488028,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3236), [sym_preproc_define] = STATE(3236), [sym_preproc_undef] = STATE(3236), - [anon_sym_SEMI] = ACTIONS(3743), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COLON] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_in] = ACTIONS(5286), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_when] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(3743), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_into] = ACTIONS(3743), - [anon_sym_on] = ACTIONS(3743), - [anon_sym_equals] = ACTIONS(3743), - [anon_sym_by] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(3743), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), - [aux_sym_preproc_if_token3] = ACTIONS(3743), - [aux_sym_preproc_else_token1] = ACTIONS(3743), - [aux_sym_preproc_elif_token1] = ACTIONS(3743), + [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(5348), + [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_into] = 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), @@ -476555,57 +488100,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3237), [sym_preproc_define] = STATE(3237), [sym_preproc_undef] = STATE(3237), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LBRACK] = ACTIONS(5316), - [anon_sym_COLON] = ACTIONS(5316), - [anon_sym_COMMA] = ACTIONS(5316), - [anon_sym_RBRACK] = ACTIONS(5316), - [anon_sym_LPAREN] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_in] = ACTIONS(5318), - [anon_sym_QMARK] = ACTIONS(5318), - [anon_sym_BANG] = ACTIONS(5318), - [anon_sym_PLUS_PLUS] = ACTIONS(5316), - [anon_sym_DASH_DASH] = ACTIONS(5316), - [anon_sym_PLUS] = ACTIONS(5318), - [anon_sym_DASH] = ACTIONS(5318), - [anon_sym_STAR] = ACTIONS(5316), - [anon_sym_SLASH] = ACTIONS(5318), - [anon_sym_PERCENT] = ACTIONS(5316), - [anon_sym_CARET] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5318), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5318), - [anon_sym_GT_GT_GT] = ACTIONS(5316), - [anon_sym_EQ_EQ] = ACTIONS(5316), - [anon_sym_BANG_EQ] = ACTIONS(5316), - [anon_sym_GT_EQ] = ACTIONS(5316), - [anon_sym_LT_EQ] = ACTIONS(5316), - [anon_sym_DOT] = ACTIONS(5318), - [anon_sym_EQ_GT] = ACTIONS(5316), - [anon_sym_switch] = ACTIONS(5316), - [anon_sym_when] = ACTIONS(5316), - [anon_sym_DOT_DOT] = ACTIONS(5316), - [anon_sym_and] = ACTIONS(5316), - [anon_sym_or] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_QMARK_QMARK] = ACTIONS(5316), - [anon_sym_into] = ACTIONS(5316), - [anon_sym_on] = ACTIONS(5316), - [anon_sym_equals] = ACTIONS(5316), - [anon_sym_by] = ACTIONS(5316), - [anon_sym_as] = ACTIONS(5316), - [anon_sym_is] = ACTIONS(5316), - [anon_sym_DASH_GT] = ACTIONS(5316), - [anon_sym_with] = ACTIONS(5316), - [aux_sym_preproc_if_token3] = ACTIONS(5316), - [aux_sym_preproc_else_token1] = ACTIONS(5316), - [aux_sym_preproc_elif_token1] = ACTIONS(5316), + [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), @@ -476627,57 +488172,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(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4870), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476699,57 +488244,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(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [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(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [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(4856), - [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(4854), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476771,57 +488316,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(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [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_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4849), - [anon_sym_QMARK] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4849), - [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(4849), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476843,57 +488388,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(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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476915,57 +488460,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(5320), - [anon_sym_LBRACK] = ACTIONS(5320), - [anon_sym_COLON] = ACTIONS(5320), - [anon_sym_COMMA] = ACTIONS(5320), - [anon_sym_RBRACK] = ACTIONS(5320), - [anon_sym_LPAREN] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5322), - [anon_sym_GT] = ACTIONS(5322), - [anon_sym_in] = ACTIONS(5322), - [anon_sym_QMARK] = ACTIONS(5322), - [anon_sym_BANG] = ACTIONS(5322), - [anon_sym_PLUS_PLUS] = ACTIONS(5320), - [anon_sym_DASH_DASH] = ACTIONS(5320), - [anon_sym_PLUS] = ACTIONS(5322), - [anon_sym_DASH] = ACTIONS(5322), - [anon_sym_STAR] = ACTIONS(5320), - [anon_sym_SLASH] = ACTIONS(5322), - [anon_sym_PERCENT] = ACTIONS(5320), - [anon_sym_CARET] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_AMP] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5322), - [anon_sym_GT_GT_GT] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5320), - [anon_sym_BANG_EQ] = ACTIONS(5320), - [anon_sym_GT_EQ] = ACTIONS(5320), - [anon_sym_LT_EQ] = ACTIONS(5320), - [anon_sym_DOT] = ACTIONS(5322), - [anon_sym_EQ_GT] = ACTIONS(5320), - [anon_sym_switch] = ACTIONS(5320), - [anon_sym_when] = ACTIONS(5320), - [anon_sym_DOT_DOT] = ACTIONS(5320), - [anon_sym_and] = ACTIONS(5320), - [anon_sym_or] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_QMARK_QMARK] = ACTIONS(5320), - [anon_sym_into] = ACTIONS(5320), - [anon_sym_on] = ACTIONS(5320), - [anon_sym_equals] = ACTIONS(5320), - [anon_sym_by] = ACTIONS(5320), - [anon_sym_as] = ACTIONS(5320), - [anon_sym_is] = ACTIONS(5320), - [anon_sym_DASH_GT] = ACTIONS(5320), - [anon_sym_with] = ACTIONS(5320), - [aux_sym_preproc_if_token3] = ACTIONS(5320), - [aux_sym_preproc_else_token1] = ACTIONS(5320), - [aux_sym_preproc_elif_token1] = ACTIONS(5320), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -476987,57 +488532,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(5324), - [anon_sym_LBRACK] = ACTIONS(5324), - [anon_sym_COLON] = ACTIONS(5324), - [anon_sym_COMMA] = ACTIONS(5324), - [anon_sym_RBRACK] = ACTIONS(5324), - [anon_sym_LPAREN] = ACTIONS(5324), - [anon_sym_RPAREN] = ACTIONS(5324), - [anon_sym_RBRACE] = ACTIONS(5324), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym_GT] = ACTIONS(5326), - [anon_sym_in] = ACTIONS(5326), - [anon_sym_QMARK] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(5326), - [anon_sym_PLUS_PLUS] = ACTIONS(5324), - [anon_sym_DASH_DASH] = ACTIONS(5324), - [anon_sym_PLUS] = ACTIONS(5326), - [anon_sym_DASH] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(5324), - [anon_sym_SLASH] = ACTIONS(5326), - [anon_sym_PERCENT] = ACTIONS(5324), - [anon_sym_CARET] = ACTIONS(5324), - [anon_sym_PIPE] = ACTIONS(5326), - [anon_sym_AMP] = ACTIONS(5326), - [anon_sym_LT_LT] = ACTIONS(5324), - [anon_sym_GT_GT] = ACTIONS(5326), - [anon_sym_GT_GT_GT] = ACTIONS(5324), - [anon_sym_EQ_EQ] = ACTIONS(5324), - [anon_sym_BANG_EQ] = ACTIONS(5324), - [anon_sym_GT_EQ] = ACTIONS(5324), - [anon_sym_LT_EQ] = ACTIONS(5324), - [anon_sym_DOT] = ACTIONS(5326), - [anon_sym_EQ_GT] = ACTIONS(5324), - [anon_sym_switch] = ACTIONS(5324), - [anon_sym_when] = ACTIONS(5324), - [anon_sym_DOT_DOT] = ACTIONS(5324), - [anon_sym_and] = ACTIONS(5324), - [anon_sym_or] = ACTIONS(5324), - [anon_sym_AMP_AMP] = ACTIONS(5324), - [anon_sym_PIPE_PIPE] = ACTIONS(5324), - [anon_sym_QMARK_QMARK] = ACTIONS(5324), - [anon_sym_into] = ACTIONS(5324), - [anon_sym_on] = ACTIONS(5324), - [anon_sym_equals] = ACTIONS(5324), - [anon_sym_by] = ACTIONS(5324), - [anon_sym_as] = ACTIONS(5324), - [anon_sym_is] = ACTIONS(5324), - [anon_sym_DASH_GT] = ACTIONS(5324), - [anon_sym_with] = ACTIONS(5324), - [aux_sym_preproc_if_token3] = ACTIONS(5324), - [aux_sym_preproc_else_token1] = ACTIONS(5324), - [aux_sym_preproc_elif_token1] = ACTIONS(5324), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477059,57 +488604,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(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4996), - [anon_sym_QMARK] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_GT_GT_GT] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_EQ_GT] = ACTIONS(4994), - [anon_sym_switch] = ACTIONS(4994), - [anon_sym_when] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_QMARK_QMARK] = ACTIONS(4994), - [anon_sym_into] = ACTIONS(4994), - [anon_sym_on] = ACTIONS(4994), - [anon_sym_equals] = ACTIONS(4994), - [anon_sym_by] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_with] = ACTIONS(4994), - [aux_sym_preproc_if_token3] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477131,57 +488676,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(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(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), @@ -477203,57 +488748,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(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_when] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477275,57 +488820,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(5328), - [anon_sym_LBRACK] = ACTIONS(5328), - [anon_sym_COLON] = ACTIONS(5328), - [anon_sym_COMMA] = ACTIONS(5328), - [anon_sym_RBRACK] = ACTIONS(5328), - [anon_sym_LPAREN] = ACTIONS(5328), - [anon_sym_RPAREN] = ACTIONS(5328), - [anon_sym_RBRACE] = ACTIONS(5328), - [anon_sym_LT] = ACTIONS(5330), - [anon_sym_GT] = ACTIONS(5330), - [anon_sym_in] = ACTIONS(5330), - [anon_sym_QMARK] = ACTIONS(5330), - [anon_sym_BANG] = ACTIONS(5330), - [anon_sym_PLUS_PLUS] = ACTIONS(5328), - [anon_sym_DASH_DASH] = ACTIONS(5328), - [anon_sym_PLUS] = ACTIONS(5330), - [anon_sym_DASH] = ACTIONS(5330), - [anon_sym_STAR] = ACTIONS(5328), - [anon_sym_SLASH] = ACTIONS(5330), - [anon_sym_PERCENT] = ACTIONS(5328), - [anon_sym_CARET] = ACTIONS(5328), - [anon_sym_PIPE] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5330), - [anon_sym_LT_LT] = ACTIONS(5328), - [anon_sym_GT_GT] = ACTIONS(5330), - [anon_sym_GT_GT_GT] = ACTIONS(5328), - [anon_sym_EQ_EQ] = ACTIONS(5328), - [anon_sym_BANG_EQ] = ACTIONS(5328), - [anon_sym_GT_EQ] = ACTIONS(5328), - [anon_sym_LT_EQ] = ACTIONS(5328), - [anon_sym_DOT] = ACTIONS(5330), - [anon_sym_EQ_GT] = ACTIONS(5328), - [anon_sym_switch] = ACTIONS(5328), - [anon_sym_when] = ACTIONS(5328), - [anon_sym_DOT_DOT] = ACTIONS(5328), - [anon_sym_and] = ACTIONS(5328), - [anon_sym_or] = ACTIONS(5328), - [anon_sym_AMP_AMP] = ACTIONS(5328), - [anon_sym_PIPE_PIPE] = ACTIONS(5328), - [anon_sym_QMARK_QMARK] = ACTIONS(5328), - [anon_sym_into] = ACTIONS(5328), - [anon_sym_on] = ACTIONS(5328), - [anon_sym_equals] = ACTIONS(5328), - [anon_sym_by] = ACTIONS(5328), - [anon_sym_as] = ACTIONS(5328), - [anon_sym_is] = ACTIONS(5328), - [anon_sym_DASH_GT] = ACTIONS(5328), - [anon_sym_with] = ACTIONS(5328), - [aux_sym_preproc_if_token3] = ACTIONS(5328), - [aux_sym_preproc_else_token1] = ACTIONS(5328), - [aux_sym_preproc_elif_token1] = ACTIONS(5328), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477347,57 +488892,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(5332), - [anon_sym_LBRACK] = ACTIONS(5332), - [anon_sym_COLON] = ACTIONS(5332), - [anon_sym_COMMA] = ACTIONS(5332), - [anon_sym_RBRACK] = ACTIONS(5332), - [anon_sym_LPAREN] = ACTIONS(5332), - [anon_sym_RPAREN] = ACTIONS(5332), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_LT] = ACTIONS(5334), - [anon_sym_GT] = ACTIONS(5334), - [anon_sym_in] = ACTIONS(5334), - [anon_sym_QMARK] = ACTIONS(5334), - [anon_sym_BANG] = ACTIONS(5334), - [anon_sym_PLUS_PLUS] = ACTIONS(5332), - [anon_sym_DASH_DASH] = ACTIONS(5332), - [anon_sym_PLUS] = ACTIONS(5334), - [anon_sym_DASH] = ACTIONS(5334), - [anon_sym_STAR] = ACTIONS(5332), - [anon_sym_SLASH] = ACTIONS(5334), - [anon_sym_PERCENT] = ACTIONS(5332), - [anon_sym_CARET] = ACTIONS(5332), - [anon_sym_PIPE] = ACTIONS(5334), - [anon_sym_AMP] = ACTIONS(5334), - [anon_sym_LT_LT] = ACTIONS(5332), - [anon_sym_GT_GT] = ACTIONS(5334), - [anon_sym_GT_GT_GT] = ACTIONS(5332), - [anon_sym_EQ_EQ] = ACTIONS(5332), - [anon_sym_BANG_EQ] = ACTIONS(5332), - [anon_sym_GT_EQ] = ACTIONS(5332), - [anon_sym_LT_EQ] = ACTIONS(5332), - [anon_sym_DOT] = ACTIONS(5334), - [anon_sym_EQ_GT] = ACTIONS(5332), - [anon_sym_switch] = ACTIONS(5332), - [anon_sym_when] = ACTIONS(5332), - [anon_sym_DOT_DOT] = ACTIONS(5332), - [anon_sym_and] = ACTIONS(5332), - [anon_sym_or] = ACTIONS(5332), - [anon_sym_AMP_AMP] = ACTIONS(5332), - [anon_sym_PIPE_PIPE] = ACTIONS(5332), - [anon_sym_QMARK_QMARK] = ACTIONS(5332), - [anon_sym_into] = ACTIONS(5332), - [anon_sym_on] = ACTIONS(5332), - [anon_sym_equals] = ACTIONS(5332), - [anon_sym_by] = ACTIONS(5332), - [anon_sym_as] = ACTIONS(5332), - [anon_sym_is] = ACTIONS(5332), - [anon_sym_DASH_GT] = ACTIONS(5332), - [anon_sym_with] = ACTIONS(5332), - [aux_sym_preproc_if_token3] = ACTIONS(5332), - [aux_sym_preproc_else_token1] = ACTIONS(5332), - [aux_sym_preproc_elif_token1] = ACTIONS(5332), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477419,57 +488964,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(4803), - [anon_sym_LBRACK] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_RBRACK] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4805), - [anon_sym_in] = ACTIONS(4805), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_PLUS_PLUS] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_LT] = ACTIONS(4803), - [anon_sym_GT_GT] = ACTIONS(4805), - [anon_sym_GT_GT_GT] = ACTIONS(4803), - [anon_sym_EQ_EQ] = ACTIONS(4803), - [anon_sym_BANG_EQ] = ACTIONS(4803), - [anon_sym_GT_EQ] = ACTIONS(4803), - [anon_sym_LT_EQ] = ACTIONS(4803), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_EQ_GT] = ACTIONS(4803), - [anon_sym_switch] = ACTIONS(4803), - [anon_sym_when] = ACTIONS(4803), - [anon_sym_DOT_DOT] = ACTIONS(4803), - [anon_sym_and] = ACTIONS(4803), - [anon_sym_or] = ACTIONS(4803), - [anon_sym_AMP_AMP] = ACTIONS(4803), - [anon_sym_PIPE_PIPE] = ACTIONS(4803), - [anon_sym_QMARK_QMARK] = ACTIONS(4803), - [anon_sym_into] = ACTIONS(4803), - [anon_sym_on] = ACTIONS(4803), - [anon_sym_equals] = ACTIONS(4803), - [anon_sym_by] = ACTIONS(4803), - [anon_sym_as] = ACTIONS(4803), - [anon_sym_is] = ACTIONS(4803), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4803), - [aux_sym_preproc_if_token3] = ACTIONS(4803), - [aux_sym_preproc_else_token1] = ACTIONS(4803), - [aux_sym_preproc_elif_token1] = ACTIONS(4803), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477491,57 +489036,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(5336), - [anon_sym_LBRACK] = ACTIONS(5336), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_COMMA] = ACTIONS(5336), - [anon_sym_RBRACK] = ACTIONS(5336), - [anon_sym_LPAREN] = ACTIONS(5336), - [anon_sym_RPAREN] = ACTIONS(5336), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_LT] = ACTIONS(5338), - [anon_sym_GT] = ACTIONS(5338), - [anon_sym_in] = ACTIONS(5338), - [anon_sym_QMARK] = ACTIONS(5338), - [anon_sym_BANG] = ACTIONS(5338), - [anon_sym_PLUS_PLUS] = ACTIONS(5336), - [anon_sym_DASH_DASH] = ACTIONS(5336), - [anon_sym_PLUS] = ACTIONS(5338), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_STAR] = ACTIONS(5336), - [anon_sym_SLASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5336), - [anon_sym_CARET] = ACTIONS(5336), - [anon_sym_PIPE] = ACTIONS(5338), - [anon_sym_AMP] = ACTIONS(5338), - [anon_sym_LT_LT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5338), - [anon_sym_GT_GT_GT] = ACTIONS(5336), - [anon_sym_EQ_EQ] = ACTIONS(5336), - [anon_sym_BANG_EQ] = ACTIONS(5336), - [anon_sym_GT_EQ] = ACTIONS(5336), - [anon_sym_LT_EQ] = ACTIONS(5336), - [anon_sym_DOT] = ACTIONS(5338), - [anon_sym_EQ_GT] = ACTIONS(5336), - [anon_sym_switch] = ACTIONS(5336), - [anon_sym_when] = ACTIONS(5336), - [anon_sym_DOT_DOT] = ACTIONS(5336), - [anon_sym_and] = ACTIONS(5336), - [anon_sym_or] = ACTIONS(5336), - [anon_sym_AMP_AMP] = ACTIONS(5336), - [anon_sym_PIPE_PIPE] = ACTIONS(5336), - [anon_sym_QMARK_QMARK] = ACTIONS(5336), - [anon_sym_into] = ACTIONS(5336), - [anon_sym_on] = ACTIONS(5336), - [anon_sym_equals] = ACTIONS(5336), - [anon_sym_by] = ACTIONS(5336), - [anon_sym_as] = ACTIONS(5336), - [anon_sym_is] = ACTIONS(5336), - [anon_sym_DASH_GT] = ACTIONS(5336), - [anon_sym_with] = ACTIONS(5336), - [aux_sym_preproc_if_token3] = ACTIONS(5336), - [aux_sym_preproc_else_token1] = ACTIONS(5336), - [aux_sym_preproc_elif_token1] = ACTIONS(5336), + [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), @@ -477563,57 +489108,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477635,57 +489180,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(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4892), - [anon_sym_QMARK] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4892), - [anon_sym_DASH] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_GT_GT_GT] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4892), - [anon_sym_EQ_GT] = ACTIONS(4890), - [anon_sym_switch] = ACTIONS(4890), - [anon_sym_when] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_QMARK_QMARK] = ACTIONS(4890), - [anon_sym_into] = ACTIONS(4890), - [anon_sym_on] = ACTIONS(4890), - [anon_sym_equals] = ACTIONS(4890), - [anon_sym_by] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_with] = ACTIONS(4890), - [aux_sym_preproc_if_token3] = ACTIONS(4890), - [aux_sym_preproc_else_token1] = ACTIONS(4890), - [aux_sym_preproc_elif_token1] = ACTIONS(4890), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477707,57 +489252,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(4684), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4684), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_CARET] = ACTIONS(4684), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4684), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4684), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477779,57 +489324,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(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_COLON] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4980), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4978), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_CARET] = ACTIONS(4978), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4978), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym_GT_GT_GT] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_EQ_GT] = ACTIONS(4978), - [anon_sym_switch] = ACTIONS(4978), - [anon_sym_when] = ACTIONS(4978), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_and] = ACTIONS(4978), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_QMARK_QMARK] = ACTIONS(4978), - [anon_sym_into] = ACTIONS(4978), - [anon_sym_on] = ACTIONS(4978), - [anon_sym_equals] = ACTIONS(4978), - [anon_sym_by] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4978), - [anon_sym_DASH_GT] = ACTIONS(4978), - [anon_sym_with] = ACTIONS(4978), - [aux_sym_preproc_if_token3] = ACTIONS(4978), - [aux_sym_preproc_else_token1] = ACTIONS(4978), - [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477851,57 +489396,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(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_COLON] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4825), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4823), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4823), - [anon_sym_CARET] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_LT] = ACTIONS(4823), - [anon_sym_GT_GT] = ACTIONS(4825), - [anon_sym_GT_GT_GT] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_EQ_GT] = ACTIONS(4823), - [anon_sym_switch] = ACTIONS(4823), - [anon_sym_when] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_and] = ACTIONS(4823), - [anon_sym_or] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_QMARK_QMARK] = ACTIONS(4823), - [anon_sym_into] = ACTIONS(4823), - [anon_sym_on] = ACTIONS(4823), - [anon_sym_equals] = ACTIONS(4823), - [anon_sym_by] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4823), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_with] = ACTIONS(4823), - [aux_sym_preproc_if_token3] = ACTIONS(4823), - [aux_sym_preproc_else_token1] = ACTIONS(4823), - [aux_sym_preproc_elif_token1] = ACTIONS(4823), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477923,57 +489468,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(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_COLON] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_RBRACK] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_LT] = ACTIONS(5040), - [anon_sym_GT] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5040), - [anon_sym_QMARK] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_PLUS] = ACTIONS(5040), - [anon_sym_DASH] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_CARET] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_LT_LT] = ACTIONS(5038), - [anon_sym_GT_GT] = ACTIONS(5040), - [anon_sym_GT_GT_GT] = ACTIONS(5038), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_GT_EQ] = ACTIONS(5038), - [anon_sym_LT_EQ] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_EQ_GT] = ACTIONS(5038), - [anon_sym_switch] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5038), - [anon_sym_AMP_AMP] = ACTIONS(5038), - [anon_sym_PIPE_PIPE] = ACTIONS(5038), - [anon_sym_QMARK_QMARK] = ACTIONS(5038), - [anon_sym_into] = ACTIONS(5038), - [anon_sym_on] = ACTIONS(5038), - [anon_sym_equals] = ACTIONS(5038), - [anon_sym_by] = ACTIONS(5038), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5038), - [anon_sym_with] = ACTIONS(5038), - [aux_sym_preproc_if_token3] = ACTIONS(5038), - [aux_sym_preproc_else_token1] = ACTIONS(5038), - [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -477995,57 +489540,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(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5036), - [anon_sym_QMARK] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5034), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_CARET] = ACTIONS(5034), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LT_LT] = ACTIONS(5034), - [anon_sym_GT_GT] = ACTIONS(5036), - [anon_sym_GT_GT_GT] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_EQ_GT] = ACTIONS(5034), - [anon_sym_switch] = ACTIONS(5034), - [anon_sym_when] = ACTIONS(5034), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_QMARK_QMARK] = ACTIONS(5034), - [anon_sym_into] = ACTIONS(5034), - [anon_sym_on] = ACTIONS(5034), - [anon_sym_equals] = ACTIONS(5034), - [anon_sym_by] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5034), - [anon_sym_DASH_GT] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [aux_sym_preproc_if_token3] = ACTIONS(5034), - [aux_sym_preproc_else_token1] = ACTIONS(5034), - [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478067,57 +489612,57 @@ 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(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4984), - [anon_sym_QMARK] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_GT_GT_GT] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_EQ_GT] = ACTIONS(4982), - [anon_sym_switch] = ACTIONS(4982), - [anon_sym_when] = ACTIONS(4982), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_and] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_QMARK_QMARK] = ACTIONS(4982), - [anon_sym_into] = ACTIONS(4982), - [anon_sym_on] = ACTIONS(4982), - [anon_sym_equals] = ACTIONS(4982), - [anon_sym_by] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [anon_sym_with] = ACTIONS(4982), - [aux_sym_preproc_if_token3] = ACTIONS(4982), - [aux_sym_preproc_else_token1] = ACTIONS(4982), - [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [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), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478139,57 +489684,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(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_COLON] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4940), - [anon_sym_QMARK] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4938), - [anon_sym_CARET] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_LT_LT] = ACTIONS(4938), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_GT_GT_GT] = ACTIONS(4938), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_EQ_GT] = ACTIONS(4938), - [anon_sym_switch] = ACTIONS(4938), - [anon_sym_when] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_and] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4938), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_QMARK_QMARK] = ACTIONS(4938), - [anon_sym_into] = ACTIONS(4938), - [anon_sym_on] = ACTIONS(4938), - [anon_sym_equals] = ACTIONS(4938), - [anon_sym_by] = ACTIONS(4938), - [anon_sym_as] = ACTIONS(4938), - [anon_sym_is] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [anon_sym_with] = ACTIONS(4938), - [aux_sym_preproc_if_token3] = ACTIONS(4938), - [aux_sym_preproc_else_token1] = ACTIONS(4938), - [aux_sym_preproc_elif_token1] = ACTIONS(4938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478202,6 +489747,7 @@ 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), @@ -478211,57 +489757,56 @@ 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(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [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_RBRACE] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_in] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4849), - [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(4849), - [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), - [anon_sym_DQUOTE] = 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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478283,57 +489828,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(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4968), - [anon_sym_QMARK] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4966), - [anon_sym_switch] = ACTIONS(4966), - [anon_sym_when] = ACTIONS(4966), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_QMARK_QMARK] = ACTIONS(4966), - [anon_sym_into] = ACTIONS(4966), - [anon_sym_on] = ACTIONS(4966), - [anon_sym_equals] = ACTIONS(4966), - [anon_sym_by] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4966), - [aux_sym_preproc_else_token1] = ACTIONS(4966), - [aux_sym_preproc_elif_token1] = ACTIONS(4966), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478355,57 +489900,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(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_EQ_GT] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_when] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_into] = ACTIONS(2915), - [anon_sym_on] = ACTIONS(2915), - [anon_sym_equals] = ACTIONS(2915), - [anon_sym_by] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [aux_sym_preproc_if_token3] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [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), @@ -478427,57 +489972,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(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478499,57 +490044,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(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4190), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_when] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478571,57 +490116,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(4864), - [anon_sym_LBRACK] = ACTIONS(4864), - [anon_sym_COLON] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_RBRACK] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_RPAREN] = ACTIONS(4864), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_LT] = ACTIONS(4866), - [anon_sym_GT] = ACTIONS(4866), - [anon_sym_in] = ACTIONS(4866), - [anon_sym_QMARK] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4864), - [anon_sym_DASH_DASH] = ACTIONS(4864), - [anon_sym_PLUS] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_CARET] = ACTIONS(4864), - [anon_sym_PIPE] = ACTIONS(4866), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_LT_LT] = ACTIONS(4864), - [anon_sym_GT_GT] = ACTIONS(4866), - [anon_sym_GT_GT_GT] = ACTIONS(4864), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_GT_EQ] = ACTIONS(4864), - [anon_sym_LT_EQ] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_EQ_GT] = ACTIONS(4864), - [anon_sym_switch] = ACTIONS(4864), - [anon_sym_when] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_and] = ACTIONS(4864), - [anon_sym_or] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4864), - [anon_sym_PIPE_PIPE] = ACTIONS(4864), - [anon_sym_QMARK_QMARK] = ACTIONS(4864), - [anon_sym_into] = ACTIONS(4864), - [anon_sym_on] = ACTIONS(4864), - [anon_sym_equals] = ACTIONS(4864), - [anon_sym_by] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4864), - [anon_sym_with] = ACTIONS(4864), - [aux_sym_preproc_if_token3] = ACTIONS(4864), - [aux_sym_preproc_else_token1] = ACTIONS(4864), - [aux_sym_preproc_elif_token1] = ACTIONS(4864), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478643,57 +490188,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(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COLON] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_RBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4884), - [anon_sym_QMARK] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4882), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_CARET] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4882), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_GT_GT_GT] = ACTIONS(4882), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_EQ_GT] = ACTIONS(4882), - [anon_sym_switch] = ACTIONS(4882), - [anon_sym_when] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4882), - [anon_sym_and] = ACTIONS(4882), - [anon_sym_or] = ACTIONS(4882), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_QMARK_QMARK] = ACTIONS(4882), - [anon_sym_into] = ACTIONS(4882), - [anon_sym_on] = ACTIONS(4882), - [anon_sym_equals] = ACTIONS(4882), - [anon_sym_by] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_with] = ACTIONS(4882), - [aux_sym_preproc_if_token3] = ACTIONS(4882), - [aux_sym_preproc_else_token1] = ACTIONS(4882), - [aux_sym_preproc_elif_token1] = ACTIONS(4882), + [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), @@ -478715,57 +490260,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(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4843), - [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(4845), - [anon_sym_PLUS_PLUS] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4843), - [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(4845), - [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(4843), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478787,57 +490332,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(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_COLON] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_in] = ACTIONS(4841), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4839), - [anon_sym_CARET] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4839), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_GT_GT_GT] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_EQ_GT] = ACTIONS(4839), - [anon_sym_switch] = ACTIONS(4839), - [anon_sym_when] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_and] = ACTIONS(4839), - [anon_sym_or] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_QMARK_QMARK] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4839), - [anon_sym_on] = ACTIONS(4839), - [anon_sym_equals] = ACTIONS(4839), - [anon_sym_by] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_with] = ACTIONS(4839), - [aux_sym_preproc_if_token3] = ACTIONS(4839), - [aux_sym_preproc_else_token1] = ACTIONS(4839), - [aux_sym_preproc_elif_token1] = ACTIONS(4839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478859,57 +490404,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), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(5340), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(5343), - [anon_sym_GT] = ACTIONS(5343), - [anon_sym_in] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(5343), - [anon_sym_BANG] = ACTIONS(5343), - [anon_sym_PLUS_PLUS] = ACTIONS(5340), - [anon_sym_DASH_DASH] = ACTIONS(5340), - [anon_sym_PLUS] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5343), - [anon_sym_STAR] = ACTIONS(5340), - [anon_sym_SLASH] = ACTIONS(5343), - [anon_sym_PERCENT] = ACTIONS(5340), - [anon_sym_CARET] = ACTIONS(5340), - [anon_sym_PIPE] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5343), - [anon_sym_LT_LT] = ACTIONS(5340), - [anon_sym_GT_GT] = ACTIONS(5343), - [anon_sym_GT_GT_GT] = ACTIONS(5340), - [anon_sym_EQ_EQ] = ACTIONS(5340), - [anon_sym_BANG_EQ] = ACTIONS(5340), - [anon_sym_GT_EQ] = ACTIONS(5340), - [anon_sym_LT_EQ] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5343), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(5340), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(5340), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(5340), - [anon_sym_PIPE_PIPE] = ACTIONS(5340), - [anon_sym_QMARK_QMARK] = ACTIONS(5340), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(5340), - [anon_sym_is] = ACTIONS(5340), - [anon_sym_DASH_GT] = ACTIONS(5340), - [anon_sym_with] = ACTIONS(5340), - [aux_sym_preproc_if_token3] = ACTIONS(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -478931,57 +490476,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(4205), - [anon_sym_LBRACK] = ACTIONS(5346), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_in] = ACTIONS(4213), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5346), - [anon_sym_DASH_DASH] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5346), - [anon_sym_CARET] = ACTIONS(5346), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5349), - [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(5349), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(5346), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(5346), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(5346), - [anon_sym_PIPE_PIPE] = ACTIONS(5346), - [anon_sym_QMARK_QMARK] = ACTIONS(5346), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [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(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479003,57 +490548,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479075,57 +490620,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(4807), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_COLON] = ACTIONS(4807), - [anon_sym_COMMA] = ACTIONS(4807), - [anon_sym_RBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_RPAREN] = ACTIONS(4807), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4809), - [anon_sym_GT] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4809), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4807), - [anon_sym_DASH_DASH] = ACTIONS(4807), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_CARET] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(4807), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_GT_GT_GT] = ACTIONS(4807), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_GT_EQ] = ACTIONS(4807), - [anon_sym_LT_EQ] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_EQ_GT] = ACTIONS(4807), - [anon_sym_switch] = ACTIONS(4807), - [anon_sym_when] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4807), - [anon_sym_and] = ACTIONS(4807), - [anon_sym_or] = ACTIONS(4807), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_QMARK_QMARK] = ACTIONS(4807), - [anon_sym_into] = ACTIONS(4807), - [anon_sym_on] = ACTIONS(4807), - [anon_sym_equals] = ACTIONS(4807), - [anon_sym_by] = ACTIONS(4807), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), - [anon_sym_with] = ACTIONS(4807), - [aux_sym_preproc_if_token3] = ACTIONS(4807), - [aux_sym_preproc_else_token1] = ACTIONS(4807), - [aux_sym_preproc_elif_token1] = ACTIONS(4807), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479147,57 +490692,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479219,57 +490764,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(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_COLON] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_RBRACK] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_RPAREN] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4821), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_GT_GT_GT] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_EQ_GT] = ACTIONS(4819), - [anon_sym_switch] = ACTIONS(4819), - [anon_sym_when] = ACTIONS(4819), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_or] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_QMARK_QMARK] = ACTIONS(4819), - [anon_sym_into] = ACTIONS(4819), - [anon_sym_on] = ACTIONS(4819), - [anon_sym_equals] = ACTIONS(4819), - [anon_sym_by] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4819), - [anon_sym_with] = ACTIONS(4819), - [aux_sym_preproc_if_token3] = ACTIONS(4819), - [aux_sym_preproc_else_token1] = ACTIONS(4819), - [aux_sym_preproc_elif_token1] = ACTIONS(4819), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479291,57 +490836,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(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_COLON] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_RBRACK] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_in] = ACTIONS(4912), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4910), - [anon_sym_CARET] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4912), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4912), - [anon_sym_GT_GT_GT] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_EQ_GT] = ACTIONS(4910), - [anon_sym_switch] = ACTIONS(4910), - [anon_sym_when] = ACTIONS(4910), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_and] = ACTIONS(4910), - [anon_sym_or] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_QMARK_QMARK] = ACTIONS(4910), - [anon_sym_into] = ACTIONS(4910), - [anon_sym_on] = ACTIONS(4910), - [anon_sym_equals] = ACTIONS(4910), - [anon_sym_by] = ACTIONS(4910), - [anon_sym_as] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4910), - [anon_sym_DASH_GT] = ACTIONS(4910), - [anon_sym_with] = ACTIONS(4910), - [aux_sym_preproc_if_token3] = ACTIONS(4910), - [aux_sym_preproc_else_token1] = ACTIONS(4910), - [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479363,57 +490908,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(4730), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COLON] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_RBRACK] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_RPAREN] = ACTIONS(4730), - [anon_sym_RBRACE] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_in] = ACTIONS(4732), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_EQ_GT] = ACTIONS(4730), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_when] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4730), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_on] = ACTIONS(4730), - [anon_sym_equals] = ACTIONS(4730), - [anon_sym_by] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4730), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [aux_sym_preproc_if_token3] = ACTIONS(4730), - [aux_sym_preproc_else_token1] = ACTIONS(4730), - [aux_sym_preproc_elif_token1] = ACTIONS(4730), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479435,57 +490980,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(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_COLON] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4976), - [anon_sym_QMARK] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4974), - [anon_sym_CARET] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4976), - [anon_sym_LT_LT] = ACTIONS(4974), - [anon_sym_GT_GT] = ACTIONS(4976), - [anon_sym_GT_GT_GT] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_EQ_GT] = ACTIONS(4974), - [anon_sym_switch] = ACTIONS(4974), - [anon_sym_when] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_and] = ACTIONS(4974), - [anon_sym_or] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_QMARK_QMARK] = ACTIONS(4974), - [anon_sym_into] = ACTIONS(4974), - [anon_sym_on] = ACTIONS(4974), - [anon_sym_equals] = ACTIONS(4974), - [anon_sym_by] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_with] = ACTIONS(4974), - [aux_sym_preproc_if_token3] = ACTIONS(4974), - [aux_sym_preproc_else_token1] = ACTIONS(4974), - [aux_sym_preproc_elif_token1] = ACTIONS(4974), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479507,57 +491052,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(5352), - [anon_sym_LBRACK] = ACTIONS(5352), - [anon_sym_COLON] = ACTIONS(5352), - [anon_sym_COMMA] = ACTIONS(5352), - [anon_sym_RBRACK] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(5352), - [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_LT] = ACTIONS(5354), - [anon_sym_GT] = ACTIONS(5354), - [anon_sym_in] = ACTIONS(5354), - [anon_sym_QMARK] = ACTIONS(5354), - [anon_sym_BANG] = ACTIONS(5354), - [anon_sym_PLUS_PLUS] = ACTIONS(5352), - [anon_sym_DASH_DASH] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_STAR] = ACTIONS(5352), - [anon_sym_SLASH] = ACTIONS(5354), - [anon_sym_PERCENT] = ACTIONS(5352), - [anon_sym_CARET] = ACTIONS(5352), - [anon_sym_PIPE] = ACTIONS(5354), - [anon_sym_AMP] = ACTIONS(5354), - [anon_sym_LT_LT] = ACTIONS(5352), - [anon_sym_GT_GT] = ACTIONS(5354), - [anon_sym_GT_GT_GT] = ACTIONS(5352), - [anon_sym_EQ_EQ] = ACTIONS(5352), - [anon_sym_BANG_EQ] = ACTIONS(5352), - [anon_sym_GT_EQ] = ACTIONS(5352), - [anon_sym_LT_EQ] = ACTIONS(5352), - [anon_sym_DOT] = ACTIONS(5354), - [anon_sym_EQ_GT] = ACTIONS(5352), - [anon_sym_switch] = ACTIONS(5352), - [anon_sym_when] = ACTIONS(5352), - [anon_sym_DOT_DOT] = ACTIONS(5352), - [anon_sym_and] = ACTIONS(5352), - [anon_sym_or] = ACTIONS(5352), - [anon_sym_AMP_AMP] = ACTIONS(5352), - [anon_sym_PIPE_PIPE] = ACTIONS(5352), - [anon_sym_QMARK_QMARK] = ACTIONS(5352), - [anon_sym_into] = ACTIONS(5352), - [anon_sym_on] = ACTIONS(5352), - [anon_sym_equals] = ACTIONS(5352), - [anon_sym_by] = ACTIONS(5352), - [anon_sym_as] = ACTIONS(5352), - [anon_sym_is] = ACTIONS(5352), - [anon_sym_DASH_GT] = ACTIONS(5352), - [anon_sym_with] = ACTIONS(5352), - [aux_sym_preproc_if_token3] = ACTIONS(5352), - [aux_sym_preproc_else_token1] = ACTIONS(5352), - [aux_sym_preproc_elif_token1] = ACTIONS(5352), + [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), @@ -479579,56 +491124,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(4906), - [anon_sym_LBRACK] = ACTIONS(4906), - [anon_sym_COLON] = ACTIONS(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_RBRACK] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_RPAREN] = ACTIONS(4906), - [anon_sym_RBRACE] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_in] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_EQ_GT] = ACTIONS(4906), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_when] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4906), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_on] = ACTIONS(4906), - [anon_sym_equals] = ACTIONS(4906), - [anon_sym_by] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4906), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), - [aux_sym_preproc_if_token3] = ACTIONS(4906), - [aux_sym_preproc_else_token1] = ACTIONS(4906), - [aux_sym_preproc_elif_token1] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479650,56 +491196,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3280), [sym_preproc_define] = STATE(3280), [sym_preproc_undef] = STATE(3280), - [anon_sym_SEMI] = ACTIONS(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_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479721,56 +491268,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(4807), - [anon_sym_LBRACK] = ACTIONS(4807), - [anon_sym_COLON] = ACTIONS(4807), - [anon_sym_COMMA] = ACTIONS(4807), - [anon_sym_RBRACK] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_RPAREN] = ACTIONS(4807), - [anon_sym_RBRACE] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4809), - [anon_sym_GT] = ACTIONS(4809), - [anon_sym_in] = ACTIONS(4807), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4807), - [anon_sym_DASH_DASH] = ACTIONS(4807), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_CARET] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(4807), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_GT_GT_GT] = ACTIONS(4807), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_GT_EQ] = ACTIONS(4807), - [anon_sym_LT_EQ] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_EQ_GT] = ACTIONS(4807), - [anon_sym_switch] = ACTIONS(4807), - [anon_sym_when] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4807), - [anon_sym_and] = ACTIONS(4807), - [anon_sym_or] = ACTIONS(4807), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_QMARK_QMARK] = ACTIONS(4807), - [anon_sym_on] = ACTIONS(4807), - [anon_sym_equals] = ACTIONS(4807), - [anon_sym_by] = ACTIONS(4807), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), - [anon_sym_with] = ACTIONS(4807), - [aux_sym_preproc_if_token3] = ACTIONS(4807), - [aux_sym_preproc_else_token1] = ACTIONS(4807), - [aux_sym_preproc_elif_token1] = ACTIONS(4807), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479792,56 +491340,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -479863,56 +491412,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(5332), - [anon_sym_LBRACK] = ACTIONS(5332), - [anon_sym_COLON] = ACTIONS(5332), - [anon_sym_COMMA] = ACTIONS(5332), - [anon_sym_RBRACK] = ACTIONS(5332), - [anon_sym_LPAREN] = ACTIONS(5332), - [anon_sym_RPAREN] = ACTIONS(5332), - [anon_sym_RBRACE] = ACTIONS(5332), - [anon_sym_LT] = ACTIONS(5334), - [anon_sym_GT] = ACTIONS(5334), - [anon_sym_in] = ACTIONS(5332), - [anon_sym_QMARK] = ACTIONS(5334), - [anon_sym_BANG] = ACTIONS(5334), - [anon_sym_PLUS_PLUS] = ACTIONS(5332), - [anon_sym_DASH_DASH] = ACTIONS(5332), - [anon_sym_PLUS] = ACTIONS(5334), - [anon_sym_DASH] = ACTIONS(5334), - [anon_sym_STAR] = ACTIONS(5332), - [anon_sym_SLASH] = ACTIONS(5334), - [anon_sym_PERCENT] = ACTIONS(5332), - [anon_sym_CARET] = ACTIONS(5332), - [anon_sym_PIPE] = ACTIONS(5334), - [anon_sym_AMP] = ACTIONS(5334), - [anon_sym_LT_LT] = ACTIONS(5332), - [anon_sym_GT_GT] = ACTIONS(5334), - [anon_sym_GT_GT_GT] = ACTIONS(5332), - [anon_sym_EQ_EQ] = ACTIONS(5332), - [anon_sym_BANG_EQ] = ACTIONS(5332), - [anon_sym_GT_EQ] = ACTIONS(5332), - [anon_sym_LT_EQ] = ACTIONS(5332), - [anon_sym_DOT] = ACTIONS(5334), - [anon_sym_EQ_GT] = ACTIONS(5332), - [anon_sym_switch] = ACTIONS(5332), - [anon_sym_when] = ACTIONS(5332), - [anon_sym_DOT_DOT] = ACTIONS(5332), - [anon_sym_and] = ACTIONS(5332), - [anon_sym_or] = ACTIONS(5332), - [anon_sym_AMP_AMP] = ACTIONS(5332), - [anon_sym_PIPE_PIPE] = ACTIONS(5332), - [anon_sym_QMARK_QMARK] = ACTIONS(5332), - [anon_sym_on] = ACTIONS(5332), - [anon_sym_equals] = ACTIONS(5332), - [anon_sym_by] = ACTIONS(5332), - [anon_sym_as] = ACTIONS(5332), - [anon_sym_is] = ACTIONS(5332), - [anon_sym_DASH_GT] = ACTIONS(5332), - [anon_sym_with] = ACTIONS(5332), - [aux_sym_preproc_if_token3] = ACTIONS(5332), - [aux_sym_preproc_else_token1] = ACTIONS(5332), - [aux_sym_preproc_elif_token1] = ACTIONS(5332), + [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), @@ -479934,56 +491484,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(5320), - [anon_sym_LBRACK] = ACTIONS(5320), - [anon_sym_COLON] = ACTIONS(5320), - [anon_sym_COMMA] = ACTIONS(5320), - [anon_sym_RBRACK] = ACTIONS(5320), - [anon_sym_LPAREN] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_RBRACE] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5322), - [anon_sym_GT] = ACTIONS(5322), - [anon_sym_in] = ACTIONS(5320), - [anon_sym_QMARK] = ACTIONS(5322), - [anon_sym_BANG] = ACTIONS(5322), - [anon_sym_PLUS_PLUS] = ACTIONS(5320), - [anon_sym_DASH_DASH] = ACTIONS(5320), - [anon_sym_PLUS] = ACTIONS(5322), - [anon_sym_DASH] = ACTIONS(5322), - [anon_sym_STAR] = ACTIONS(5320), - [anon_sym_SLASH] = ACTIONS(5322), - [anon_sym_PERCENT] = ACTIONS(5320), - [anon_sym_CARET] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_AMP] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5322), - [anon_sym_GT_GT_GT] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5320), - [anon_sym_BANG_EQ] = ACTIONS(5320), - [anon_sym_GT_EQ] = ACTIONS(5320), - [anon_sym_LT_EQ] = ACTIONS(5320), - [anon_sym_DOT] = ACTIONS(5322), - [anon_sym_EQ_GT] = ACTIONS(5320), - [anon_sym_switch] = ACTIONS(5320), - [anon_sym_when] = ACTIONS(5320), - [anon_sym_DOT_DOT] = ACTIONS(5320), - [anon_sym_and] = ACTIONS(5320), - [anon_sym_or] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_QMARK_QMARK] = ACTIONS(5320), - [anon_sym_on] = ACTIONS(5320), - [anon_sym_equals] = ACTIONS(5320), - [anon_sym_by] = ACTIONS(5320), - [anon_sym_as] = ACTIONS(5320), - [anon_sym_is] = ACTIONS(5320), - [anon_sym_DASH_GT] = ACTIONS(5320), - [anon_sym_with] = ACTIONS(5320), - [aux_sym_preproc_if_token3] = ACTIONS(5320), - [aux_sym_preproc_else_token1] = ACTIONS(5320), - [aux_sym_preproc_elif_token1] = ACTIONS(5320), + [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), @@ -480005,56 +491556,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(5282), - [anon_sym_LBRACK] = ACTIONS(5282), - [anon_sym_COLON] = ACTIONS(5282), - [anon_sym_COMMA] = ACTIONS(5282), - [anon_sym_RBRACK] = ACTIONS(5282), - [anon_sym_LPAREN] = ACTIONS(5282), - [anon_sym_RPAREN] = ACTIONS(5282), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_in] = ACTIONS(5282), - [anon_sym_QMARK] = ACTIONS(5284), - [anon_sym_BANG] = ACTIONS(5284), - [anon_sym_PLUS_PLUS] = ACTIONS(5282), - [anon_sym_DASH_DASH] = ACTIONS(5282), - [anon_sym_PLUS] = ACTIONS(5284), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_STAR] = ACTIONS(5282), - [anon_sym_SLASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5282), - [anon_sym_CARET] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5282), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_GT_GT_GT] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), - [anon_sym_GT_EQ] = ACTIONS(5282), - [anon_sym_LT_EQ] = ACTIONS(5282), - [anon_sym_DOT] = ACTIONS(5284), - [anon_sym_EQ_GT] = ACTIONS(5282), - [anon_sym_switch] = ACTIONS(5282), - [anon_sym_when] = ACTIONS(5282), - [anon_sym_DOT_DOT] = ACTIONS(5282), - [anon_sym_and] = ACTIONS(5282), - [anon_sym_or] = ACTIONS(5282), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_QMARK_QMARK] = ACTIONS(5282), - [anon_sym_on] = ACTIONS(5282), - [anon_sym_equals] = ACTIONS(5282), - [anon_sym_by] = ACTIONS(5282), - [anon_sym_as] = ACTIONS(5282), - [anon_sym_is] = ACTIONS(5282), - [anon_sym_DASH_GT] = ACTIONS(5282), - [anon_sym_with] = ACTIONS(5282), - [aux_sym_preproc_if_token3] = ACTIONS(5282), - [aux_sym_preproc_else_token1] = ACTIONS(5282), - [aux_sym_preproc_elif_token1] = ACTIONS(5282), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480076,56 +491628,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(3743), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COLON] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_in] = ACTIONS(3743), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_EQ_GT] = ACTIONS(3743), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_when] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(3743), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_on] = ACTIONS(3743), - [anon_sym_equals] = ACTIONS(3743), - [anon_sym_by] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(3743), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), - [aux_sym_preproc_if_token3] = ACTIONS(3743), - [aux_sym_preproc_else_token1] = ACTIONS(3743), - [aux_sym_preproc_elif_token1] = ACTIONS(3743), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480138,26 +491691,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3287] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3287), [sym_preproc_endregion] = STATE(3287), [sym_preproc_line] = STATE(3287), @@ -480167,36 +491700,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5356), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480209,26 +491763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3288] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5729), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7490), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3288), [sym_preproc_endregion] = STATE(3288), [sym_preproc_line] = STATE(3288), @@ -480238,36 +491772,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480280,26 +491835,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3289] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7459), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3289), [sym_preproc_endregion] = STATE(3289), [sym_preproc_line] = STATE(3289), @@ -480309,36 +491844,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3295), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480351,26 +491907,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3290] = { - [sym_type_parameter_constraint] = STATE(6180), - [sym_constructor_constraint] = STATE(6379), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6371), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3290), [sym_preproc_endregion] = STATE(3290), [sym_preproc_line] = STATE(3290), @@ -480380,36 +491916,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(5366), - [anon_sym_ref] = ACTIONS(5368), - [anon_sym_struct] = ACTIONS(5370), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(5372), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(5374), - [anon_sym_unmanaged] = ACTIONS(5374), - [anon_sym_scoped] = ACTIONS(5376), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480431,56 +491988,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(5316), - [anon_sym_LBRACK] = ACTIONS(5316), - [anon_sym_COLON] = ACTIONS(5316), - [anon_sym_COMMA] = ACTIONS(5316), - [anon_sym_RBRACK] = ACTIONS(5316), - [anon_sym_LPAREN] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_RBRACE] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_in] = ACTIONS(5316), - [anon_sym_QMARK] = ACTIONS(5318), - [anon_sym_BANG] = ACTIONS(5318), - [anon_sym_PLUS_PLUS] = ACTIONS(5316), - [anon_sym_DASH_DASH] = ACTIONS(5316), - [anon_sym_PLUS] = ACTIONS(5318), - [anon_sym_DASH] = ACTIONS(5318), - [anon_sym_STAR] = ACTIONS(5316), - [anon_sym_SLASH] = ACTIONS(5318), - [anon_sym_PERCENT] = ACTIONS(5316), - [anon_sym_CARET] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5318), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5318), - [anon_sym_GT_GT_GT] = ACTIONS(5316), - [anon_sym_EQ_EQ] = ACTIONS(5316), - [anon_sym_BANG_EQ] = ACTIONS(5316), - [anon_sym_GT_EQ] = ACTIONS(5316), - [anon_sym_LT_EQ] = ACTIONS(5316), - [anon_sym_DOT] = ACTIONS(5318), - [anon_sym_EQ_GT] = ACTIONS(5316), - [anon_sym_switch] = ACTIONS(5316), - [anon_sym_when] = ACTIONS(5316), - [anon_sym_DOT_DOT] = ACTIONS(5316), - [anon_sym_and] = ACTIONS(5316), - [anon_sym_or] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_QMARK_QMARK] = ACTIONS(5316), - [anon_sym_on] = ACTIONS(5316), - [anon_sym_equals] = ACTIONS(5316), - [anon_sym_by] = ACTIONS(5316), - [anon_sym_as] = ACTIONS(5316), - [anon_sym_is] = ACTIONS(5316), - [anon_sym_DASH_GT] = ACTIONS(5316), - [anon_sym_with] = ACTIONS(5316), - [aux_sym_preproc_if_token3] = ACTIONS(5316), - [aux_sym_preproc_else_token1] = ACTIONS(5316), - [aux_sym_preproc_elif_token1] = ACTIONS(5316), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480502,56 +492060,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(5312), - [anon_sym_LBRACK] = ACTIONS(5312), - [anon_sym_COLON] = ACTIONS(5312), - [anon_sym_COMMA] = ACTIONS(5312), - [anon_sym_RBRACK] = ACTIONS(5312), - [anon_sym_LPAREN] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_in] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(5314), - [anon_sym_BANG] = ACTIONS(5314), - [anon_sym_PLUS_PLUS] = ACTIONS(5312), - [anon_sym_DASH_DASH] = ACTIONS(5312), - [anon_sym_PLUS] = ACTIONS(5314), - [anon_sym_DASH] = ACTIONS(5314), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_SLASH] = ACTIONS(5314), - [anon_sym_PERCENT] = ACTIONS(5312), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5314), - [anon_sym_LT_LT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5314), - [anon_sym_GT_GT_GT] = ACTIONS(5312), - [anon_sym_EQ_EQ] = ACTIONS(5312), - [anon_sym_BANG_EQ] = ACTIONS(5312), - [anon_sym_GT_EQ] = ACTIONS(5312), - [anon_sym_LT_EQ] = ACTIONS(5312), - [anon_sym_DOT] = ACTIONS(5314), - [anon_sym_EQ_GT] = ACTIONS(5312), - [anon_sym_switch] = ACTIONS(5312), - [anon_sym_when] = ACTIONS(5312), - [anon_sym_DOT_DOT] = ACTIONS(5312), - [anon_sym_and] = ACTIONS(5312), - [anon_sym_or] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_QMARK_QMARK] = ACTIONS(5312), - [anon_sym_on] = ACTIONS(5312), - [anon_sym_equals] = ACTIONS(5312), - [anon_sym_by] = ACTIONS(5312), - [anon_sym_as] = ACTIONS(5312), - [anon_sym_is] = ACTIONS(5312), - [anon_sym_DASH_GT] = ACTIONS(5312), - [anon_sym_with] = ACTIONS(5312), - [aux_sym_preproc_if_token3] = ACTIONS(5312), - [aux_sym_preproc_else_token1] = ACTIONS(5312), - [aux_sym_preproc_elif_token1] = ACTIONS(5312), + [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), @@ -480573,56 +492132,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(5308), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_COLON] = ACTIONS(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RBRACK] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_RPAREN] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_in] = ACTIONS(5308), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_EQ_GT] = ACTIONS(5308), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_when] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_on] = ACTIONS(5308), - [anon_sym_equals] = ACTIONS(5308), - [anon_sym_by] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5308), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), - [aux_sym_preproc_if_token3] = ACTIONS(5308), - [aux_sym_preproc_else_token1] = ACTIONS(5308), - [aux_sym_preproc_elif_token1] = ACTIONS(5308), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480644,56 +492204,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3294), [sym_preproc_define] = STATE(3294), [sym_preproc_undef] = STATE(3294), - [anon_sym_SEMI] = ACTIONS(5308), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_COLON] = ACTIONS(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_RBRACK] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_RPAREN] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_in] = ACTIONS(5308), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_EQ_GT] = ACTIONS(5308), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_when] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5308), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_on] = ACTIONS(5308), - [anon_sym_equals] = ACTIONS(5308), - [anon_sym_by] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5308), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), - [aux_sym_preproc_if_token3] = ACTIONS(5308), - [aux_sym_preproc_else_token1] = ACTIONS(5308), - [aux_sym_preproc_elif_token1] = ACTIONS(5308), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480706,26 +492267,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3295] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7429), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3295), [sym_preproc_endregion] = STATE(3295), [sym_preproc_line] = STATE(3295), @@ -480735,36 +492276,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480777,15 +492339,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3296] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3296), [sym_preproc_endregion] = STATE(3296), [sym_preproc_line] = STATE(3296), @@ -480795,47 +492348,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3296), [sym_preproc_define] = STATE(3296), [sym_preproc_undef] = STATE(3296), - [sym__identifier_token] = ACTIONS(3527), - [anon_sym_alias] = ACTIONS(3531), - [anon_sym_global] = ACTIONS(3531), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3535), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_file] = ACTIONS(3531), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3531), - [anon_sym_unmanaged] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3531), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3531), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(3531), - [anon_sym_when] = ACTIONS(3531), - [anon_sym_from] = ACTIONS(3531), - [anon_sym_into] = ACTIONS(3531), - [anon_sym_join] = ACTIONS(3531), - [anon_sym_on] = ACTIONS(3531), - [anon_sym_equals] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_orderby] = ACTIONS(3531), - [anon_sym_ascending] = ACTIONS(3531), - [anon_sym_descending] = ACTIONS(3531), - [anon_sym_group] = ACTIONS(3531), - [anon_sym_by] = ACTIONS(3531), - [anon_sym_select] = ACTIONS(3531), + [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), @@ -480857,56 +492420,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(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_when] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480919,26 +492483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3298] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7176), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3298), [sym_preproc_endregion] = STATE(3298), [sym_preproc_line] = STATE(3298), @@ -480948,36 +492492,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -480999,56 +492564,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_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(4207), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481061,26 +492627,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3300] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7429), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3300), [sym_preproc_endregion] = STATE(3300), [sym_preproc_line] = STATE(3300), @@ -481090,36 +492636,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3305), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481132,26 +492699,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3301] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3301), [sym_preproc_endregion] = STATE(3301), [sym_preproc_line] = STATE(3301), @@ -481161,36 +492708,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5378), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481212,66 +492780,67 @@ 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_EQ] = ACTIONS(5380), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5382), - [anon_sym_DASH_EQ] = ACTIONS(5382), - [anon_sym_STAR_EQ] = ACTIONS(5382), - [anon_sym_SLASH_EQ] = ACTIONS(5382), - [anon_sym_PERCENT_EQ] = ACTIONS(5382), - [anon_sym_AMP_EQ] = ACTIONS(5382), - [anon_sym_CARET_EQ] = ACTIONS(5382), - [anon_sym_PIPE_EQ] = ACTIONS(5382), - [anon_sym_LT_LT_EQ] = ACTIONS(5382), - [anon_sym_GT_GT_EQ] = ACTIONS(5382), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5382), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5382), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4684), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3303] = { [sym_preproc_region] = STATE(3303), @@ -481283,56 +492852,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(5324), - [anon_sym_LBRACK] = ACTIONS(5324), - [anon_sym_COLON] = ACTIONS(5324), - [anon_sym_COMMA] = ACTIONS(5324), - [anon_sym_RBRACK] = ACTIONS(5324), - [anon_sym_LPAREN] = ACTIONS(5324), - [anon_sym_RPAREN] = ACTIONS(5324), - [anon_sym_RBRACE] = ACTIONS(5324), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym_GT] = ACTIONS(5326), - [anon_sym_in] = ACTIONS(5324), - [anon_sym_QMARK] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(5326), - [anon_sym_PLUS_PLUS] = ACTIONS(5324), - [anon_sym_DASH_DASH] = ACTIONS(5324), - [anon_sym_PLUS] = ACTIONS(5326), - [anon_sym_DASH] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(5324), - [anon_sym_SLASH] = ACTIONS(5326), - [anon_sym_PERCENT] = ACTIONS(5324), - [anon_sym_CARET] = ACTIONS(5324), - [anon_sym_PIPE] = ACTIONS(5326), - [anon_sym_AMP] = ACTIONS(5326), - [anon_sym_LT_LT] = ACTIONS(5324), - [anon_sym_GT_GT] = ACTIONS(5326), - [anon_sym_GT_GT_GT] = ACTIONS(5324), - [anon_sym_EQ_EQ] = ACTIONS(5324), - [anon_sym_BANG_EQ] = ACTIONS(5324), - [anon_sym_GT_EQ] = ACTIONS(5324), - [anon_sym_LT_EQ] = ACTIONS(5324), - [anon_sym_DOT] = ACTIONS(5326), - [anon_sym_EQ_GT] = ACTIONS(5324), - [anon_sym_switch] = ACTIONS(5324), - [anon_sym_when] = ACTIONS(5324), - [anon_sym_DOT_DOT] = ACTIONS(5324), - [anon_sym_and] = ACTIONS(5324), - [anon_sym_or] = ACTIONS(5324), - [anon_sym_AMP_AMP] = ACTIONS(5324), - [anon_sym_PIPE_PIPE] = ACTIONS(5324), - [anon_sym_QMARK_QMARK] = ACTIONS(5324), - [anon_sym_on] = ACTIONS(5324), - [anon_sym_equals] = ACTIONS(5324), - [anon_sym_by] = ACTIONS(5324), - [anon_sym_as] = ACTIONS(5324), - [anon_sym_is] = ACTIONS(5324), - [anon_sym_DASH_GT] = ACTIONS(5324), - [anon_sym_with] = ACTIONS(5324), - [aux_sym_preproc_if_token3] = ACTIONS(5324), - [aux_sym_preproc_else_token1] = ACTIONS(5324), - [aux_sym_preproc_elif_token1] = ACTIONS(5324), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481354,56 +492924,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(5304), - [anon_sym_LBRACK] = ACTIONS(5304), - [anon_sym_COLON] = ACTIONS(5304), - [anon_sym_COMMA] = ACTIONS(5304), - [anon_sym_RBRACK] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym_RPAREN] = ACTIONS(5304), - [anon_sym_RBRACE] = ACTIONS(5304), - [anon_sym_LT] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5306), - [anon_sym_in] = ACTIONS(5304), - [anon_sym_QMARK] = ACTIONS(5306), - [anon_sym_BANG] = ACTIONS(5306), - [anon_sym_PLUS_PLUS] = ACTIONS(5304), - [anon_sym_DASH_DASH] = ACTIONS(5304), - [anon_sym_PLUS] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_SLASH] = ACTIONS(5306), - [anon_sym_PERCENT] = ACTIONS(5304), - [anon_sym_CARET] = ACTIONS(5304), - [anon_sym_PIPE] = ACTIONS(5306), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym_LT_LT] = ACTIONS(5304), - [anon_sym_GT_GT] = ACTIONS(5306), - [anon_sym_GT_GT_GT] = ACTIONS(5304), - [anon_sym_EQ_EQ] = ACTIONS(5304), - [anon_sym_BANG_EQ] = ACTIONS(5304), - [anon_sym_GT_EQ] = ACTIONS(5304), - [anon_sym_LT_EQ] = ACTIONS(5304), - [anon_sym_DOT] = ACTIONS(5306), - [anon_sym_EQ_GT] = ACTIONS(5304), - [anon_sym_switch] = ACTIONS(5304), - [anon_sym_when] = ACTIONS(5304), - [anon_sym_DOT_DOT] = ACTIONS(5304), - [anon_sym_and] = ACTIONS(5304), - [anon_sym_or] = ACTIONS(5304), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_PIPE_PIPE] = ACTIONS(5304), - [anon_sym_QMARK_QMARK] = ACTIONS(5304), - [anon_sym_on] = ACTIONS(5304), - [anon_sym_equals] = ACTIONS(5304), - [anon_sym_by] = ACTIONS(5304), - [anon_sym_as] = ACTIONS(5304), - [anon_sym_is] = ACTIONS(5304), - [anon_sym_DASH_GT] = ACTIONS(5304), - [anon_sym_with] = ACTIONS(5304), - [aux_sym_preproc_if_token3] = ACTIONS(5304), - [aux_sym_preproc_else_token1] = ACTIONS(5304), - [aux_sym_preproc_elif_token1] = ACTIONS(5304), + [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), @@ -481416,26 +492987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3305] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7391), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3305), [sym_preproc_endregion] = STATE(3305), [sym_preproc_line] = STATE(3305), @@ -481445,36 +492996,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481496,56 +493068,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(5288), - [anon_sym_LBRACK] = ACTIONS(5288), - [anon_sym_COLON] = ACTIONS(5288), - [anon_sym_COMMA] = ACTIONS(5288), - [anon_sym_RBRACK] = ACTIONS(5288), - [anon_sym_LPAREN] = ACTIONS(5288), - [anon_sym_RPAREN] = ACTIONS(5288), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_in] = ACTIONS(5288), - [anon_sym_QMARK] = ACTIONS(5290), - [anon_sym_BANG] = ACTIONS(5290), - [anon_sym_PLUS_PLUS] = ACTIONS(5288), - [anon_sym_DASH_DASH] = ACTIONS(5288), - [anon_sym_PLUS] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(5290), - [anon_sym_STAR] = ACTIONS(5288), - [anon_sym_SLASH] = ACTIONS(5290), - [anon_sym_PERCENT] = ACTIONS(5288), - [anon_sym_CARET] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5290), - [anon_sym_GT_GT_GT] = ACTIONS(5288), - [anon_sym_EQ_EQ] = ACTIONS(5288), - [anon_sym_BANG_EQ] = ACTIONS(5288), - [anon_sym_GT_EQ] = ACTIONS(5288), - [anon_sym_LT_EQ] = ACTIONS(5288), - [anon_sym_DOT] = ACTIONS(5290), - [anon_sym_EQ_GT] = ACTIONS(5288), - [anon_sym_switch] = ACTIONS(5288), - [anon_sym_when] = ACTIONS(5288), - [anon_sym_DOT_DOT] = ACTIONS(5288), - [anon_sym_and] = ACTIONS(5288), - [anon_sym_or] = ACTIONS(5288), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_QMARK_QMARK] = ACTIONS(5288), - [anon_sym_on] = ACTIONS(5288), - [anon_sym_equals] = ACTIONS(5288), - [anon_sym_by] = ACTIONS(5288), - [anon_sym_as] = ACTIONS(5288), - [anon_sym_is] = ACTIONS(5288), - [anon_sym_DASH_GT] = ACTIONS(5288), - [anon_sym_with] = ACTIONS(5288), - [aux_sym_preproc_if_token3] = ACTIONS(5288), - [aux_sym_preproc_else_token1] = ACTIONS(5288), - [aux_sym_preproc_elif_token1] = ACTIONS(5288), + [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), @@ -481558,26 +493131,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3307] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7325), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3307), [sym_preproc_endregion] = STATE(3307), [sym_preproc_line] = STATE(3307), @@ -481587,36 +493140,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481638,56 +493212,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_EQ] = ACTIONS(5384), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5386), - [anon_sym_DASH_EQ] = ACTIONS(5386), - [anon_sym_STAR_EQ] = ACTIONS(5386), - [anon_sym_SLASH_EQ] = ACTIONS(5386), - [anon_sym_PERCENT_EQ] = ACTIONS(5386), - [anon_sym_AMP_EQ] = ACTIONS(5386), - [anon_sym_CARET_EQ] = ACTIONS(5386), - [anon_sym_PIPE_EQ] = ACTIONS(5386), - [anon_sym_LT_LT_EQ] = ACTIONS(5386), - [anon_sym_GT_GT_EQ] = ACTIONS(5386), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5386), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5386), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481709,56 +493284,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_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481780,56 +493356,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_EQ] = ACTIONS(5392), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5394), - [anon_sym_DASH_EQ] = ACTIONS(5394), - [anon_sym_STAR_EQ] = ACTIONS(5394), - [anon_sym_SLASH_EQ] = ACTIONS(5394), - [anon_sym_PERCENT_EQ] = ACTIONS(5394), - [anon_sym_AMP_EQ] = ACTIONS(5394), - [anon_sym_CARET_EQ] = ACTIONS(5394), - [anon_sym_PIPE_EQ] = ACTIONS(5394), - [anon_sym_LT_LT_EQ] = ACTIONS(5394), - [anon_sym_GT_GT_EQ] = ACTIONS(5394), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5394), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5394), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -481851,56 +493428,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(4942), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COLON] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_in] = ACTIONS(4942), - [anon_sym_QMARK] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4942), - [anon_sym_CARET] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4944), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4944), - [anon_sym_GT_GT_GT] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_EQ_GT] = ACTIONS(4942), - [anon_sym_switch] = ACTIONS(4942), - [anon_sym_when] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_and] = ACTIONS(4942), - [anon_sym_or] = ACTIONS(4942), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_QMARK_QMARK] = ACTIONS(4942), - [anon_sym_on] = ACTIONS(4942), - [anon_sym_equals] = ACTIONS(4942), - [anon_sym_by] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4942), - [anon_sym_is] = ACTIONS(4942), - [anon_sym_DASH_GT] = ACTIONS(4942), - [anon_sym_with] = ACTIONS(4942), - [aux_sym_preproc_if_token3] = ACTIONS(4942), - [aux_sym_preproc_else_token1] = ACTIONS(4942), - [aux_sym_preproc_elif_token1] = ACTIONS(4942), + [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), @@ -481913,26 +493491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3312] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3312), [sym_preproc_endregion] = STATE(3312), [sym_preproc_line] = STATE(3312), @@ -481942,36 +493500,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3312), [sym_preproc_define] = STATE(3312), [sym_preproc_undef] = STATE(3312), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5396), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -481984,8 +493563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3313] = { - [sym_argument_list] = STATE(2833), - [sym_initializer_expression] = STATE(3032), [sym_preproc_region] = STATE(3313), [sym_preproc_endregion] = STATE(3313), [sym_preproc_line] = STATE(3313), @@ -481995,54 +493572,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(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COLON] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_RBRACK] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4645), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_in] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4649), - [anon_sym_GT_GT_GT] = ACTIONS(4645), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_GT_EQ] = ACTIONS(4645), - [anon_sym_LT_EQ] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_EQ_GT] = ACTIONS(4645), - [anon_sym_switch] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4645), - [anon_sym_AMP_AMP] = ACTIONS(4645), - [anon_sym_PIPE_PIPE] = ACTIONS(4645), - [anon_sym_QMARK_QMARK] = ACTIONS(4645), - [anon_sym_on] = ACTIONS(4645), - [anon_sym_equals] = ACTIONS(4645), - [anon_sym_by] = ACTIONS(4645), - [anon_sym_as] = ACTIONS(4645), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_with] = ACTIONS(4645), - [aux_sym_preproc_if_token3] = ACTIONS(4645), - [aux_sym_preproc_else_token1] = ACTIONS(4645), - [aux_sym_preproc_elif_token1] = ACTIONS(4645), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482064,56 +493644,56 @@ 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_SEMI] = ACTIONS(5328), - [anon_sym_LBRACK] = ACTIONS(5328), - [anon_sym_COLON] = ACTIONS(5328), - [anon_sym_COMMA] = ACTIONS(5328), - [anon_sym_RBRACK] = ACTIONS(5328), - [anon_sym_LPAREN] = ACTIONS(5328), - [anon_sym_RPAREN] = ACTIONS(5328), - [anon_sym_RBRACE] = ACTIONS(5328), - [anon_sym_LT] = ACTIONS(5330), - [anon_sym_GT] = ACTIONS(5330), - [anon_sym_in] = ACTIONS(5328), - [anon_sym_QMARK] = ACTIONS(5330), - [anon_sym_BANG] = ACTIONS(5330), - [anon_sym_PLUS_PLUS] = ACTIONS(5328), - [anon_sym_DASH_DASH] = ACTIONS(5328), - [anon_sym_PLUS] = ACTIONS(5330), - [anon_sym_DASH] = ACTIONS(5330), - [anon_sym_STAR] = ACTIONS(5328), - [anon_sym_SLASH] = ACTIONS(5330), - [anon_sym_PERCENT] = ACTIONS(5328), - [anon_sym_CARET] = ACTIONS(5328), - [anon_sym_PIPE] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5330), - [anon_sym_LT_LT] = ACTIONS(5328), - [anon_sym_GT_GT] = ACTIONS(5330), - [anon_sym_GT_GT_GT] = ACTIONS(5328), - [anon_sym_EQ_EQ] = ACTIONS(5328), - [anon_sym_BANG_EQ] = ACTIONS(5328), - [anon_sym_GT_EQ] = ACTIONS(5328), - [anon_sym_LT_EQ] = ACTIONS(5328), - [anon_sym_DOT] = ACTIONS(5330), - [anon_sym_EQ_GT] = ACTIONS(5328), - [anon_sym_switch] = ACTIONS(5328), - [anon_sym_when] = ACTIONS(5328), - [anon_sym_DOT_DOT] = ACTIONS(5328), - [anon_sym_and] = ACTIONS(5328), - [anon_sym_or] = ACTIONS(5328), - [anon_sym_AMP_AMP] = ACTIONS(5328), - [anon_sym_PIPE_PIPE] = ACTIONS(5328), - [anon_sym_QMARK_QMARK] = ACTIONS(5328), - [anon_sym_on] = ACTIONS(5328), - [anon_sym_equals] = ACTIONS(5328), - [anon_sym_by] = ACTIONS(5328), - [anon_sym_as] = ACTIONS(5328), - [anon_sym_is] = ACTIONS(5328), - [anon_sym_DASH_GT] = ACTIONS(5328), - [anon_sym_with] = ACTIONS(5328), - [aux_sym_preproc_if_token3] = ACTIONS(5328), - [aux_sym_preproc_else_token1] = ACTIONS(5328), - [aux_sym_preproc_elif_token1] = ACTIONS(5328), + [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), @@ -482124,28 +493704,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(4860), }, [3315] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7449), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3315), [sym_preproc_endregion] = STATE(3315), [sym_preproc_line] = STATE(3315), @@ -482155,36 +493716,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -482206,56 +493788,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(5352), - [anon_sym_LBRACK] = ACTIONS(5352), - [anon_sym_COLON] = ACTIONS(5352), - [anon_sym_COMMA] = ACTIONS(5352), - [anon_sym_RBRACK] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_RPAREN] = ACTIONS(5352), - [anon_sym_RBRACE] = ACTIONS(5352), - [anon_sym_LT] = ACTIONS(5354), - [anon_sym_GT] = ACTIONS(5354), - [anon_sym_in] = ACTIONS(5352), - [anon_sym_QMARK] = ACTIONS(5354), - [anon_sym_BANG] = ACTIONS(5354), - [anon_sym_PLUS_PLUS] = ACTIONS(5352), - [anon_sym_DASH_DASH] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_STAR] = ACTIONS(5352), - [anon_sym_SLASH] = ACTIONS(5354), - [anon_sym_PERCENT] = ACTIONS(5352), - [anon_sym_CARET] = ACTIONS(5352), - [anon_sym_PIPE] = ACTIONS(5354), - [anon_sym_AMP] = ACTIONS(5354), - [anon_sym_LT_LT] = ACTIONS(5352), - [anon_sym_GT_GT] = ACTIONS(5354), - [anon_sym_GT_GT_GT] = ACTIONS(5352), - [anon_sym_EQ_EQ] = ACTIONS(5352), - [anon_sym_BANG_EQ] = ACTIONS(5352), - [anon_sym_GT_EQ] = ACTIONS(5352), - [anon_sym_LT_EQ] = ACTIONS(5352), - [anon_sym_DOT] = ACTIONS(5354), - [anon_sym_EQ_GT] = ACTIONS(5352), - [anon_sym_switch] = ACTIONS(5352), - [anon_sym_when] = ACTIONS(5352), - [anon_sym_DOT_DOT] = ACTIONS(5352), - [anon_sym_and] = ACTIONS(5352), - [anon_sym_or] = ACTIONS(5352), - [anon_sym_AMP_AMP] = ACTIONS(5352), - [anon_sym_PIPE_PIPE] = ACTIONS(5352), - [anon_sym_QMARK_QMARK] = ACTIONS(5352), - [anon_sym_on] = ACTIONS(5352), - [anon_sym_equals] = ACTIONS(5352), - [anon_sym_by] = ACTIONS(5352), - [anon_sym_as] = ACTIONS(5352), - [anon_sym_is] = ACTIONS(5352), - [anon_sym_DASH_GT] = ACTIONS(5352), - [anon_sym_with] = ACTIONS(5352), - [aux_sym_preproc_if_token3] = ACTIONS(5352), - [aux_sym_preproc_else_token1] = ACTIONS(5352), - [aux_sym_preproc_elif_token1] = ACTIONS(5352), + [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), @@ -482268,26 +493851,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3317] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3317), [sym_preproc_endregion] = STATE(3317), [sym_preproc_line] = STATE(3317), @@ -482297,36 +493860,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3317), [sym_preproc_define] = STATE(3317), [sym_preproc_undef] = STATE(3317), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5398), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482348,56 +493932,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(4966), - [anon_sym_LBRACK] = ACTIONS(4966), - [anon_sym_COLON] = ACTIONS(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_RBRACK] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_RPAREN] = ACTIONS(4966), - [anon_sym_RBRACE] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_in] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_EQ_GT] = ACTIONS(4966), - [anon_sym_switch] = ACTIONS(4966), - [anon_sym_when] = ACTIONS(4966), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4966), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_QMARK_QMARK] = ACTIONS(4966), - [anon_sym_on] = ACTIONS(4966), - [anon_sym_equals] = ACTIONS(4966), - [anon_sym_by] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4966), - [anon_sym_is] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_with] = ACTIONS(4966), - [aux_sym_preproc_if_token3] = ACTIONS(4966), - [aux_sym_preproc_else_token1] = ACTIONS(4966), - [aux_sym_preproc_elif_token1] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(5407), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COLON] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_RBRACK] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_RPAREN] = ACTIONS(5407), + [anon_sym_RBRACE] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_in] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_EQ_GT] = ACTIONS(5407), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_when] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_into] = ACTIONS(5407), + [anon_sym_on] = ACTIONS(5407), + [anon_sym_equals] = ACTIONS(5407), + [anon_sym_by] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5407), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), + [aux_sym_preproc_if_token3] = ACTIONS(5407), + [aux_sym_preproc_else_token1] = ACTIONS(5407), + [aux_sym_preproc_elif_token1] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482419,56 +494004,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_EQ] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_GT] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_CARET] = ACTIONS(3636), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_LT_LT] = ACTIONS(3636), - [anon_sym_GT_GT] = ACTIONS(3636), - [anon_sym_GT_GT_GT] = ACTIONS(3636), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3651), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(3651), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_QMARK_QMARK] = ACTIONS(3636), - [anon_sym_as] = ACTIONS(3651), - [anon_sym_is] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), - [anon_sym_with] = ACTIONS(3651), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482490,56 +494076,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(4684), - [anon_sym_EQ] = ACTIONS(5400), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5402), - [anon_sym_DASH_EQ] = ACTIONS(5402), - [anon_sym_STAR_EQ] = ACTIONS(5402), - [anon_sym_SLASH_EQ] = ACTIONS(5402), - [anon_sym_PERCENT_EQ] = ACTIONS(5402), - [anon_sym_AMP_EQ] = ACTIONS(5402), - [anon_sym_CARET_EQ] = ACTIONS(5402), - [anon_sym_PIPE_EQ] = ACTIONS(5402), - [anon_sym_LT_LT_EQ] = ACTIONS(5402), - [anon_sym_GT_GT_EQ] = ACTIONS(5402), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5402), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5402), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482561,56 +494148,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(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_COLON] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RBRACK] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_in] = ACTIONS(4974), - [anon_sym_QMARK] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4974), - [anon_sym_CARET] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4976), - [anon_sym_LT_LT] = ACTIONS(4974), - [anon_sym_GT_GT] = ACTIONS(4976), - [anon_sym_GT_GT_GT] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_EQ_GT] = ACTIONS(4974), - [anon_sym_switch] = ACTIONS(4974), - [anon_sym_when] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_and] = ACTIONS(4974), - [anon_sym_or] = ACTIONS(4974), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_QMARK_QMARK] = ACTIONS(4974), - [anon_sym_on] = ACTIONS(4974), - [anon_sym_equals] = ACTIONS(4974), - [anon_sym_by] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4974), - [anon_sym_is] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_with] = ACTIONS(4974), - [aux_sym_preproc_if_token3] = ACTIONS(4974), - [aux_sym_preproc_else_token1] = ACTIONS(4974), - [aux_sym_preproc_elif_token1] = ACTIONS(4974), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -482632,56 +494220,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3322), [sym_preproc_define] = STATE(3322), [sym_preproc_undef] = STATE(3322), - [anon_sym_EQ] = ACTIONS(5404), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5406), - [anon_sym_DASH_EQ] = ACTIONS(5406), - [anon_sym_STAR_EQ] = ACTIONS(5406), - [anon_sym_SLASH_EQ] = ACTIONS(5406), - [anon_sym_PERCENT_EQ] = ACTIONS(5406), - [anon_sym_AMP_EQ] = ACTIONS(5406), - [anon_sym_CARET_EQ] = ACTIONS(5406), - [anon_sym_PIPE_EQ] = ACTIONS(5406), - [anon_sym_LT_LT_EQ] = ACTIONS(5406), - [anon_sym_GT_GT_EQ] = ACTIONS(5406), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5406), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5406), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -482703,56 +494292,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3323), [sym_preproc_define] = STATE(3323), [sym_preproc_undef] = STATE(3323), - [anon_sym_SEMI] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_RBRACK] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4950), - [anon_sym_RBRACE] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_in] = ACTIONS(4950), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4950), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_CARET] = ACTIONS(4950), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4952), - [anon_sym_GT_GT_GT] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_EQ_GT] = ACTIONS(4950), - [anon_sym_switch] = ACTIONS(4950), - [anon_sym_when] = ACTIONS(4950), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_and] = ACTIONS(4950), - [anon_sym_or] = ACTIONS(4950), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_QMARK_QMARK] = ACTIONS(4950), - [anon_sym_on] = ACTIONS(4950), - [anon_sym_equals] = ACTIONS(4950), - [anon_sym_by] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4950), - [anon_sym_is] = ACTIONS(4950), - [anon_sym_DASH_GT] = ACTIONS(4950), - [anon_sym_with] = ACTIONS(4950), - [aux_sym_preproc_if_token3] = ACTIONS(4950), - [aux_sym_preproc_else_token1] = ACTIONS(4950), - [aux_sym_preproc_elif_token1] = ACTIONS(4950), + [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), @@ -482774,56 +494364,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3324), [sym_preproc_define] = STATE(3324), [sym_preproc_undef] = STATE(3324), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_when] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_QMARK_QMARK] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [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), @@ -482845,56 +494436,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(4954), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_COLON] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_RBRACK] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_RPAREN] = ACTIONS(4954), - [anon_sym_RBRACE] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_in] = ACTIONS(4954), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4954), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_CARET] = ACTIONS(4954), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(4956), - [anon_sym_LT_LT] = ACTIONS(4954), - [anon_sym_GT_GT] = ACTIONS(4956), - [anon_sym_GT_GT_GT] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_EQ_GT] = ACTIONS(4954), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_when] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_and] = ACTIONS(4954), - [anon_sym_or] = ACTIONS(4954), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_QMARK_QMARK] = ACTIONS(4954), - [anon_sym_on] = ACTIONS(4954), - [anon_sym_equals] = ACTIONS(4954), - [anon_sym_by] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4954), - [anon_sym_is] = ACTIONS(4954), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4954), - [aux_sym_preproc_if_token3] = ACTIONS(4954), - [aux_sym_preproc_else_token1] = ACTIONS(4954), - [aux_sym_preproc_elif_token1] = ACTIONS(4954), + [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), @@ -482907,26 +494499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3326] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7491), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3326), [sym_preproc_endregion] = STATE(3326), [sym_preproc_line] = STATE(3326), @@ -482936,36 +494508,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3326), [sym_preproc_define] = STATE(3326), [sym_preproc_undef] = STATE(3326), - [aux_sym_function_pointer_type_repeat1] = STATE(3336), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -482987,56 +494580,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3327), [sym_preproc_define] = STATE(3327), [sym_preproc_undef] = STATE(3327), - [anon_sym_SEMI] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5062), - [anon_sym_COLON] = ACTIONS(5062), - [anon_sym_COMMA] = ACTIONS(5062), - [anon_sym_RBRACK] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5062), - [anon_sym_LT] = ACTIONS(5064), - [anon_sym_GT] = ACTIONS(5064), - [anon_sym_in] = ACTIONS(5062), - [anon_sym_QMARK] = ACTIONS(5064), - [anon_sym_BANG] = ACTIONS(5064), - [anon_sym_PLUS_PLUS] = ACTIONS(5062), - [anon_sym_DASH_DASH] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_STAR] = ACTIONS(5062), - [anon_sym_SLASH] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_CARET] = ACTIONS(5062), - [anon_sym_PIPE] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LT_LT] = ACTIONS(5062), - [anon_sym_GT_GT] = ACTIONS(5064), - [anon_sym_GT_GT_GT] = ACTIONS(5062), - [anon_sym_EQ_EQ] = ACTIONS(5062), - [anon_sym_BANG_EQ] = ACTIONS(5062), - [anon_sym_GT_EQ] = ACTIONS(5062), - [anon_sym_LT_EQ] = ACTIONS(5062), - [anon_sym_DOT] = ACTIONS(5064), - [anon_sym_EQ_GT] = ACTIONS(5062), - [anon_sym_switch] = ACTIONS(5062), - [anon_sym_when] = ACTIONS(5062), - [anon_sym_DOT_DOT] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_or] = ACTIONS(5062), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_PIPE_PIPE] = ACTIONS(5062), - [anon_sym_QMARK_QMARK] = ACTIONS(5062), - [anon_sym_on] = ACTIONS(5062), - [anon_sym_equals] = ACTIONS(5062), - [anon_sym_by] = ACTIONS(5062), - [anon_sym_as] = ACTIONS(5062), - [anon_sym_is] = ACTIONS(5062), - [anon_sym_DASH_GT] = ACTIONS(5062), - [anon_sym_with] = ACTIONS(5062), - [aux_sym_preproc_if_token3] = ACTIONS(5062), - [aux_sym_preproc_else_token1] = ACTIONS(5062), - [aux_sym_preproc_elif_token1] = ACTIONS(5062), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483049,26 +494643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3328] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3328), [sym_preproc_endregion] = STATE(3328), [sym_preproc_line] = STATE(3328), @@ -483078,36 +494652,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5408), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -483120,26 +494715,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3329] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7190), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3329), [sym_preproc_endregion] = STATE(3329), [sym_preproc_line] = STATE(3329), @@ -483149,36 +494724,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3359), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -483191,26 +494787,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3330] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7087), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3330), [sym_preproc_endregion] = STATE(3330), [sym_preproc_line] = STATE(3330), @@ -483220,36 +494796,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -483262,6 +494859,9 @@ 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), @@ -483271,56 +494871,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3331), [sym_preproc_define] = STATE(3331), [sym_preproc_undef] = STATE(3331), - [anon_sym_SEMI] = ACTIONS(4962), - [anon_sym_LBRACK] = ACTIONS(4962), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_RBRACK] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_RPAREN] = ACTIONS(4962), - [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_in] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_EQ_GT] = ACTIONS(4962), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_when] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4962), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_on] = ACTIONS(4962), - [anon_sym_equals] = ACTIONS(4962), - [anon_sym_by] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4962), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4962), - [aux_sym_preproc_else_token1] = ACTIONS(4962), - [aux_sym_preproc_elif_token1] = ACTIONS(4962), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483333,26 +494931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3332] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7335), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3332), [sym_preproc_endregion] = STATE(3332), [sym_preproc_line] = STATE(3332), @@ -483362,36 +494940,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3315), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -483413,56 +495012,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(4958), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_RBRACK] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_RPAREN] = ACTIONS(4958), - [anon_sym_RBRACE] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_in] = ACTIONS(4958), - [anon_sym_QMARK] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4958), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4958), - [anon_sym_CARET] = ACTIONS(4958), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4960), - [anon_sym_LT_LT] = ACTIONS(4958), - [anon_sym_GT_GT] = ACTIONS(4960), - [anon_sym_GT_GT_GT] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_EQ_GT] = ACTIONS(4958), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_when] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_or] = ACTIONS(4958), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_QMARK_QMARK] = ACTIONS(4958), - [anon_sym_on] = ACTIONS(4958), - [anon_sym_equals] = ACTIONS(4958), - [anon_sym_by] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4958), - [anon_sym_DASH_GT] = ACTIONS(4958), - [anon_sym_with] = ACTIONS(4958), - [aux_sym_preproc_if_token3] = ACTIONS(4958), - [aux_sym_preproc_else_token1] = ACTIONS(4958), - [aux_sym_preproc_elif_token1] = ACTIONS(4958), + [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), @@ -483484,56 +495084,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(3743), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COLON] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_RBRACK] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_RPAREN] = ACTIONS(3743), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_in] = ACTIONS(3743), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_when] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(3743), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_on] = ACTIONS(3743), - [anon_sym_equals] = ACTIONS(3743), - [anon_sym_by] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(3743), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), - [aux_sym_preproc_if_token3] = ACTIONS(3743), - [aux_sym_preproc_else_token1] = ACTIONS(3743), - [aux_sym_preproc_elif_token1] = ACTIONS(3743), + [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), @@ -483555,56 +495156,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(5292), - [anon_sym_LBRACK] = ACTIONS(5292), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_RBRACK] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_in] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_EQ_GT] = ACTIONS(5292), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_when] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_on] = ACTIONS(5292), - [anon_sym_equals] = ACTIONS(5292), - [anon_sym_by] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5292), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), - [aux_sym_preproc_if_token3] = ACTIONS(5292), - [aux_sym_preproc_else_token1] = ACTIONS(5292), - [aux_sym_preproc_elif_token1] = ACTIONS(5292), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483617,26 +495219,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3336] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7527), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3336), [sym_preproc_endregion] = STATE(3336), [sym_preproc_line] = STATE(3336), @@ -483646,36 +495228,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483697,56 +495300,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483768,56 +495372,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(4205), - [anon_sym_LBRACK] = ACTIONS(5346), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_in] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5346), - [anon_sym_DASH_DASH] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5346), - [anon_sym_CARET] = ACTIONS(5346), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5349), - [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(5349), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(5346), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(5346), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(5346), - [anon_sym_PIPE_PIPE] = ACTIONS(5346), - [anon_sym_QMARK_QMARK] = ACTIONS(5346), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [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(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483839,56 +495444,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(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483910,56 +495516,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(5292), - [anon_sym_LBRACK] = ACTIONS(5292), - [anon_sym_COLON] = ACTIONS(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_RBRACK] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_RPAREN] = ACTIONS(5292), - [anon_sym_RBRACE] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_in] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_EQ_GT] = ACTIONS(5292), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_when] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5292), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_on] = ACTIONS(5292), - [anon_sym_equals] = ACTIONS(5292), - [anon_sym_by] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5292), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), - [aux_sym_preproc_if_token3] = ACTIONS(5292), - [aux_sym_preproc_else_token1] = ACTIONS(5292), - [aux_sym_preproc_elif_token1] = ACTIONS(5292), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -483981,56 +495588,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(5336), - [anon_sym_LBRACK] = ACTIONS(5336), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_COMMA] = ACTIONS(5336), - [anon_sym_RBRACK] = ACTIONS(5336), - [anon_sym_LPAREN] = ACTIONS(5336), - [anon_sym_RPAREN] = ACTIONS(5336), - [anon_sym_RBRACE] = ACTIONS(5336), - [anon_sym_LT] = ACTIONS(5338), - [anon_sym_GT] = ACTIONS(5338), - [anon_sym_in] = ACTIONS(5336), - [anon_sym_QMARK] = ACTIONS(5338), - [anon_sym_BANG] = ACTIONS(5338), - [anon_sym_PLUS_PLUS] = ACTIONS(5336), - [anon_sym_DASH_DASH] = ACTIONS(5336), - [anon_sym_PLUS] = ACTIONS(5338), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_STAR] = ACTIONS(5336), - [anon_sym_SLASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5336), - [anon_sym_CARET] = ACTIONS(5336), - [anon_sym_PIPE] = ACTIONS(5338), - [anon_sym_AMP] = ACTIONS(5338), - [anon_sym_LT_LT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5338), - [anon_sym_GT_GT_GT] = ACTIONS(5336), - [anon_sym_EQ_EQ] = ACTIONS(5336), - [anon_sym_BANG_EQ] = ACTIONS(5336), - [anon_sym_GT_EQ] = ACTIONS(5336), - [anon_sym_LT_EQ] = ACTIONS(5336), - [anon_sym_DOT] = ACTIONS(5338), - [anon_sym_EQ_GT] = ACTIONS(5336), - [anon_sym_switch] = ACTIONS(5336), - [anon_sym_when] = ACTIONS(5336), - [anon_sym_DOT_DOT] = ACTIONS(5336), - [anon_sym_and] = ACTIONS(5336), - [anon_sym_or] = ACTIONS(5336), - [anon_sym_AMP_AMP] = ACTIONS(5336), - [anon_sym_PIPE_PIPE] = ACTIONS(5336), - [anon_sym_QMARK_QMARK] = ACTIONS(5336), - [anon_sym_on] = ACTIONS(5336), - [anon_sym_equals] = ACTIONS(5336), - [anon_sym_by] = ACTIONS(5336), - [anon_sym_as] = ACTIONS(5336), - [anon_sym_is] = ACTIONS(5336), - [anon_sym_DASH_GT] = ACTIONS(5336), - [anon_sym_with] = ACTIONS(5336), - [aux_sym_preproc_if_token3] = ACTIONS(5336), - [aux_sym_preproc_else_token1] = ACTIONS(5336), - [aux_sym_preproc_elif_token1] = ACTIONS(5336), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484052,56 +495660,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(4946), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_COLON] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_RBRACK] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_RPAREN] = ACTIONS(4946), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_in] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4946), - [anon_sym_CARET] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4948), - [anon_sym_LT_LT] = ACTIONS(4946), - [anon_sym_GT_GT] = ACTIONS(4948), - [anon_sym_GT_GT_GT] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_EQ_GT] = ACTIONS(4946), - [anon_sym_switch] = ACTIONS(4946), - [anon_sym_when] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_and] = ACTIONS(4946), - [anon_sym_or] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_QMARK_QMARK] = ACTIONS(4946), - [anon_sym_on] = ACTIONS(4946), - [anon_sym_equals] = ACTIONS(4946), - [anon_sym_by] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4946), - [anon_sym_is] = ACTIONS(4946), - [anon_sym_DASH_GT] = ACTIONS(4946), - [anon_sym_with] = ACTIONS(4946), - [aux_sym_preproc_if_token3] = ACTIONS(4946), - [aux_sym_preproc_else_token1] = ACTIONS(4946), - [aux_sym_preproc_elif_token1] = ACTIONS(4946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484123,56 +495732,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(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_RPAREN] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_EQ_GT] = ACTIONS(2911), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_when] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_on] = ACTIONS(2911), - [anon_sym_equals] = ACTIONS(2911), - [anon_sym_by] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [aux_sym_preproc_if_token3] = ACTIONS(2911), - [aux_sym_preproc_else_token1] = ACTIONS(2911), - [aux_sym_preproc_elif_token1] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_RBRACK] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_RPAREN] = ACTIONS(5433), + [anon_sym_RBRACE] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_in] = ACTIONS(5435), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_EQ_GT] = ACTIONS(5433), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_when] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_into] = ACTIONS(5433), + [anon_sym_on] = ACTIONS(5433), + [anon_sym_equals] = ACTIONS(5433), + [anon_sym_by] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5433), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), + [aux_sym_preproc_if_token3] = ACTIONS(5433), + [aux_sym_preproc_else_token1] = ACTIONS(5433), + [aux_sym_preproc_elif_token1] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484194,56 +495804,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(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(3083), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_when] = ACTIONS(3083), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_and] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_QMARK_QMARK] = ACTIONS(3083), - [anon_sym_on] = ACTIONS(3083), - [anon_sym_equals] = ACTIONS(3083), - [anon_sym_by] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3083), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_with] = ACTIONS(3083), - [aux_sym_preproc_if_token3] = ACTIONS(3083), - [aux_sym_preproc_else_token1] = ACTIONS(3083), - [aux_sym_preproc_elif_token1] = ACTIONS(3083), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484256,26 +495867,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3345] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7200), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3345), [sym_preproc_endregion] = STATE(3345), [sym_preproc_line] = STATE(3345), @@ -484285,36 +495876,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3397), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484336,56 +495948,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(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_RPAREN] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_EQ_GT] = ACTIONS(2915), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_when] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_on] = ACTIONS(2915), - [anon_sym_equals] = ACTIONS(2915), - [anon_sym_by] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [aux_sym_preproc_if_token3] = ACTIONS(2915), - [aux_sym_preproc_else_token1] = ACTIONS(2915), - [aux_sym_preproc_elif_token1] = ACTIONS(2915), + [anon_sym_SEMI] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COLON] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_RPAREN] = ACTIONS(5437), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_in] = ACTIONS(5439), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_EQ_GT] = ACTIONS(5437), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_when] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_into] = ACTIONS(5437), + [anon_sym_on] = ACTIONS(5437), + [anon_sym_equals] = ACTIONS(5437), + [anon_sym_by] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5437), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), + [aux_sym_preproc_if_token3] = ACTIONS(5437), + [aux_sym_preproc_else_token1] = ACTIONS(5437), + [aux_sym_preproc_elif_token1] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484407,56 +496020,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3347), [sym_preproc_define] = STATE(3347), [sym_preproc_undef] = STATE(3347), - [anon_sym_SEMI] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_COLON] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_RBRACK] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_RPAREN] = ACTIONS(4819), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_in] = ACTIONS(4819), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_GT_GT_GT] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_EQ_GT] = ACTIONS(4819), - [anon_sym_switch] = ACTIONS(4819), - [anon_sym_when] = ACTIONS(4819), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_or] = ACTIONS(4819), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_QMARK_QMARK] = ACTIONS(4819), - [anon_sym_on] = ACTIONS(4819), - [anon_sym_equals] = ACTIONS(4819), - [anon_sym_by] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4819), - [anon_sym_is] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4819), - [anon_sym_with] = ACTIONS(4819), - [aux_sym_preproc_if_token3] = ACTIONS(4819), - [aux_sym_preproc_else_token1] = ACTIONS(4819), - [aux_sym_preproc_elif_token1] = ACTIONS(4819), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484478,56 +496092,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(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), + [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), @@ -484540,7 +496155,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3349] = { - [sym_initializer_expression] = STATE(2880), [sym_preproc_region] = STATE(3349), [sym_preproc_endregion] = STATE(3349), [sym_preproc_line] = STATE(3349), @@ -484550,55 +496164,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3349), [sym_preproc_define] = STATE(3349), [sym_preproc_undef] = STATE(3349), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LBRACK] = ACTIONS(4776), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(5413), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_PLUS_PLUS] = ACTIONS(4780), - [anon_sym_DASH_DASH] = ACTIONS(4780), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_GT_GT_GT] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_GT_EQ] = ACTIONS(4780), - [anon_sym_LT_EQ] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_QMARK_QMARK] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4780), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4780), - [anon_sym_with] = ACTIONS(4780), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5447), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484620,56 +496236,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3350), [sym_preproc_define] = STATE(3350), [sym_preproc_undef] = STATE(3350), - [anon_sym_SEMI] = ACTIONS(5030), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_COLON] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_RBRACK] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_RPAREN] = ACTIONS(5030), - [anon_sym_RBRACE] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_in] = ACTIONS(5030), - [anon_sym_QMARK] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5030), - [anon_sym_CARET] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(5030), - [anon_sym_GT_GT] = ACTIONS(5032), - [anon_sym_GT_GT_GT] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_EQ_GT] = ACTIONS(5030), - [anon_sym_switch] = ACTIONS(5030), - [anon_sym_when] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_and] = ACTIONS(5030), - [anon_sym_or] = ACTIONS(5030), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_QMARK_QMARK] = ACTIONS(5030), - [anon_sym_on] = ACTIONS(5030), - [anon_sym_equals] = ACTIONS(5030), - [anon_sym_by] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5030), - [anon_sym_is] = ACTIONS(5030), - [anon_sym_DASH_GT] = ACTIONS(5030), - [anon_sym_with] = ACTIONS(5030), - [aux_sym_preproc_if_token3] = ACTIONS(5030), - [aux_sym_preproc_else_token1] = ACTIONS(5030), - [aux_sym_preproc_elif_token1] = ACTIONS(5030), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5447), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484691,56 +496308,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3351), [sym_preproc_define] = STATE(3351), [sym_preproc_undef] = STATE(3351), - [anon_sym_SEMI] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_COLON] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_RBRACK] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_RPAREN] = ACTIONS(4910), - [anon_sym_RBRACE] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_in] = ACTIONS(4910), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4910), - [anon_sym_CARET] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4912), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4912), - [anon_sym_GT_GT_GT] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_EQ_GT] = ACTIONS(4910), - [anon_sym_switch] = ACTIONS(4910), - [anon_sym_when] = ACTIONS(4910), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_and] = ACTIONS(4910), - [anon_sym_or] = ACTIONS(4910), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_QMARK_QMARK] = ACTIONS(4910), - [anon_sym_on] = ACTIONS(4910), - [anon_sym_equals] = ACTIONS(4910), - [anon_sym_by] = ACTIONS(4910), - [anon_sym_as] = ACTIONS(4910), - [anon_sym_is] = ACTIONS(4910), - [anon_sym_DASH_GT] = ACTIONS(4910), - [anon_sym_with] = ACTIONS(4910), - [aux_sym_preproc_if_token3] = ACTIONS(4910), - [aux_sym_preproc_else_token1] = ACTIONS(4910), - [aux_sym_preproc_elif_token1] = ACTIONS(4910), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484762,56 +496380,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3352), [sym_preproc_define] = STATE(3352), [sym_preproc_undef] = STATE(3352), - [anon_sym_SEMI] = ACTIONS(4998), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_COLON] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_RBRACK] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4998), - [anon_sym_RBRACE] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_in] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_GT_GT_GT] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_EQ_GT] = ACTIONS(4998), - [anon_sym_switch] = ACTIONS(4998), - [anon_sym_when] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(4998), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_QMARK_QMARK] = ACTIONS(4998), - [anon_sym_on] = ACTIONS(4998), - [anon_sym_equals] = ACTIONS(4998), - [anon_sym_by] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(4998), - [anon_sym_is] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [anon_sym_with] = ACTIONS(4998), - [aux_sym_preproc_if_token3] = ACTIONS(4998), - [aux_sym_preproc_else_token1] = ACTIONS(4998), - [aux_sym_preproc_elif_token1] = ACTIONS(4998), + [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), @@ -484833,56 +496452,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3353), [sym_preproc_define] = STATE(3353), [sym_preproc_undef] = STATE(3353), - [anon_sym_SEMI] = ACTIONS(4799), - [anon_sym_LBRACK] = ACTIONS(4799), - [anon_sym_COLON] = ACTIONS(4799), - [anon_sym_COMMA] = ACTIONS(4799), - [anon_sym_RBRACK] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_RPAREN] = ACTIONS(4799), - [anon_sym_RBRACE] = ACTIONS(4799), - [anon_sym_LT] = ACTIONS(4801), - [anon_sym_GT] = ACTIONS(4801), - [anon_sym_in] = ACTIONS(4799), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_PLUS_PLUS] = ACTIONS(4799), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_LT] = ACTIONS(4799), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_GT_GT_GT] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4799), - [anon_sym_BANG_EQ] = ACTIONS(4799), - [anon_sym_GT_EQ] = ACTIONS(4799), - [anon_sym_LT_EQ] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_EQ_GT] = ACTIONS(4799), - [anon_sym_switch] = ACTIONS(4799), - [anon_sym_when] = ACTIONS(4799), - [anon_sym_DOT_DOT] = ACTIONS(4799), - [anon_sym_and] = ACTIONS(4799), - [anon_sym_or] = ACTIONS(4799), - [anon_sym_AMP_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4799), - [anon_sym_QMARK_QMARK] = ACTIONS(4799), - [anon_sym_on] = ACTIONS(4799), - [anon_sym_equals] = ACTIONS(4799), - [anon_sym_by] = ACTIONS(4799), - [anon_sym_as] = ACTIONS(4799), - [anon_sym_is] = ACTIONS(4799), - [anon_sym_DASH_GT] = ACTIONS(4799), - [anon_sym_with] = ACTIONS(4799), - [aux_sym_preproc_if_token3] = ACTIONS(4799), - [aux_sym_preproc_else_token1] = ACTIONS(4799), - [aux_sym_preproc_elif_token1] = ACTIONS(4799), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484904,56 +496524,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3354), [sym_preproc_define] = STATE(3354), [sym_preproc_undef] = STATE(3354), - [anon_sym_SEMI] = ACTIONS(5300), - [anon_sym_LBRACK] = ACTIONS(5300), - [anon_sym_COLON] = ACTIONS(5300), - [anon_sym_COMMA] = ACTIONS(5300), - [anon_sym_RBRACK] = ACTIONS(5300), - [anon_sym_LPAREN] = ACTIONS(5300), - [anon_sym_RPAREN] = ACTIONS(5300), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_LT] = ACTIONS(5302), - [anon_sym_GT] = ACTIONS(5302), - [anon_sym_in] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(5302), - [anon_sym_BANG] = ACTIONS(5302), - [anon_sym_PLUS_PLUS] = ACTIONS(5300), - [anon_sym_DASH_DASH] = ACTIONS(5300), - [anon_sym_PLUS] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_SLASH] = ACTIONS(5302), - [anon_sym_PERCENT] = ACTIONS(5300), - [anon_sym_CARET] = ACTIONS(5300), - [anon_sym_PIPE] = ACTIONS(5302), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym_LT_LT] = ACTIONS(5300), - [anon_sym_GT_GT] = ACTIONS(5302), - [anon_sym_GT_GT_GT] = ACTIONS(5300), - [anon_sym_EQ_EQ] = ACTIONS(5300), - [anon_sym_BANG_EQ] = ACTIONS(5300), - [anon_sym_GT_EQ] = ACTIONS(5300), - [anon_sym_LT_EQ] = ACTIONS(5300), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_EQ_GT] = ACTIONS(5300), - [anon_sym_switch] = ACTIONS(5300), - [anon_sym_when] = ACTIONS(5300), - [anon_sym_DOT_DOT] = ACTIONS(5300), - [anon_sym_and] = ACTIONS(5300), - [anon_sym_or] = ACTIONS(5300), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_PIPE_PIPE] = ACTIONS(5300), - [anon_sym_QMARK_QMARK] = ACTIONS(5300), - [anon_sym_on] = ACTIONS(5300), - [anon_sym_equals] = ACTIONS(5300), - [anon_sym_by] = ACTIONS(5300), - [anon_sym_as] = ACTIONS(5300), - [anon_sym_is] = ACTIONS(5300), - [anon_sym_DASH_GT] = ACTIONS(5300), - [anon_sym_with] = ACTIONS(5300), - [aux_sym_preproc_if_token3] = ACTIONS(5300), - [aux_sym_preproc_else_token1] = ACTIONS(5300), - [aux_sym_preproc_elif_token1] = ACTIONS(5300), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -484966,26 +496587,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3355] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7090), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -484995,36 +496599,54 @@ 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_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485037,6 +496659,7 @@ 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), @@ -485046,56 +496669,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(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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485117,56 +496740,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3357), [sym_preproc_define] = STATE(3357), [sym_preproc_undef] = STATE(3357), - [anon_sym_SEMI] = ACTIONS(4970), - [anon_sym_LBRACK] = ACTIONS(4970), - [anon_sym_COLON] = ACTIONS(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_RBRACK] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_RPAREN] = ACTIONS(4970), - [anon_sym_RBRACE] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_in] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4970), - [anon_sym_CARET] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_LT_LT] = ACTIONS(4970), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_GT_GT_GT] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_EQ_GT] = ACTIONS(4970), - [anon_sym_switch] = ACTIONS(4970), - [anon_sym_when] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4970), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_QMARK_QMARK] = ACTIONS(4970), - [anon_sym_on] = ACTIONS(4970), - [anon_sym_equals] = ACTIONS(4970), - [anon_sym_by] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4970), - [anon_sym_is] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [anon_sym_with] = ACTIONS(4970), - [aux_sym_preproc_if_token3] = ACTIONS(4970), - [aux_sym_preproc_else_token1] = ACTIONS(4970), - [aux_sym_preproc_elif_token1] = ACTIONS(4970), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485179,26 +496803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3358] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7527), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3358), [sym_preproc_endregion] = STATE(3358), [sym_preproc_line] = STATE(3358), @@ -485208,36 +496812,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3358), [sym_preproc_define] = STATE(3358), [sym_preproc_undef] = STATE(3358), - [aux_sym_function_pointer_type_repeat1] = STATE(3365), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485250,26 +496875,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3359] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7287), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3359), [sym_preproc_endregion] = STATE(3359), [sym_preproc_line] = STATE(3359), @@ -485279,36 +496884,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3359), [sym_preproc_define] = STATE(3359), [sym_preproc_undef] = STATE(3359), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485330,56 +496956,56 @@ 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(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_COLON] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(5417), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), - [anon_sym_in] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_when] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1971), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), - [anon_sym_on] = ACTIONS(1971), - [anon_sym_equals] = ACTIONS(1971), - [anon_sym_by] = ACTIONS(1971), - [anon_sym_as] = ACTIONS(1971), - [anon_sym_is] = ACTIONS(1971), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_with] = ACTIONS(1971), - [aux_sym_preproc_if_token3] = ACTIONS(1971), - [aux_sym_preproc_else_token1] = ACTIONS(1971), - [aux_sym_preproc_elif_token1] = ACTIONS(1971), + [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), @@ -485401,56 +497027,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(5274), - [anon_sym_LBRACK] = ACTIONS(5274), - [anon_sym_COLON] = ACTIONS(5274), - [anon_sym_COMMA] = ACTIONS(5274), - [anon_sym_RBRACK] = ACTIONS(5274), - [anon_sym_LPAREN] = ACTIONS(5274), - [anon_sym_RPAREN] = ACTIONS(5274), - [anon_sym_RBRACE] = ACTIONS(5274), - [anon_sym_LT] = ACTIONS(5276), - [anon_sym_GT] = ACTIONS(5276), - [anon_sym_in] = ACTIONS(5274), - [anon_sym_QMARK] = ACTIONS(5276), - [anon_sym_BANG] = ACTIONS(5276), - [anon_sym_PLUS_PLUS] = ACTIONS(5274), - [anon_sym_DASH_DASH] = ACTIONS(5274), - [anon_sym_PLUS] = ACTIONS(5276), - [anon_sym_DASH] = ACTIONS(5276), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_SLASH] = ACTIONS(5276), - [anon_sym_PERCENT] = ACTIONS(5274), - [anon_sym_CARET] = ACTIONS(5274), - [anon_sym_PIPE] = ACTIONS(5276), - [anon_sym_AMP] = ACTIONS(5276), - [anon_sym_LT_LT] = ACTIONS(5274), - [anon_sym_GT_GT] = ACTIONS(5276), - [anon_sym_GT_GT_GT] = ACTIONS(5274), - [anon_sym_EQ_EQ] = ACTIONS(5274), - [anon_sym_BANG_EQ] = ACTIONS(5274), - [anon_sym_GT_EQ] = ACTIONS(5274), - [anon_sym_LT_EQ] = ACTIONS(5274), - [anon_sym_DOT] = ACTIONS(5276), - [anon_sym_EQ_GT] = ACTIONS(5274), - [anon_sym_switch] = ACTIONS(5274), - [anon_sym_when] = ACTIONS(5274), - [anon_sym_DOT_DOT] = ACTIONS(5274), - [anon_sym_and] = ACTIONS(5274), - [anon_sym_or] = ACTIONS(5274), - [anon_sym_AMP_AMP] = ACTIONS(5274), - [anon_sym_PIPE_PIPE] = ACTIONS(5274), - [anon_sym_QMARK_QMARK] = ACTIONS(5274), - [anon_sym_on] = ACTIONS(5274), - [anon_sym_equals] = ACTIONS(5274), - [anon_sym_by] = ACTIONS(5274), - [anon_sym_as] = ACTIONS(5274), - [anon_sym_is] = ACTIONS(5274), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5274), - [aux_sym_preproc_if_token3] = ACTIONS(5274), - [aux_sym_preproc_else_token1] = ACTIONS(5274), - [aux_sym_preproc_elif_token1] = ACTIONS(5274), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485472,56 +497098,56 @@ 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(5006), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COLON] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_RBRACK] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_RPAREN] = ACTIONS(5006), - [anon_sym_RBRACE] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5006), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_EQ_GT] = ACTIONS(5006), - [anon_sym_switch] = ACTIONS(5006), - [anon_sym_when] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_and] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5006), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_QMARK_QMARK] = ACTIONS(5006), - [anon_sym_on] = ACTIONS(5006), - [anon_sym_equals] = ACTIONS(5006), - [anon_sym_by] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5006), - [anon_sym_is] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_with] = ACTIONS(5006), - [aux_sym_preproc_if_token3] = ACTIONS(5006), - [aux_sym_preproc_else_token1] = ACTIONS(5006), - [aux_sym_preproc_elif_token1] = ACTIONS(5006), + [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), @@ -485534,24 +497160,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3363] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5888), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), [sym_preproc_endregion] = STATE(3363), [sym_preproc_line] = STATE(3363), @@ -485561,38 +497189,36 @@ 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__parameter_type_with_modifiers_repeat1] = STATE(5586), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485605,26 +497231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3364] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7171), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3364), [sym_preproc_endregion] = STATE(3364), [sym_preproc_line] = STATE(3364), @@ -485634,36 +497240,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3355), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485676,26 +497302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3365] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7497), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3365), [sym_preproc_endregion] = STATE(3365), [sym_preproc_line] = STATE(3365), @@ -485705,36 +497311,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485747,6 +497373,26 @@ 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), @@ -485756,56 +497402,36 @@ 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), - [anon_sym_EQ] = ACTIONS(5419), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5421), - [anon_sym_DASH_EQ] = ACTIONS(5421), - [anon_sym_STAR_EQ] = ACTIONS(5421), - [anon_sym_SLASH_EQ] = ACTIONS(5421), - [anon_sym_PERCENT_EQ] = ACTIONS(5421), - [anon_sym_AMP_EQ] = ACTIONS(5421), - [anon_sym_CARET_EQ] = ACTIONS(5421), - [anon_sym_PIPE_EQ] = ACTIONS(5421), - [anon_sym_LT_LT_EQ] = ACTIONS(5421), - [anon_sym_GT_GT_EQ] = ACTIONS(5421), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5421), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5421), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485818,6 +497444,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_preproc_region] = STATE(3367), [sym_preproc_endregion] = STATE(3367), [sym_preproc_line] = STATE(3367), @@ -485827,56 +497473,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), - [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_preproc_if_token3] = ACTIONS(4902), - [aux_sym_preproc_else_token1] = ACTIONS(4902), - [aux_sym_preproc_elif_token1] = ACTIONS(4902), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485898,56 +497524,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(4835), - [anon_sym_LBRACK] = ACTIONS(4835), - [anon_sym_COLON] = ACTIONS(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_RBRACK] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_RPAREN] = ACTIONS(4835), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_in] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_CARET] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4835), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_EQ_GT] = ACTIONS(4835), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4835), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_QMARK_QMARK] = ACTIONS(4835), - [anon_sym_on] = ACTIONS(4835), - [anon_sym_equals] = ACTIONS(4835), - [anon_sym_by] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4835), - [anon_sym_is] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_with] = ACTIONS(4835), - [aux_sym_preproc_if_token3] = ACTIONS(4835), - [aux_sym_preproc_else_token1] = ACTIONS(4835), - [aux_sym_preproc_elif_token1] = ACTIONS(4835), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -485960,26 +497586,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3369] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7171), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3369), [sym_preproc_endregion] = STATE(3369), [sym_preproc_line] = STATE(3369), @@ -485989,36 +497595,56 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486031,6 +497657,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_preproc_region] = STATE(3370), [sym_preproc_endregion] = STATE(3370), [sym_preproc_line] = STATE(3370), @@ -486040,56 +497686,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), - [anon_sym_EQ] = ACTIONS(5423), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5425), - [anon_sym_DASH_EQ] = ACTIONS(5425), - [anon_sym_STAR_EQ] = ACTIONS(5425), - [anon_sym_SLASH_EQ] = ACTIONS(5425), - [anon_sym_PERCENT_EQ] = ACTIONS(5425), - [anon_sym_AMP_EQ] = ACTIONS(5425), - [anon_sym_CARET_EQ] = ACTIONS(5425), - [anon_sym_PIPE_EQ] = ACTIONS(5425), - [anon_sym_LT_LT_EQ] = ACTIONS(5425), - [anon_sym_GT_GT_EQ] = ACTIONS(5425), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5425), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5425), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486111,6 +497737,148 @@ 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_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3372), + [sym_preproc_endregion] = STATE(3372), + [sym_preproc_line] = STATE(3372), + [sym_preproc_pragma] = STATE(3372), + [sym_preproc_nullable] = STATE(3372), + [sym_preproc_error] = STATE(3372), + [sym_preproc_warning] = STATE(3372), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3373] = { + [sym_preproc_region] = STATE(3373), + [sym_preproc_endregion] = STATE(3373), + [sym_preproc_line] = STATE(3373), + [sym_preproc_pragma] = STATE(3373), + [sym_preproc_nullable] = STATE(3373), + [sym_preproc_error] = STATE(3373), + [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), @@ -486172,149 +497940,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [3372] = { - [sym_preproc_region] = STATE(3372), - [sym_preproc_endregion] = STATE(3372), - [sym_preproc_line] = STATE(3372), - [sym_preproc_pragma] = STATE(3372), - [sym_preproc_nullable] = STATE(3372), - [sym_preproc_error] = STATE(3372), - [sym_preproc_warning] = STATE(3372), - [sym_preproc_define] = STATE(3372), - [sym_preproc_undef] = STATE(3372), - [anon_sym_EQ] = ACTIONS(5427), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5429), - [anon_sym_DASH_EQ] = ACTIONS(5429), - [anon_sym_STAR_EQ] = ACTIONS(5429), - [anon_sym_SLASH_EQ] = ACTIONS(5429), - [anon_sym_PERCENT_EQ] = ACTIONS(5429), - [anon_sym_AMP_EQ] = ACTIONS(5429), - [anon_sym_CARET_EQ] = ACTIONS(5429), - [anon_sym_PIPE_EQ] = ACTIONS(5429), - [anon_sym_LT_LT_EQ] = ACTIONS(5429), - [anon_sym_GT_GT_EQ] = ACTIONS(5429), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5429), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5429), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3373] = { - [sym_preproc_region] = STATE(3373), - [sym_preproc_endregion] = STATE(3373), - [sym_preproc_line] = STATE(3373), - [sym_preproc_pragma] = STATE(3373), - [sym_preproc_nullable] = STATE(3373), - [sym_preproc_error] = STATE(3373), - [sym_preproc_warning] = STATE(3373), - [sym_preproc_define] = STATE(3373), - [sym_preproc_undef] = STATE(3373), - [anon_sym_SEMI] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(4894), - [anon_sym_COLON] = ACTIONS(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_RBRACK] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_RPAREN] = ACTIONS(4894), - [anon_sym_RBRACE] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_in] = ACTIONS(4894), - [anon_sym_QMARK] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4894), - [anon_sym_PLUS] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_CARET] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_GT_GT_GT] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_GT_EQ] = ACTIONS(4894), - [anon_sym_LT_EQ] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4896), - [anon_sym_EQ_GT] = ACTIONS(4894), - [anon_sym_switch] = ACTIONS(4894), - [anon_sym_when] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_or] = ACTIONS(4894), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_QMARK_QMARK] = ACTIONS(4894), - [anon_sym_on] = ACTIONS(4894), - [anon_sym_equals] = ACTIONS(4894), - [anon_sym_by] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4894), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_with] = ACTIONS(4894), - [aux_sym_preproc_if_token3] = ACTIONS(4894), - [aux_sym_preproc_else_token1] = ACTIONS(4894), - [aux_sym_preproc_elif_token1] = ACTIONS(4894), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [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_preproc_region] = STATE(3374), [sym_preproc_endregion] = STATE(3374), [sym_preproc_line] = STATE(3374), @@ -486324,56 +497970,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), - [anon_sym_SEMI] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(5228), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_when] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_and] = ACTIONS(3950), - [anon_sym_or] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486386,6 +498012,26 @@ 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), @@ -486395,56 +498041,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3375), [sym_preproc_define] = STATE(3375), [sym_preproc_undef] = STATE(3375), - [anon_sym_SEMI] = ACTIONS(4932), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_COLON] = ACTIONS(4932), - [anon_sym_COMMA] = ACTIONS(4932), - [anon_sym_RBRACK] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_RPAREN] = ACTIONS(4932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_in] = ACTIONS(4932), - [anon_sym_QMARK] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_CARET] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_LT_LT] = ACTIONS(4932), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_GT_GT_GT] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_GT_EQ] = ACTIONS(4932), - [anon_sym_LT_EQ] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_EQ_GT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4932), - [anon_sym_when] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_and] = ACTIONS(4932), - [anon_sym_or] = ACTIONS(4932), - [anon_sym_AMP_AMP] = ACTIONS(4932), - [anon_sym_PIPE_PIPE] = ACTIONS(4932), - [anon_sym_QMARK_QMARK] = ACTIONS(4932), - [anon_sym_on] = ACTIONS(4932), - [anon_sym_equals] = ACTIONS(4932), - [anon_sym_by] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4932), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_with] = ACTIONS(4932), - [aux_sym_preproc_if_token3] = ACTIONS(4932), - [aux_sym_preproc_else_token1] = ACTIONS(4932), - [aux_sym_preproc_elif_token1] = ACTIONS(4932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486466,56 +498092,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(5270), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_COLON] = ACTIONS(5270), - [anon_sym_COMMA] = ACTIONS(5270), - [anon_sym_RBRACK] = ACTIONS(5270), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_RPAREN] = ACTIONS(5270), - [anon_sym_RBRACE] = ACTIONS(5270), - [anon_sym_LT] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(5272), - [anon_sym_in] = ACTIONS(5270), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_BANG] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5270), - [anon_sym_DASH_DASH] = ACTIONS(5270), - [anon_sym_PLUS] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(5272), - [anon_sym_STAR] = ACTIONS(5270), - [anon_sym_SLASH] = ACTIONS(5272), - [anon_sym_PERCENT] = ACTIONS(5270), - [anon_sym_CARET] = ACTIONS(5270), - [anon_sym_PIPE] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(5272), - [anon_sym_LT_LT] = ACTIONS(5270), - [anon_sym_GT_GT] = ACTIONS(5272), - [anon_sym_GT_GT_GT] = ACTIONS(5270), - [anon_sym_EQ_EQ] = ACTIONS(5270), - [anon_sym_BANG_EQ] = ACTIONS(5270), - [anon_sym_GT_EQ] = ACTIONS(5270), - [anon_sym_LT_EQ] = ACTIONS(5270), - [anon_sym_DOT] = ACTIONS(5272), - [anon_sym_EQ_GT] = ACTIONS(5270), - [anon_sym_switch] = ACTIONS(5270), - [anon_sym_when] = ACTIONS(5270), - [anon_sym_DOT_DOT] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_or] = ACTIONS(5270), - [anon_sym_AMP_AMP] = ACTIONS(5270), - [anon_sym_PIPE_PIPE] = ACTIONS(5270), - [anon_sym_QMARK_QMARK] = ACTIONS(5270), - [anon_sym_on] = ACTIONS(5270), - [anon_sym_equals] = ACTIONS(5270), - [anon_sym_by] = ACTIONS(5270), - [anon_sym_as] = ACTIONS(5270), - [anon_sym_is] = ACTIONS(5270), - [anon_sym_DASH_GT] = ACTIONS(5270), - [anon_sym_with] = ACTIONS(5270), - [aux_sym_preproc_if_token3] = ACTIONS(5270), - [aux_sym_preproc_else_token1] = ACTIONS(5270), - [aux_sym_preproc_elif_token1] = ACTIONS(5270), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486528,6 +498154,26 @@ 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), @@ -486537,56 +498183,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3377), [sym_preproc_define] = STATE(3377), [sym_preproc_undef] = STATE(3377), - [anon_sym_SEMI] = ACTIONS(4205), - [anon_sym_LBRACK] = ACTIONS(5340), - [anon_sym_COLON] = ACTIONS(4205), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_RBRACK] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_RPAREN] = ACTIONS(4205), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(5343), - [anon_sym_GT] = ACTIONS(5343), - [anon_sym_in] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(5343), - [anon_sym_BANG] = ACTIONS(5343), - [anon_sym_PLUS_PLUS] = ACTIONS(5340), - [anon_sym_DASH_DASH] = ACTIONS(5340), - [anon_sym_PLUS] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5343), - [anon_sym_STAR] = ACTIONS(5340), - [anon_sym_SLASH] = ACTIONS(5343), - [anon_sym_PERCENT] = ACTIONS(5340), - [anon_sym_CARET] = ACTIONS(5340), - [anon_sym_PIPE] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5343), - [anon_sym_LT_LT] = ACTIONS(5340), - [anon_sym_GT_GT] = ACTIONS(5343), - [anon_sym_GT_GT_GT] = ACTIONS(5340), - [anon_sym_EQ_EQ] = ACTIONS(5340), - [anon_sym_BANG_EQ] = ACTIONS(5340), - [anon_sym_GT_EQ] = ACTIONS(5340), - [anon_sym_LT_EQ] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5343), - [anon_sym_EQ_GT] = ACTIONS(4205), - [anon_sym_switch] = ACTIONS(5340), - [anon_sym_when] = ACTIONS(4205), - [anon_sym_DOT_DOT] = ACTIONS(5340), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4205), - [anon_sym_AMP_AMP] = ACTIONS(5340), - [anon_sym_PIPE_PIPE] = ACTIONS(5340), - [anon_sym_QMARK_QMARK] = ACTIONS(5340), - [anon_sym_on] = ACTIONS(4205), - [anon_sym_equals] = ACTIONS(4205), - [anon_sym_by] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(5340), - [anon_sym_is] = ACTIONS(5340), - [anon_sym_DASH_GT] = ACTIONS(5340), - [anon_sym_with] = ACTIONS(5340), - [aux_sym_preproc_if_token3] = ACTIONS(4205), - [aux_sym_preproc_else_token1] = ACTIONS(4205), - [aux_sym_preproc_elif_token1] = ACTIONS(4205), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486599,26 +498225,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3378] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7320), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3378), [sym_preproc_endregion] = STATE(3378), [sym_preproc_line] = STATE(3378), @@ -486628,36 +498234,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3369), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -486670,26 +498296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3379] = { - [sym_type_parameter_constraint] = STATE(6272), - [sym_constructor_constraint] = STATE(6379), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6371), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3379), [sym_preproc_endregion] = STATE(3379), [sym_preproc_line] = STATE(3379), @@ -486699,36 +498305,56 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_class] = ACTIONS(5366), - [anon_sym_ref] = ACTIONS(5368), - [anon_sym_struct] = ACTIONS(5370), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_new] = ACTIONS(5372), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(5374), - [anon_sym_unmanaged] = ACTIONS(5374), - [anon_sym_scoped] = ACTIONS(5376), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486750,56 +498376,56 @@ 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(4926), - [anon_sym_LBRACK] = ACTIONS(4926), - [anon_sym_COLON] = ACTIONS(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_RBRACK] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4926), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_in] = ACTIONS(4926), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(4928), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4928), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_CARET] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4928), - [anon_sym_LT_LT] = ACTIONS(4926), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym_GT_GT_GT] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_EQ_GT] = ACTIONS(4926), - [anon_sym_switch] = ACTIONS(4926), - [anon_sym_when] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_and] = ACTIONS(4926), - [anon_sym_or] = ACTIONS(4926), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_QMARK_QMARK] = ACTIONS(4926), - [anon_sym_on] = ACTIONS(4926), - [anon_sym_equals] = ACTIONS(4926), - [anon_sym_by] = ACTIONS(4926), - [anon_sym_as] = ACTIONS(4926), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [anon_sym_with] = ACTIONS(4926), - [aux_sym_preproc_if_token3] = ACTIONS(4926), - [aux_sym_preproc_else_token1] = ACTIONS(4926), - [aux_sym_preproc_elif_token1] = ACTIONS(4926), + [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), @@ -486812,26 +498438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3381] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7130), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3381), [sym_preproc_endregion] = STATE(3381), [sym_preproc_line] = STATE(3381), @@ -486841,36 +498447,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3404), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486883,6 +498509,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_preproc_region] = STATE(3382), [sym_preproc_endregion] = STATE(3382), [sym_preproc_line] = STATE(3382), @@ -486892,56 +498538,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), - [anon_sym_SEMI] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(4922), - [anon_sym_COLON] = ACTIONS(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_RBRACK] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_RPAREN] = ACTIONS(4922), - [anon_sym_RBRACE] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_in] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_CARET] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_GT_GT] = ACTIONS(4924), - [anon_sym_GT_GT_GT] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_EQ_GT] = ACTIONS(4922), - [anon_sym_switch] = ACTIONS(4922), - [anon_sym_when] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_and] = ACTIONS(4922), - [anon_sym_or] = ACTIONS(4922), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_QMARK_QMARK] = ACTIONS(4922), - [anon_sym_on] = ACTIONS(4922), - [anon_sym_equals] = ACTIONS(4922), - [anon_sym_by] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4922), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4922), - [anon_sym_with] = ACTIONS(4922), - [aux_sym_preproc_if_token3] = ACTIONS(4922), - [aux_sym_preproc_else_token1] = ACTIONS(4922), - [aux_sym_preproc_elif_token1] = ACTIONS(4922), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -486954,6 +498580,8 @@ 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_preproc_region] = STATE(3383), [sym_preproc_endregion] = STATE(3383), [sym_preproc_line] = STATE(3383), @@ -486963,56 +498591,54 @@ 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(4918), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_COLON] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_RBRACK] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_RPAREN] = ACTIONS(4918), - [anon_sym_RBRACE] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_in] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_CARET] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4918), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_GT_GT_GT] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_EQ_GT] = ACTIONS(4918), - [anon_sym_switch] = ACTIONS(4918), - [anon_sym_when] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_and] = ACTIONS(4918), - [anon_sym_or] = ACTIONS(4918), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_QMARK_QMARK] = ACTIONS(4918), - [anon_sym_on] = ACTIONS(4918), - [anon_sym_equals] = ACTIONS(4918), - [anon_sym_by] = ACTIONS(4918), - [anon_sym_as] = ACTIONS(4918), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4918), - [anon_sym_with] = ACTIONS(4918), - [aux_sym_preproc_if_token3] = ACTIONS(4918), - [aux_sym_preproc_else_token1] = ACTIONS(4918), - [aux_sym_preproc_elif_token1] = ACTIONS(4918), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487034,56 +498660,56 @@ 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(4914), - [anon_sym_LBRACK] = ACTIONS(4914), - [anon_sym_COLON] = ACTIONS(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_RBRACK] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_RPAREN] = ACTIONS(4914), - [anon_sym_RBRACE] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_in] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4914), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4914), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_GT_GT_GT] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_EQ_GT] = ACTIONS(4914), - [anon_sym_switch] = ACTIONS(4914), - [anon_sym_when] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_and] = ACTIONS(4914), - [anon_sym_or] = ACTIONS(4914), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_QMARK_QMARK] = ACTIONS(4914), - [anon_sym_on] = ACTIONS(4914), - [anon_sym_equals] = ACTIONS(4914), - [anon_sym_by] = ACTIONS(4914), - [anon_sym_as] = ACTIONS(4914), - [anon_sym_is] = ACTIONS(4914), - [anon_sym_DASH_GT] = ACTIONS(4914), - [anon_sym_with] = ACTIONS(4914), - [aux_sym_preproc_if_token3] = ACTIONS(4914), - [aux_sym_preproc_else_token1] = ACTIONS(4914), - [aux_sym_preproc_elif_token1] = ACTIONS(4914), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487096,26 +498722,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3385] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7251), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(3385), [sym_preproc_endregion] = STATE(3385), [sym_preproc_line] = STATE(3385), @@ -487125,36 +498751,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_function_pointer_type_repeat1] = STATE(3424), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487176,56 +498802,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(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(5431), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_when] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_and] = ACTIONS(3934), - [anon_sym_or] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [anon_sym_SEMI] = ACTIONS(5122), + [anon_sym_LBRACK] = ACTIONS(5122), + [anon_sym_COLON] = ACTIONS(5122), + [anon_sym_COMMA] = ACTIONS(5122), + [anon_sym_RBRACK] = ACTIONS(5122), + [anon_sym_LPAREN] = ACTIONS(5122), + [anon_sym_RPAREN] = ACTIONS(5122), + [anon_sym_RBRACE] = ACTIONS(5122), + [anon_sym_LT] = ACTIONS(5124), + [anon_sym_GT] = ACTIONS(5124), + [anon_sym_in] = ACTIONS(5122), + [anon_sym_QMARK] = ACTIONS(5124), + [anon_sym_BANG] = ACTIONS(5124), + [anon_sym_PLUS_PLUS] = ACTIONS(5122), + [anon_sym_DASH_DASH] = ACTIONS(5122), + [anon_sym_PLUS] = ACTIONS(5124), + [anon_sym_DASH] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(5122), + [anon_sym_SLASH] = ACTIONS(5124), + [anon_sym_PERCENT] = ACTIONS(5122), + [anon_sym_CARET] = ACTIONS(5122), + [anon_sym_PIPE] = ACTIONS(5124), + [anon_sym_AMP] = ACTIONS(5124), + [anon_sym_LT_LT] = ACTIONS(5122), + [anon_sym_GT_GT] = ACTIONS(5124), + [anon_sym_GT_GT_GT] = ACTIONS(5122), + [anon_sym_EQ_EQ] = ACTIONS(5122), + [anon_sym_BANG_EQ] = ACTIONS(5122), + [anon_sym_GT_EQ] = ACTIONS(5122), + [anon_sym_LT_EQ] = ACTIONS(5122), + [anon_sym_DOT] = ACTIONS(5124), + [anon_sym_EQ_GT] = ACTIONS(5122), + [anon_sym_switch] = ACTIONS(5122), + [anon_sym_when] = ACTIONS(5122), + [anon_sym_DOT_DOT] = ACTIONS(5122), + [anon_sym_and] = ACTIONS(5122), + [anon_sym_or] = ACTIONS(5122), + [anon_sym_AMP_AMP] = ACTIONS(5122), + [anon_sym_PIPE_PIPE] = ACTIONS(5122), + [anon_sym_QMARK_QMARK] = ACTIONS(5122), + [anon_sym_on] = ACTIONS(5122), + [anon_sym_equals] = ACTIONS(5122), + [anon_sym_by] = ACTIONS(5122), + [anon_sym_as] = ACTIONS(5122), + [anon_sym_is] = ACTIONS(5122), + [anon_sym_DASH_GT] = ACTIONS(5122), + [anon_sym_with] = ACTIONS(5122), + [aux_sym_preproc_if_token3] = ACTIONS(5122), + [aux_sym_preproc_else_token1] = ACTIONS(5122), + [aux_sym_preproc_elif_token1] = ACTIONS(5122), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487238,26 +498864,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3387] = { - [sym_parameter_list] = STATE(7383), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5741), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__lambda_parameters] = STATE(7145), - [sym_identifier] = STATE(5583), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3387), [sym_preproc_endregion] = STATE(3387), [sym_preproc_line] = STATE(3387), @@ -487267,36 +498893,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__lambda_expression_init_repeat1] = STATE(5678), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_static] = ACTIONS(1043), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(5433), - [anon_sym_async] = ACTIONS(1043), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487309,6 +498935,26 @@ 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), @@ -487318,56 +498964,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3388), [sym_preproc_define] = STATE(3388), [sym_preproc_undef] = STATE(3388), - [anon_sym_SEMI] = ACTIONS(5296), - [anon_sym_LBRACK] = ACTIONS(5296), - [anon_sym_COLON] = ACTIONS(5296), - [anon_sym_COMMA] = ACTIONS(5296), - [anon_sym_RBRACK] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_RPAREN] = ACTIONS(5296), - [anon_sym_RBRACE] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5298), - [anon_sym_GT] = ACTIONS(5298), - [anon_sym_in] = ACTIONS(5296), - [anon_sym_QMARK] = ACTIONS(5298), - [anon_sym_BANG] = ACTIONS(5298), - [anon_sym_PLUS_PLUS] = ACTIONS(5296), - [anon_sym_DASH_DASH] = ACTIONS(5296), - [anon_sym_PLUS] = ACTIONS(5298), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_SLASH] = ACTIONS(5298), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_CARET] = ACTIONS(5296), - [anon_sym_PIPE] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym_LT_LT] = ACTIONS(5296), - [anon_sym_GT_GT] = ACTIONS(5298), - [anon_sym_GT_GT_GT] = ACTIONS(5296), - [anon_sym_EQ_EQ] = ACTIONS(5296), - [anon_sym_BANG_EQ] = ACTIONS(5296), - [anon_sym_GT_EQ] = ACTIONS(5296), - [anon_sym_LT_EQ] = ACTIONS(5296), - [anon_sym_DOT] = ACTIONS(5298), - [anon_sym_EQ_GT] = ACTIONS(5296), - [anon_sym_switch] = ACTIONS(5296), - [anon_sym_when] = ACTIONS(5296), - [anon_sym_DOT_DOT] = ACTIONS(5296), - [anon_sym_and] = ACTIONS(5296), - [anon_sym_or] = ACTIONS(5296), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_PIPE_PIPE] = ACTIONS(5296), - [anon_sym_QMARK_QMARK] = ACTIONS(5296), - [anon_sym_on] = ACTIONS(5296), - [anon_sym_equals] = ACTIONS(5296), - [anon_sym_by] = ACTIONS(5296), - [anon_sym_as] = ACTIONS(5296), - [anon_sym_is] = ACTIONS(5296), - [anon_sym_DASH_GT] = ACTIONS(5296), - [anon_sym_with] = ACTIONS(5296), - [aux_sym_preproc_if_token3] = ACTIONS(5296), - [aux_sym_preproc_else_token1] = ACTIONS(5296), - [aux_sym_preproc_elif_token1] = ACTIONS(5296), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487380,6 +499006,26 @@ 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_preproc_region] = STATE(3389), [sym_preproc_endregion] = STATE(3389), [sym_preproc_line] = STATE(3389), @@ -487389,56 +499035,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3389), [sym_preproc_define] = STATE(3389), [sym_preproc_undef] = STATE(3389), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_RPAREN] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_EQ_GT] = ACTIONS(2907), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_when] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_on] = ACTIONS(2907), - [anon_sym_equals] = ACTIONS(2907), - [anon_sym_by] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [aux_sym_preproc_if_token3] = ACTIONS(2907), - [aux_sym_preproc_else_token1] = ACTIONS(2907), - [aux_sym_preproc_elif_token1] = ACTIONS(2907), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487451,6 +499077,26 @@ 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), @@ -487460,56 +499106,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3390), [sym_preproc_define] = STATE(3390), [sym_preproc_undef] = STATE(3390), - [anon_sym_SEMI] = ACTIONS(4898), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_COLON] = ACTIONS(4898), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_RBRACK] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_RPAREN] = ACTIONS(4898), - [anon_sym_RBRACE] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_in] = ACTIONS(4898), - [anon_sym_QMARK] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4898), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_CARET] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4900), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4900), - [anon_sym_GT_GT_GT] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_EQ_GT] = ACTIONS(4898), - [anon_sym_switch] = ACTIONS(4898), - [anon_sym_when] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_and] = ACTIONS(4898), - [anon_sym_or] = ACTIONS(4898), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_QMARK_QMARK] = ACTIONS(4898), - [anon_sym_on] = ACTIONS(4898), - [anon_sym_equals] = ACTIONS(4898), - [anon_sym_by] = ACTIONS(4898), - [anon_sym_as] = ACTIONS(4898), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_with] = ACTIONS(4898), - [aux_sym_preproc_if_token3] = ACTIONS(4898), - [aux_sym_preproc_else_token1] = ACTIONS(4898), - [aux_sym_preproc_elif_token1] = ACTIONS(4898), + [aux_sym_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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487531,56 +499157,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3391), [sym_preproc_define] = STATE(3391), [sym_preproc_undef] = STATE(3391), - [anon_sym_SEMI] = ACTIONS(4864), - [anon_sym_LBRACK] = ACTIONS(4864), - [anon_sym_COLON] = ACTIONS(4864), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_RBRACK] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_RPAREN] = ACTIONS(4864), - [anon_sym_RBRACE] = ACTIONS(4864), - [anon_sym_LT] = ACTIONS(4866), - [anon_sym_GT] = ACTIONS(4866), - [anon_sym_in] = ACTIONS(4864), - [anon_sym_QMARK] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4864), - [anon_sym_DASH_DASH] = ACTIONS(4864), - [anon_sym_PLUS] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_CARET] = ACTIONS(4864), - [anon_sym_PIPE] = ACTIONS(4866), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_LT_LT] = ACTIONS(4864), - [anon_sym_GT_GT] = ACTIONS(4866), - [anon_sym_GT_GT_GT] = ACTIONS(4864), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_GT_EQ] = ACTIONS(4864), - [anon_sym_LT_EQ] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_EQ_GT] = ACTIONS(4864), - [anon_sym_switch] = ACTIONS(4864), - [anon_sym_when] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_and] = ACTIONS(4864), - [anon_sym_or] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4864), - [anon_sym_PIPE_PIPE] = ACTIONS(4864), - [anon_sym_QMARK_QMARK] = ACTIONS(4864), - [anon_sym_on] = ACTIONS(4864), - [anon_sym_equals] = ACTIONS(4864), - [anon_sym_by] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4864), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4864), - [anon_sym_with] = ACTIONS(4864), - [aux_sym_preproc_if_token3] = ACTIONS(4864), - [aux_sym_preproc_else_token1] = ACTIONS(4864), - [aux_sym_preproc_elif_token1] = ACTIONS(4864), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487602,56 +499228,56 @@ 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(5435), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5437), - [anon_sym_DASH_EQ] = ACTIONS(5437), - [anon_sym_STAR_EQ] = ACTIONS(5437), - [anon_sym_SLASH_EQ] = ACTIONS(5437), - [anon_sym_PERCENT_EQ] = ACTIONS(5437), - [anon_sym_AMP_EQ] = ACTIONS(5437), - [anon_sym_CARET_EQ] = ACTIONS(5437), - [anon_sym_PIPE_EQ] = ACTIONS(5437), - [anon_sym_LT_LT_EQ] = ACTIONS(5437), - [anon_sym_GT_GT_EQ] = ACTIONS(5437), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5437), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5437), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487673,56 +499299,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3393), [sym_preproc_define] = STATE(3393), [sym_preproc_undef] = STATE(3393), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_in] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_EQ_GT] = ACTIONS(4886), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_when] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_on] = ACTIONS(4886), - [anon_sym_equals] = ACTIONS(4886), - [anon_sym_by] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4886), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487744,56 +499370,56 @@ 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(4890), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_COLON] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_RBRACK] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_RPAREN] = ACTIONS(4890), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_in] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4892), - [anon_sym_DASH] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_GT_GT_GT] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4892), - [anon_sym_EQ_GT] = ACTIONS(4890), - [anon_sym_switch] = ACTIONS(4890), - [anon_sym_when] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4890), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_QMARK_QMARK] = ACTIONS(4890), - [anon_sym_on] = ACTIONS(4890), - [anon_sym_equals] = ACTIONS(4890), - [anon_sym_by] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4890), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_with] = ACTIONS(4890), - [aux_sym_preproc_if_token3] = ACTIONS(4890), - [aux_sym_preproc_else_token1] = ACTIONS(4890), - [aux_sym_preproc_elif_token1] = ACTIONS(4890), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487815,56 +499441,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(4684), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_RBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4684), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_CARET] = ACTIONS(4684), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4684), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4684), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_when] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), @@ -487877,6 +499503,26 @@ 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), @@ -487886,56 +499532,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3396), [sym_preproc_define] = STATE(3396), [sym_preproc_undef] = STATE(3396), - [anon_sym_SEMI] = ACTIONS(2089), - [anon_sym_LBRACK] = ACTIONS(2089), - [anon_sym_COLON] = ACTIONS(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_RPAREN] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_in] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(2089), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_when] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_and] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2089), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_QMARK_QMARK] = ACTIONS(2089), - [anon_sym_on] = ACTIONS(2089), - [anon_sym_equals] = ACTIONS(2089), - [anon_sym_by] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_DASH_GT] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), - [aux_sym_preproc_if_token3] = ACTIONS(2089), - [aux_sym_preproc_else_token1] = ACTIONS(2089), - [aux_sym_preproc_elif_token1] = ACTIONS(2089), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -487948,26 +499574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3397] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7234), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3397), [sym_preproc_endregion] = STATE(3397), [sym_preproc_line] = STATE(3397), @@ -487977,36 +499583,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488019,6 +499645,26 @@ 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), @@ -488028,56 +499674,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3398), [sym_preproc_define] = STATE(3398), [sym_preproc_undef] = STATE(3398), - [anon_sym_SEMI] = ACTIONS(4938), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_COLON] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_RBRACK] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_RPAREN] = ACTIONS(4938), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_in] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4938), - [anon_sym_CARET] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_LT_LT] = ACTIONS(4938), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_GT_GT_GT] = ACTIONS(4938), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_EQ_GT] = ACTIONS(4938), - [anon_sym_switch] = ACTIONS(4938), - [anon_sym_when] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_and] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4938), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_QMARK_QMARK] = ACTIONS(4938), - [anon_sym_on] = ACTIONS(4938), - [anon_sym_equals] = ACTIONS(4938), - [anon_sym_by] = ACTIONS(4938), - [anon_sym_as] = ACTIONS(4938), - [anon_sym_is] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [anon_sym_with] = ACTIONS(4938), - [aux_sym_preproc_if_token3] = ACTIONS(4938), - [aux_sym_preproc_else_token1] = ACTIONS(4938), - [aux_sym_preproc_elif_token1] = ACTIONS(4938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488090,26 +499716,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3399] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7287), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3399), [sym_preproc_endregion] = STATE(3399), [sym_preproc_line] = STATE(3399), @@ -488119,36 +499745,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(3409), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488161,6 +499787,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_preproc_region] = STATE(3400), [sym_preproc_endregion] = STATE(3400), [sym_preproc_line] = STATE(3400), @@ -488170,56 +499816,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_add] = ACTIONS(3428), - [anon_sym_remove] = ACTIONS(3428), - [anon_sym_init] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488232,6 +499858,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_preproc_region] = STATE(3401), [sym_preproc_endregion] = STATE(3401), [sym_preproc_line] = STATE(3401), @@ -488241,56 +499887,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), - [anon_sym_SEMI] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COLON] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_RBRACK] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_RPAREN] = ACTIONS(4188), - [anon_sym_RBRACE] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_in] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_EQ_GT] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_when] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4188), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [anon_sym_on] = ACTIONS(4188), - [anon_sym_equals] = ACTIONS(4188), - [anon_sym_by] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4188), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), - [aux_sym_preproc_if_token3] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488312,56 +499938,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3402), [sym_preproc_define] = STATE(3402), [sym_preproc_undef] = STATE(3402), - [anon_sym_SEMI] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4978), - [anon_sym_COLON] = ACTIONS(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_RBRACK] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_RPAREN] = ACTIONS(4978), - [anon_sym_RBRACE] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_in] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4978), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_CARET] = ACTIONS(4978), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4978), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym_GT_GT_GT] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_EQ_GT] = ACTIONS(4978), - [anon_sym_switch] = ACTIONS(4978), - [anon_sym_when] = ACTIONS(4978), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_and] = ACTIONS(4978), - [anon_sym_or] = ACTIONS(4978), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_QMARK_QMARK] = ACTIONS(4978), - [anon_sym_on] = ACTIONS(4978), - [anon_sym_equals] = ACTIONS(4978), - [anon_sym_by] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4978), - [anon_sym_is] = ACTIONS(4978), - [anon_sym_DASH_GT] = ACTIONS(4978), - [anon_sym_with] = ACTIONS(4978), - [aux_sym_preproc_if_token3] = ACTIONS(4978), - [aux_sym_preproc_else_token1] = ACTIONS(4978), - [aux_sym_preproc_elif_token1] = ACTIONS(4978), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488374,6 +500000,26 @@ 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), @@ -488383,56 +500029,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3403), [sym_preproc_define] = STATE(3403), [sym_preproc_undef] = STATE(3403), - [anon_sym_SEMI] = ACTIONS(4823), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_COLON] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_RBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_RPAREN] = ACTIONS(4823), - [anon_sym_RBRACE] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_in] = ACTIONS(4823), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4823), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4823), - [anon_sym_CARET] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_LT] = ACTIONS(4823), - [anon_sym_GT_GT] = ACTIONS(4825), - [anon_sym_GT_GT_GT] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_EQ_GT] = ACTIONS(4823), - [anon_sym_switch] = ACTIONS(4823), - [anon_sym_when] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_and] = ACTIONS(4823), - [anon_sym_or] = ACTIONS(4823), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_QMARK_QMARK] = ACTIONS(4823), - [anon_sym_on] = ACTIONS(4823), - [anon_sym_equals] = ACTIONS(4823), - [anon_sym_by] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4823), - [anon_sym_is] = ACTIONS(4823), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_with] = ACTIONS(4823), - [aux_sym_preproc_if_token3] = ACTIONS(4823), - [aux_sym_preproc_else_token1] = ACTIONS(4823), - [aux_sym_preproc_elif_token1] = ACTIONS(4823), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488445,26 +500071,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3404] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7084), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -488474,36 +500100,36 @@ 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(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488516,6 +500142,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_preproc_region] = STATE(3405), [sym_preproc_endregion] = STATE(3405), [sym_preproc_line] = STATE(3405), @@ -488525,56 +500171,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3405), [sym_preproc_define] = STATE(3405), [sym_preproc_undef] = STATE(3405), - [anon_sym_SEMI] = ACTIONS(5278), - [anon_sym_LBRACK] = ACTIONS(5278), - [anon_sym_COLON] = ACTIONS(5278), - [anon_sym_COMMA] = ACTIONS(5278), - [anon_sym_RBRACK] = ACTIONS(5278), - [anon_sym_LPAREN] = ACTIONS(5278), - [anon_sym_RPAREN] = ACTIONS(5278), - [anon_sym_RBRACE] = ACTIONS(5278), - [anon_sym_LT] = ACTIONS(5280), - [anon_sym_GT] = ACTIONS(5280), - [anon_sym_in] = ACTIONS(5278), - [anon_sym_QMARK] = ACTIONS(5280), - [anon_sym_BANG] = ACTIONS(5280), - [anon_sym_PLUS_PLUS] = ACTIONS(5278), - [anon_sym_DASH_DASH] = ACTIONS(5278), - [anon_sym_PLUS] = ACTIONS(5280), - [anon_sym_DASH] = ACTIONS(5280), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_SLASH] = ACTIONS(5280), - [anon_sym_PERCENT] = ACTIONS(5278), - [anon_sym_CARET] = ACTIONS(5278), - [anon_sym_PIPE] = ACTIONS(5280), - [anon_sym_AMP] = ACTIONS(5280), - [anon_sym_LT_LT] = ACTIONS(5278), - [anon_sym_GT_GT] = ACTIONS(5280), - [anon_sym_GT_GT_GT] = ACTIONS(5278), - [anon_sym_EQ_EQ] = ACTIONS(5278), - [anon_sym_BANG_EQ] = ACTIONS(5278), - [anon_sym_GT_EQ] = ACTIONS(5278), - [anon_sym_LT_EQ] = ACTIONS(5278), - [anon_sym_DOT] = ACTIONS(5280), - [anon_sym_EQ_GT] = ACTIONS(5278), - [anon_sym_switch] = ACTIONS(5278), - [anon_sym_when] = ACTIONS(5278), - [anon_sym_DOT_DOT] = ACTIONS(5278), - [anon_sym_and] = ACTIONS(5278), - [anon_sym_or] = ACTIONS(5278), - [anon_sym_AMP_AMP] = ACTIONS(5278), - [anon_sym_PIPE_PIPE] = ACTIONS(5278), - [anon_sym_QMARK_QMARK] = ACTIONS(5278), - [anon_sym_on] = ACTIONS(5278), - [anon_sym_equals] = ACTIONS(5278), - [anon_sym_by] = ACTIONS(5278), - [anon_sym_as] = ACTIONS(5278), - [anon_sym_is] = ACTIONS(5278), - [anon_sym_DASH_GT] = ACTIONS(5278), - [anon_sym_with] = ACTIONS(5278), - [aux_sym_preproc_if_token3] = ACTIONS(5278), - [aux_sym_preproc_else_token1] = ACTIONS(5278), - [aux_sym_preproc_elif_token1] = ACTIONS(5278), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488587,24 +500213,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3406] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5900), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3406), [sym_preproc_endregion] = STATE(3406), [sym_preproc_line] = STATE(3406), @@ -488614,38 +500242,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__parameter_type_with_modifiers_repeat1] = STATE(5586), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(4696), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_in] = ACTIONS(1095), - [anon_sym_out] = ACTIONS(1095), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_this] = ACTIONS(1095), - [anon_sym_scoped] = ACTIONS(4715), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488658,26 +500284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3407] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7274), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3407), [sym_preproc_endregion] = STATE(3407), [sym_preproc_line] = STATE(3407), @@ -488687,36 +500293,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488729,26 +500355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3408] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7084), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3408), [sym_preproc_endregion] = STATE(3408), [sym_preproc_line] = STATE(3408), @@ -488758,36 +500364,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3330), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488800,26 +500426,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3409] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7348), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3409), [sym_preproc_endregion] = STATE(3409), [sym_preproc_line] = STATE(3409), @@ -488829,36 +500455,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(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488871,6 +500497,26 @@ 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), @@ -488880,56 +500526,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3410), [sym_preproc_define] = STATE(3410), [sym_preproc_undef] = STATE(3410), - [anon_sym_SEMI] = ACTIONS(4882), - [anon_sym_LBRACK] = ACTIONS(4882), - [anon_sym_COLON] = ACTIONS(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_RBRACK] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_RPAREN] = ACTIONS(4882), - [anon_sym_RBRACE] = ACTIONS(4882), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_in] = ACTIONS(4882), - [anon_sym_QMARK] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4882), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_CARET] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4882), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_GT_GT_GT] = ACTIONS(4882), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_EQ_GT] = ACTIONS(4882), - [anon_sym_switch] = ACTIONS(4882), - [anon_sym_when] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4882), - [anon_sym_and] = ACTIONS(4882), - [anon_sym_or] = ACTIONS(4882), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_QMARK_QMARK] = ACTIONS(4882), - [anon_sym_on] = ACTIONS(4882), - [anon_sym_equals] = ACTIONS(4882), - [anon_sym_by] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4882), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_with] = ACTIONS(4882), - [aux_sym_preproc_if_token3] = ACTIONS(4882), - [aux_sym_preproc_else_token1] = ACTIONS(4882), - [aux_sym_preproc_elif_token1] = ACTIONS(4882), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -488942,6 +500568,26 @@ 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), @@ -488951,56 +500597,36 @@ 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), - [anon_sym_SEMI] = ACTIONS(4868), - [anon_sym_LBRACK] = ACTIONS(4868), - [anon_sym_COLON] = ACTIONS(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_RBRACK] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_RPAREN] = ACTIONS(4868), - [anon_sym_RBRACE] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_in] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_EQ_GT] = ACTIONS(4868), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_when] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_on] = ACTIONS(4868), - [anon_sym_equals] = ACTIONS(4868), - [anon_sym_by] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4868), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), - [aux_sym_preproc_if_token3] = ACTIONS(4868), - [aux_sym_preproc_else_token1] = ACTIONS(4868), - [aux_sym_preproc_elif_token1] = ACTIONS(4868), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489013,6 +500639,26 @@ 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), @@ -489022,56 +500668,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3412), [sym_preproc_define] = STATE(3412), [sym_preproc_undef] = STATE(3412), - [anon_sym_SEMI] = ACTIONS(4843), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_COLON] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_RBRACK] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4843), - [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(4845), - [anon_sym_PLUS_PLUS] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4843), - [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(4845), - [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(4843), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489084,26 +500710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3413] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7234), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3413), [sym_preproc_endregion] = STATE(3413), [sym_preproc_line] = STATE(3413), @@ -489113,36 +500719,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3413), [sym_preproc_define] = STATE(3413), [sym_preproc_undef] = STATE(3413), - [aux_sym_function_pointer_type_repeat1] = STATE(3407), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489164,56 +500790,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(4854), - [anon_sym_LBRACK] = ACTIONS(4854), - [anon_sym_COLON] = ACTIONS(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_RBRACK] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [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(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [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(4856), - [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(4854), - [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(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), @@ -489226,26 +500852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3415] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7449), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3415), [sym_preproc_endregion] = STATE(3415), [sym_preproc_line] = STATE(3415), @@ -489255,36 +500861,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3415), [sym_preproc_define] = STATE(3415), [sym_preproc_undef] = STATE(3415), - [aux_sym_function_pointer_type_repeat1] = STATE(3307), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489297,6 +500923,26 @@ 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), @@ -489306,56 +500952,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3416), [sym_preproc_define] = STATE(3416), [sym_preproc_undef] = STATE(3416), - [anon_sym_SEMI] = ACTIONS(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_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489368,7 +500994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3417] = { - [sym_attribute_list] = STATE(3519), [sym_preproc_region] = STATE(3417), [sym_preproc_endregion] = STATE(3417), [sym_preproc_line] = STATE(3417), @@ -489378,55 +501003,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3417), - [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(5439), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489448,56 +501074,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489510,6 +501136,15 @@ 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), @@ -489519,56 +501154,47 @@ 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), - [anon_sym_SEMI] = ACTIONS(4994), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_COLON] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_RBRACK] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4994), - [anon_sym_RBRACE] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_in] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_GT_GT_GT] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_EQ_GT] = ACTIONS(4994), - [anon_sym_switch] = ACTIONS(4994), - [anon_sym_when] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4994), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_QMARK_QMARK] = ACTIONS(4994), - [anon_sym_on] = ACTIONS(4994), - [anon_sym_equals] = ACTIONS(4994), - [anon_sym_by] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4994), - [anon_sym_is] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_with] = ACTIONS(4994), - [aux_sym_preproc_if_token3] = ACTIONS(4994), - [aux_sym_preproc_else_token1] = ACTIONS(4994), - [aux_sym_preproc_elif_token1] = ACTIONS(4994), + [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), @@ -489590,56 +501216,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3420), [sym_preproc_define] = STATE(3420), [sym_preproc_undef] = STATE(3420), - [anon_sym_SEMI] = ACTIONS(4839), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_COLON] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_RBRACK] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_RPAREN] = ACTIONS(4839), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_in] = ACTIONS(4839), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4839), - [anon_sym_CARET] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4839), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_GT_GT_GT] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_EQ_GT] = ACTIONS(4839), - [anon_sym_switch] = ACTIONS(4839), - [anon_sym_when] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_and] = ACTIONS(4839), - [anon_sym_or] = ACTIONS(4839), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_QMARK_QMARK] = ACTIONS(4839), - [anon_sym_on] = ACTIONS(4839), - [anon_sym_equals] = ACTIONS(4839), - [anon_sym_by] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4839), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_with] = ACTIONS(4839), - [aux_sym_preproc_if_token3] = ACTIONS(4839), - [aux_sym_preproc_else_token1] = ACTIONS(4839), - [aux_sym_preproc_elif_token1] = ACTIONS(4839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489661,56 +501287,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(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_in] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_GT_GT_GT] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_EQ_GT] = ACTIONS(4982), - [anon_sym_switch] = ACTIONS(4982), - [anon_sym_when] = ACTIONS(4982), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_and] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4982), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_QMARK_QMARK] = ACTIONS(4982), - [anon_sym_on] = ACTIONS(4982), - [anon_sym_equals] = ACTIONS(4982), - [anon_sym_by] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4982), - [anon_sym_is] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [anon_sym_with] = ACTIONS(4982), - [aux_sym_preproc_if_token3] = ACTIONS(4982), - [aux_sym_preproc_else_token1] = ACTIONS(4982), - [aux_sym_preproc_elif_token1] = ACTIONS(4982), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489723,6 +501349,26 @@ 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), @@ -489732,56 +501378,36 @@ 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), - [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(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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489794,15 +501420,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3423] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), + [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), @@ -489812,47 +501449,36 @@ 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), - [sym__identifier_token] = ACTIONS(3527), - [anon_sym_alias] = ACTIONS(3531), - [anon_sym_global] = ACTIONS(3531), - [anon_sym_EQ] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_file] = ACTIONS(3531), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3531), - [anon_sym_unmanaged] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3531), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(3531), - [anon_sym_when] = ACTIONS(3531), - [anon_sym_from] = ACTIONS(3531), - [anon_sym_into] = ACTIONS(3531), - [anon_sym_join] = ACTIONS(3531), - [anon_sym_on] = ACTIONS(3531), - [anon_sym_equals] = ACTIONS(3531), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_orderby] = ACTIONS(3531), - [anon_sym_ascending] = ACTIONS(3531), - [anon_sym_descending] = ACTIONS(3531), - [anon_sym_group] = ACTIONS(3531), - [anon_sym_by] = ACTIONS(3531), - [anon_sym_select] = ACTIONS(3531), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -489865,26 +501491,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3424] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7198), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3424), [sym_preproc_endregion] = STATE(3424), [sym_preproc_line] = STATE(3424), @@ -489894,36 +501500,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3424), [sym_preproc_define] = STATE(3424), [sym_preproc_undef] = STATE(3424), - [aux_sym_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -489936,6 +501562,26 @@ 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), @@ -489945,56 +501591,36 @@ 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), - [anon_sym_SEMI] = ACTIONS(4803), - [anon_sym_LBRACK] = ACTIONS(4803), - [anon_sym_COLON] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_RBRACK] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_RPAREN] = ACTIONS(4803), - [anon_sym_RBRACE] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4805), - [anon_sym_in] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_PLUS_PLUS] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_LT] = ACTIONS(4803), - [anon_sym_GT_GT] = ACTIONS(4805), - [anon_sym_GT_GT_GT] = ACTIONS(4803), - [anon_sym_EQ_EQ] = ACTIONS(4803), - [anon_sym_BANG_EQ] = ACTIONS(4803), - [anon_sym_GT_EQ] = ACTIONS(4803), - [anon_sym_LT_EQ] = ACTIONS(4803), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_EQ_GT] = ACTIONS(4803), - [anon_sym_switch] = ACTIONS(4803), - [anon_sym_when] = ACTIONS(4803), - [anon_sym_DOT_DOT] = ACTIONS(4803), - [anon_sym_and] = ACTIONS(4803), - [anon_sym_or] = ACTIONS(4803), - [anon_sym_AMP_AMP] = ACTIONS(4803), - [anon_sym_PIPE_PIPE] = ACTIONS(4803), - [anon_sym_QMARK_QMARK] = ACTIONS(4803), - [anon_sym_on] = ACTIONS(4803), - [anon_sym_equals] = ACTIONS(4803), - [anon_sym_by] = ACTIONS(4803), - [anon_sym_as] = ACTIONS(4803), - [anon_sym_is] = ACTIONS(4803), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4803), - [aux_sym_preproc_if_token3] = ACTIONS(4803), - [aux_sym_preproc_else_token1] = ACTIONS(4803), - [aux_sym_preproc_elif_token1] = ACTIONS(4803), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490016,56 +501642,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3426), [sym_preproc_define] = STATE(3426), [sym_preproc_undef] = STATE(3426), - [anon_sym_SEMI] = ACTIONS(5038), - [anon_sym_LBRACK] = ACTIONS(5038), - [anon_sym_COLON] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_RBRACK] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_RPAREN] = ACTIONS(5038), - [anon_sym_RBRACE] = ACTIONS(5038), - [anon_sym_LT] = ACTIONS(5040), - [anon_sym_GT] = ACTIONS(5040), - [anon_sym_in] = ACTIONS(5038), - [anon_sym_QMARK] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_PLUS] = ACTIONS(5040), - [anon_sym_DASH] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_CARET] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_LT_LT] = ACTIONS(5038), - [anon_sym_GT_GT] = ACTIONS(5040), - [anon_sym_GT_GT_GT] = ACTIONS(5038), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_GT_EQ] = ACTIONS(5038), - [anon_sym_LT_EQ] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_EQ_GT] = ACTIONS(5038), - [anon_sym_switch] = ACTIONS(5038), - [anon_sym_when] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5038), - [anon_sym_AMP_AMP] = ACTIONS(5038), - [anon_sym_PIPE_PIPE] = ACTIONS(5038), - [anon_sym_QMARK_QMARK] = ACTIONS(5038), - [anon_sym_on] = ACTIONS(5038), - [anon_sym_equals] = ACTIONS(5038), - [anon_sym_by] = ACTIONS(5038), - [anon_sym_as] = ACTIONS(5038), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5038), - [anon_sym_with] = ACTIONS(5038), - [aux_sym_preproc_if_token3] = ACTIONS(5038), - [aux_sym_preproc_else_token1] = ACTIONS(5038), - [aux_sym_preproc_elif_token1] = ACTIONS(5038), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490087,56 +501713,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3427), [sym_preproc_define] = STATE(3427), [sym_preproc_undef] = STATE(3427), - [anon_sym_SEMI] = ACTIONS(5034), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_COLON] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_RBRACK] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_RPAREN] = ACTIONS(5034), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_in] = ACTIONS(5034), - [anon_sym_QMARK] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5034), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_CARET] = ACTIONS(5034), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LT_LT] = ACTIONS(5034), - [anon_sym_GT_GT] = ACTIONS(5036), - [anon_sym_GT_GT_GT] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_EQ_GT] = ACTIONS(5034), - [anon_sym_switch] = ACTIONS(5034), - [anon_sym_when] = ACTIONS(5034), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5034), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_QMARK_QMARK] = ACTIONS(5034), - [anon_sym_on] = ACTIONS(5034), - [anon_sym_equals] = ACTIONS(5034), - [anon_sym_by] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5034), - [anon_sym_is] = ACTIONS(5034), - [anon_sym_DASH_GT] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), - [aux_sym_preproc_if_token3] = ACTIONS(5034), - [aux_sym_preproc_else_token1] = ACTIONS(5034), - [aux_sym_preproc_elif_token1] = ACTIONS(5034), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490149,26 +501775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3428] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7198), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_function_pointer_parameter] = STATE(7319), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7318), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3428), [sym_preproc_endregion] = STATE(3428), [sym_preproc_line] = STATE(3428), @@ -490178,36 +501784,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), - [aux_sym_function_pointer_type_repeat1] = STATE(3298), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5358), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(5360), - [anon_sym_out] = ACTIONS(5360), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(5118), + [anon_sym_LBRACK] = ACTIONS(5118), + [anon_sym_COLON] = ACTIONS(5118), + [anon_sym_COMMA] = ACTIONS(5118), + [anon_sym_RBRACK] = ACTIONS(5118), + [anon_sym_LPAREN] = ACTIONS(5118), + [anon_sym_RPAREN] = ACTIONS(5118), + [anon_sym_RBRACE] = ACTIONS(5118), + [anon_sym_LT] = ACTIONS(5120), + [anon_sym_GT] = ACTIONS(5120), + [anon_sym_in] = ACTIONS(5118), + [anon_sym_QMARK] = ACTIONS(5120), + [anon_sym_BANG] = ACTIONS(5120), + [anon_sym_PLUS_PLUS] = ACTIONS(5118), + [anon_sym_DASH_DASH] = ACTIONS(5118), + [anon_sym_PLUS] = ACTIONS(5120), + [anon_sym_DASH] = ACTIONS(5120), + [anon_sym_STAR] = ACTIONS(5118), + [anon_sym_SLASH] = ACTIONS(5120), + [anon_sym_PERCENT] = ACTIONS(5118), + [anon_sym_CARET] = ACTIONS(5118), + [anon_sym_PIPE] = ACTIONS(5120), + [anon_sym_AMP] = ACTIONS(5120), + [anon_sym_LT_LT] = ACTIONS(5118), + [anon_sym_GT_GT] = ACTIONS(5120), + [anon_sym_GT_GT_GT] = ACTIONS(5118), + [anon_sym_EQ_EQ] = ACTIONS(5118), + [anon_sym_BANG_EQ] = ACTIONS(5118), + [anon_sym_GT_EQ] = ACTIONS(5118), + [anon_sym_LT_EQ] = ACTIONS(5118), + [anon_sym_DOT] = ACTIONS(5120), + [anon_sym_EQ_GT] = ACTIONS(5118), + [anon_sym_switch] = ACTIONS(5118), + [anon_sym_when] = ACTIONS(5118), + [anon_sym_DOT_DOT] = ACTIONS(5118), + [anon_sym_and] = ACTIONS(5118), + [anon_sym_or] = ACTIONS(5118), + [anon_sym_AMP_AMP] = ACTIONS(5118), + [anon_sym_PIPE_PIPE] = ACTIONS(5118), + [anon_sym_QMARK_QMARK] = ACTIONS(5118), + [anon_sym_on] = ACTIONS(5118), + [anon_sym_equals] = ACTIONS(5118), + [anon_sym_by] = ACTIONS(5118), + [anon_sym_as] = ACTIONS(5118), + [anon_sym_is] = ACTIONS(5118), + [anon_sym_DASH_GT] = ACTIONS(5118), + [anon_sym_with] = ACTIONS(5118), + [aux_sym_preproc_if_token3] = ACTIONS(5118), + [aux_sym_preproc_else_token1] = ACTIONS(5118), + [aux_sym_preproc_elif_token1] = ACTIONS(5118), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490220,8 +501846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3429] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2399), [sym_preproc_region] = STATE(3429), [sym_preproc_endregion] = STATE(3429), [sym_preproc_line] = STATE(3429), @@ -490231,53 +501855,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(4723), - [anon_sym_LBRACK] = ACTIONS(5442), - [anon_sym_COLON] = ACTIONS(4723), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_RBRACK] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_RBRACE] = ACTIONS(4723), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_in] = ACTIONS(4723), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4723), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_CARET] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4723), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_GT_GT_GT] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4723), - [anon_sym_switch] = ACTIONS(4723), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_QMARK_QMARK] = ACTIONS(4723), - [anon_sym_on] = ACTIONS(4723), - [anon_sym_equals] = ACTIONS(4723), - [anon_sym_by] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4723), - [anon_sym_is] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4723), - [aux_sym_preproc_if_token3] = ACTIONS(4723), - [aux_sym_preproc_else_token1] = ACTIONS(4723), - [aux_sym_preproc_elif_token1] = ACTIONS(4723), + [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), @@ -490290,7 +501917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3430] = { - [sym_attribute_list] = STATE(3621), [sym_preproc_region] = STATE(3430), [sym_preproc_endregion] = STATE(3430), [sym_preproc_line] = STATE(3430), @@ -490300,54 +501926,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3430), - [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(5444), - [anon_sym_LPAREN] = ACTIONS(4762), - [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), + [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), @@ -490369,55 +501997,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), - [sym__identifier_token] = ACTIONS(3245), - [anon_sym_extern] = ACTIONS(3245), - [anon_sym_alias] = ACTIONS(3245), - [anon_sym_global] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [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_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_add] = ACTIONS(3245), - [anon_sym_remove] = ACTIONS(3245), - [anon_sym_init] = ACTIONS(3245), - [anon_sym_scoped] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_when] = ACTIONS(3245), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490439,55 +502068,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_EQ] = ACTIONS(5447), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5449), - [anon_sym_DASH_EQ] = ACTIONS(5449), - [anon_sym_STAR_EQ] = ACTIONS(5449), - [anon_sym_SLASH_EQ] = ACTIONS(5449), - [anon_sym_PERCENT_EQ] = ACTIONS(5449), - [anon_sym_AMP_EQ] = ACTIONS(5449), - [anon_sym_CARET_EQ] = ACTIONS(5449), - [anon_sym_PIPE_EQ] = ACTIONS(5449), - [anon_sym_LT_LT_EQ] = ACTIONS(5449), - [anon_sym_GT_GT_EQ] = ACTIONS(5449), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5449), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5449), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -490500,25 +502130,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3433] = { - [sym_explicit_interface_specifier] = STATE(5724), - [sym__name] = STATE(6329), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6927), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3433), [sym_preproc_endregion] = STATE(3433), [sym_preproc_line] = STATE(3433), @@ -490528,36 +502139,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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4978), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5451), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(5453), - [anon_sym_checked] = ACTIONS(5453), - [anon_sym_scoped] = ACTIONS(5455), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490579,65 +502210,66 @@ 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_EQ] = ACTIONS(5457), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5459), - [anon_sym_DASH_EQ] = ACTIONS(5459), - [anon_sym_STAR_EQ] = ACTIONS(5459), - [anon_sym_SLASH_EQ] = ACTIONS(5459), - [anon_sym_PERCENT_EQ] = ACTIONS(5459), - [anon_sym_AMP_EQ] = ACTIONS(5459), - [anon_sym_CARET_EQ] = ACTIONS(5459), - [anon_sym_PIPE_EQ] = ACTIONS(5459), - [anon_sym_LT_LT_EQ] = ACTIONS(5459), - [anon_sym_GT_GT_EQ] = ACTIONS(5459), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5459), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5459), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4684), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3435] = { [sym_preproc_region] = STATE(3435), @@ -490649,55 +502281,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3435), [sym_preproc_define] = STATE(3435), [sym_preproc_undef] = STATE(3435), - [anon_sym_EQ] = ACTIONS(5461), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5463), - [anon_sym_DASH_EQ] = ACTIONS(5463), - [anon_sym_STAR_EQ] = ACTIONS(5463), - [anon_sym_SLASH_EQ] = ACTIONS(5463), - [anon_sym_PERCENT_EQ] = ACTIONS(5463), - [anon_sym_AMP_EQ] = ACTIONS(5463), - [anon_sym_CARET_EQ] = ACTIONS(5463), - [anon_sym_PIPE_EQ] = ACTIONS(5463), - [anon_sym_LT_LT_EQ] = ACTIONS(5463), - [anon_sym_GT_GT_EQ] = ACTIONS(5463), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5463), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5463), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -490719,55 +502352,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(5465), - [anon_sym_extern] = ACTIONS(5465), - [anon_sym_alias] = ACTIONS(5465), - [anon_sym_global] = ACTIONS(5465), - [anon_sym_unsafe] = ACTIONS(5465), - [anon_sym_static] = ACTIONS(5465), - [anon_sym_LBRACK] = ACTIONS(5467), - [anon_sym_RBRACE] = ACTIONS(5467), - [anon_sym_abstract] = ACTIONS(5465), - [anon_sym_async] = ACTIONS(5465), - [anon_sym_const] = ACTIONS(5465), - [anon_sym_file] = ACTIONS(5465), - [anon_sym_fixed] = ACTIONS(5465), - [anon_sym_internal] = ACTIONS(5465), - [anon_sym_new] = ACTIONS(5465), - [anon_sym_override] = ACTIONS(5465), - [anon_sym_partial] = ACTIONS(5465), - [anon_sym_private] = ACTIONS(5465), - [anon_sym_protected] = ACTIONS(5465), - [anon_sym_public] = ACTIONS(5465), - [anon_sym_readonly] = ACTIONS(5465), - [anon_sym_required] = ACTIONS(5465), - [anon_sym_sealed] = ACTIONS(5465), - [anon_sym_virtual] = ACTIONS(5465), - [anon_sym_volatile] = ACTIONS(5465), - [anon_sym_where] = ACTIONS(5465), - [anon_sym_notnull] = ACTIONS(5465), - [anon_sym_unmanaged] = ACTIONS(5465), - [anon_sym_get] = ACTIONS(5465), - [anon_sym_set] = ACTIONS(5465), - [anon_sym_add] = ACTIONS(5465), - [anon_sym_remove] = ACTIONS(5465), - [anon_sym_init] = ACTIONS(5465), - [anon_sym_scoped] = ACTIONS(5465), - [anon_sym_var] = ACTIONS(5465), - [anon_sym_yield] = ACTIONS(5465), - [anon_sym_when] = ACTIONS(5465), - [anon_sym_from] = ACTIONS(5465), - [anon_sym_into] = ACTIONS(5465), - [anon_sym_join] = ACTIONS(5465), - [anon_sym_on] = ACTIONS(5465), - [anon_sym_equals] = ACTIONS(5465), - [anon_sym_let] = ACTIONS(5465), - [anon_sym_orderby] = ACTIONS(5465), - [anon_sym_ascending] = ACTIONS(5465), - [anon_sym_descending] = ACTIONS(5465), - [anon_sym_group] = ACTIONS(5465), - [anon_sym_by] = ACTIONS(5465), - [anon_sym_select] = ACTIONS(5465), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490789,55 +502423,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3437), [sym_preproc_define] = STATE(3437), [sym_preproc_undef] = STATE(3437), - [sym__identifier_token] = ACTIONS(5469), - [anon_sym_extern] = ACTIONS(5469), - [anon_sym_alias] = ACTIONS(5469), - [anon_sym_global] = ACTIONS(5469), - [anon_sym_unsafe] = ACTIONS(5469), - [anon_sym_static] = ACTIONS(5469), - [anon_sym_LBRACK] = ACTIONS(5471), - [anon_sym_RBRACE] = ACTIONS(5471), - [anon_sym_abstract] = ACTIONS(5469), - [anon_sym_async] = ACTIONS(5469), - [anon_sym_const] = ACTIONS(5469), - [anon_sym_file] = ACTIONS(5469), - [anon_sym_fixed] = ACTIONS(5469), - [anon_sym_internal] = ACTIONS(5469), - [anon_sym_new] = ACTIONS(5469), - [anon_sym_override] = ACTIONS(5469), - [anon_sym_partial] = ACTIONS(5469), - [anon_sym_private] = ACTIONS(5469), - [anon_sym_protected] = ACTIONS(5469), - [anon_sym_public] = ACTIONS(5469), - [anon_sym_readonly] = ACTIONS(5469), - [anon_sym_required] = ACTIONS(5469), - [anon_sym_sealed] = ACTIONS(5469), - [anon_sym_virtual] = ACTIONS(5469), - [anon_sym_volatile] = ACTIONS(5469), - [anon_sym_where] = ACTIONS(5469), - [anon_sym_notnull] = ACTIONS(5469), - [anon_sym_unmanaged] = ACTIONS(5469), - [anon_sym_get] = ACTIONS(5469), - [anon_sym_set] = ACTIONS(5469), - [anon_sym_add] = ACTIONS(5469), - [anon_sym_remove] = ACTIONS(5469), - [anon_sym_init] = ACTIONS(5469), - [anon_sym_scoped] = ACTIONS(5469), - [anon_sym_var] = ACTIONS(5469), - [anon_sym_yield] = ACTIONS(5469), - [anon_sym_when] = ACTIONS(5469), - [anon_sym_from] = ACTIONS(5469), - [anon_sym_into] = ACTIONS(5469), - [anon_sym_join] = ACTIONS(5469), - [anon_sym_on] = ACTIONS(5469), - [anon_sym_equals] = ACTIONS(5469), - [anon_sym_let] = ACTIONS(5469), - [anon_sym_orderby] = ACTIONS(5469), - [anon_sym_ascending] = ACTIONS(5469), - [anon_sym_descending] = ACTIONS(5469), - [anon_sym_group] = ACTIONS(5469), - [anon_sym_by] = ACTIONS(5469), - [anon_sym_select] = ACTIONS(5469), + [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), @@ -490859,55 +502494,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(4684), - [anon_sym_EQ] = ACTIONS(5473), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5475), - [anon_sym_DASH_EQ] = ACTIONS(5475), - [anon_sym_STAR_EQ] = ACTIONS(5475), - [anon_sym_SLASH_EQ] = ACTIONS(5475), - [anon_sym_PERCENT_EQ] = ACTIONS(5475), - [anon_sym_AMP_EQ] = ACTIONS(5475), - [anon_sym_CARET_EQ] = ACTIONS(5475), - [anon_sym_PIPE_EQ] = ACTIONS(5475), - [anon_sym_LT_LT_EQ] = ACTIONS(5475), - [anon_sym_GT_GT_EQ] = ACTIONS(5475), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5475), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5475), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490929,55 +502565,55 @@ 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(5477), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5479), - [anon_sym_DASH_EQ] = ACTIONS(5479), - [anon_sym_STAR_EQ] = ACTIONS(5479), - [anon_sym_SLASH_EQ] = ACTIONS(5479), - [anon_sym_PERCENT_EQ] = ACTIONS(5479), - [anon_sym_AMP_EQ] = ACTIONS(5479), - [anon_sym_CARET_EQ] = ACTIONS(5479), - [anon_sym_PIPE_EQ] = ACTIONS(5479), - [anon_sym_LT_LT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5479), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5479), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -490988,28 +502624,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4860), }, [3440] = { - [sym_parameter_list] = STATE(7013), - [sym_block] = STATE(3035), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), + [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(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_implicit_type] = STATE(2347), + [sym_array_type] = STATE(4404), + [sym__array_base_type] = STATE(7162), + [sym_nullable_type] = STATE(4285), + [sym_pointer_type] = STATE(4285), + [sym__pointer_base_type] = 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), @@ -491019,35 +502656,36 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491060,8 +502698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3441] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2399), [sym_preproc_region] = STATE(3441), [sym_preproc_endregion] = STATE(3441), [sym_preproc_line] = STATE(3441), @@ -491071,53 +502707,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), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(5442), - [anon_sym_COLON] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_RBRACK] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4669), - [anon_sym_RBRACE] = ACTIONS(4669), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_in] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_LT] = ACTIONS(4669), - [anon_sym_GT_GT] = ACTIONS(4673), - [anon_sym_GT_GT_GT] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4669), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_QMARK_QMARK] = ACTIONS(4669), - [anon_sym_on] = ACTIONS(4669), - [anon_sym_equals] = ACTIONS(4669), - [anon_sym_by] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4669), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4669), - [aux_sym_preproc_if_token3] = ACTIONS(4669), - [aux_sym_preproc_else_token1] = ACTIONS(4669), - [aux_sym_preproc_elif_token1] = ACTIONS(4669), + [sym__identifier_token] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491139,55 +502778,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_EQ] = ACTIONS(5485), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5487), - [anon_sym_DASH_EQ] = ACTIONS(5487), - [anon_sym_STAR_EQ] = ACTIONS(5487), - [anon_sym_SLASH_EQ] = ACTIONS(5487), - [anon_sym_PERCENT_EQ] = ACTIONS(5487), - [anon_sym_AMP_EQ] = ACTIONS(5487), - [anon_sym_CARET_EQ] = ACTIONS(5487), - [anon_sym_PIPE_EQ] = ACTIONS(5487), - [anon_sym_LT_LT_EQ] = ACTIONS(5487), - [anon_sym_GT_GT_EQ] = ACTIONS(5487), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5487), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5487), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -491200,24 +502840,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3443] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3443), [sym_preproc_endregion] = STATE(3443), [sym_preproc_line] = STATE(3443), @@ -491227,37 +502849,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), - [sym__identifier_token] = ACTIONS(2645), - [anon_sym_alias] = ACTIONS(2645), - [anon_sym_global] = ACTIONS(2645), - [anon_sym_LPAREN] = ACTIONS(2649), - [anon_sym_ref] = ACTIONS(2645), - [anon_sym_delegate] = ACTIONS(2645), - [anon_sym_file] = ACTIONS(2645), - [anon_sym_readonly] = ACTIONS(2645), - [anon_sym_in] = ACTIONS(2645), - [anon_sym_out] = ACTIONS(2645), - [anon_sym_where] = ACTIONS(2645), - [anon_sym_notnull] = ACTIONS(2645), - [anon_sym_unmanaged] = ACTIONS(2645), - [anon_sym_this] = ACTIONS(2645), - [anon_sym_scoped] = ACTIONS(2645), - [anon_sym_var] = ACTIONS(2645), - [sym_predefined_type] = ACTIONS(2645), - [anon_sym_yield] = ACTIONS(2645), - [anon_sym_when] = ACTIONS(2645), - [anon_sym_from] = ACTIONS(2645), - [anon_sym_into] = ACTIONS(2645), - [anon_sym_join] = ACTIONS(2645), - [anon_sym_on] = ACTIONS(2645), - [anon_sym_equals] = ACTIONS(2645), - [anon_sym_let] = ACTIONS(2645), - [anon_sym_orderby] = ACTIONS(2645), - [anon_sym_ascending] = ACTIONS(2645), - [anon_sym_descending] = ACTIONS(2645), - [anon_sym_group] = ACTIONS(2645), - [anon_sym_by] = ACTIONS(2645), - [anon_sym_select] = ACTIONS(2645), + [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), @@ -491270,15 +502911,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3444] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3444), [sym_preproc_endregion] = STATE(3444), [sym_preproc_line] = STATE(3444), @@ -491288,46 +502920,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), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_when] = ACTIONS(3549), - [sym_discard] = ACTIONS(3395), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491349,55 +502991,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(3253), - [anon_sym_extern] = ACTIONS(3253), - [anon_sym_alias] = ACTIONS(3253), - [anon_sym_global] = ACTIONS(3253), - [anon_sym_unsafe] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [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_get] = ACTIONS(3253), - [anon_sym_set] = ACTIONS(3253), - [anon_sym_add] = ACTIONS(3253), - [anon_sym_remove] = ACTIONS(3253), - [anon_sym_init] = ACTIONS(3253), - [anon_sym_scoped] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_when] = ACTIONS(3253), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491410,7 +503053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3446] = { - [sym_modifier] = STATE(3622), [sym_preproc_region] = STATE(3446), [sym_preproc_endregion] = STATE(3446), [sym_preproc_line] = STATE(3446), @@ -491420,54 +503062,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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3446), - [sym__identifier_token] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5489), - [anon_sym_alias] = ACTIONS(5106), - [anon_sym_global] = ACTIONS(5106), - [anon_sym_unsafe] = ACTIONS(5489), - [anon_sym_static] = ACTIONS(5489), - [anon_sym_abstract] = ACTIONS(5489), - [anon_sym_async] = ACTIONS(5489), - [anon_sym_const] = ACTIONS(5489), - [anon_sym_file] = ACTIONS(5489), - [anon_sym_fixed] = ACTIONS(5489), - [anon_sym_internal] = ACTIONS(5489), - [anon_sym_new] = ACTIONS(5489), - [anon_sym_override] = ACTIONS(5489), - [anon_sym_partial] = ACTIONS(5489), - [anon_sym_private] = ACTIONS(5489), - [anon_sym_protected] = ACTIONS(5489), - [anon_sym_public] = ACTIONS(5489), - [anon_sym_readonly] = ACTIONS(5489), - [anon_sym_required] = ACTIONS(5489), - [anon_sym_sealed] = ACTIONS(5489), - [anon_sym_virtual] = ACTIONS(5489), - [anon_sym_volatile] = ACTIONS(5489), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_notnull] = ACTIONS(5106), - [anon_sym_unmanaged] = ACTIONS(5106), - [anon_sym_get] = ACTIONS(5106), - [anon_sym_set] = ACTIONS(5106), - [anon_sym_add] = ACTIONS(5106), - [anon_sym_remove] = ACTIONS(5106), - [anon_sym_init] = ACTIONS(5106), - [anon_sym_scoped] = ACTIONS(5106), - [anon_sym_var] = ACTIONS(5106), - [anon_sym_yield] = ACTIONS(5106), - [anon_sym_when] = 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_ascending] = ACTIONS(5106), - [anon_sym_descending] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491480,25 +503124,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3447] = { - [sym_explicit_interface_specifier] = STATE(5724), - [sym__name] = STATE(6329), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(7015), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3447), [sym_preproc_endregion] = STATE(3447), [sym_preproc_line] = STATE(3447), @@ -491508,36 +503133,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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4978), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5451), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(5453), - [anon_sym_checked] = ACTIONS(5453), - [anon_sym_scoped] = ACTIONS(5455), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491559,55 +503204,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), - [sym__identifier_token] = ACTIONS(2909), - [anon_sym_extern] = ACTIONS(2909), - [anon_sym_alias] = ACTIONS(2909), - [anon_sym_global] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_static] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_abstract] = ACTIONS(2909), - [anon_sym_async] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_file] = ACTIONS(2909), - [anon_sym_fixed] = ACTIONS(2909), - [anon_sym_internal] = ACTIONS(2909), - [anon_sym_new] = ACTIONS(2909), - [anon_sym_override] = ACTIONS(2909), - [anon_sym_partial] = ACTIONS(2909), - [anon_sym_private] = ACTIONS(2909), - [anon_sym_protected] = ACTIONS(2909), - [anon_sym_public] = ACTIONS(2909), - [anon_sym_readonly] = ACTIONS(2909), - [anon_sym_required] = ACTIONS(2909), - [anon_sym_sealed] = ACTIONS(2909), - [anon_sym_virtual] = ACTIONS(2909), - [anon_sym_volatile] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2909), - [anon_sym_notnull] = ACTIONS(2909), - [anon_sym_unmanaged] = ACTIONS(2909), - [anon_sym_get] = ACTIONS(2909), - [anon_sym_set] = ACTIONS(2909), - [anon_sym_add] = ACTIONS(2909), - [anon_sym_remove] = ACTIONS(2909), - [anon_sym_init] = ACTIONS(2909), - [anon_sym_scoped] = ACTIONS(2909), - [anon_sym_var] = ACTIONS(2909), - [anon_sym_yield] = ACTIONS(2909), - [anon_sym_when] = ACTIONS(2909), - [anon_sym_from] = ACTIONS(2909), - [anon_sym_into] = ACTIONS(2909), - [anon_sym_join] = ACTIONS(2909), - [anon_sym_on] = ACTIONS(2909), - [anon_sym_equals] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2909), - [anon_sym_orderby] = ACTIONS(2909), - [anon_sym_ascending] = ACTIONS(2909), - [anon_sym_descending] = ACTIONS(2909), - [anon_sym_group] = ACTIONS(2909), - [anon_sym_by] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491629,55 +503275,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), - [sym__identifier_token] = ACTIONS(3081), - [anon_sym_extern] = ACTIONS(3081), - [anon_sym_alias] = ACTIONS(3081), - [anon_sym_global] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_abstract] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_file] = ACTIONS(3081), - [anon_sym_fixed] = ACTIONS(3081), - [anon_sym_internal] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_override] = ACTIONS(3081), - [anon_sym_partial] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_required] = ACTIONS(3081), - [anon_sym_sealed] = ACTIONS(3081), - [anon_sym_virtual] = ACTIONS(3081), - [anon_sym_volatile] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3081), - [anon_sym_notnull] = ACTIONS(3081), - [anon_sym_unmanaged] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_add] = ACTIONS(3081), - [anon_sym_remove] = ACTIONS(3081), - [anon_sym_init] = ACTIONS(3081), - [anon_sym_scoped] = ACTIONS(3081), - [anon_sym_var] = ACTIONS(3081), - [anon_sym_yield] = ACTIONS(3081), - [anon_sym_when] = ACTIONS(3081), - [anon_sym_from] = ACTIONS(3081), - [anon_sym_into] = ACTIONS(3081), - [anon_sym_join] = ACTIONS(3081), - [anon_sym_on] = ACTIONS(3081), - [anon_sym_equals] = ACTIONS(3081), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_orderby] = ACTIONS(3081), - [anon_sym_ascending] = ACTIONS(3081), - [anon_sym_descending] = ACTIONS(3081), - [anon_sym_group] = ACTIONS(3081), - [anon_sym_by] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491699,55 +503346,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_EQ] = ACTIONS(5404), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5406), - [anon_sym_DASH_EQ] = ACTIONS(5406), - [anon_sym_STAR_EQ] = ACTIONS(5406), - [anon_sym_SLASH_EQ] = ACTIONS(5406), - [anon_sym_PERCENT_EQ] = ACTIONS(5406), - [anon_sym_AMP_EQ] = ACTIONS(5406), - [anon_sym_CARET_EQ] = ACTIONS(5406), - [anon_sym_PIPE_EQ] = ACTIONS(5406), - [anon_sym_LT_LT_EQ] = ACTIONS(5406), - [anon_sym_GT_GT_EQ] = ACTIONS(5406), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5406), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5406), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491760,8 +503408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3451] = { - [sym_argument_list] = STATE(3486), - [sym_initializer_expression] = STATE(3805), [sym_preproc_region] = STATE(3451), [sym_preproc_endregion] = STATE(3451), [sym_preproc_line] = STATE(3451), @@ -491771,53 +503417,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_LBRACK] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(4649), - [anon_sym_GT] = ACTIONS(4649), - [anon_sym_where] = ACTIONS(4645), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_PLUS_PLUS] = ACTIONS(4645), - [anon_sym_DASH_DASH] = ACTIONS(4645), - [anon_sym_PLUS] = ACTIONS(4649), - [anon_sym_DASH] = ACTIONS(4649), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_SLASH] = ACTIONS(4649), - [anon_sym_PERCENT] = ACTIONS(4645), - [anon_sym_CARET] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_AMP] = ACTIONS(4649), - [anon_sym_LT_LT] = ACTIONS(4645), - [anon_sym_GT_GT] = ACTIONS(4649), - [anon_sym_GT_GT_GT] = ACTIONS(4645), - [anon_sym_EQ_EQ] = ACTIONS(4645), - [anon_sym_BANG_EQ] = ACTIONS(4645), - [anon_sym_GT_EQ] = ACTIONS(4645), - [anon_sym_LT_EQ] = ACTIONS(4645), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_switch] = ACTIONS(4645), - [anon_sym_DOT_DOT] = ACTIONS(4645), - [anon_sym_and] = ACTIONS(4645), - [anon_sym_or] = ACTIONS(4649), - [anon_sym_AMP_AMP] = ACTIONS(4645), - [anon_sym_PIPE_PIPE] = ACTIONS(4645), - [anon_sym_QMARK_QMARK] = ACTIONS(4645), - [anon_sym_from] = ACTIONS(4645), - [anon_sym_into] = ACTIONS(4645), - [anon_sym_join] = ACTIONS(4645), - [anon_sym_let] = ACTIONS(4645), - [anon_sym_orderby] = ACTIONS(4645), - [anon_sym_ascending] = ACTIONS(4645), - [anon_sym_descending] = ACTIONS(4645), - [anon_sym_group] = ACTIONS(4645), - [anon_sym_select] = ACTIONS(4645), - [anon_sym_as] = ACTIONS(4649), - [anon_sym_is] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_with] = ACTIONS(4645), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491839,55 +503488,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3452), [sym_preproc_define] = STATE(3452), [sym_preproc_undef] = STATE(3452), - [sym__identifier_token] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym_alias] = ACTIONS(5496), - [anon_sym_global] = ACTIONS(5496), - [anon_sym_unsafe] = ACTIONS(5496), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_abstract] = ACTIONS(5496), - [anon_sym_async] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_file] = ACTIONS(5496), - [anon_sym_fixed] = ACTIONS(5496), - [anon_sym_internal] = ACTIONS(5496), - [anon_sym_new] = ACTIONS(5496), - [anon_sym_override] = ACTIONS(5496), - [anon_sym_partial] = ACTIONS(5496), - [anon_sym_private] = ACTIONS(5496), - [anon_sym_protected] = ACTIONS(5496), - [anon_sym_public] = ACTIONS(5496), - [anon_sym_readonly] = ACTIONS(5496), - [anon_sym_required] = ACTIONS(5496), - [anon_sym_sealed] = ACTIONS(5496), - [anon_sym_virtual] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym_where] = ACTIONS(5496), - [anon_sym_notnull] = ACTIONS(5496), - [anon_sym_unmanaged] = ACTIONS(5496), - [anon_sym_get] = ACTIONS(5496), - [anon_sym_set] = ACTIONS(5496), - [anon_sym_add] = ACTIONS(5496), - [anon_sym_remove] = ACTIONS(5496), - [anon_sym_init] = ACTIONS(5496), - [anon_sym_scoped] = ACTIONS(5496), - [anon_sym_var] = ACTIONS(5496), - [anon_sym_yield] = ACTIONS(5496), - [anon_sym_when] = ACTIONS(5496), - [anon_sym_from] = ACTIONS(5496), - [anon_sym_into] = ACTIONS(5496), - [anon_sym_join] = ACTIONS(5496), - [anon_sym_on] = ACTIONS(5496), - [anon_sym_equals] = ACTIONS(5496), - [anon_sym_let] = ACTIONS(5496), - [anon_sym_orderby] = ACTIONS(5496), - [anon_sym_ascending] = ACTIONS(5496), - [anon_sym_descending] = ACTIONS(5496), - [anon_sym_group] = ACTIONS(5496), - [anon_sym_by] = ACTIONS(5496), - [anon_sym_select] = ACTIONS(5496), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491909,55 +503559,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(3950), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_COLON] = ACTIONS(3950), - [anon_sym_COMMA] = ACTIONS(3950), - [anon_sym_RBRACK] = ACTIONS(3950), - [anon_sym_LPAREN] = ACTIONS(3950), - [anon_sym_RPAREN] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_LT] = ACTIONS(3948), - [anon_sym_GT] = ACTIONS(3948), - [anon_sym_in] = ACTIONS(3948), - [anon_sym_QMARK] = ACTIONS(4727), - [anon_sym_BANG] = ACTIONS(3948), - [anon_sym_PLUS_PLUS] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3948), - [anon_sym_DASH] = ACTIONS(3948), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_SLASH] = ACTIONS(3948), - [anon_sym_PERCENT] = ACTIONS(3950), - [anon_sym_CARET] = ACTIONS(3950), - [anon_sym_PIPE] = ACTIONS(3948), - [anon_sym_AMP] = ACTIONS(3948), - [anon_sym_LT_LT] = ACTIONS(3950), - [anon_sym_GT_GT] = ACTIONS(3948), - [anon_sym_GT_GT_GT] = ACTIONS(3950), - [anon_sym_EQ_EQ] = ACTIONS(3950), - [anon_sym_BANG_EQ] = ACTIONS(3950), - [anon_sym_GT_EQ] = ACTIONS(3950), - [anon_sym_LT_EQ] = ACTIONS(3950), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_EQ_GT] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_DOT_DOT] = ACTIONS(3950), - [anon_sym_AMP_AMP] = ACTIONS(3950), - [anon_sym_PIPE_PIPE] = ACTIONS(3950), - [anon_sym_QMARK_QMARK] = ACTIONS(3950), - [anon_sym_into] = ACTIONS(3950), - [anon_sym_on] = ACTIONS(3950), - [anon_sym_equals] = ACTIONS(3950), - [anon_sym_by] = ACTIONS(3950), - [anon_sym_as] = ACTIONS(3950), - [anon_sym_is] = ACTIONS(3950), - [anon_sym_DASH_GT] = ACTIONS(3950), - [anon_sym_with] = ACTIONS(3950), - [aux_sym_preproc_if_token3] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -491970,6 +503621,15 @@ 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), @@ -491979,55 +503639,47 @@ 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), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(3934), - [anon_sym_COLON] = ACTIONS(3934), - [anon_sym_COMMA] = ACTIONS(3934), - [anon_sym_RBRACK] = ACTIONS(3934), - [anon_sym_LPAREN] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_LBRACE] = ACTIONS(3934), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(3932), - [anon_sym_GT] = ACTIONS(3932), - [anon_sym_in] = ACTIONS(3932), - [anon_sym_QMARK] = ACTIONS(3932), - [anon_sym_BANG] = ACTIONS(3932), - [anon_sym_PLUS_PLUS] = ACTIONS(3934), - [anon_sym_DASH_DASH] = ACTIONS(3934), - [anon_sym_PLUS] = ACTIONS(3932), - [anon_sym_DASH] = ACTIONS(3932), - [anon_sym_STAR] = ACTIONS(3934), - [anon_sym_SLASH] = ACTIONS(3932), - [anon_sym_PERCENT] = ACTIONS(3934), - [anon_sym_CARET] = ACTIONS(3934), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_AMP] = ACTIONS(3932), - [anon_sym_LT_LT] = ACTIONS(3934), - [anon_sym_GT_GT] = ACTIONS(3932), - [anon_sym_GT_GT_GT] = ACTIONS(3934), - [anon_sym_EQ_EQ] = ACTIONS(3934), - [anon_sym_BANG_EQ] = ACTIONS(3934), - [anon_sym_GT_EQ] = ACTIONS(3934), - [anon_sym_LT_EQ] = ACTIONS(3934), - [anon_sym_DOT] = ACTIONS(5500), - [anon_sym_EQ_GT] = ACTIONS(3934), - [anon_sym_switch] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_QMARK_QMARK] = ACTIONS(3934), - [anon_sym_into] = ACTIONS(3934), - [anon_sym_on] = ACTIONS(3934), - [anon_sym_equals] = ACTIONS(3934), - [anon_sym_by] = ACTIONS(3934), - [anon_sym_as] = ACTIONS(3934), - [anon_sym_is] = ACTIONS(3934), - [anon_sym_DASH_GT] = ACTIONS(3934), - [anon_sym_with] = ACTIONS(3934), - [aux_sym_preproc_if_token3] = ACTIONS(3934), - [aux_sym_preproc_else_token1] = ACTIONS(3934), - [aux_sym_preproc_elif_token1] = ACTIONS(3934), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492040,8 +503692,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3455] = { - [sym_argument_list] = STATE(3331), - [sym_bracketed_argument_list] = STATE(2399), [sym_preproc_region] = STATE(3455), [sym_preproc_endregion] = STATE(3455), [sym_preproc_line] = STATE(3455), @@ -492051,53 +503701,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3455), [sym_preproc_define] = STATE(3455), [sym_preproc_undef] = STATE(3455), - [anon_sym_SEMI] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(5442), - [anon_sym_COLON] = ACTIONS(4690), - [anon_sym_COMMA] = ACTIONS(4690), - [anon_sym_RBRACK] = ACTIONS(4690), - [anon_sym_LPAREN] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(4690), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_LT] = ACTIONS(4692), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4690), - [anon_sym_QMARK] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(4692), - [anon_sym_DASH] = ACTIONS(4692), - [anon_sym_STAR] = ACTIONS(4690), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_PIPE] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4692), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4692), - [anon_sym_GT_GT_GT] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4690), - [anon_sym_BANG_EQ] = ACTIONS(4690), - [anon_sym_GT_EQ] = ACTIONS(4690), - [anon_sym_LT_EQ] = ACTIONS(4690), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4690), - [anon_sym_switch] = ACTIONS(4690), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_AMP_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4690), - [anon_sym_QMARK_QMARK] = ACTIONS(4690), - [anon_sym_on] = ACTIONS(4690), - [anon_sym_equals] = ACTIONS(4690), - [anon_sym_by] = ACTIONS(4690), - [anon_sym_as] = ACTIONS(4690), - [anon_sym_is] = ACTIONS(4690), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4690), - [aux_sym_preproc_if_token3] = ACTIONS(4690), - [aux_sym_preproc_else_token1] = ACTIONS(4690), - [aux_sym_preproc_elif_token1] = ACTIONS(4690), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492119,55 +503772,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_EQ] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5504), - [anon_sym_DASH_EQ] = ACTIONS(5504), - [anon_sym_STAR_EQ] = ACTIONS(5504), - [anon_sym_SLASH_EQ] = ACTIONS(5504), - [anon_sym_PERCENT_EQ] = ACTIONS(5504), - [anon_sym_AMP_EQ] = ACTIONS(5504), - [anon_sym_CARET_EQ] = ACTIONS(5504), - [anon_sym_PIPE_EQ] = ACTIONS(5504), - [anon_sym_LT_LT_EQ] = ACTIONS(5504), - [anon_sym_GT_GT_EQ] = ACTIONS(5504), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5504), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5504), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492189,55 +503843,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_EQ] = ACTIONS(5506), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5508), - [anon_sym_DASH_EQ] = ACTIONS(5508), - [anon_sym_STAR_EQ] = ACTIONS(5508), - [anon_sym_SLASH_EQ] = ACTIONS(5508), - [anon_sym_PERCENT_EQ] = ACTIONS(5508), - [anon_sym_AMP_EQ] = ACTIONS(5508), - [anon_sym_CARET_EQ] = ACTIONS(5508), - [anon_sym_PIPE_EQ] = ACTIONS(5508), - [anon_sym_LT_LT_EQ] = ACTIONS(5508), - [anon_sym_GT_GT_EQ] = ACTIONS(5508), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5508), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5508), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_if_token3] = ACTIONS(4684), - [aux_sym_preproc_else_token1] = ACTIONS(4684), - [aux_sym_preproc_elif_token1] = ACTIONS(4684), + [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), @@ -492259,55 +503914,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), - [sym__identifier_token] = ACTIONS(3201), - [anon_sym_extern] = ACTIONS(3201), - [anon_sym_alias] = ACTIONS(3201), - [anon_sym_global] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(3201), - [anon_sym_static] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [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_get] = ACTIONS(3201), - [anon_sym_set] = ACTIONS(3201), - [anon_sym_add] = ACTIONS(3201), - [anon_sym_remove] = ACTIONS(3201), - [anon_sym_init] = ACTIONS(3201), - [anon_sym_scoped] = ACTIONS(3201), - [anon_sym_var] = ACTIONS(3201), - [anon_sym_yield] = ACTIONS(3201), - [anon_sym_when] = ACTIONS(3201), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492320,25 +503976,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3459] = { - [sym_explicit_interface_specifier] = STATE(5724), - [sym__name] = STATE(6329), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6820), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -492348,36 +504005,36 @@ 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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(4978), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5451), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_operator] = ACTIONS(5453), - [anon_sym_checked] = ACTIONS(5453), - [anon_sym_scoped] = ACTIONS(5455), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492399,55 +504056,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), - [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), + [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), @@ -492469,55 +504127,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_EQ] = ACTIONS(5514), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5516), - [anon_sym_DASH_EQ] = ACTIONS(5516), - [anon_sym_STAR_EQ] = ACTIONS(5516), - [anon_sym_SLASH_EQ] = ACTIONS(5516), - [anon_sym_PERCENT_EQ] = ACTIONS(5516), - [anon_sym_AMP_EQ] = ACTIONS(5516), - [anon_sym_CARET_EQ] = ACTIONS(5516), - [anon_sym_PIPE_EQ] = ACTIONS(5516), - [anon_sym_LT_LT_EQ] = ACTIONS(5516), - [anon_sym_GT_GT_EQ] = ACTIONS(5516), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5516), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5516), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492530,25 +504189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3462] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3907), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3462), [sym_preproc_endregion] = STATE(3462), [sym_preproc_line] = STATE(3462), @@ -492558,35 +504198,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(5518), - [anon_sym_ref] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492599,7 +504260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3463] = { - [sym_block] = STATE(2067), [sym_preproc_region] = STATE(3463), [sym_preproc_endregion] = STATE(3463), [sym_preproc_line] = STATE(3463), @@ -492609,53 +504269,56 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5522), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492668,25 +504331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3464] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3151), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(3464), [sym_preproc_endregion] = STATE(3464), [sym_preproc_line] = STATE(3464), @@ -492696,35 +504340,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), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5532), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), @@ -492746,54 +504411,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), - [sym__identifier_token] = ACTIONS(5076), - [anon_sym_extern] = ACTIONS(5076), - [anon_sym_alias] = ACTIONS(5076), - [anon_sym_global] = ACTIONS(5076), - [anon_sym_unsafe] = ACTIONS(5076), - [anon_sym_static] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5078), - [anon_sym_abstract] = ACTIONS(5076), - [anon_sym_async] = ACTIONS(5076), - [anon_sym_const] = ACTIONS(5076), - [anon_sym_file] = ACTIONS(5076), - [anon_sym_fixed] = ACTIONS(5076), - [anon_sym_internal] = ACTIONS(5076), - [anon_sym_new] = ACTIONS(5076), - [anon_sym_override] = ACTIONS(5076), - [anon_sym_partial] = ACTIONS(5076), - [anon_sym_private] = ACTIONS(5076), - [anon_sym_protected] = ACTIONS(5076), - [anon_sym_public] = ACTIONS(5076), - [anon_sym_readonly] = ACTIONS(5076), - [anon_sym_required] = ACTIONS(5076), - [anon_sym_sealed] = ACTIONS(5076), - [anon_sym_virtual] = ACTIONS(5076), - [anon_sym_volatile] = ACTIONS(5076), - [anon_sym_where] = ACTIONS(5076), - [anon_sym_notnull] = ACTIONS(5076), - [anon_sym_unmanaged] = ACTIONS(5076), - [anon_sym_get] = ACTIONS(5076), - [anon_sym_set] = ACTIONS(5076), - [anon_sym_add] = ACTIONS(5076), - [anon_sym_remove] = ACTIONS(5076), - [anon_sym_init] = ACTIONS(5076), - [anon_sym_scoped] = ACTIONS(5076), - [anon_sym_var] = ACTIONS(5076), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_when] = ACTIONS(5076), - [anon_sym_from] = ACTIONS(5076), - [anon_sym_into] = 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_ascending] = ACTIONS(5076), - [anon_sym_descending] = ACTIONS(5076), - [anon_sym_group] = ACTIONS(5076), - [anon_sym_by] = ACTIONS(5076), - [anon_sym_select] = ACTIONS(5076), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492806,25 +504473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3466] = { - [sym_argument_list] = STATE(2827), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2796), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(3349), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3466), [sym_preproc_endregion] = STATE(3466), [sym_preproc_line] = STATE(3466), @@ -492834,35 +504482,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), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(5538), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), @@ -492875,8 +504544,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3467] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3467), [sym_preproc_endregion] = STATE(3467), [sym_preproc_line] = STATE(3467), @@ -492886,52 +504553,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3467), [sym_preproc_define] = STATE(3467), [sym_preproc_undef] = STATE(3467), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(4673), - [anon_sym_GT] = ACTIONS(4673), - [anon_sym_where] = ACTIONS(4669), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(4673), - [anon_sym_DASH] = ACTIONS(4673), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_SLASH] = ACTIONS(4673), - [anon_sym_PERCENT] = ACTIONS(4669), - [anon_sym_CARET] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_LT_LT] = ACTIONS(4669), - [anon_sym_GT_GT] = ACTIONS(4673), - [anon_sym_GT_GT_GT] = ACTIONS(4669), - [anon_sym_EQ_EQ] = ACTIONS(4669), - [anon_sym_BANG_EQ] = ACTIONS(4669), - [anon_sym_GT_EQ] = ACTIONS(4669), - [anon_sym_LT_EQ] = ACTIONS(4669), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(4669), - [anon_sym_DOT_DOT] = ACTIONS(4669), - [anon_sym_and] = ACTIONS(4669), - [anon_sym_or] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4669), - [anon_sym_PIPE_PIPE] = ACTIONS(4669), - [anon_sym_QMARK_QMARK] = ACTIONS(4669), - [anon_sym_from] = ACTIONS(4669), - [anon_sym_into] = ACTIONS(4669), - [anon_sym_join] = 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_select] = ACTIONS(4669), - [anon_sym_as] = ACTIONS(4673), - [anon_sym_is] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(4669), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -492944,26 +504615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3468] = { - [sym_tuple_pattern] = STATE(6762), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_identifier] = STATE(5565), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3468), [sym_preproc_endregion] = STATE(3468), [sym_preproc_line] = STATE(3468), @@ -492973,34 +504624,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(4713), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [sym_discard] = ACTIONS(4717), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493013,24 +504686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3469] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6655), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3469), [sym_preproc_endregion] = STATE(3469), [sym_preproc_line] = STATE(3469), @@ -493040,36 +504695,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3469), [sym_preproc_define] = STATE(3469), [sym_preproc_undef] = STATE(3469), - [aux_sym_type_argument_list_repeat1] = STATE(6654), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5560), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493082,24 +504757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3470] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6521), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3470), [sym_preproc_endregion] = STATE(3470), [sym_preproc_line] = STATE(3470), @@ -493109,36 +504766,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), - [aux_sym_type_argument_list_repeat1] = STATE(6524), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5562), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493151,25 +504828,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3471] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(4171), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3471), [sym_preproc_endregion] = STATE(3471), [sym_preproc_line] = STATE(3471), @@ -493179,35 +504837,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), @@ -493220,8 +504899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3472] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3472), [sym_preproc_endregion] = STATE(3472), [sym_preproc_line] = STATE(3472), @@ -493231,52 +504908,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3472), [sym_preproc_define] = STATE(3472), [sym_preproc_undef] = STATE(3472), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5564), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5564), - [anon_sym_or] = ACTIONS(5594), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5564), - [anon_sym_into] = ACTIONS(5564), - [anon_sym_join] = ACTIONS(5564), - [anon_sym_let] = ACTIONS(5564), - [anon_sym_orderby] = ACTIONS(5564), - [anon_sym_ascending] = ACTIONS(5564), - [anon_sym_descending] = ACTIONS(5564), - [anon_sym_group] = ACTIONS(5564), - [anon_sym_select] = ACTIONS(5564), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493289,7 +504970,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3473] = { - [sym_initializer_expression] = STATE(3814), [sym_preproc_region] = STATE(3473), [sym_preproc_endregion] = STATE(3473), [sym_preproc_line] = STATE(3473), @@ -493299,53 +504979,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_LBRACK] = ACTIONS(4719), - [anon_sym_COMMA] = ACTIONS(4719), - [anon_sym_LPAREN] = ACTIONS(4719), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(4721), - [anon_sym_GT] = ACTIONS(4721), - [anon_sym_where] = ACTIONS(4719), - [anon_sym_QMARK] = ACTIONS(4721), - [anon_sym_BANG] = ACTIONS(4721), - [anon_sym_PLUS_PLUS] = ACTIONS(4719), - [anon_sym_DASH_DASH] = ACTIONS(4719), - [anon_sym_PLUS] = ACTIONS(4721), - [anon_sym_DASH] = ACTIONS(4721), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_SLASH] = ACTIONS(4721), - [anon_sym_PERCENT] = ACTIONS(4719), - [anon_sym_CARET] = ACTIONS(4719), - [anon_sym_PIPE] = ACTIONS(4721), - [anon_sym_AMP] = ACTIONS(4721), - [anon_sym_LT_LT] = ACTIONS(4719), - [anon_sym_GT_GT] = ACTIONS(4721), - [anon_sym_GT_GT_GT] = ACTIONS(4719), - [anon_sym_EQ_EQ] = ACTIONS(4719), - [anon_sym_BANG_EQ] = ACTIONS(4719), - [anon_sym_GT_EQ] = ACTIONS(4719), - [anon_sym_LT_EQ] = ACTIONS(4719), - [anon_sym_DOT] = ACTIONS(4721), - [anon_sym_switch] = ACTIONS(4719), - [anon_sym_DOT_DOT] = ACTIONS(4719), - [anon_sym_and] = ACTIONS(4719), - [anon_sym_or] = ACTIONS(4721), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [anon_sym_QMARK_QMARK] = ACTIONS(4719), - [anon_sym_from] = ACTIONS(4719), - [anon_sym_into] = ACTIONS(4719), - [anon_sym_join] = ACTIONS(4719), - [anon_sym_let] = ACTIONS(4719), - [anon_sym_orderby] = ACTIONS(4719), - [anon_sym_ascending] = ACTIONS(4719), - [anon_sym_descending] = ACTIONS(4719), - [anon_sym_group] = ACTIONS(4719), - [anon_sym_select] = ACTIONS(4719), - [anon_sym_as] = ACTIONS(4721), - [anon_sym_is] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_with] = ACTIONS(4719), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493358,8 +505041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3474] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3474), [sym_preproc_endregion] = STATE(3474), [sym_preproc_line] = STATE(3474), @@ -493369,52 +505050,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1139), - [anon_sym_into] = ACTIONS(1139), - [anon_sym_join] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_orderby] = ACTIONS(1139), - [anon_sym_ascending] = ACTIONS(1139), - [anon_sym_descending] = ACTIONS(1139), - [anon_sym_group] = ACTIONS(1139), - [anon_sym_select] = ACTIONS(1139), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1139), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(1139), + [anon_sym_SEMI] = ACTIONS(5433), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COLON] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_RBRACK] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_RPAREN] = ACTIONS(5433), + [anon_sym_RBRACE] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_in] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_EQ_GT] = ACTIONS(5433), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_when] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5433), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_on] = ACTIONS(5433), + [anon_sym_equals] = ACTIONS(5433), + [anon_sym_by] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5433), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), + [aux_sym_preproc_if_token3] = ACTIONS(5433), + [aux_sym_preproc_else_token1] = ACTIONS(5433), + [aux_sym_preproc_elif_token1] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493427,24 +505112,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3475] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6764), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -493454,36 +505141,36 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6763), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5608), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493496,8 +505183,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3476] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3476), [sym_preproc_endregion] = STATE(3476), [sym_preproc_line] = STATE(3476), @@ -493507,52 +505212,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3476), [sym_preproc_define] = STATE(3476), [sym_preproc_undef] = STATE(3476), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5610), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5610), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5610), - [anon_sym_or] = ACTIONS(5612), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5610), - [anon_sym_into] = ACTIONS(5610), - [anon_sym_join] = ACTIONS(5610), - [anon_sym_let] = ACTIONS(5610), - [anon_sym_orderby] = ACTIONS(5610), - [anon_sym_ascending] = ACTIONS(5610), - [anon_sym_descending] = ACTIONS(5610), - [anon_sym_group] = ACTIONS(5610), - [anon_sym_select] = ACTIONS(5610), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493574,54 +505263,56 @@ 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_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5614), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493634,25 +505325,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3478] = { - [sym_argument_list] = STATE(4245), - [sym__name] = STATE(4355), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_type] = STATE(4133), - [sym_implicit_type] = STATE(4266), - [sym_array_type] = STATE(4185), - [sym__array_base_type] = STATE(6996), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7242), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(4266), - [sym_scoped_type] = STATE(4266), - [sym_tuple_type] = STATE(4317), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), + [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), @@ -493662,35 +505352,38 @@ 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), - [sym__identifier_token] = ACTIONS(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(5616), - [anon_sym_LPAREN] = ACTIONS(5618), - [anon_sym_ref] = ACTIONS(3956), - [anon_sym_LBRACE] = ACTIONS(5620), - [anon_sym_delegate] = ACTIONS(5622), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_scoped] = ACTIONS(5624), - [anon_sym_var] = ACTIONS(5626), - [sym_predefined_type] = ACTIONS(5628), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_when] = 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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493712,54 +505405,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3479), [sym_preproc_define] = STATE(3479), [sym_preproc_undef] = STATE(3479), - [anon_sym_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5630), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493781,54 +505476,56 @@ 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_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5632), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493841,7 +505538,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3481] = { - [sym_block] = STATE(1975), [sym_preproc_region] = STATE(3481), [sym_preproc_endregion] = STATE(3481), [sym_preproc_line] = STATE(3481), @@ -493851,53 +505547,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5188), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(5407), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COLON] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_RBRACK] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_RPAREN] = ACTIONS(5407), + [anon_sym_RBRACE] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_in] = ACTIONS(5407), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_EQ_GT] = ACTIONS(5407), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_when] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5407), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_on] = ACTIONS(5407), + [anon_sym_equals] = ACTIONS(5407), + [anon_sym_by] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5407), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), + [aux_sym_preproc_if_token3] = ACTIONS(5407), + [aux_sym_preproc_else_token1] = ACTIONS(5407), + [aux_sym_preproc_elif_token1] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493910,6 +505609,26 @@ 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), @@ -493919,54 +505638,36 @@ 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), - [sym__identifier_token] = ACTIONS(5098), - [anon_sym_extern] = ACTIONS(5098), - [anon_sym_alias] = ACTIONS(5098), - [anon_sym_global] = ACTIONS(5098), - [anon_sym_unsafe] = ACTIONS(5098), - [anon_sym_static] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5098), - [anon_sym_async] = ACTIONS(5098), - [anon_sym_const] = ACTIONS(5098), - [anon_sym_file] = ACTIONS(5098), - [anon_sym_fixed] = ACTIONS(5098), - [anon_sym_internal] = ACTIONS(5098), - [anon_sym_new] = ACTIONS(5098), - [anon_sym_override] = ACTIONS(5098), - [anon_sym_partial] = ACTIONS(5098), - [anon_sym_private] = ACTIONS(5098), - [anon_sym_protected] = ACTIONS(5098), - [anon_sym_public] = ACTIONS(5098), - [anon_sym_readonly] = ACTIONS(5098), - [anon_sym_required] = ACTIONS(5098), - [anon_sym_sealed] = ACTIONS(5098), - [anon_sym_virtual] = ACTIONS(5098), - [anon_sym_volatile] = ACTIONS(5098), - [anon_sym_where] = ACTIONS(5098), - [anon_sym_notnull] = ACTIONS(5098), - [anon_sym_unmanaged] = ACTIONS(5098), - [anon_sym_get] = ACTIONS(5098), - [anon_sym_set] = ACTIONS(5098), - [anon_sym_add] = ACTIONS(5098), - [anon_sym_remove] = ACTIONS(5098), - [anon_sym_init] = ACTIONS(5098), - [anon_sym_scoped] = ACTIONS(5098), - [anon_sym_var] = ACTIONS(5098), - [anon_sym_yield] = ACTIONS(5098), - [anon_sym_when] = ACTIONS(5098), - [anon_sym_from] = ACTIONS(5098), - [anon_sym_into] = ACTIONS(5098), - [anon_sym_join] = ACTIONS(5098), - [anon_sym_on] = ACTIONS(5098), - [anon_sym_equals] = ACTIONS(5098), - [anon_sym_let] = ACTIONS(5098), - [anon_sym_orderby] = ACTIONS(5098), - [anon_sym_ascending] = ACTIONS(5098), - [anon_sym_descending] = ACTIONS(5098), - [anon_sym_group] = ACTIONS(5098), - [anon_sym_by] = ACTIONS(5098), - [anon_sym_select] = ACTIONS(5098), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -493979,25 +505680,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3483] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3151), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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), @@ -494007,35 +505709,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3483), [sym_preproc_define] = STATE(3483), [sym_preproc_undef] = STATE(3483), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5634), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494048,25 +505751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3484] = { - [sym_argument_list] = STATE(4245), - [sym__name] = STATE(4355), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_type] = STATE(4133), - [sym_implicit_type] = STATE(4266), - [sym_array_type] = STATE(4185), - [sym__array_base_type] = STATE(6996), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7242), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(4266), - [sym_scoped_type] = STATE(4266), - [sym_tuple_type] = STATE(4317), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), + [sym_initializer_expression] = STATE(3056), [sym_preproc_region] = STATE(3484), [sym_preproc_endregion] = STATE(3484), [sym_preproc_line] = STATE(3484), @@ -494076,35 +505761,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3484), [sym_preproc_define] = STATE(3484), [sym_preproc_undef] = STATE(3484), - [sym__identifier_token] = ACTIONS(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LBRACK] = ACTIONS(5616), - [anon_sym_LPAREN] = ACTIONS(5618), - [anon_sym_ref] = ACTIONS(3913), - [anon_sym_LBRACE] = ACTIONS(5620), - [anon_sym_delegate] = ACTIONS(5622), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5626), - [sym_predefined_type] = ACTIONS(5628), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_when] = 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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494117,25 +505822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3485] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3151), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(3485), [sym_preproc_endregion] = STATE(3485), [sym_preproc_line] = STATE(3485), @@ -494145,35 +505831,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), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5638), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494186,7 +505893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3486] = { - [sym_initializer_expression] = STATE(3694), [sym_preproc_region] = STATE(3486), [sym_preproc_endregion] = STATE(3486), [sym_preproc_line] = STATE(3486), @@ -494196,53 +505902,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_LBRACK] = ACTIONS(4702), - [anon_sym_COMMA] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(4702), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(4704), - [anon_sym_GT] = ACTIONS(4704), - [anon_sym_where] = ACTIONS(4702), - [anon_sym_QMARK] = ACTIONS(4704), - [anon_sym_BANG] = ACTIONS(4704), - [anon_sym_PLUS_PLUS] = ACTIONS(4702), - [anon_sym_DASH_DASH] = ACTIONS(4702), - [anon_sym_PLUS] = ACTIONS(4704), - [anon_sym_DASH] = ACTIONS(4704), - [anon_sym_STAR] = ACTIONS(4702), - [anon_sym_SLASH] = ACTIONS(4704), - [anon_sym_PERCENT] = ACTIONS(4702), - [anon_sym_CARET] = ACTIONS(4702), - [anon_sym_PIPE] = ACTIONS(4704), - [anon_sym_AMP] = ACTIONS(4704), - [anon_sym_LT_LT] = ACTIONS(4702), - [anon_sym_GT_GT] = ACTIONS(4704), - [anon_sym_GT_GT_GT] = ACTIONS(4702), - [anon_sym_EQ_EQ] = ACTIONS(4702), - [anon_sym_BANG_EQ] = ACTIONS(4702), - [anon_sym_GT_EQ] = ACTIONS(4702), - [anon_sym_LT_EQ] = ACTIONS(4702), - [anon_sym_DOT] = ACTIONS(4704), - [anon_sym_switch] = ACTIONS(4702), - [anon_sym_DOT_DOT] = ACTIONS(4702), - [anon_sym_and] = ACTIONS(4702), - [anon_sym_or] = ACTIONS(4704), - [anon_sym_AMP_AMP] = ACTIONS(4702), - [anon_sym_PIPE_PIPE] = ACTIONS(4702), - [anon_sym_QMARK_QMARK] = ACTIONS(4702), - [anon_sym_from] = ACTIONS(4702), - [anon_sym_into] = ACTIONS(4702), - [anon_sym_join] = ACTIONS(4702), - [anon_sym_let] = ACTIONS(4702), - [anon_sym_orderby] = ACTIONS(4702), - [anon_sym_ascending] = ACTIONS(4702), - [anon_sym_descending] = ACTIONS(4702), - [anon_sym_group] = ACTIONS(4702), - [anon_sym_select] = ACTIONS(4702), - [anon_sym_as] = ACTIONS(4704), - [anon_sym_is] = ACTIONS(4702), - [anon_sym_DASH_GT] = ACTIONS(4702), - [anon_sym_with] = ACTIONS(4702), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494255,25 +505964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3487] = { - [sym_argument_list] = STATE(3069), - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3044), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3063), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3487), [sym_preproc_endregion] = STATE(3487), [sym_preproc_line] = STATE(3487), @@ -494283,35 +505973,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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(3986), - [anon_sym_LBRACE] = ACTIONS(5644), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5648), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494324,25 +506035,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3488] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(4870), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(4318), - [sym__reserved_identifier] = STATE(2846), + [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), @@ -494352,35 +506064,36 @@ 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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(3961), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5654), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494393,8 +506106,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3489] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -494404,52 +506133,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3489), [sym_preproc_define] = STATE(3489), [sym_preproc_undef] = STATE(3489), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494462,8 +506177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3490] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3490), [sym_preproc_endregion] = STATE(3490), [sym_preproc_line] = STATE(3490), @@ -494473,52 +506186,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5662), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [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(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494531,25 +506248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3491] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3491), [sym_preproc_endregion] = STATE(3491), [sym_preproc_line] = STATE(3491), @@ -494559,35 +506257,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494600,25 +506319,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3492] = { - [sym_argument_list] = STATE(3069), - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3044), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3063), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3492), [sym_preproc_endregion] = STATE(3492), [sym_preproc_line] = STATE(3492), @@ -494628,35 +506328,56 @@ 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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(3701), - [anon_sym_LBRACE] = ACTIONS(5644), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5664), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_SEMI] = ACTIONS(5437), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COLON] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_RBRACK] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_RPAREN] = ACTIONS(5437), + [anon_sym_RBRACE] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_in] = ACTIONS(5437), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_EQ_GT] = ACTIONS(5437), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_when] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5437), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_on] = ACTIONS(5437), + [anon_sym_equals] = ACTIONS(5437), + [anon_sym_by] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5437), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), + [aux_sym_preproc_if_token3] = ACTIONS(5437), + [aux_sym_preproc_else_token1] = ACTIONS(5437), + [aux_sym_preproc_elif_token1] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494669,25 +506390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3493] = { - [sym_argument_list] = STATE(2827), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2796), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(3349), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3493), [sym_preproc_endregion] = STATE(3493), [sym_preproc_line] = STATE(3493), @@ -494697,35 +506399,56 @@ 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), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(5538), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(3804), - [anon_sym_LBRACE] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5666), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494747,54 +506470,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_EQ] = ACTIONS(5668), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5670), - [anon_sym_DASH_EQ] = ACTIONS(5670), - [anon_sym_STAR_EQ] = ACTIONS(5670), - [anon_sym_SLASH_EQ] = ACTIONS(5670), - [anon_sym_PERCENT_EQ] = ACTIONS(5670), - [anon_sym_AMP_EQ] = ACTIONS(5670), - [anon_sym_CARET_EQ] = ACTIONS(5670), - [anon_sym_PIPE_EQ] = ACTIONS(5670), - [anon_sym_LT_LT_EQ] = ACTIONS(5670), - [anon_sym_GT_GT_EQ] = ACTIONS(5670), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5670), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5670), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494807,24 +506532,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3495] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6589), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3495), [sym_preproc_endregion] = STATE(3495), [sym_preproc_line] = STATE(3495), @@ -494834,36 +506541,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), - [aux_sym_type_argument_list_repeat1] = STATE(6591), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5672), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494876,8 +506603,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3496] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3496), [sym_preproc_endregion] = STATE(3496), [sym_preproc_line] = STATE(3496), @@ -494887,52 +506612,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -494945,8 +506674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3497] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3497), [sym_preproc_endregion] = STATE(3497), [sym_preproc_line] = STATE(3497), @@ -494956,52 +506683,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495014,24 +506745,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3498] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6530), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -495041,36 +506774,36 @@ 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_type_argument_list_repeat1] = STATE(6771), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5674), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495083,6 +506816,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_preproc_region] = STATE(3499), [sym_preproc_endregion] = STATE(3499), [sym_preproc_line] = STATE(3499), @@ -495092,54 +506845,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3499), [sym_preproc_define] = STATE(3499), [sym_preproc_undef] = STATE(3499), - [anon_sym_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5492), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495152,8 +506887,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3500] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3500), [sym_preproc_endregion] = STATE(3500), [sym_preproc_line] = STATE(3500), @@ -495163,52 +506896,56 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(4723), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(4725), - [anon_sym_GT] = ACTIONS(4725), - [anon_sym_where] = ACTIONS(4723), - [anon_sym_QMARK] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(4725), - [anon_sym_DASH] = ACTIONS(4725), - [anon_sym_STAR] = ACTIONS(4723), - [anon_sym_SLASH] = ACTIONS(4725), - [anon_sym_PERCENT] = ACTIONS(4723), - [anon_sym_CARET] = ACTIONS(4723), - [anon_sym_PIPE] = ACTIONS(4725), - [anon_sym_AMP] = ACTIONS(4725), - [anon_sym_LT_LT] = ACTIONS(4723), - [anon_sym_GT_GT] = ACTIONS(4725), - [anon_sym_GT_GT_GT] = ACTIONS(4723), - [anon_sym_EQ_EQ] = ACTIONS(4723), - [anon_sym_BANG_EQ] = ACTIONS(4723), - [anon_sym_GT_EQ] = ACTIONS(4723), - [anon_sym_LT_EQ] = ACTIONS(4723), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(4723), - [anon_sym_DOT_DOT] = ACTIONS(4723), - [anon_sym_and] = ACTIONS(4723), - [anon_sym_or] = ACTIONS(4725), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [anon_sym_QMARK_QMARK] = ACTIONS(4723), - [anon_sym_from] = ACTIONS(4723), - [anon_sym_into] = ACTIONS(4723), - [anon_sym_join] = ACTIONS(4723), - [anon_sym_let] = ACTIONS(4723), - [anon_sym_orderby] = ACTIONS(4723), - [anon_sym_ascending] = ACTIONS(4723), - [anon_sym_descending] = ACTIONS(4723), - [anon_sym_group] = ACTIONS(4723), - [anon_sym_select] = ACTIONS(4723), - [anon_sym_as] = ACTIONS(4725), - [anon_sym_is] = ACTIONS(4723), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(4723), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495221,8 +506958,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3501] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3501), [sym_preproc_endregion] = STATE(3501), [sym_preproc_line] = STATE(3501), @@ -495232,52 +506987,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3501), [sym_preproc_define] = STATE(3501), [sym_preproc_undef] = STATE(3501), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5656), - [anon_sym_SLASH] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5656), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495290,25 +507029,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3502] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3502), [sym_preproc_endregion] = STATE(3502), [sym_preproc_line] = STATE(3502), @@ -495318,35 +507038,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5676), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), @@ -495359,24 +507100,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3503] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6507), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3503), [sym_preproc_endregion] = STATE(3503), [sym_preproc_line] = STATE(3503), @@ -495386,36 +507109,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3503), [sym_preproc_define] = STATE(3503), [sym_preproc_undef] = STATE(3503), - [aux_sym_type_argument_list_repeat1] = STATE(6779), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5678), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -495428,8 +507171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3504] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3504), [sym_preproc_endregion] = STATE(3504), [sym_preproc_line] = STATE(3504), @@ -495439,52 +507180,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3504), [sym_preproc_define] = STATE(3504), [sym_preproc_undef] = STATE(3504), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -495497,8 +507242,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3505] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3505), [sym_preproc_endregion] = STATE(3505), [sym_preproc_line] = STATE(3505), @@ -495508,52 +507251,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -495575,54 +507322,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), - [anon_sym_EQ] = ACTIONS(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5680), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495635,25 +507384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3507] = { - [sym_argument_list] = STATE(2827), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2796), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(3349), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3507), [sym_preproc_endregion] = STATE(3507), [sym_preproc_line] = STATE(3507), @@ -495663,35 +507393,56 @@ 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), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(5538), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5682), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_SEMI] = ACTIONS(5445), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COLON] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_RBRACK] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_RBRACE] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_in] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_EQ_GT] = ACTIONS(5445), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_when] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_on] = ACTIONS(5445), + [anon_sym_equals] = ACTIONS(5445), + [anon_sym_by] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5445), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), + [aux_sym_preproc_if_token3] = ACTIONS(5445), + [aux_sym_preproc_else_token1] = ACTIONS(5445), + [aux_sym_preproc_elif_token1] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495704,8 +507455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3508] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3508), [sym_preproc_endregion] = STATE(3508), [sym_preproc_line] = STATE(3508), @@ -495715,52 +507464,56 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495773,8 +507526,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3509] = { - [sym_identifier] = STATE(7388), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3509), [sym_preproc_endregion] = STATE(3509), [sym_preproc_line] = STATE(3509), @@ -495784,52 +507535,56 @@ 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), - [sym__identifier_token] = ACTIONS(5688), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(5692), - [anon_sym_global] = ACTIONS(5692), - [anon_sym_unsafe] = ACTIONS(5696), - [anon_sym_static] = ACTIONS(5696), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(5692), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(5692), - [anon_sym_notnull] = ACTIONS(5692), - [anon_sym_unmanaged] = ACTIONS(5692), - [anon_sym_scoped] = ACTIONS(5692), - [anon_sym_var] = ACTIONS(5692), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(5692), - [anon_sym_when] = ACTIONS(5692), - [anon_sym_from] = ACTIONS(5692), - [anon_sym_into] = ACTIONS(5692), - [anon_sym_join] = ACTIONS(5692), - [anon_sym_on] = ACTIONS(5692), - [anon_sym_equals] = ACTIONS(5692), - [anon_sym_let] = ACTIONS(5692), - [anon_sym_orderby] = ACTIONS(5692), - [anon_sym_ascending] = ACTIONS(5692), - [anon_sym_descending] = ACTIONS(5692), - [anon_sym_group] = ACTIONS(5692), - [anon_sym_by] = ACTIONS(5692), - [anon_sym_select] = ACTIONS(5692), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495842,7 +507597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3510] = { - [sym_initializer_expression] = STATE(3803), [sym_preproc_region] = STATE(3510), [sym_preproc_endregion] = STATE(3510), [sym_preproc_line] = STATE(3510), @@ -495852,53 +507606,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3510), [sym_preproc_define] = STATE(3510), [sym_preproc_undef] = STATE(3510), - [anon_sym_LBRACK] = ACTIONS(4776), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4780), - [anon_sym_LBRACE] = ACTIONS(5699), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5702), - [anon_sym_BANG] = ACTIONS(4786), - [anon_sym_PLUS_PLUS] = ACTIONS(4780), - [anon_sym_DASH_DASH] = ACTIONS(4780), - [anon_sym_PLUS] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_STAR] = ACTIONS(4780), - [anon_sym_SLASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_CARET] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_GT_GT_GT] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), - [anon_sym_GT_EQ] = ACTIONS(4780), - [anon_sym_LT_EQ] = ACTIONS(4780), - [anon_sym_DOT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(4780), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_QMARK_QMARK] = ACTIONS(4780), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_ascending] = ACTIONS(4780), - [anon_sym_descending] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4780), - [anon_sym_DASH_GT] = ACTIONS(4780), - [anon_sym_with] = ACTIONS(4780), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495911,8 +507668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3511] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3511), [sym_preproc_endregion] = STATE(3511), [sym_preproc_line] = STATE(3511), @@ -495922,52 +507677,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3511), [sym_preproc_define] = STATE(3511), [sym_preproc_undef] = STATE(3511), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5706), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5706), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5706), - [anon_sym_or] = ACTIONS(5708), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5706), - [anon_sym_into] = ACTIONS(5706), - [anon_sym_join] = ACTIONS(5706), - [anon_sym_let] = ACTIONS(5706), - [anon_sym_orderby] = ACTIONS(5706), - [anon_sym_ascending] = ACTIONS(5706), - [anon_sym_descending] = ACTIONS(5706), - [anon_sym_group] = ACTIONS(5706), - [anon_sym_select] = ACTIONS(5706), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -495989,54 +507748,56 @@ 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_EQ] = ACTIONS(5710), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5712), - [anon_sym_DASH_EQ] = ACTIONS(5712), - [anon_sym_STAR_EQ] = ACTIONS(5712), - [anon_sym_SLASH_EQ] = ACTIONS(5712), - [anon_sym_PERCENT_EQ] = ACTIONS(5712), - [anon_sym_AMP_EQ] = ACTIONS(5712), - [anon_sym_CARET_EQ] = ACTIONS(5712), - [anon_sym_PIPE_EQ] = ACTIONS(5712), - [anon_sym_LT_LT_EQ] = ACTIONS(5712), - [anon_sym_GT_GT_EQ] = ACTIONS(5712), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5712), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5712), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -496049,24 +507810,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3513] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6586), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3513), [sym_preproc_endregion] = STATE(3513), [sym_preproc_line] = STATE(3513), @@ -496076,36 +507819,56 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6585), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5714), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496118,8 +507881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3514] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3514), [sym_preproc_endregion] = STATE(3514), [sym_preproc_line] = STATE(3514), @@ -496129,52 +507890,56 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_ascending] = ACTIONS(4886), - [anon_sym_descending] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496187,8 +507952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3515] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3515), [sym_preproc_endregion] = STATE(3515), [sym_preproc_line] = STATE(3515), @@ -496198,52 +507961,56 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5716), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5716), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5716), - [anon_sym_or] = ACTIONS(5718), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(5716), - [anon_sym_join] = ACTIONS(5716), - [anon_sym_let] = ACTIONS(5716), - [anon_sym_orderby] = ACTIONS(5716), - [anon_sym_ascending] = ACTIONS(5716), - [anon_sym_descending] = ACTIONS(5716), - [anon_sym_group] = ACTIONS(5716), - [anon_sym_select] = ACTIONS(5716), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -496256,24 +508023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3516] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6696), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3516), [sym_preproc_endregion] = STATE(3516), [sym_preproc_line] = STATE(3516), @@ -496283,36 +508032,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3516), [sym_preproc_define] = STATE(3516), [sym_preproc_undef] = STATE(3516), - [aux_sym_type_argument_list_repeat1] = STATE(6693), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5720), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496325,25 +508094,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3517] = { - [sym_argument_list] = STATE(2827), - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2796), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(3349), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3517), [sym_preproc_endregion] = STATE(3517), [sym_preproc_line] = STATE(3517), @@ -496353,35 +508103,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3517), [sym_preproc_define] = STATE(3517), [sym_preproc_undef] = STATE(3517), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(5538), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(4169), - [anon_sym_LBRACE] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5722), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496394,24 +508165,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3518] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6574), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -496421,36 +508183,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3518), [sym_preproc_define] = STATE(3518), [sym_preproc_undef] = STATE(3518), - [aux_sym_type_argument_list_repeat1] = STATE(6562), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496463,6 +508235,8 @@ 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_preproc_region] = STATE(3519), [sym_preproc_endregion] = STATE(3519), [sym_preproc_line] = STATE(3519), @@ -496472,54 +508246,53 @@ 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), - [sym__identifier_token] = ACTIONS(5084), - [anon_sym_extern] = ACTIONS(5084), - [anon_sym_alias] = ACTIONS(5084), - [anon_sym_global] = ACTIONS(5084), - [anon_sym_unsafe] = ACTIONS(5084), - [anon_sym_static] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_abstract] = ACTIONS(5084), - [anon_sym_async] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(5084), - [anon_sym_file] = ACTIONS(5084), - [anon_sym_fixed] = ACTIONS(5084), - [anon_sym_internal] = ACTIONS(5084), - [anon_sym_new] = ACTIONS(5084), - [anon_sym_override] = ACTIONS(5084), - [anon_sym_partial] = ACTIONS(5084), - [anon_sym_private] = ACTIONS(5084), - [anon_sym_protected] = ACTIONS(5084), - [anon_sym_public] = ACTIONS(5084), - [anon_sym_readonly] = ACTIONS(5084), - [anon_sym_required] = ACTIONS(5084), - [anon_sym_sealed] = ACTIONS(5084), - [anon_sym_virtual] = ACTIONS(5084), - [anon_sym_volatile] = ACTIONS(5084), - [anon_sym_where] = ACTIONS(5084), - [anon_sym_notnull] = ACTIONS(5084), - [anon_sym_unmanaged] = ACTIONS(5084), - [anon_sym_get] = ACTIONS(5084), - [anon_sym_set] = ACTIONS(5084), - [anon_sym_add] = ACTIONS(5084), - [anon_sym_remove] = ACTIONS(5084), - [anon_sym_init] = ACTIONS(5084), - [anon_sym_scoped] = ACTIONS(5084), - [anon_sym_var] = ACTIONS(5084), - [anon_sym_yield] = ACTIONS(5084), - [anon_sym_when] = 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_ascending] = ACTIONS(5084), - [anon_sym_descending] = ACTIONS(5084), - [anon_sym_group] = ACTIONS(5084), - [anon_sym_by] = ACTIONS(5084), - [anon_sym_select] = ACTIONS(5084), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496532,8 +508305,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3520] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3520), [sym_preproc_endregion] = STATE(3520), [sym_preproc_line] = STATE(3520), @@ -496543,52 +508314,55 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(4690), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(4692), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4690), - [anon_sym_QMARK] = ACTIONS(4692), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(4692), - [anon_sym_DASH] = ACTIONS(4692), - [anon_sym_STAR] = ACTIONS(4690), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_PERCENT] = ACTIONS(4690), - [anon_sym_CARET] = ACTIONS(4690), - [anon_sym_PIPE] = ACTIONS(4692), - [anon_sym_AMP] = ACTIONS(4692), - [anon_sym_LT_LT] = ACTIONS(4690), - [anon_sym_GT_GT] = ACTIONS(4692), - [anon_sym_GT_GT_GT] = ACTIONS(4690), - [anon_sym_EQ_EQ] = ACTIONS(4690), - [anon_sym_BANG_EQ] = ACTIONS(4690), - [anon_sym_GT_EQ] = ACTIONS(4690), - [anon_sym_LT_EQ] = ACTIONS(4690), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(4690), - [anon_sym_DOT_DOT] = ACTIONS(4690), - [anon_sym_and] = ACTIONS(4690), - [anon_sym_or] = ACTIONS(4692), - [anon_sym_AMP_AMP] = ACTIONS(4690), - [anon_sym_PIPE_PIPE] = ACTIONS(4690), - [anon_sym_QMARK_QMARK] = ACTIONS(4690), - [anon_sym_from] = ACTIONS(4690), - [anon_sym_into] = ACTIONS(4690), - [anon_sym_join] = ACTIONS(4690), - [anon_sym_let] = ACTIONS(4690), - [anon_sym_orderby] = ACTIONS(4690), - [anon_sym_ascending] = ACTIONS(4690), - [anon_sym_descending] = ACTIONS(4690), - [anon_sym_group] = ACTIONS(4690), - [anon_sym_select] = ACTIONS(4690), - [anon_sym_as] = ACTIONS(4692), - [anon_sym_is] = ACTIONS(4690), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(4690), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496601,6 +508375,8 @@ 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), @@ -496610,54 +508386,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3521), [sym_preproc_define] = STATE(3521), [sym_preproc_undef] = STATE(3521), - [anon_sym_EQ] = ACTIONS(5724), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5726), - [anon_sym_DASH_EQ] = ACTIONS(5726), - [anon_sym_STAR_EQ] = ACTIONS(5726), - [anon_sym_SLASH_EQ] = ACTIONS(5726), - [anon_sym_PERCENT_EQ] = ACTIONS(5726), - [anon_sym_AMP_EQ] = ACTIONS(5726), - [anon_sym_CARET_EQ] = ACTIONS(5726), - [anon_sym_PIPE_EQ] = ACTIONS(5726), - [anon_sym_LT_LT_EQ] = ACTIONS(5726), - [anon_sym_GT_GT_EQ] = ACTIONS(5726), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5726), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5726), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496670,7 +508445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3522] = { - [sym_initializer_expression] = STATE(3795), [sym_preproc_region] = STATE(3522), [sym_preproc_endregion] = STATE(3522), [sym_preproc_line] = STATE(3522), @@ -496680,53 +508454,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_LBRACK] = ACTIONS(4708), - [anon_sym_COMMA] = ACTIONS(4706), - [anon_sym_LPAREN] = ACTIONS(4706), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_LT] = ACTIONS(4711), - [anon_sym_GT] = ACTIONS(4711), - [anon_sym_where] = ACTIONS(4706), - [anon_sym_QMARK] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_PLUS_PLUS] = ACTIONS(4706), - [anon_sym_DASH_DASH] = ACTIONS(4706), - [anon_sym_PLUS] = ACTIONS(4711), - [anon_sym_DASH] = ACTIONS(4711), - [anon_sym_STAR] = ACTIONS(4706), - [anon_sym_SLASH] = ACTIONS(4711), - [anon_sym_PERCENT] = ACTIONS(4706), - [anon_sym_CARET] = ACTIONS(4706), - [anon_sym_PIPE] = ACTIONS(4711), - [anon_sym_AMP] = ACTIONS(4711), - [anon_sym_LT_LT] = ACTIONS(4706), - [anon_sym_GT_GT] = ACTIONS(4711), - [anon_sym_GT_GT_GT] = ACTIONS(4706), - [anon_sym_EQ_EQ] = ACTIONS(4706), - [anon_sym_BANG_EQ] = ACTIONS(4706), - [anon_sym_GT_EQ] = ACTIONS(4706), - [anon_sym_LT_EQ] = ACTIONS(4706), - [anon_sym_DOT] = ACTIONS(4711), - [anon_sym_switch] = ACTIONS(4706), - [anon_sym_DOT_DOT] = ACTIONS(4706), - [anon_sym_and] = ACTIONS(4706), - [anon_sym_or] = ACTIONS(4711), - [anon_sym_AMP_AMP] = ACTIONS(4706), - [anon_sym_PIPE_PIPE] = ACTIONS(4706), - [anon_sym_QMARK_QMARK] = ACTIONS(4706), - [anon_sym_from] = ACTIONS(4706), - [anon_sym_into] = ACTIONS(4706), - [anon_sym_join] = ACTIONS(4706), - [anon_sym_let] = ACTIONS(4706), - [anon_sym_orderby] = ACTIONS(4706), - [anon_sym_ascending] = ACTIONS(4706), - [anon_sym_descending] = ACTIONS(4706), - [anon_sym_group] = ACTIONS(4706), - [anon_sym_select] = ACTIONS(4706), - [anon_sym_as] = ACTIONS(4711), - [anon_sym_is] = ACTIONS(4706), - [anon_sym_DASH_GT] = ACTIONS(4706), - [anon_sym_with] = ACTIONS(4706), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496739,8 +508515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3523] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3523), [sym_preproc_endregion] = STATE(3523), [sym_preproc_line] = STATE(3523), @@ -496750,52 +508524,55 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496808,8 +508585,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3524] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3524), [sym_preproc_endregion] = STATE(3524), [sym_preproc_line] = STATE(3524), @@ -496819,52 +508594,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496877,24 +508655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3525] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6537), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3525), [sym_preproc_endregion] = STATE(3525), [sym_preproc_line] = STATE(3525), @@ -496904,36 +508664,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), - [aux_sym_type_argument_list_repeat1] = STATE(6536), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5728), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -496946,25 +508725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3526] = { - [sym_argument_list] = STATE(3473), - [sym__name] = STATE(2378), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(3451), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(3510), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(3526), [sym_preproc_endregion] = STATE(3526), [sym_preproc_line] = STATE(3526), @@ -496974,35 +508734,55 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(5730), - [anon_sym_LPAREN] = ACTIONS(5732), - [anon_sym_ref] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(5734), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(5736), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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_PLUS_EQ] = ACTIONS(5589), + [anon_sym_DASH_EQ] = ACTIONS(5589), + [anon_sym_STAR_EQ] = ACTIONS(5589), + [anon_sym_SLASH_EQ] = ACTIONS(5589), + [anon_sym_PERCENT_EQ] = ACTIONS(5589), + [anon_sym_AMP_EQ] = ACTIONS(5589), + [anon_sym_CARET_EQ] = ACTIONS(5589), + [anon_sym_PIPE_EQ] = ACTIONS(5589), + [anon_sym_LT_LT_EQ] = ACTIONS(5589), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497024,54 +508804,54 @@ 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(5388), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_RPAREN] = ACTIONS(5742), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5390), - [anon_sym_DASH_EQ] = ACTIONS(5390), - [anon_sym_STAR_EQ] = ACTIONS(5390), - [anon_sym_SLASH_EQ] = ACTIONS(5390), - [anon_sym_PERCENT_EQ] = ACTIONS(5390), - [anon_sym_AMP_EQ] = ACTIONS(5390), - [anon_sym_CARET_EQ] = ACTIONS(5390), - [anon_sym_PIPE_EQ] = ACTIONS(5390), - [anon_sym_LT_LT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5390), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5390), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), @@ -497082,10 +508862,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(4860), }, [3528] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3528), [sym_preproc_endregion] = STATE(3528), [sym_preproc_line] = STATE(3528), @@ -497095,52 +508874,55 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497153,24 +508935,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3529] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6577), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3529), [sym_preproc_endregion] = STATE(3529), [sym_preproc_line] = STATE(3529), @@ -497180,36 +508944,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), - [aux_sym_type_argument_list_repeat1] = STATE(6582), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5744), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497222,25 +509005,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3530] = { - [sym_argument_list] = STATE(3069), - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3044), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3063), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3530), [sym_preproc_endregion] = STATE(3530), [sym_preproc_line] = STATE(3530), @@ -497250,35 +509014,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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(4094), - [anon_sym_LBRACE] = ACTIONS(5644), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5746), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497300,54 +509084,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(5102), - [anon_sym_extern] = ACTIONS(5102), - [anon_sym_alias] = ACTIONS(5102), - [anon_sym_global] = ACTIONS(5102), - [anon_sym_unsafe] = ACTIONS(5102), - [anon_sym_static] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5102), - [anon_sym_async] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5102), - [anon_sym_file] = ACTIONS(5102), - [anon_sym_fixed] = ACTIONS(5102), - [anon_sym_internal] = ACTIONS(5102), - [anon_sym_new] = ACTIONS(5102), - [anon_sym_override] = ACTIONS(5102), - [anon_sym_partial] = ACTIONS(5102), - [anon_sym_private] = ACTIONS(5102), - [anon_sym_protected] = ACTIONS(5102), - [anon_sym_public] = ACTIONS(5102), - [anon_sym_readonly] = ACTIONS(5102), - [anon_sym_required] = ACTIONS(5102), - [anon_sym_sealed] = ACTIONS(5102), - [anon_sym_virtual] = ACTIONS(5102), - [anon_sym_volatile] = ACTIONS(5102), - [anon_sym_where] = ACTIONS(5102), - [anon_sym_notnull] = ACTIONS(5102), - [anon_sym_unmanaged] = ACTIONS(5102), - [anon_sym_get] = ACTIONS(5102), - [anon_sym_set] = ACTIONS(5102), - [anon_sym_add] = ACTIONS(5102), - [anon_sym_remove] = ACTIONS(5102), - [anon_sym_init] = ACTIONS(5102), - [anon_sym_scoped] = ACTIONS(5102), - [anon_sym_var] = ACTIONS(5102), - [anon_sym_yield] = ACTIONS(5102), - [anon_sym_when] = 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_ascending] = ACTIONS(5102), - [anon_sym_descending] = ACTIONS(5102), - [anon_sym_group] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_select] = ACTIONS(5102), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497360,24 +509145,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3532] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6719), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3532), [sym_preproc_endregion] = STATE(3532), [sym_preproc_line] = STATE(3532), @@ -497387,36 +509173,36 @@ 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_type_argument_list_repeat1] = STATE(6720), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5748), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497429,25 +509215,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3533] = { - [sym_argument_list] = STATE(3473), - [sym__name] = STATE(2378), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(3451), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(3510), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(3533), [sym_preproc_endregion] = STATE(3533), [sym_preproc_line] = STATE(3533), @@ -497457,35 +509224,55 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(5730), - [anon_sym_LPAREN] = ACTIONS(5732), - [anon_sym_ref] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(5734), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(5750), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497498,24 +509285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3534] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6617), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3534), [sym_preproc_endregion] = STATE(3534), [sym_preproc_line] = STATE(3534), @@ -497525,36 +509294,55 @@ 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), - [aux_sym_type_argument_list_repeat1] = STATE(6618), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -497567,8 +509355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3535] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3535), [sym_preproc_endregion] = STATE(3535), [sym_preproc_line] = STATE(3535), @@ -497578,52 +509364,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497636,8 +509425,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3536] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3536), [sym_preproc_endregion] = STATE(3536), [sym_preproc_line] = STATE(3536), @@ -497647,52 +509434,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3536), [sym_preproc_define] = STATE(3536), [sym_preproc_undef] = STATE(3536), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497705,25 +509495,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3537] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [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), @@ -497733,35 +509523,36 @@ 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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(4157), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5758), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497783,54 +509574,55 @@ 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(5113), - [anon_sym_extern] = ACTIONS(5113), - [anon_sym_alias] = ACTIONS(5113), - [anon_sym_global] = ACTIONS(5113), - [anon_sym_unsafe] = ACTIONS(5113), - [anon_sym_static] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_abstract] = ACTIONS(5113), - [anon_sym_async] = ACTIONS(5113), - [anon_sym_const] = ACTIONS(5113), - [anon_sym_file] = ACTIONS(5113), - [anon_sym_fixed] = ACTIONS(5113), - [anon_sym_internal] = ACTIONS(5113), - [anon_sym_new] = ACTIONS(5113), - [anon_sym_override] = ACTIONS(5113), - [anon_sym_partial] = ACTIONS(5113), - [anon_sym_private] = ACTIONS(5113), - [anon_sym_protected] = ACTIONS(5113), - [anon_sym_public] = ACTIONS(5113), - [anon_sym_readonly] = ACTIONS(5113), - [anon_sym_required] = ACTIONS(5113), - [anon_sym_sealed] = ACTIONS(5113), - [anon_sym_virtual] = ACTIONS(5113), - [anon_sym_volatile] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_notnull] = ACTIONS(5113), - [anon_sym_unmanaged] = ACTIONS(5113), - [anon_sym_get] = ACTIONS(5113), - [anon_sym_set] = ACTIONS(5113), - [anon_sym_add] = ACTIONS(5113), - [anon_sym_remove] = ACTIONS(5113), - [anon_sym_init] = ACTIONS(5113), - [anon_sym_scoped] = ACTIONS(5113), - [anon_sym_var] = ACTIONS(5113), - [anon_sym_yield] = ACTIONS(5113), - [anon_sym_when] = ACTIONS(5113), - [anon_sym_from] = ACTIONS(5113), - [anon_sym_into] = ACTIONS(5113), - [anon_sym_join] = ACTIONS(5113), - [anon_sym_on] = ACTIONS(5113), - [anon_sym_equals] = ACTIONS(5113), - [anon_sym_let] = ACTIONS(5113), - [anon_sym_orderby] = ACTIONS(5113), - [anon_sym_ascending] = ACTIONS(5113), - [anon_sym_descending] = ACTIONS(5113), - [anon_sym_group] = ACTIONS(5113), - [anon_sym_by] = ACTIONS(5113), - [anon_sym_select] = ACTIONS(5113), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497843,8 +509635,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3539] = { - [sym_identifier] = STATE(7282), - [sym__reserved_identifier] = STATE(2106), + [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), @@ -497854,52 +509664,35 @@ 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(5688), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(5692), - [anon_sym_global] = ACTIONS(5692), - [anon_sym_unsafe] = ACTIONS(5696), - [anon_sym_static] = ACTIONS(5696), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(5692), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(5692), - [anon_sym_notnull] = ACTIONS(5692), - [anon_sym_unmanaged] = ACTIONS(5692), - [anon_sym_scoped] = ACTIONS(5692), - [anon_sym_var] = ACTIONS(5692), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(5692), - [anon_sym_when] = ACTIONS(5692), - [anon_sym_from] = ACTIONS(5692), - [anon_sym_into] = ACTIONS(5692), - [anon_sym_join] = ACTIONS(5692), - [anon_sym_on] = ACTIONS(5692), - [anon_sym_equals] = ACTIONS(5692), - [anon_sym_let] = ACTIONS(5692), - [anon_sym_orderby] = ACTIONS(5692), - [anon_sym_ascending] = ACTIONS(5692), - [anon_sym_descending] = ACTIONS(5692), - [anon_sym_group] = ACTIONS(5692), - [anon_sym_by] = ACTIONS(5692), - [anon_sym_select] = ACTIONS(5692), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497912,25 +509705,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3540] = { - [sym_argument_list] = STATE(3069), - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3044), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3063), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), + [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), @@ -497940,35 +509732,37 @@ 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(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(4102), - [anon_sym_LBRACE] = ACTIONS(5644), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5760), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -497981,25 +509775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3541] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(5020), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(4957), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(4668), - [sym__reserved_identifier] = STATE(3109), + [sym_modifier] = STATE(3652), [sym_preproc_region] = STATE(3541), [sym_preproc_endregion] = STATE(3541), [sym_preproc_line] = STATE(3541), @@ -498009,35 +509785,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3541), [sym_preproc_define] = STATE(3541), [sym_preproc_undef] = STATE(3541), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5762), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498050,25 +509845,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3542] = { - [sym_argument_list] = STATE(2827), - [sym__name] = STATE(4029), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2796), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(3936), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3768), - [sym__reserved_identifier] = STATE(2826), + [sym_argument_list] = STATE(3602), + [sym_initializer_expression] = STATE(3807), [sym_preproc_region] = STATE(3542), [sym_preproc_endregion] = STATE(3542), [sym_preproc_line] = STATE(3542), @@ -498078,35 +509856,53 @@ 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), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(5538), - [anon_sym_LPAREN] = ACTIONS(5540), - [anon_sym_ref] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(5542), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5764), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498119,8 +509915,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3543] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -498130,52 +509926,53 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5766), - [anon_sym_QMARK] = ACTIONS(5568), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5766), - [anon_sym_or] = ACTIONS(5768), - [anon_sym_AMP_AMP] = ACTIONS(5596), - [anon_sym_PIPE_PIPE] = ACTIONS(5598), - [anon_sym_QMARK_QMARK] = ACTIONS(5600), - [anon_sym_from] = ACTIONS(5766), - [anon_sym_into] = ACTIONS(5766), - [anon_sym_join] = ACTIONS(5766), - [anon_sym_let] = ACTIONS(5766), - [anon_sym_orderby] = ACTIONS(5766), - [anon_sym_ascending] = ACTIONS(5766), - [anon_sym_descending] = ACTIONS(5766), - [anon_sym_group] = ACTIONS(5766), - [anon_sym_select] = ACTIONS(5766), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498188,7 +509985,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3544] = { - [sym_block] = STATE(1891), + [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_preproc_region] = STATE(3544), [sym_preproc_endregion] = STATE(3544), [sym_preproc_line] = STATE(3544), @@ -498198,53 +510013,36 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5156), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498257,25 +510055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3545] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3151), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(3545), [sym_preproc_endregion] = STATE(3545), [sym_preproc_line] = STATE(3545), @@ -498285,35 +510064,55 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5770), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498326,8 +510125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3546] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3546), [sym_preproc_endregion] = STATE(3546), [sym_preproc_line] = STATE(3546), @@ -498337,52 +510134,55 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5566), - [anon_sym_GT] = ACTIONS(5566), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5570), - [anon_sym_DASH] = ACTIONS(5570), - [anon_sym_STAR] = ACTIONS(5572), - [anon_sym_SLASH] = ACTIONS(5574), - [anon_sym_PERCENT] = ACTIONS(5572), - [anon_sym_CARET] = ACTIONS(5576), - [anon_sym_PIPE] = ACTIONS(5578), - [anon_sym_AMP] = ACTIONS(5580), - [anon_sym_LT_LT] = ACTIONS(5582), - [anon_sym_GT_GT] = ACTIONS(5584), - [anon_sym_GT_GT_GT] = ACTIONS(5582), - [anon_sym_EQ_EQ] = ACTIONS(5586), - [anon_sym_BANG_EQ] = ACTIONS(5586), - [anon_sym_GT_EQ] = ACTIONS(5588), - [anon_sym_LT_EQ] = ACTIONS(5588), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5592), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(5604), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -498404,54 +510204,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3547), [sym_preproc_define] = STATE(3547), [sym_preproc_undef] = STATE(3547), - [anon_sym_EQ] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5774), - [anon_sym_DASH_EQ] = ACTIONS(5774), - [anon_sym_STAR_EQ] = ACTIONS(5774), - [anon_sym_SLASH_EQ] = ACTIONS(5774), - [anon_sym_PERCENT_EQ] = ACTIONS(5774), - [anon_sym_AMP_EQ] = ACTIONS(5774), - [anon_sym_CARET_EQ] = ACTIONS(5774), - [anon_sym_PIPE_EQ] = ACTIONS(5774), - [anon_sym_LT_LT_EQ] = ACTIONS(5774), - [anon_sym_GT_GT_EQ] = ACTIONS(5774), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5774), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5774), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498464,25 +510265,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3548] = { - [sym_argument_list] = STATE(2865), - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(3313), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2872), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3548), [sym_preproc_endregion] = STATE(3548), [sym_preproc_line] = STATE(3548), @@ -498492,35 +510274,55 @@ 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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LBRACK] = ACTIONS(3972), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_ref] = ACTIONS(4165), - [anon_sym_LBRACE] = ACTIONS(3976), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5776), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498533,7 +510335,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3549] = { - [sym_modifier] = STATE(3650), [sym_preproc_region] = STATE(3549), [sym_preproc_endregion] = STATE(3549), [sym_preproc_line] = STATE(3549), @@ -498543,53 +510344,55 @@ 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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(3549), - [sym__identifier_token] = ACTIONS(5106), - [anon_sym_extern] = ACTIONS(5778), - [anon_sym_alias] = ACTIONS(5106), - [anon_sym_global] = ACTIONS(5106), - [anon_sym_unsafe] = ACTIONS(5778), - [anon_sym_static] = ACTIONS(5778), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_ref] = ACTIONS(5106), - [anon_sym_delegate] = ACTIONS(5106), - [anon_sym_abstract] = ACTIONS(5778), - [anon_sym_async] = ACTIONS(5778), - [anon_sym_const] = ACTIONS(5778), - [anon_sym_file] = ACTIONS(5778), - [anon_sym_fixed] = ACTIONS(5778), - [anon_sym_internal] = ACTIONS(5778), - [anon_sym_new] = ACTIONS(5778), - [anon_sym_override] = ACTIONS(5778), - [anon_sym_partial] = ACTIONS(5778), - [anon_sym_private] = ACTIONS(5778), - [anon_sym_protected] = ACTIONS(5778), - [anon_sym_public] = ACTIONS(5778), - [anon_sym_readonly] = ACTIONS(5778), - [anon_sym_required] = ACTIONS(5778), - [anon_sym_sealed] = ACTIONS(5778), - [anon_sym_virtual] = ACTIONS(5778), - [anon_sym_volatile] = ACTIONS(5778), - [anon_sym_where] = ACTIONS(5106), - [anon_sym_notnull] = ACTIONS(5106), - [anon_sym_unmanaged] = ACTIONS(5106), - [anon_sym_scoped] = ACTIONS(5106), - [anon_sym_var] = ACTIONS(5106), - [sym_predefined_type] = ACTIONS(5106), - [anon_sym_yield] = ACTIONS(5106), - [anon_sym_when] = 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_ascending] = ACTIONS(5106), - [anon_sym_descending] = ACTIONS(5106), - [anon_sym_group] = ACTIONS(5106), - [anon_sym_by] = ACTIONS(5106), - [anon_sym_select] = ACTIONS(5106), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498602,24 +510405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3550] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(6550), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3550), [sym_preproc_endregion] = STATE(3550), [sym_preproc_line] = STATE(3550), @@ -498629,36 +510414,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3550), [sym_preproc_define] = STATE(3550), [sym_preproc_undef] = STATE(3550), - [aux_sym_type_argument_list_repeat1] = STATE(6551), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(5781), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498671,25 +510475,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3551] = { - [sym_argument_list] = STATE(3113), - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3064), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3151), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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_preproc_region] = STATE(3551), [sym_preproc_endregion] = STATE(3551), [sym_preproc_line] = STATE(3551), @@ -498699,35 +510503,35 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LBRACK] = ACTIONS(5524), - [anon_sym_LPAREN] = ACTIONS(5526), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(5528), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5783), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498740,25 +510544,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3552] = { - [sym_argument_list] = STATE(3069), - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3044), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3063), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3552), [sym_preproc_endregion] = STATE(3552), [sym_preproc_line] = STATE(3552), @@ -498768,35 +510553,54 @@ 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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(5644), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5785), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498809,7 +510613,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3553] = { - [sym_block] = STATE(6910), + [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(3553), [sym_preproc_endregion] = STATE(3553), [sym_preproc_line] = STATE(3553), @@ -498819,53 +510641,35 @@ 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(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(5481), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498887,53 +510691,54 @@ 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_LBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_where] = ACTIONS(4747), - [anon_sym_QMARK] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PLUS_PLUS] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4747), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_PERCENT] = ACTIONS(4747), - [anon_sym_CARET] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_AMP] = ACTIONS(4749), - [anon_sym_LT_LT] = ACTIONS(4747), - [anon_sym_GT_GT] = ACTIONS(4749), - [anon_sym_GT_GT_GT] = ACTIONS(4747), - [anon_sym_EQ_EQ] = ACTIONS(4747), - [anon_sym_BANG_EQ] = ACTIONS(4747), - [anon_sym_GT_EQ] = ACTIONS(4747), - [anon_sym_LT_EQ] = ACTIONS(4747), - [anon_sym_DOT] = ACTIONS(4749), - [anon_sym_switch] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4747), - [anon_sym_and] = ACTIONS(4747), - [anon_sym_or] = ACTIONS(4749), - [anon_sym_AMP_AMP] = ACTIONS(4747), - [anon_sym_PIPE_PIPE] = ACTIONS(4747), - [anon_sym_QMARK_QMARK] = ACTIONS(4747), - [anon_sym_from] = ACTIONS(4747), - [anon_sym_into] = ACTIONS(4747), - [anon_sym_join] = 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_select] = ACTIONS(4747), - [anon_sym_as] = ACTIONS(4749), - [anon_sym_is] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4747), - [anon_sym_with] = ACTIONS(4747), - [aux_sym_raw_string_literal_token1] = ACTIONS(5787), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -498946,8 +510751,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3555] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), [sym_preproc_region] = STATE(3555), [sym_preproc_endregion] = STATE(3555), [sym_preproc_line] = STATE(3555), @@ -498957,51 +510760,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3555), [sym_preproc_define] = STATE(3555), [sym_preproc_undef] = STATE(3555), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5656), - [anon_sym_SLASH] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5656), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5656), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499014,8 +510820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3556] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3556), [sym_preproc_endregion] = STATE(3556), [sym_preproc_line] = STATE(3556), @@ -499025,51 +510829,54 @@ 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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_or] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1139), - [anon_sym_join] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_orderby] = ACTIONS(1139), - [anon_sym_ascending] = ACTIONS(1139), - [anon_sym_descending] = ACTIONS(1139), - [anon_sym_group] = ACTIONS(1139), - [anon_sym_select] = ACTIONS(1139), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1139), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(1139), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499082,8 +510889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3557] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), [sym_preproc_region] = STATE(3557), [sym_preproc_endregion] = STATE(3557), [sym_preproc_line] = STATE(3557), @@ -499093,51 +510898,54 @@ 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_SEMI] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_RBRACK] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5754), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5756), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5754), - [aux_sym_preproc_else_token1] = ACTIONS(5754), - [aux_sym_preproc_elif_token1] = ACTIONS(5754), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499150,6 +510958,8 @@ 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), @@ -499159,53 +510969,52 @@ 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), - [sym__identifier_token] = ACTIONS(3596), - [anon_sym_alias] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_global] = ACTIONS(3596), - [anon_sym_EQ] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_COLON] = ACTIONS(3596), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_RBRACK] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_file] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3598), - [anon_sym_GT] = ACTIONS(3598), - [anon_sym_in] = ACTIONS(3596), - [anon_sym_where] = ACTIONS(3596), - [anon_sym_QMARK] = ACTIONS(3598), - [anon_sym_notnull] = ACTIONS(3596), - [anon_sym_unmanaged] = ACTIONS(3596), - [anon_sym_operator] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_this] = ACTIONS(3596), - [anon_sym_DOT] = ACTIONS(3598), - [anon_sym_scoped] = ACTIONS(3596), - [anon_sym_EQ_GT] = ACTIONS(3598), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_when] = ACTIONS(3596), - [sym_discard] = ACTIONS(3596), - [anon_sym_and] = ACTIONS(3596), - [anon_sym_or] = ACTIONS(3596), - [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_DASH_GT] = ACTIONS(3598), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499227,53 +511036,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_where] = ACTIONS(3743), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_EQ_GT] = ACTIONS(3617), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_from] = ACTIONS(3743), - [anon_sym_into] = ACTIONS(3743), - [anon_sym_join] = ACTIONS(3743), - [anon_sym_let] = ACTIONS(3743), - [anon_sym_orderby] = ACTIONS(3743), - [anon_sym_ascending] = ACTIONS(3743), - [anon_sym_descending] = ACTIONS(3743), - [anon_sym_group] = ACTIONS(3743), - [anon_sym_select] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(5286), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499295,53 +511105,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4793), - [anon_sym_COMMA] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4795), - [anon_sym_GT] = ACTIONS(4795), - [anon_sym_where] = ACTIONS(4793), - [anon_sym_QMARK] = ACTIONS(4795), - [anon_sym_BANG] = ACTIONS(4795), - [anon_sym_PLUS_PLUS] = ACTIONS(4793), - [anon_sym_DASH_DASH] = ACTIONS(4793), - [anon_sym_PLUS] = ACTIONS(4795), - [anon_sym_DASH] = ACTIONS(4795), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4795), - [anon_sym_PERCENT] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4795), - [anon_sym_AMP] = ACTIONS(4795), - [anon_sym_LT_LT] = ACTIONS(4793), - [anon_sym_GT_GT] = ACTIONS(4795), - [anon_sym_GT_GT_GT] = ACTIONS(4793), - [anon_sym_EQ_EQ] = ACTIONS(4793), - [anon_sym_BANG_EQ] = ACTIONS(4793), - [anon_sym_GT_EQ] = ACTIONS(4793), - [anon_sym_LT_EQ] = ACTIONS(4793), - [anon_sym_DOT] = ACTIONS(4795), - [anon_sym_switch] = ACTIONS(4793), - [anon_sym_DOT_DOT] = ACTIONS(4793), - [anon_sym_and] = ACTIONS(4793), - [anon_sym_or] = ACTIONS(4795), - [anon_sym_AMP_AMP] = ACTIONS(4793), - [anon_sym_PIPE_PIPE] = ACTIONS(4793), - [anon_sym_QMARK_QMARK] = ACTIONS(4793), - [anon_sym_from] = ACTIONS(4793), - [anon_sym_into] = ACTIONS(4793), - [anon_sym_join] = ACTIONS(4793), - [anon_sym_let] = ACTIONS(4793), - [anon_sym_orderby] = ACTIONS(4793), - [anon_sym_ascending] = ACTIONS(4793), - [anon_sym_descending] = ACTIONS(4793), - [anon_sym_group] = ACTIONS(4793), - [anon_sym_select] = ACTIONS(4793), - [anon_sym_as] = ACTIONS(4795), - [anon_sym_is] = ACTIONS(4793), - [anon_sym_DASH_GT] = ACTIONS(4793), - [anon_sym_with] = ACTIONS(4793), - [sym_string_literal_encoding] = ACTIONS(5831), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499354,6 +511165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3561] = { + [sym_initializer_expression] = STATE(3897), [sym_preproc_region] = STATE(3561), [sym_preproc_endregion] = STATE(3561), [sym_preproc_line] = STATE(3561), @@ -499363,53 +511175,53 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3562), - [anon_sym_LBRACK] = ACTIONS(5833), - [anon_sym_COMMA] = ACTIONS(5833), - [anon_sym_LPAREN] = ACTIONS(5833), - [anon_sym_LT] = ACTIONS(5835), - [anon_sym_GT] = ACTIONS(5835), - [anon_sym_where] = ACTIONS(5833), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(5835), - [anon_sym_PLUS_PLUS] = ACTIONS(5833), - [anon_sym_DASH_DASH] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5835), - [anon_sym_DASH] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5833), - [anon_sym_SLASH] = ACTIONS(5835), - [anon_sym_PERCENT] = ACTIONS(5833), - [anon_sym_CARET] = ACTIONS(5833), - [anon_sym_PIPE] = ACTIONS(5835), - [anon_sym_AMP] = ACTIONS(5835), - [anon_sym_LT_LT] = ACTIONS(5833), - [anon_sym_GT_GT] = ACTIONS(5835), - [anon_sym_GT_GT_GT] = ACTIONS(5833), - [anon_sym_EQ_EQ] = ACTIONS(5833), - [anon_sym_BANG_EQ] = ACTIONS(5833), - [anon_sym_GT_EQ] = ACTIONS(5833), - [anon_sym_LT_EQ] = ACTIONS(5833), - [anon_sym_DOT] = ACTIONS(5835), - [anon_sym_switch] = ACTIONS(5833), - [anon_sym_DOT_DOT] = ACTIONS(5833), - [anon_sym_and] = ACTIONS(5833), - [anon_sym_or] = ACTIONS(5835), - [anon_sym_AMP_AMP] = ACTIONS(5833), - [anon_sym_PIPE_PIPE] = ACTIONS(5833), - [anon_sym_QMARK_QMARK] = ACTIONS(5833), - [anon_sym_from] = ACTIONS(5833), - [anon_sym_into] = ACTIONS(5837), - [anon_sym_join] = ACTIONS(5833), - [anon_sym_let] = ACTIONS(5833), - [anon_sym_orderby] = ACTIONS(5833), - [anon_sym_ascending] = ACTIONS(5833), - [anon_sym_descending] = ACTIONS(5833), - [anon_sym_group] = ACTIONS(5833), - [anon_sym_select] = ACTIONS(5833), - [anon_sym_as] = ACTIONS(5835), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(5833), - [anon_sym_with] = ACTIONS(5833), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499422,6 +511234,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_preproc_region] = STATE(3562), [sym_preproc_endregion] = STATE(3562), [sym_preproc_line] = STATE(3562), @@ -499431,53 +511262,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), - [aux_sym__query_body_repeat2] = STATE(3565), - [anon_sym_LBRACK] = ACTIONS(5839), - [anon_sym_COMMA] = ACTIONS(5839), - [anon_sym_LPAREN] = ACTIONS(5839), - [anon_sym_LT] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5841), - [anon_sym_where] = ACTIONS(5839), - [anon_sym_QMARK] = ACTIONS(5841), - [anon_sym_BANG] = ACTIONS(5841), - [anon_sym_PLUS_PLUS] = ACTIONS(5839), - [anon_sym_DASH_DASH] = ACTIONS(5839), - [anon_sym_PLUS] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5841), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_SLASH] = ACTIONS(5841), - [anon_sym_PERCENT] = ACTIONS(5839), - [anon_sym_CARET] = ACTIONS(5839), - [anon_sym_PIPE] = ACTIONS(5841), - [anon_sym_AMP] = ACTIONS(5841), - [anon_sym_LT_LT] = ACTIONS(5839), - [anon_sym_GT_GT] = ACTIONS(5841), - [anon_sym_GT_GT_GT] = ACTIONS(5839), - [anon_sym_EQ_EQ] = ACTIONS(5839), - [anon_sym_BANG_EQ] = ACTIONS(5839), - [anon_sym_GT_EQ] = ACTIONS(5839), - [anon_sym_LT_EQ] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(5841), - [anon_sym_switch] = ACTIONS(5839), - [anon_sym_DOT_DOT] = ACTIONS(5839), - [anon_sym_and] = ACTIONS(5839), - [anon_sym_or] = ACTIONS(5841), - [anon_sym_AMP_AMP] = ACTIONS(5839), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_QMARK_QMARK] = ACTIONS(5839), - [anon_sym_from] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(5837), - [anon_sym_join] = ACTIONS(5839), - [anon_sym_let] = ACTIONS(5839), - [anon_sym_orderby] = ACTIONS(5839), - [anon_sym_ascending] = ACTIONS(5839), - [anon_sym_descending] = ACTIONS(5839), - [anon_sym_group] = ACTIONS(5839), - [anon_sym_select] = ACTIONS(5839), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5839), - [anon_sym_DASH_GT] = ACTIONS(5839), - [anon_sym_with] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499490,6 +511303,25 @@ 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_preproc_region] = STATE(3563), [sym_preproc_endregion] = STATE(3563), [sym_preproc_line] = STATE(3563), @@ -499499,53 +511331,35 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3568), - [anon_sym_LBRACK] = ACTIONS(5839), - [anon_sym_COMMA] = ACTIONS(5839), - [anon_sym_LPAREN] = ACTIONS(5839), - [anon_sym_LT] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5841), - [anon_sym_where] = ACTIONS(5839), - [anon_sym_QMARK] = ACTIONS(5841), - [anon_sym_BANG] = ACTIONS(5841), - [anon_sym_PLUS_PLUS] = ACTIONS(5839), - [anon_sym_DASH_DASH] = ACTIONS(5839), - [anon_sym_PLUS] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5841), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_SLASH] = ACTIONS(5841), - [anon_sym_PERCENT] = ACTIONS(5839), - [anon_sym_CARET] = ACTIONS(5839), - [anon_sym_PIPE] = ACTIONS(5841), - [anon_sym_AMP] = ACTIONS(5841), - [anon_sym_LT_LT] = ACTIONS(5839), - [anon_sym_GT_GT] = ACTIONS(5841), - [anon_sym_GT_GT_GT] = ACTIONS(5839), - [anon_sym_EQ_EQ] = ACTIONS(5839), - [anon_sym_BANG_EQ] = ACTIONS(5839), - [anon_sym_GT_EQ] = ACTIONS(5839), - [anon_sym_LT_EQ] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(5841), - [anon_sym_switch] = ACTIONS(5839), - [anon_sym_DOT_DOT] = ACTIONS(5839), - [anon_sym_and] = ACTIONS(5839), - [anon_sym_or] = ACTIONS(5841), - [anon_sym_AMP_AMP] = ACTIONS(5839), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_QMARK_QMARK] = ACTIONS(5839), - [anon_sym_from] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(5837), - [anon_sym_join] = ACTIONS(5839), - [anon_sym_let] = ACTIONS(5839), - [anon_sym_orderby] = ACTIONS(5839), - [anon_sym_ascending] = ACTIONS(5839), - [anon_sym_descending] = ACTIONS(5839), - [anon_sym_group] = ACTIONS(5839), - [anon_sym_select] = ACTIONS(5839), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5839), - [anon_sym_DASH_GT] = ACTIONS(5839), - [anon_sym_with] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499558,8 +511372,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3564] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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(3564), [sym_preproc_endregion] = STATE(3564), [sym_preproc_line] = STATE(3564), @@ -499569,51 +511400,35 @@ 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), - [anon_sym_SEMI] = ACTIONS(5716), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5716), - [anon_sym_RBRACK] = ACTIONS(5716), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5716), - [anon_sym_RBRACE] = ACTIONS(5716), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5718), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5716), - [anon_sym_or] = ACTIONS(5716), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5716), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5716), - [aux_sym_preproc_else_token1] = ACTIONS(5716), - [aux_sym_preproc_elif_token1] = ACTIONS(5716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499626,6 +511441,24 @@ 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_preproc_region] = STATE(3565), [sym_preproc_endregion] = STATE(3565), [sym_preproc_line] = STATE(3565), @@ -499635,53 +511468,36 @@ 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__query_body_repeat2] = STATE(3565), - [anon_sym_LBRACK] = ACTIONS(5843), - [anon_sym_COMMA] = ACTIONS(5843), - [anon_sym_LPAREN] = ACTIONS(5843), - [anon_sym_LT] = ACTIONS(5845), - [anon_sym_GT] = ACTIONS(5845), - [anon_sym_where] = ACTIONS(5843), - [anon_sym_QMARK] = ACTIONS(5845), - [anon_sym_BANG] = ACTIONS(5845), - [anon_sym_PLUS_PLUS] = ACTIONS(5843), - [anon_sym_DASH_DASH] = ACTIONS(5843), - [anon_sym_PLUS] = ACTIONS(5845), - [anon_sym_DASH] = ACTIONS(5845), - [anon_sym_STAR] = ACTIONS(5843), - [anon_sym_SLASH] = ACTIONS(5845), - [anon_sym_PERCENT] = ACTIONS(5843), - [anon_sym_CARET] = ACTIONS(5843), - [anon_sym_PIPE] = ACTIONS(5845), - [anon_sym_AMP] = ACTIONS(5845), - [anon_sym_LT_LT] = ACTIONS(5843), - [anon_sym_GT_GT] = ACTIONS(5845), - [anon_sym_GT_GT_GT] = ACTIONS(5843), - [anon_sym_EQ_EQ] = ACTIONS(5843), - [anon_sym_BANG_EQ] = ACTIONS(5843), - [anon_sym_GT_EQ] = ACTIONS(5843), - [anon_sym_LT_EQ] = ACTIONS(5843), - [anon_sym_DOT] = ACTIONS(5845), - [anon_sym_switch] = ACTIONS(5843), - [anon_sym_DOT_DOT] = ACTIONS(5843), - [anon_sym_and] = ACTIONS(5843), - [anon_sym_or] = ACTIONS(5845), - [anon_sym_AMP_AMP] = ACTIONS(5843), - [anon_sym_PIPE_PIPE] = ACTIONS(5843), - [anon_sym_QMARK_QMARK] = ACTIONS(5843), - [anon_sym_from] = ACTIONS(5843), - [anon_sym_into] = ACTIONS(5847), - [anon_sym_join] = ACTIONS(5843), - [anon_sym_let] = ACTIONS(5843), - [anon_sym_orderby] = ACTIONS(5843), - [anon_sym_ascending] = ACTIONS(5843), - [anon_sym_descending] = ACTIONS(5843), - [anon_sym_group] = ACTIONS(5843), - [anon_sym_select] = ACTIONS(5843), - [anon_sym_as] = ACTIONS(5845), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(5843), - [anon_sym_with] = ACTIONS(5843), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499694,6 +511510,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_preproc_region] = STATE(3566), [sym_preproc_endregion] = STATE(3566), [sym_preproc_line] = STATE(3566), @@ -499703,53 +511521,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_EQ] = ACTIONS(5850), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5852), - [anon_sym_DASH_EQ] = ACTIONS(5852), - [anon_sym_STAR_EQ] = ACTIONS(5852), - [anon_sym_SLASH_EQ] = ACTIONS(5852), - [anon_sym_PERCENT_EQ] = ACTIONS(5852), - [anon_sym_AMP_EQ] = ACTIONS(5852), - [anon_sym_CARET_EQ] = ACTIONS(5852), - [anon_sym_PIPE_EQ] = ACTIONS(5852), - [anon_sym_LT_LT_EQ] = ACTIONS(5852), - [anon_sym_GT_GT_EQ] = ACTIONS(5852), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5852), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5852), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499762,24 +511579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3567] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3567), [sym_preproc_endregion] = STATE(3567), [sym_preproc_line] = STATE(3567), @@ -499789,35 +511590,52 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(5854), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499830,6 +511648,8 @@ 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), @@ -499839,53 +511659,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3568), [sym_preproc_define] = STATE(3568), [sym_preproc_undef] = STATE(3568), - [aux_sym__query_body_repeat2] = STATE(3565), - [anon_sym_LBRACK] = ACTIONS(5856), - [anon_sym_COMMA] = ACTIONS(5856), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_where] = ACTIONS(5856), - [anon_sym_QMARK] = ACTIONS(5858), - [anon_sym_BANG] = ACTIONS(5858), - [anon_sym_PLUS_PLUS] = ACTIONS(5856), - [anon_sym_DASH_DASH] = ACTIONS(5856), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5856), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5856), - [anon_sym_CARET] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_AMP] = ACTIONS(5858), - [anon_sym_LT_LT] = ACTIONS(5856), - [anon_sym_GT_GT] = ACTIONS(5858), - [anon_sym_GT_GT_GT] = ACTIONS(5856), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_GT_EQ] = ACTIONS(5856), - [anon_sym_LT_EQ] = ACTIONS(5856), - [anon_sym_DOT] = ACTIONS(5858), - [anon_sym_switch] = ACTIONS(5856), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_and] = ACTIONS(5856), - [anon_sym_or] = ACTIONS(5858), - [anon_sym_AMP_AMP] = ACTIONS(5856), - [anon_sym_PIPE_PIPE] = ACTIONS(5856), - [anon_sym_QMARK_QMARK] = ACTIONS(5856), - [anon_sym_from] = ACTIONS(5856), - [anon_sym_into] = ACTIONS(5837), - [anon_sym_join] = ACTIONS(5856), - [anon_sym_let] = ACTIONS(5856), - [anon_sym_orderby] = ACTIONS(5856), - [anon_sym_ascending] = ACTIONS(5856), - [anon_sym_descending] = ACTIONS(5856), - [anon_sym_group] = ACTIONS(5856), - [anon_sym_select] = ACTIONS(5856), - [anon_sym_as] = ACTIONS(5858), - [anon_sym_is] = ACTIONS(5856), - [anon_sym_DASH_GT] = ACTIONS(5856), - [anon_sym_with] = ACTIONS(5856), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499898,8 +511717,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3569] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3569), [sym_preproc_endregion] = STATE(3569), [sym_preproc_line] = STATE(3569), @@ -499909,51 +511744,36 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -499966,8 +511786,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3570] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -499977,51 +511813,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3570), [sym_preproc_define] = STATE(3570), [sym_preproc_undef] = STATE(3570), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500034,6 +511855,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_preproc_region] = STATE(3571), [sym_preproc_endregion] = STATE(3571), [sym_preproc_line] = STATE(3571), @@ -500043,53 +511866,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(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_from] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_join] = ACTIONS(4730), - [anon_sym_let] = ACTIONS(4730), - [anon_sym_orderby] = ACTIONS(4730), - [anon_sym_ascending] = ACTIONS(4730), - [anon_sym_descending] = ACTIONS(4730), - [anon_sym_group] = ACTIONS(4730), - [anon_sym_select] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4732), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), - [sym_string_literal_encoding] = ACTIONS(5892), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500102,8 +511924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3572] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_block] = STATE(7258), [sym_preproc_region] = STATE(3572), [sym_preproc_endregion] = STATE(3572), [sym_preproc_line] = STATE(3572), @@ -500113,51 +511934,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3572), [sym_preproc_define] = STATE(3572), [sym_preproc_undef] = STATE(3572), - [anon_sym_SEMI] = ACTIONS(5660), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_RBRACK] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5660), - [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5662), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5660), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5660), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [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(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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500170,8 +511993,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3573] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3573), [sym_preproc_endregion] = STATE(3573), [sym_preproc_line] = STATE(3573), @@ -500181,51 +512020,36 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5656), - [anon_sym_SLASH] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5656), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500238,8 +512062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3574] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [sym_initializer_expression] = STATE(3746), [sym_preproc_region] = STATE(3574), [sym_preproc_endregion] = STATE(3574), [sym_preproc_line] = STATE(3574), @@ -500249,51 +512072,53 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500306,8 +512131,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3575] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3575), [sym_preproc_endregion] = STATE(3575), [sym_preproc_line] = STATE(3575), @@ -500317,51 +512142,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500374,8 +512200,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3576] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3576), [sym_preproc_endregion] = STATE(3576), [sym_preproc_line] = STATE(3576), @@ -500385,51 +512228,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3576), [sym_preproc_define] = STATE(3576), [sym_preproc_undef] = STATE(3576), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500442,8 +512269,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3577] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3577), [sym_preproc_endregion] = STATE(3577), [sym_preproc_line] = STATE(3577), @@ -500453,51 +512280,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500510,8 +512338,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3578] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -500521,51 +512366,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3578), [sym_preproc_define] = STATE(3578), [sym_preproc_undef] = STATE(3578), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500578,8 +512407,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3579] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_initializer_expression] = STATE(3696), [sym_preproc_region] = STATE(3579), [sym_preproc_endregion] = STATE(3579), [sym_preproc_line] = STATE(3579), @@ -500589,51 +512417,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3579), [sym_preproc_define] = STATE(3579), [sym_preproc_undef] = STATE(3579), - [anon_sym_SEMI] = ACTIONS(5610), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5610), - [anon_sym_RBRACK] = ACTIONS(5610), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5610), - [anon_sym_RBRACE] = ACTIONS(5610), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5612), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5610), - [anon_sym_or] = ACTIONS(5610), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5610), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5610), - [aux_sym_preproc_else_token1] = ACTIONS(5610), - [aux_sym_preproc_elif_token1] = ACTIONS(5610), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500655,53 +512485,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4753), - [anon_sym_COMMA] = ACTIONS(4753), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4753), - [anon_sym_LT] = ACTIONS(4755), - [anon_sym_GT] = ACTIONS(4755), - [anon_sym_where] = ACTIONS(4753), - [anon_sym_QMARK] = ACTIONS(4755), - [anon_sym_BANG] = ACTIONS(4755), - [anon_sym_PLUS_PLUS] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4753), - [anon_sym_PLUS] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4755), - [anon_sym_STAR] = ACTIONS(4753), - [anon_sym_SLASH] = ACTIONS(4755), - [anon_sym_PERCENT] = ACTIONS(4753), - [anon_sym_CARET] = ACTIONS(4753), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_AMP] = ACTIONS(4755), - [anon_sym_LT_LT] = ACTIONS(4753), - [anon_sym_GT_GT] = ACTIONS(4755), - [anon_sym_GT_GT_GT] = ACTIONS(4753), - [anon_sym_EQ_EQ] = ACTIONS(4753), - [anon_sym_BANG_EQ] = ACTIONS(4753), - [anon_sym_GT_EQ] = ACTIONS(4753), - [anon_sym_LT_EQ] = ACTIONS(4753), - [anon_sym_DOT] = ACTIONS(4755), - [anon_sym_switch] = ACTIONS(4753), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_and] = ACTIONS(4753), - [anon_sym_or] = ACTIONS(4755), - [anon_sym_AMP_AMP] = ACTIONS(4753), - [anon_sym_PIPE_PIPE] = ACTIONS(4753), - [anon_sym_QMARK_QMARK] = ACTIONS(4753), - [anon_sym_from] = ACTIONS(4753), - [anon_sym_into] = ACTIONS(4753), - [anon_sym_join] = ACTIONS(4753), - [anon_sym_let] = ACTIONS(4753), - [anon_sym_orderby] = ACTIONS(4753), - [anon_sym_ascending] = ACTIONS(4753), - [anon_sym_descending] = ACTIONS(4753), - [anon_sym_group] = ACTIONS(4753), - [anon_sym_select] = ACTIONS(4753), - [anon_sym_as] = ACTIONS(4755), - [anon_sym_is] = ACTIONS(4753), - [anon_sym_DASH_GT] = ACTIONS(4753), - [anon_sym_with] = ACTIONS(4753), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500714,6 +512545,26 @@ 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_preproc_region] = STATE(3581), [sym_preproc_endregion] = STATE(3581), [sym_preproc_line] = STATE(3581), @@ -500723,53 +512574,34 @@ 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), - [anon_sym_EQ] = ACTIONS(5894), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5896), - [anon_sym_DASH_EQ] = ACTIONS(5896), - [anon_sym_STAR_EQ] = ACTIONS(5896), - [anon_sym_SLASH_EQ] = ACTIONS(5896), - [anon_sym_PERCENT_EQ] = ACTIONS(5896), - [anon_sym_AMP_EQ] = ACTIONS(5896), - [anon_sym_CARET_EQ] = ACTIONS(5896), - [anon_sym_PIPE_EQ] = ACTIONS(5896), - [anon_sym_LT_LT_EQ] = ACTIONS(5896), - [anon_sym_GT_GT_EQ] = ACTIONS(5896), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5896), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5896), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500791,53 +512623,54 @@ 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(5076), - [anon_sym_extern] = ACTIONS(5076), - [anon_sym_alias] = ACTIONS(5076), - [anon_sym_global] = ACTIONS(5076), - [anon_sym_unsafe] = ACTIONS(5076), - [anon_sym_static] = ACTIONS(5076), - [anon_sym_LBRACK] = ACTIONS(5078), - [anon_sym_LPAREN] = ACTIONS(5078), - [anon_sym_ref] = ACTIONS(5076), - [anon_sym_delegate] = ACTIONS(5076), - [anon_sym_abstract] = ACTIONS(5076), - [anon_sym_async] = ACTIONS(5076), - [anon_sym_const] = ACTIONS(5076), - [anon_sym_file] = ACTIONS(5076), - [anon_sym_fixed] = ACTIONS(5076), - [anon_sym_internal] = ACTIONS(5076), - [anon_sym_new] = ACTIONS(5076), - [anon_sym_override] = ACTIONS(5076), - [anon_sym_partial] = ACTIONS(5076), - [anon_sym_private] = ACTIONS(5076), - [anon_sym_protected] = ACTIONS(5076), - [anon_sym_public] = ACTIONS(5076), - [anon_sym_readonly] = ACTIONS(5076), - [anon_sym_required] = ACTIONS(5076), - [anon_sym_sealed] = ACTIONS(5076), - [anon_sym_virtual] = ACTIONS(5076), - [anon_sym_volatile] = ACTIONS(5076), - [anon_sym_where] = ACTIONS(5076), - [anon_sym_notnull] = ACTIONS(5076), - [anon_sym_unmanaged] = ACTIONS(5076), - [anon_sym_scoped] = ACTIONS(5076), - [anon_sym_var] = ACTIONS(5076), - [sym_predefined_type] = ACTIONS(5076), - [anon_sym_yield] = ACTIONS(5076), - [anon_sym_when] = ACTIONS(5076), - [anon_sym_from] = ACTIONS(5076), - [anon_sym_into] = 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_ascending] = ACTIONS(5076), - [anon_sym_descending] = ACTIONS(5076), - [anon_sym_group] = ACTIONS(5076), - [anon_sym_by] = ACTIONS(5076), - [anon_sym_select] = ACTIONS(5076), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500850,8 +512683,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3583] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3583), [sym_preproc_endregion] = STATE(3583), [sym_preproc_line] = STATE(3583), @@ -500861,51 +512710,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3583), [sym_preproc_define] = STATE(3583), [sym_preproc_undef] = STATE(3583), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500927,53 +512761,54 @@ 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(5098), - [anon_sym_extern] = ACTIONS(5098), - [anon_sym_alias] = ACTIONS(5098), - [anon_sym_global] = ACTIONS(5098), - [anon_sym_unsafe] = ACTIONS(5098), - [anon_sym_static] = ACTIONS(5098), - [anon_sym_LBRACK] = ACTIONS(5100), - [anon_sym_LPAREN] = ACTIONS(5100), - [anon_sym_ref] = ACTIONS(5098), - [anon_sym_delegate] = ACTIONS(5098), - [anon_sym_abstract] = ACTIONS(5098), - [anon_sym_async] = ACTIONS(5098), - [anon_sym_const] = ACTIONS(5098), - [anon_sym_file] = ACTIONS(5098), - [anon_sym_fixed] = ACTIONS(5098), - [anon_sym_internal] = ACTIONS(5098), - [anon_sym_new] = ACTIONS(5098), - [anon_sym_override] = ACTIONS(5098), - [anon_sym_partial] = ACTIONS(5098), - [anon_sym_private] = ACTIONS(5098), - [anon_sym_protected] = ACTIONS(5098), - [anon_sym_public] = ACTIONS(5098), - [anon_sym_readonly] = ACTIONS(5098), - [anon_sym_required] = ACTIONS(5098), - [anon_sym_sealed] = ACTIONS(5098), - [anon_sym_virtual] = ACTIONS(5098), - [anon_sym_volatile] = ACTIONS(5098), - [anon_sym_where] = ACTIONS(5098), - [anon_sym_notnull] = ACTIONS(5098), - [anon_sym_unmanaged] = ACTIONS(5098), - [anon_sym_scoped] = ACTIONS(5098), - [anon_sym_var] = ACTIONS(5098), - [sym_predefined_type] = ACTIONS(5098), - [anon_sym_yield] = ACTIONS(5098), - [anon_sym_when] = ACTIONS(5098), - [anon_sym_from] = ACTIONS(5098), - [anon_sym_into] = ACTIONS(5098), - [anon_sym_join] = ACTIONS(5098), - [anon_sym_on] = ACTIONS(5098), - [anon_sym_equals] = ACTIONS(5098), - [anon_sym_let] = ACTIONS(5098), - [anon_sym_orderby] = ACTIONS(5098), - [anon_sym_ascending] = ACTIONS(5098), - [anon_sym_descending] = ACTIONS(5098), - [anon_sym_group] = ACTIONS(5098), - [anon_sym_by] = ACTIONS(5098), - [anon_sym_select] = ACTIONS(5098), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -500986,8 +512821,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3585] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3585), [sym_preproc_endregion] = STATE(3585), [sym_preproc_line] = STATE(3585), @@ -500997,51 +512832,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501054,8 +512890,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3586] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3586), [sym_preproc_endregion] = STATE(3586), [sym_preproc_line] = STATE(3586), @@ -501065,51 +512918,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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5658), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501131,53 +512968,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4768), - [anon_sym_LBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4770), - [anon_sym_PLUS_PLUS] = ACTIONS(4768), - [anon_sym_DASH_DASH] = ACTIONS(4768), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4770), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_QMARK_QMARK] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_ascending] = ACTIONS(4768), - [anon_sym_descending] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4768), - [anon_sym_with] = ACTIONS(4768), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501190,8 +513028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3588] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3588), [sym_preproc_endregion] = STATE(3588), [sym_preproc_line] = STATE(3588), @@ -501201,51 +513037,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_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5686), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501258,6 +513097,25 @@ 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_preproc_region] = STATE(3589), [sym_preproc_endregion] = STATE(3589), [sym_preproc_line] = STATE(3589), @@ -501267,53 +513125,35 @@ 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(3395), - [anon_sym_alias] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3395), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_RBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_RBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_GT] = ACTIONS(3393), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3395), - [anon_sym_unmanaged] = ACTIONS(3395), - [anon_sym_operator] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3395), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_when] = ACTIONS(3395), - [sym_discard] = ACTIONS(3395), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = 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), - [anon_sym_DASH_GT] = ACTIONS(3393), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501326,8 +513166,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3590] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3590), [sym_preproc_endregion] = STATE(3590), [sym_preproc_line] = STATE(3590), @@ -501337,51 +513177,52 @@ 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_SEMI] = ACTIONS(5766), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5766), - [anon_sym_RBRACK] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5766), - [anon_sym_RBRACE] = ACTIONS(5766), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5768), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5766), - [anon_sym_or] = ACTIONS(5766), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5766), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5766), - [aux_sym_preproc_else_token1] = ACTIONS(5766), - [aux_sym_preproc_elif_token1] = ACTIONS(5766), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501394,8 +513235,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3591] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3591), [sym_preproc_endregion] = STATE(3591), [sym_preproc_line] = STATE(3591), @@ -501405,51 +513246,52 @@ 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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5656), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501462,8 +513304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3592] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3592), [sym_preproc_endregion] = STATE(3592), [sym_preproc_line] = STATE(3592), @@ -501473,51 +513315,52 @@ 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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5656), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501530,8 +513373,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3593] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3593), [sym_preproc_endregion] = STATE(3593), [sym_preproc_line] = STATE(3593), @@ -501541,51 +513400,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3593), [sym_preproc_define] = STATE(3593), [sym_preproc_undef] = STATE(3593), - [anon_sym_SEMI] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_in] = ACTIONS(1153), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(1139), - [anon_sym_or] = ACTIONS(1139), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_into] = ACTIONS(1139), - [anon_sym_as] = ACTIONS(1139), - [anon_sym_is] = ACTIONS(1139), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(1139), - [aux_sym_preproc_if_token3] = ACTIONS(1139), - [aux_sym_preproc_else_token1] = ACTIONS(1139), - [aux_sym_preproc_elif_token1] = ACTIONS(1139), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501598,8 +513442,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3594] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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), @@ -501609,51 +513470,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3594), [sym_preproc_define] = STATE(3594), [sym_preproc_undef] = STATE(3594), - [anon_sym_SEMI] = ACTIONS(5564), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5564), - [anon_sym_RBRACK] = ACTIONS(5564), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5564), - [anon_sym_RBRACE] = ACTIONS(5564), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5594), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5564), - [anon_sym_or] = ACTIONS(5564), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5564), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5564), - [aux_sym_preproc_else_token1] = ACTIONS(5564), - [aux_sym_preproc_elif_token1] = ACTIONS(5564), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501675,54 +513520,55 @@ 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(5898), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COLON] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5900), - [anon_sym_DASH_EQ] = ACTIONS(5900), - [anon_sym_STAR_EQ] = ACTIONS(5900), - [anon_sym_SLASH_EQ] = ACTIONS(5900), - [anon_sym_PERCENT_EQ] = ACTIONS(5900), - [anon_sym_AMP_EQ] = ACTIONS(5900), - [anon_sym_CARET_EQ] = ACTIONS(5900), - [anon_sym_PIPE_EQ] = ACTIONS(5900), - [anon_sym_LT_LT_EQ] = ACTIONS(5900), - [anon_sym_GT_GT_EQ] = ACTIONS(5900), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5900), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5900), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), - [aux_sym_preproc_region_token1] = ACTIONS(3), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), [aux_sym_preproc_pragma_token1] = ACTIONS(9), @@ -501734,8 +513580,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3596] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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(3596), [sym_preproc_endregion] = STATE(3596), [sym_preproc_line] = STATE(3596), @@ -501745,51 +513608,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5660), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5660), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5660), - [anon_sym_or] = ACTIONS(5662), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [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(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501802,6 +513649,8 @@ 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_preproc_region] = STATE(3597), [sym_preproc_endregion] = STATE(3597), [sym_preproc_line] = STATE(3597), @@ -501811,53 +513660,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3597), [sym_preproc_define] = STATE(3597), [sym_preproc_undef] = STATE(3597), - [sym__identifier_token] = ACTIONS(5113), - [anon_sym_extern] = ACTIONS(5113), - [anon_sym_alias] = ACTIONS(5113), - [anon_sym_global] = ACTIONS(5113), - [anon_sym_unsafe] = ACTIONS(5113), - [anon_sym_static] = ACTIONS(5113), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_ref] = ACTIONS(5113), - [anon_sym_delegate] = ACTIONS(5113), - [anon_sym_abstract] = ACTIONS(5113), - [anon_sym_async] = ACTIONS(5113), - [anon_sym_const] = ACTIONS(5113), - [anon_sym_file] = ACTIONS(5113), - [anon_sym_fixed] = ACTIONS(5113), - [anon_sym_internal] = ACTIONS(5113), - [anon_sym_new] = ACTIONS(5113), - [anon_sym_override] = ACTIONS(5113), - [anon_sym_partial] = ACTIONS(5113), - [anon_sym_private] = ACTIONS(5113), - [anon_sym_protected] = ACTIONS(5113), - [anon_sym_public] = ACTIONS(5113), - [anon_sym_readonly] = ACTIONS(5113), - [anon_sym_required] = ACTIONS(5113), - [anon_sym_sealed] = ACTIONS(5113), - [anon_sym_virtual] = ACTIONS(5113), - [anon_sym_volatile] = ACTIONS(5113), - [anon_sym_where] = ACTIONS(5113), - [anon_sym_notnull] = ACTIONS(5113), - [anon_sym_unmanaged] = ACTIONS(5113), - [anon_sym_scoped] = ACTIONS(5113), - [anon_sym_var] = ACTIONS(5113), - [sym_predefined_type] = ACTIONS(5113), - [anon_sym_yield] = ACTIONS(5113), - [anon_sym_when] = ACTIONS(5113), - [anon_sym_from] = ACTIONS(5113), - [anon_sym_into] = ACTIONS(5113), - [anon_sym_join] = ACTIONS(5113), - [anon_sym_on] = ACTIONS(5113), - [anon_sym_equals] = ACTIONS(5113), - [anon_sym_let] = ACTIONS(5113), - [anon_sym_orderby] = ACTIONS(5113), - [anon_sym_ascending] = ACTIONS(5113), - [anon_sym_descending] = ACTIONS(5113), - [anon_sym_group] = ACTIONS(5113), - [anon_sym_by] = ACTIONS(5113), - [anon_sym_select] = ACTIONS(5113), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501870,6 +513718,8 @@ 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), @@ -501879,53 +513729,52 @@ 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), - [sym__identifier_token] = ACTIONS(5102), - [anon_sym_extern] = ACTIONS(5102), - [anon_sym_alias] = ACTIONS(5102), - [anon_sym_global] = ACTIONS(5102), - [anon_sym_unsafe] = ACTIONS(5102), - [anon_sym_static] = ACTIONS(5102), - [anon_sym_LBRACK] = ACTIONS(5104), - [anon_sym_LPAREN] = ACTIONS(5104), - [anon_sym_ref] = ACTIONS(5102), - [anon_sym_delegate] = ACTIONS(5102), - [anon_sym_abstract] = ACTIONS(5102), - [anon_sym_async] = ACTIONS(5102), - [anon_sym_const] = ACTIONS(5102), - [anon_sym_file] = ACTIONS(5102), - [anon_sym_fixed] = ACTIONS(5102), - [anon_sym_internal] = ACTIONS(5102), - [anon_sym_new] = ACTIONS(5102), - [anon_sym_override] = ACTIONS(5102), - [anon_sym_partial] = ACTIONS(5102), - [anon_sym_private] = ACTIONS(5102), - [anon_sym_protected] = ACTIONS(5102), - [anon_sym_public] = ACTIONS(5102), - [anon_sym_readonly] = ACTIONS(5102), - [anon_sym_required] = ACTIONS(5102), - [anon_sym_sealed] = ACTIONS(5102), - [anon_sym_virtual] = ACTIONS(5102), - [anon_sym_volatile] = ACTIONS(5102), - [anon_sym_where] = ACTIONS(5102), - [anon_sym_notnull] = ACTIONS(5102), - [anon_sym_unmanaged] = ACTIONS(5102), - [anon_sym_scoped] = ACTIONS(5102), - [anon_sym_var] = ACTIONS(5102), - [sym_predefined_type] = ACTIONS(5102), - [anon_sym_yield] = ACTIONS(5102), - [anon_sym_when] = 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_ascending] = ACTIONS(5102), - [anon_sym_descending] = ACTIONS(5102), - [anon_sym_group] = ACTIONS(5102), - [anon_sym_by] = ACTIONS(5102), - [anon_sym_select] = ACTIONS(5102), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -501938,25 +513787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3599] = { - [sym__name] = STATE(6216), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(6956), - [sym_array_type] = STATE(6447), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6449), - [sym_pointer_type] = STATE(6449), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(6449), - [sym_ref_type] = STATE(6830), - [sym__ref_base_type] = STATE(7426), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6341), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_block] = STATE(2094), [sym_preproc_region] = STATE(3599), [sym_preproc_endregion] = STATE(3599), [sym_preproc_line] = STATE(3599), @@ -501966,34 +513797,53 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5904), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(5906), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5364), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502006,8 +513856,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3600] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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), @@ -502017,51 +513883,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3600), [sym_preproc_define] = STATE(3600), [sym_preproc_undef] = STATE(3600), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RBRACK] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_RBRACE] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(4888), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4886), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(4886), - [aux_sym_preproc_else_token1] = ACTIONS(4886), - [aux_sym_preproc_elif_token1] = ACTIONS(4886), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502074,23 +513925,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3601] = { - [sym__name] = STATE(6282), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_implicit_type] = STATE(7353), - [sym_array_type] = STATE(6780), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(6781), - [sym_pointer_type] = STATE(6781), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(6781), - [sym_function_pointer_parameter] = STATE(7319), - [sym__ref_base_type] = STATE(7318), - [sym_tuple_type] = STATE(6484), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3601), [sym_preproc_endregion] = STATE(3601), [sym_preproc_line] = STATE(3601), @@ -502100,36 +513952,36 @@ 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_function_pointer_type_repeat1] = STATE(3601), - [sym__identifier_token] = ACTIONS(5908), - [anon_sym_alias] = ACTIONS(5911), - [anon_sym_global] = ACTIONS(5911), - [anon_sym_LPAREN] = ACTIONS(5914), - [anon_sym_ref] = ACTIONS(5917), - [anon_sym_delegate] = ACTIONS(5920), - [anon_sym_file] = ACTIONS(5911), - [anon_sym_in] = ACTIONS(5917), - [anon_sym_out] = ACTIONS(5917), - [anon_sym_where] = ACTIONS(5911), - [anon_sym_notnull] = ACTIONS(5911), - [anon_sym_unmanaged] = ACTIONS(5911), - [anon_sym_scoped] = ACTIONS(5911), - [anon_sym_var] = ACTIONS(5923), - [sym_predefined_type] = ACTIONS(5926), - [anon_sym_yield] = ACTIONS(5911), - [anon_sym_when] = ACTIONS(5911), - [anon_sym_from] = ACTIONS(5911), - [anon_sym_into] = ACTIONS(5911), - [anon_sym_join] = ACTIONS(5911), - [anon_sym_on] = ACTIONS(5911), - [anon_sym_equals] = ACTIONS(5911), - [anon_sym_let] = ACTIONS(5911), - [anon_sym_orderby] = ACTIONS(5911), - [anon_sym_ascending] = ACTIONS(5911), - [anon_sym_descending] = ACTIONS(5911), - [anon_sym_group] = ACTIONS(5911), - [anon_sym_by] = ACTIONS(5911), - [anon_sym_select] = ACTIONS(5911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502142,24 +513994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3602] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_initializer_expression] = STATE(3710), [sym_preproc_region] = STATE(3602), [sym_preproc_endregion] = STATE(3602), [sym_preproc_line] = STATE(3602), @@ -502169,35 +514004,53 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502210,24 +514063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3603] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_block] = STATE(2037), [sym_preproc_region] = STATE(3603), [sym_preproc_endregion] = STATE(3603), [sym_preproc_line] = STATE(3603), @@ -502237,35 +514073,53 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_struct] = ACTIONS(2709), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502278,8 +514132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3604] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3604), [sym_preproc_endregion] = STATE(3604), [sym_preproc_line] = STATE(3604), @@ -502289,51 +514143,52 @@ 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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502346,8 +514201,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3605] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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), @@ -502357,51 +514212,52 @@ 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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502414,8 +514270,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3606] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3606), [sym_preproc_endregion] = STATE(3606), [sym_preproc_line] = STATE(3606), @@ -502425,51 +514297,36 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5716), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5716), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5716), - [anon_sym_or] = ACTIONS(5718), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(5716), - [anon_sym_join] = ACTIONS(5716), - [anon_sym_let] = ACTIONS(5716), - [anon_sym_orderby] = ACTIONS(5716), - [anon_sym_ascending] = ACTIONS(5716), - [anon_sym_descending] = ACTIONS(5716), - [anon_sym_group] = ACTIONS(5716), - [anon_sym_select] = ACTIONS(5716), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502482,8 +514339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3607] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3607), [sym_preproc_endregion] = STATE(3607), [sym_preproc_line] = STATE(3607), @@ -502493,51 +514350,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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502550,8 +514408,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3608] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3608), [sym_preproc_endregion] = STATE(3608), [sym_preproc_line] = STATE(3608), @@ -502561,51 +514435,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3608), [sym_preproc_define] = STATE(3608), [sym_preproc_undef] = STATE(3608), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5656), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502618,8 +514477,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3609] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3609), [sym_preproc_endregion] = STATE(3609), [sym_preproc_line] = STATE(3609), @@ -502629,51 +514505,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3609), [sym_preproc_define] = STATE(3609), [sym_preproc_undef] = STATE(3609), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502686,8 +514546,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3610] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3610), [sym_preproc_endregion] = STATE(3610), [sym_preproc_line] = STATE(3610), @@ -502697,51 +514555,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3610), [sym_preproc_define] = STATE(3610), [sym_preproc_undef] = STATE(3610), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_ascending] = ACTIONS(4886), - [anon_sym_descending] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502754,6 +514615,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_preproc_region] = STATE(3611), [sym_preproc_endregion] = STATE(3611), [sym_preproc_line] = STATE(3611), @@ -502763,53 +514626,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), - [anon_sym_EQ] = ACTIONS(5929), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5931), - [anon_sym_DASH_EQ] = ACTIONS(5931), - [anon_sym_STAR_EQ] = ACTIONS(5931), - [anon_sym_SLASH_EQ] = ACTIONS(5931), - [anon_sym_PERCENT_EQ] = ACTIONS(5931), - [anon_sym_AMP_EQ] = ACTIONS(5931), - [anon_sym_CARET_EQ] = ACTIONS(5931), - [anon_sym_PIPE_EQ] = ACTIONS(5931), - [anon_sym_LT_LT_EQ] = ACTIONS(5931), - [anon_sym_GT_GT_EQ] = ACTIONS(5931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5931), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5931), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502822,8 +514684,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3612] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -502833,51 +514712,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3612), [sym_preproc_define] = STATE(3612), [sym_preproc_undef] = STATE(3612), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5706), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5706), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5706), - [anon_sym_or] = ACTIONS(5708), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(5706), - [anon_sym_join] = ACTIONS(5706), - [anon_sym_let] = ACTIONS(5706), - [anon_sym_orderby] = ACTIONS(5706), - [anon_sym_ascending] = ACTIONS(5706), - [anon_sym_descending] = ACTIONS(5706), - [anon_sym_group] = ACTIONS(5706), - [anon_sym_select] = ACTIONS(5706), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502890,8 +514753,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3613] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3613), [sym_preproc_endregion] = STATE(3613), [sym_preproc_line] = STATE(3613), @@ -502901,51 +514781,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3613), [sym_preproc_define] = STATE(3613), [sym_preproc_undef] = STATE(3613), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5766), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5766), - [anon_sym_or] = ACTIONS(5768), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(5766), - [anon_sym_join] = ACTIONS(5766), - [anon_sym_let] = ACTIONS(5766), - [anon_sym_orderby] = ACTIONS(5766), - [anon_sym_ascending] = ACTIONS(5766), - [anon_sym_descending] = ACTIONS(5766), - [anon_sym_group] = ACTIONS(5766), - [anon_sym_select] = ACTIONS(5766), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -502958,6 +514822,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_preproc_region] = STATE(3614), [sym_preproc_endregion] = STATE(3614), [sym_preproc_line] = STATE(3614), @@ -502967,53 +514849,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), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_LBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_QMARK_QMARK] = ACTIONS(4764), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503026,8 +514891,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3615] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3615), [sym_preproc_endregion] = STATE(3615), [sym_preproc_line] = STATE(3615), @@ -503037,51 +514919,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3615), [sym_preproc_define] = STATE(3615), [sym_preproc_undef] = STATE(3615), - [anon_sym_SEMI] = ACTIONS(5684), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_RBRACK] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5684), - [anon_sym_RBRACE] = ACTIONS(5684), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_in] = ACTIONS(5686), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5684), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5684), - [aux_sym_preproc_if_token3] = ACTIONS(5684), - [aux_sym_preproc_else_token1] = ACTIONS(5684), - [aux_sym_preproc_elif_token1] = ACTIONS(5684), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503103,53 +514969,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_add] = ACTIONS(3428), - [anon_sym_remove] = ACTIONS(3428), - [anon_sym_init] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503162,8 +515029,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3617] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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), @@ -503173,51 +515056,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3617), [sym_preproc_define] = STATE(3617), [sym_preproc_undef] = STATE(3617), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503230,8 +515098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3618] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3618), [sym_preproc_endregion] = STATE(3618), [sym_preproc_line] = STATE(3618), @@ -503241,51 +515109,52 @@ 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_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503298,8 +515167,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3619] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3619), [sym_preproc_endregion] = STATE(3619), [sym_preproc_line] = STATE(3619), @@ -503309,51 +515195,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3619), [sym_preproc_define] = STATE(3619), [sym_preproc_undef] = STATE(3619), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5902), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5860), - [anon_sym_DASH] = ACTIONS(5860), - [anon_sym_STAR] = ACTIONS(5862), - [anon_sym_SLASH] = ACTIONS(5864), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_CARET] = ACTIONS(5868), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_AMP] = ACTIONS(5872), - [anon_sym_LT_LT] = ACTIONS(5874), - [anon_sym_GT_GT] = ACTIONS(5876), - [anon_sym_GT_GT_GT] = ACTIONS(5874), - [anon_sym_EQ_EQ] = ACTIONS(5878), - [anon_sym_BANG_EQ] = ACTIONS(5878), - [anon_sym_GT_EQ] = ACTIONS(5880), - [anon_sym_LT_EQ] = ACTIONS(5880), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5795), - [anon_sym_and] = ACTIONS(5754), - [anon_sym_or] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5882), - [anon_sym_PIPE_PIPE] = ACTIONS(5884), - [anon_sym_QMARK_QMARK] = ACTIONS(5886), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5888), - [anon_sym_is] = ACTIONS(5890), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503366,6 +515236,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_preproc_region] = STATE(3620), [sym_preproc_endregion] = STATE(3620), [sym_preproc_line] = STATE(3620), @@ -503375,53 +515264,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3620), [sym_preproc_define] = STATE(3620), [sym_preproc_undef] = STATE(3620), - [anon_sym_EQ] = ACTIONS(5933), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_in] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5935), - [anon_sym_DASH_EQ] = ACTIONS(5935), - [anon_sym_STAR_EQ] = ACTIONS(5935), - [anon_sym_SLASH_EQ] = ACTIONS(5935), - [anon_sym_PERCENT_EQ] = ACTIONS(5935), - [anon_sym_AMP_EQ] = ACTIONS(5935), - [anon_sym_CARET_EQ] = ACTIONS(5935), - [anon_sym_PIPE_EQ] = ACTIONS(5935), - [anon_sym_LT_LT_EQ] = ACTIONS(5935), - [anon_sym_GT_GT_EQ] = ACTIONS(5935), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5935), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5935), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503434,6 +515305,25 @@ 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), @@ -503443,53 +515333,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3621), [sym_preproc_define] = STATE(3621), [sym_preproc_undef] = STATE(3621), - [sym__identifier_token] = ACTIONS(5084), - [anon_sym_extern] = ACTIONS(5084), - [anon_sym_alias] = ACTIONS(5084), - [anon_sym_global] = ACTIONS(5084), - [anon_sym_unsafe] = ACTIONS(5084), - [anon_sym_static] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_ref] = ACTIONS(5084), - [anon_sym_delegate] = ACTIONS(5084), - [anon_sym_abstract] = ACTIONS(5084), - [anon_sym_async] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(5084), - [anon_sym_file] = ACTIONS(5084), - [anon_sym_fixed] = ACTIONS(5084), - [anon_sym_internal] = ACTIONS(5084), - [anon_sym_new] = ACTIONS(5084), - [anon_sym_override] = ACTIONS(5084), - [anon_sym_partial] = ACTIONS(5084), - [anon_sym_private] = ACTIONS(5084), - [anon_sym_protected] = ACTIONS(5084), - [anon_sym_public] = ACTIONS(5084), - [anon_sym_readonly] = ACTIONS(5084), - [anon_sym_required] = ACTIONS(5084), - [anon_sym_sealed] = ACTIONS(5084), - [anon_sym_virtual] = ACTIONS(5084), - [anon_sym_volatile] = ACTIONS(5084), - [anon_sym_where] = ACTIONS(5084), - [anon_sym_notnull] = ACTIONS(5084), - [anon_sym_unmanaged] = ACTIONS(5084), - [anon_sym_scoped] = ACTIONS(5084), - [anon_sym_var] = ACTIONS(5084), - [sym_predefined_type] = ACTIONS(5084), - [anon_sym_yield] = ACTIONS(5084), - [anon_sym_when] = 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_ascending] = ACTIONS(5084), - [anon_sym_descending] = ACTIONS(5084), - [anon_sym_group] = ACTIONS(5084), - [anon_sym_by] = ACTIONS(5084), - [anon_sym_select] = ACTIONS(5084), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503502,6 +515374,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_preproc_region] = STATE(3622), [sym_preproc_endregion] = STATE(3622), [sym_preproc_line] = STATE(3622), @@ -503511,53 +515402,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(5152), - [anon_sym_extern] = ACTIONS(5152), - [anon_sym_alias] = ACTIONS(5152), - [anon_sym_global] = ACTIONS(5152), - [anon_sym_unsafe] = ACTIONS(5152), - [anon_sym_static] = ACTIONS(5152), - [anon_sym_abstract] = ACTIONS(5152), - [anon_sym_async] = ACTIONS(5152), - [anon_sym_const] = ACTIONS(5152), - [anon_sym_file] = ACTIONS(5152), - [anon_sym_fixed] = ACTIONS(5152), - [anon_sym_internal] = ACTIONS(5152), - [anon_sym_new] = ACTIONS(5152), - [anon_sym_override] = ACTIONS(5152), - [anon_sym_partial] = ACTIONS(5152), - [anon_sym_private] = ACTIONS(5152), - [anon_sym_protected] = ACTIONS(5152), - [anon_sym_public] = ACTIONS(5152), - [anon_sym_readonly] = ACTIONS(5152), - [anon_sym_required] = ACTIONS(5152), - [anon_sym_sealed] = ACTIONS(5152), - [anon_sym_virtual] = ACTIONS(5152), - [anon_sym_volatile] = ACTIONS(5152), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_notnull] = ACTIONS(5152), - [anon_sym_unmanaged] = ACTIONS(5152), - [anon_sym_get] = ACTIONS(5152), - [anon_sym_set] = ACTIONS(5152), - [anon_sym_add] = ACTIONS(5152), - [anon_sym_remove] = ACTIONS(5152), - [anon_sym_init] = ACTIONS(5152), - [anon_sym_scoped] = ACTIONS(5152), - [anon_sym_var] = ACTIONS(5152), - [anon_sym_yield] = ACTIONS(5152), - [anon_sym_when] = 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_ascending] = ACTIONS(5152), - [anon_sym_descending] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503570,8 +515443,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3623] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3623), [sym_preproc_endregion] = STATE(3623), [sym_preproc_line] = STATE(3623), @@ -503581,51 +515470,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3623), [sym_preproc_define] = STATE(3623), [sym_preproc_undef] = STATE(3623), - [anon_sym_SEMI] = ACTIONS(5656), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_RBRACK] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_RBRACE] = ACTIONS(5656), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5658), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5656), - [anon_sym_or] = ACTIONS(5656), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5656), - [aux_sym_preproc_else_token1] = ACTIONS(5656), - [aux_sym_preproc_elif_token1] = ACTIONS(5656), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503638,6 +515512,8 @@ 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_preproc_region] = STATE(3624), [sym_preproc_endregion] = STATE(3624), [sym_preproc_line] = STATE(3624), @@ -503647,53 +515523,52 @@ 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_EQ] = ACTIONS(5937), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_EQ_GT] = ACTIONS(4684), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_PLUS_EQ] = ACTIONS(5939), - [anon_sym_DASH_EQ] = ACTIONS(5939), - [anon_sym_STAR_EQ] = ACTIONS(5939), - [anon_sym_SLASH_EQ] = ACTIONS(5939), - [anon_sym_PERCENT_EQ] = ACTIONS(5939), - [anon_sym_AMP_EQ] = ACTIONS(5939), - [anon_sym_CARET_EQ] = ACTIONS(5939), - [anon_sym_PIPE_EQ] = ACTIONS(5939), - [anon_sym_LT_LT_EQ] = ACTIONS(5939), - [anon_sym_GT_GT_EQ] = ACTIONS(5939), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5939), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5939), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4684), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503706,8 +515581,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3625] = { - [sym_argument_list] = STATE(3176), - [sym_bracketed_argument_list] = STATE(2537), + [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_preproc_region] = STATE(3625), [sym_preproc_endregion] = STATE(3625), [sym_preproc_line] = STATE(3625), @@ -503717,51 +515609,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), - [anon_sym_SEMI] = ACTIONS(5706), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5706), - [anon_sym_RBRACK] = ACTIONS(5706), - [anon_sym_LPAREN] = ACTIONS(5143), - [anon_sym_RPAREN] = ACTIONS(5706), - [anon_sym_RBRACE] = ACTIONS(5706), - [anon_sym_LT] = ACTIONS(5797), - [anon_sym_GT] = ACTIONS(5797), - [anon_sym_in] = ACTIONS(5708), - [anon_sym_QMARK] = ACTIONS(5799), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PLUS_PLUS] = ACTIONS(5173), - [anon_sym_DASH_DASH] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5801), - [anon_sym_DASH] = ACTIONS(5801), - [anon_sym_STAR] = ACTIONS(5803), - [anon_sym_SLASH] = ACTIONS(5805), - [anon_sym_PERCENT] = ACTIONS(5803), - [anon_sym_CARET] = ACTIONS(5807), - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_AMP] = ACTIONS(5811), - [anon_sym_LT_LT] = ACTIONS(5813), - [anon_sym_GT_GT] = ACTIONS(5815), - [anon_sym_GT_GT_GT] = ACTIONS(5813), - [anon_sym_EQ_EQ] = ACTIONS(5817), - [anon_sym_BANG_EQ] = ACTIONS(5817), - [anon_sym_GT_EQ] = ACTIONS(5819), - [anon_sym_LT_EQ] = ACTIONS(5819), - [anon_sym_DOT] = ACTIONS(4001), - [anon_sym_switch] = ACTIONS(5789), - [anon_sym_DOT_DOT] = ACTIONS(5791), - [anon_sym_and] = ACTIONS(5706), - [anon_sym_or] = ACTIONS(5706), - [anon_sym_AMP_AMP] = ACTIONS(5821), - [anon_sym_PIPE_PIPE] = ACTIONS(5823), - [anon_sym_QMARK_QMARK] = ACTIONS(5825), - [anon_sym_into] = ACTIONS(5706), - [anon_sym_as] = ACTIONS(5827), - [anon_sym_is] = ACTIONS(5829), - [anon_sym_DASH_GT] = ACTIONS(4003), - [anon_sym_with] = ACTIONS(5793), - [aux_sym_preproc_if_token3] = ACTIONS(5706), - [aux_sym_preproc_else_token1] = ACTIONS(5706), - [aux_sym_preproc_elif_token1] = ACTIONS(5706), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503774,6 +515650,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_preproc_region] = STATE(3626), [sym_preproc_endregion] = STATE(3626), [sym_preproc_line] = STATE(3626), @@ -503783,52 +515661,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503841,6 +515719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3627] = { + [sym_block] = STATE(1970), [sym_preproc_region] = STATE(3627), [sym_preproc_endregion] = STATE(3627), [sym_preproc_line] = STATE(3627), @@ -503850,52 +515729,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), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_COMMA] = ACTIONS(4188), - [anon_sym_LPAREN] = ACTIONS(4188), - [anon_sym_LT] = ACTIONS(4190), - [anon_sym_GT] = ACTIONS(4190), - [anon_sym_where] = ACTIONS(4188), - [anon_sym_QMARK] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(4188), - [anon_sym_SLASH] = ACTIONS(4190), - [anon_sym_PERCENT] = ACTIONS(4188), - [anon_sym_CARET] = ACTIONS(4188), - [anon_sym_PIPE] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4190), - [anon_sym_LT_LT] = ACTIONS(4188), - [anon_sym_GT_GT] = ACTIONS(4190), - [anon_sym_GT_GT_GT] = ACTIONS(4188), - [anon_sym_EQ_EQ] = ACTIONS(4188), - [anon_sym_BANG_EQ] = ACTIONS(4188), - [anon_sym_GT_EQ] = ACTIONS(4188), - [anon_sym_LT_EQ] = ACTIONS(4188), - [anon_sym_DOT] = ACTIONS(4190), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4188), - [anon_sym_and] = ACTIONS(4188), - [anon_sym_or] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4188), - [anon_sym_PIPE_PIPE] = ACTIONS(4188), - [anon_sym_QMARK_QMARK] = ACTIONS(4188), - [anon_sym_from] = ACTIONS(4188), - [anon_sym_into] = ACTIONS(4188), - [anon_sym_join] = ACTIONS(4188), - [anon_sym_let] = ACTIONS(4188), - [anon_sym_orderby] = ACTIONS(4188), - [anon_sym_ascending] = ACTIONS(4188), - [anon_sym_descending] = ACTIONS(4188), - [anon_sym_group] = ACTIONS(4188), - [anon_sym_select] = ACTIONS(4188), - [anon_sym_as] = ACTIONS(4190), - [anon_sym_is] = ACTIONS(4188), - [anon_sym_DASH_GT] = ACTIONS(4188), - [anon_sym_with] = ACTIONS(4188), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503908,6 +515788,25 @@ 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_preproc_region] = STATE(3628), [sym_preproc_endregion] = STATE(3628), [sym_preproc_line] = STATE(3628), @@ -503917,52 +515816,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3628), [sym_preproc_define] = STATE(3628), [sym_preproc_undef] = STATE(3628), - [anon_sym_LBRACK] = ACTIONS(5941), - [anon_sym_COMMA] = ACTIONS(5941), - [anon_sym_LPAREN] = ACTIONS(5941), - [anon_sym_LT] = ACTIONS(5943), - [anon_sym_GT] = ACTIONS(5943), - [anon_sym_where] = ACTIONS(5941), - [anon_sym_QMARK] = ACTIONS(5943), - [anon_sym_BANG] = ACTIONS(5943), - [anon_sym_PLUS_PLUS] = ACTIONS(5941), - [anon_sym_DASH_DASH] = ACTIONS(5941), - [anon_sym_PLUS] = ACTIONS(5943), - [anon_sym_DASH] = ACTIONS(5943), - [anon_sym_STAR] = ACTIONS(5941), - [anon_sym_SLASH] = ACTIONS(5943), - [anon_sym_PERCENT] = ACTIONS(5941), - [anon_sym_CARET] = ACTIONS(5941), - [anon_sym_PIPE] = ACTIONS(5943), - [anon_sym_AMP] = ACTIONS(5943), - [anon_sym_LT_LT] = ACTIONS(5941), - [anon_sym_GT_GT] = ACTIONS(5943), - [anon_sym_GT_GT_GT] = ACTIONS(5941), - [anon_sym_EQ_EQ] = ACTIONS(5941), - [anon_sym_BANG_EQ] = ACTIONS(5941), - [anon_sym_GT_EQ] = ACTIONS(5941), - [anon_sym_LT_EQ] = ACTIONS(5941), - [anon_sym_DOT] = ACTIONS(5943), - [anon_sym_switch] = ACTIONS(5941), - [anon_sym_DOT_DOT] = ACTIONS(5941), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(5943), - [anon_sym_AMP_AMP] = ACTIONS(5941), - [anon_sym_PIPE_PIPE] = ACTIONS(5941), - [anon_sym_QMARK_QMARK] = ACTIONS(5941), - [anon_sym_from] = ACTIONS(5941), - [anon_sym_into] = ACTIONS(5941), - [anon_sym_join] = ACTIONS(5941), - [anon_sym_let] = ACTIONS(5941), - [anon_sym_orderby] = ACTIONS(5941), - [anon_sym_ascending] = ACTIONS(5941), - [anon_sym_descending] = ACTIONS(5941), - [anon_sym_group] = ACTIONS(5941), - [anon_sym_select] = ACTIONS(5941), - [anon_sym_as] = ACTIONS(5943), - [anon_sym_is] = ACTIONS(5941), - [anon_sym_DASH_GT] = ACTIONS(5941), - [anon_sym_with] = ACTIONS(5941), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -503975,24 +515857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3629] = { - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3080), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3103), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), + [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), @@ -504002,34 +515868,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3629), [sym_preproc_define] = STATE(3629), [sym_preproc_undef] = STATE(3629), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(5947), - [anon_sym_ref] = ACTIONS(3701), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_readonly] = ACTIONS(5949), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5664), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504042,24 +515926,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3630] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3630), [sym_preproc_endregion] = STATE(3630), [sym_preproc_line] = STATE(3630), @@ -504069,34 +515935,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3630), [sym_preproc_define] = STATE(3630), [sym_preproc_undef] = STATE(3630), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3594), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2795), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5951), - [anon_sym_var] = ACTIONS(5953), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504109,6 +515995,8 @@ 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), @@ -504118,52 +516006,52 @@ 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(5296), - [anon_sym_COMMA] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5298), - [anon_sym_GT] = ACTIONS(5298), - [anon_sym_where] = ACTIONS(5296), - [anon_sym_QMARK] = ACTIONS(5298), - [anon_sym_BANG] = ACTIONS(5298), - [anon_sym_PLUS_PLUS] = ACTIONS(5296), - [anon_sym_DASH_DASH] = ACTIONS(5296), - [anon_sym_PLUS] = ACTIONS(5298), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_SLASH] = ACTIONS(5298), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_CARET] = ACTIONS(5296), - [anon_sym_PIPE] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym_LT_LT] = ACTIONS(5296), - [anon_sym_GT_GT] = ACTIONS(5298), - [anon_sym_GT_GT_GT] = ACTIONS(5296), - [anon_sym_EQ_EQ] = ACTIONS(5296), - [anon_sym_BANG_EQ] = ACTIONS(5296), - [anon_sym_GT_EQ] = ACTIONS(5296), - [anon_sym_LT_EQ] = ACTIONS(5296), - [anon_sym_DOT] = ACTIONS(5298), - [anon_sym_switch] = ACTIONS(5296), - [anon_sym_DOT_DOT] = ACTIONS(5296), - [anon_sym_and] = ACTIONS(5296), - [anon_sym_or] = ACTIONS(5298), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_PIPE_PIPE] = ACTIONS(5296), - [anon_sym_QMARK_QMARK] = ACTIONS(5296), - [anon_sym_from] = ACTIONS(5296), - [anon_sym_into] = ACTIONS(5296), - [anon_sym_join] = ACTIONS(5296), - [anon_sym_let] = ACTIONS(5296), - [anon_sym_orderby] = ACTIONS(5296), - [anon_sym_ascending] = ACTIONS(5296), - [anon_sym_descending] = ACTIONS(5296), - [anon_sym_group] = ACTIONS(5296), - [anon_sym_select] = ACTIONS(5296), - [anon_sym_as] = ACTIONS(5298), - [anon_sym_is] = ACTIONS(5296), - [anon_sym_DASH_GT] = ACTIONS(5296), - [anon_sym_with] = ACTIONS(5296), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504176,24 +516064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3632] = { - [sym__name] = STATE(4029), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2849), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(2831), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3768), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3632), [sym_preproc_endregion] = STATE(3632), [sym_preproc_line] = STATE(3632), @@ -504203,34 +516073,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3632), [sym_preproc_define] = STATE(3632), [sym_preproc_undef] = STATE(3632), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LPAREN] = ACTIONS(5955), - [anon_sym_ref] = ACTIONS(4088), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_readonly] = ACTIONS(5957), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5764), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504243,24 +516133,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3633] = { - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [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_preproc_region] = STATE(3633), [sym_preproc_endregion] = STATE(3633), [sym_preproc_line] = STATE(3633), @@ -504270,34 +516161,35 @@ 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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(4155), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(5961), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5676), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504310,6 +516202,8 @@ 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), @@ -504319,52 +516213,52 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5270), - [anon_sym_COMMA] = ACTIONS(5270), - [anon_sym_LPAREN] = ACTIONS(5270), - [anon_sym_LT] = ACTIONS(5272), - [anon_sym_GT] = ACTIONS(5272), - [anon_sym_where] = ACTIONS(5270), - [anon_sym_QMARK] = ACTIONS(5272), - [anon_sym_BANG] = ACTIONS(5272), - [anon_sym_PLUS_PLUS] = ACTIONS(5270), - [anon_sym_DASH_DASH] = ACTIONS(5270), - [anon_sym_PLUS] = ACTIONS(5272), - [anon_sym_DASH] = ACTIONS(5272), - [anon_sym_STAR] = ACTIONS(5270), - [anon_sym_SLASH] = ACTIONS(5272), - [anon_sym_PERCENT] = ACTIONS(5270), - [anon_sym_CARET] = ACTIONS(5270), - [anon_sym_PIPE] = ACTIONS(5272), - [anon_sym_AMP] = ACTIONS(5272), - [anon_sym_LT_LT] = ACTIONS(5270), - [anon_sym_GT_GT] = ACTIONS(5272), - [anon_sym_GT_GT_GT] = ACTIONS(5270), - [anon_sym_EQ_EQ] = ACTIONS(5270), - [anon_sym_BANG_EQ] = ACTIONS(5270), - [anon_sym_GT_EQ] = ACTIONS(5270), - [anon_sym_LT_EQ] = ACTIONS(5270), - [anon_sym_DOT] = ACTIONS(5272), - [anon_sym_switch] = ACTIONS(5270), - [anon_sym_DOT_DOT] = ACTIONS(5270), - [anon_sym_and] = ACTIONS(5270), - [anon_sym_or] = ACTIONS(5272), - [anon_sym_AMP_AMP] = ACTIONS(5270), - [anon_sym_PIPE_PIPE] = ACTIONS(5270), - [anon_sym_QMARK_QMARK] = ACTIONS(5270), - [anon_sym_from] = ACTIONS(5270), - [anon_sym_into] = ACTIONS(5270), - [anon_sym_join] = ACTIONS(5270), - [anon_sym_let] = ACTIONS(5270), - [anon_sym_orderby] = ACTIONS(5270), - [anon_sym_ascending] = ACTIONS(5270), - [anon_sym_descending] = ACTIONS(5270), - [anon_sym_group] = ACTIONS(5270), - [anon_sym_select] = ACTIONS(5270), - [anon_sym_as] = ACTIONS(5272), - [anon_sym_is] = ACTIONS(5270), - [anon_sym_DASH_GT] = ACTIONS(5270), - [anon_sym_with] = ACTIONS(5270), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504377,6 +516271,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_preproc_region] = STATE(3635), [sym_preproc_endregion] = STATE(3635), [sym_preproc_line] = STATE(3635), @@ -504386,52 +516298,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), - [anon_sym_LBRACK] = ACTIONS(4958), - [anon_sym_COMMA] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(4958), - [anon_sym_LT] = ACTIONS(4960), - [anon_sym_GT] = ACTIONS(4960), - [anon_sym_where] = ACTIONS(4958), - [anon_sym_QMARK] = ACTIONS(4960), - [anon_sym_BANG] = ACTIONS(4960), - [anon_sym_PLUS_PLUS] = ACTIONS(4958), - [anon_sym_DASH_DASH] = ACTIONS(4958), - [anon_sym_PLUS] = ACTIONS(4960), - [anon_sym_DASH] = ACTIONS(4960), - [anon_sym_STAR] = ACTIONS(4958), - [anon_sym_SLASH] = ACTIONS(4960), - [anon_sym_PERCENT] = ACTIONS(4958), - [anon_sym_CARET] = ACTIONS(4958), - [anon_sym_PIPE] = ACTIONS(4960), - [anon_sym_AMP] = ACTIONS(4960), - [anon_sym_LT_LT] = ACTIONS(4958), - [anon_sym_GT_GT] = ACTIONS(4960), - [anon_sym_GT_GT_GT] = ACTIONS(4958), - [anon_sym_EQ_EQ] = ACTIONS(4958), - [anon_sym_BANG_EQ] = ACTIONS(4958), - [anon_sym_GT_EQ] = ACTIONS(4958), - [anon_sym_LT_EQ] = ACTIONS(4958), - [anon_sym_DOT] = ACTIONS(4960), - [anon_sym_switch] = ACTIONS(4958), - [anon_sym_DOT_DOT] = ACTIONS(4958), - [anon_sym_and] = ACTIONS(4958), - [anon_sym_or] = ACTIONS(4960), - [anon_sym_AMP_AMP] = ACTIONS(4958), - [anon_sym_PIPE_PIPE] = ACTIONS(4958), - [anon_sym_QMARK_QMARK] = ACTIONS(4958), - [anon_sym_from] = ACTIONS(4958), - [anon_sym_into] = ACTIONS(4958), - [anon_sym_join] = ACTIONS(4958), - [anon_sym_let] = ACTIONS(4958), - [anon_sym_orderby] = ACTIONS(4958), - [anon_sym_ascending] = ACTIONS(4958), - [anon_sym_descending] = ACTIONS(4958), - [anon_sym_group] = ACTIONS(4958), - [anon_sym_select] = ACTIONS(4958), - [anon_sym_as] = ACTIONS(4960), - [anon_sym_is] = ACTIONS(4958), - [anon_sym_DASH_GT] = ACTIONS(4958), - [anon_sym_with] = ACTIONS(4958), + [aux_sym_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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504444,6 +516340,8 @@ 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_preproc_region] = STATE(3636), [sym_preproc_endregion] = STATE(3636), [sym_preproc_line] = STATE(3636), @@ -504453,52 +516351,52 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504520,52 +516418,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3637), [sym_preproc_define] = STATE(3637), [sym_preproc_undef] = STATE(3637), - [anon_sym_LBRACK] = ACTIONS(4954), - [anon_sym_COMMA] = ACTIONS(4954), - [anon_sym_LPAREN] = ACTIONS(4954), - [anon_sym_LT] = ACTIONS(4956), - [anon_sym_GT] = ACTIONS(4956), - [anon_sym_where] = ACTIONS(4954), - [anon_sym_QMARK] = ACTIONS(4956), - [anon_sym_BANG] = ACTIONS(4956), - [anon_sym_PLUS_PLUS] = ACTIONS(4954), - [anon_sym_DASH_DASH] = ACTIONS(4954), - [anon_sym_PLUS] = ACTIONS(4956), - [anon_sym_DASH] = ACTIONS(4956), - [anon_sym_STAR] = ACTIONS(4954), - [anon_sym_SLASH] = ACTIONS(4956), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_CARET] = ACTIONS(4954), - [anon_sym_PIPE] = ACTIONS(4956), - [anon_sym_AMP] = ACTIONS(4956), - [anon_sym_LT_LT] = ACTIONS(4954), - [anon_sym_GT_GT] = ACTIONS(4956), - [anon_sym_GT_GT_GT] = ACTIONS(4954), - [anon_sym_EQ_EQ] = ACTIONS(4954), - [anon_sym_BANG_EQ] = ACTIONS(4954), - [anon_sym_GT_EQ] = ACTIONS(4954), - [anon_sym_LT_EQ] = ACTIONS(4954), - [anon_sym_DOT] = ACTIONS(4956), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4954), - [anon_sym_and] = ACTIONS(4954), - [anon_sym_or] = ACTIONS(4956), - [anon_sym_AMP_AMP] = ACTIONS(4954), - [anon_sym_PIPE_PIPE] = ACTIONS(4954), - [anon_sym_QMARK_QMARK] = ACTIONS(4954), - [anon_sym_from] = ACTIONS(4954), - [anon_sym_into] = ACTIONS(4954), - [anon_sym_join] = ACTIONS(4954), - [anon_sym_let] = ACTIONS(4954), - [anon_sym_orderby] = ACTIONS(4954), - [anon_sym_ascending] = ACTIONS(4954), - [anon_sym_descending] = ACTIONS(4954), - [anon_sym_group] = ACTIONS(4954), - [anon_sym_select] = ACTIONS(4954), - [anon_sym_as] = ACTIONS(4956), - [anon_sym_is] = ACTIONS(4954), - [anon_sym_DASH_GT] = ACTIONS(4954), - [anon_sym_with] = ACTIONS(4954), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504578,6 +516478,8 @@ 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), @@ -504587,52 +516489,52 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504645,6 +516547,25 @@ 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_preproc_region] = STATE(3639), [sym_preproc_endregion] = STATE(3639), [sym_preproc_line] = STATE(3639), @@ -504654,52 +516575,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(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5963), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504712,6 +516616,25 @@ 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), @@ -504721,52 +516644,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4942), - [anon_sym_COMMA] = ACTIONS(4942), - [anon_sym_LPAREN] = ACTIONS(4942), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_where] = ACTIONS(4942), - [anon_sym_QMARK] = ACTIONS(4944), - [anon_sym_BANG] = ACTIONS(4944), - [anon_sym_PLUS_PLUS] = ACTIONS(4942), - [anon_sym_DASH_DASH] = ACTIONS(4942), - [anon_sym_PLUS] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_STAR] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4942), - [anon_sym_CARET] = ACTIONS(4942), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_AMP] = ACTIONS(4944), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4944), - [anon_sym_GT_GT_GT] = ACTIONS(4942), - [anon_sym_EQ_EQ] = ACTIONS(4942), - [anon_sym_BANG_EQ] = ACTIONS(4942), - [anon_sym_GT_EQ] = ACTIONS(4942), - [anon_sym_LT_EQ] = ACTIONS(4942), - [anon_sym_DOT] = ACTIONS(4944), - [anon_sym_switch] = ACTIONS(4942), - [anon_sym_DOT_DOT] = ACTIONS(4942), - [anon_sym_and] = ACTIONS(4942), - [anon_sym_or] = ACTIONS(4944), - [anon_sym_AMP_AMP] = ACTIONS(4942), - [anon_sym_PIPE_PIPE] = ACTIONS(4942), - [anon_sym_QMARK_QMARK] = ACTIONS(4942), - [anon_sym_from] = ACTIONS(4942), - [anon_sym_into] = ACTIONS(4942), - [anon_sym_join] = ACTIONS(4942), - [anon_sym_let] = ACTIONS(4942), - [anon_sym_orderby] = ACTIONS(4942), - [anon_sym_ascending] = ACTIONS(4942), - [anon_sym_descending] = ACTIONS(4942), - [anon_sym_group] = ACTIONS(4942), - [anon_sym_select] = ACTIONS(4942), - [anon_sym_as] = ACTIONS(4944), - [anon_sym_is] = ACTIONS(4942), - [anon_sym_DASH_GT] = ACTIONS(4942), - [anon_sym_with] = ACTIONS(4942), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504779,25 +516685,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3641] = { - [sym_variable_declaration] = STATE(7316), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5743), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -504807,33 +516713,35 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504846,15 +516754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3642] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3642), [sym_preproc_endregion] = STATE(3642), [sym_preproc_line] = STATE(3642), @@ -504864,43 +516763,54 @@ 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(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_SEMI] = ACTIONS(3393), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_in] = ACTIONS(3395), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_operator] = ACTIONS(3395), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_this] = ACTIONS(3395), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_EQ_GT] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_when] = ACTIONS(3549), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), + [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), @@ -504913,6 +516823,7 @@ 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), @@ -504922,52 +516833,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), - [anon_sym_LBRACK] = ACTIONS(4890), - [anon_sym_COMMA] = ACTIONS(4890), - [anon_sym_LPAREN] = ACTIONS(4890), - [anon_sym_LT] = ACTIONS(4892), - [anon_sym_GT] = ACTIONS(4892), - [anon_sym_where] = ACTIONS(4890), - [anon_sym_QMARK] = ACTIONS(4892), - [anon_sym_BANG] = ACTIONS(4892), - [anon_sym_PLUS_PLUS] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4890), - [anon_sym_PLUS] = ACTIONS(4892), - [anon_sym_DASH] = ACTIONS(4892), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_SLASH] = ACTIONS(4892), - [anon_sym_PERCENT] = ACTIONS(4890), - [anon_sym_CARET] = ACTIONS(4890), - [anon_sym_PIPE] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_LT_LT] = ACTIONS(4890), - [anon_sym_GT_GT] = ACTIONS(4892), - [anon_sym_GT_GT_GT] = ACTIONS(4890), - [anon_sym_EQ_EQ] = ACTIONS(4890), - [anon_sym_BANG_EQ] = ACTIONS(4890), - [anon_sym_GT_EQ] = ACTIONS(4890), - [anon_sym_LT_EQ] = ACTIONS(4890), - [anon_sym_DOT] = ACTIONS(4892), - [anon_sym_switch] = ACTIONS(4890), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_and] = ACTIONS(4890), - [anon_sym_or] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_PIPE_PIPE] = ACTIONS(4890), - [anon_sym_QMARK_QMARK] = ACTIONS(4890), - [anon_sym_from] = ACTIONS(4890), - [anon_sym_into] = ACTIONS(4890), - [anon_sym_join] = ACTIONS(4890), - [anon_sym_let] = ACTIONS(4890), - [anon_sym_orderby] = ACTIONS(4890), - [anon_sym_ascending] = ACTIONS(4890), - [anon_sym_descending] = ACTIONS(4890), - [anon_sym_group] = ACTIONS(4890), - [anon_sym_select] = ACTIONS(4890), - [anon_sym_as] = ACTIONS(4892), - [anon_sym_is] = ACTIONS(4890), - [anon_sym_DASH_GT] = ACTIONS(4890), - [anon_sym_with] = ACTIONS(4890), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -504980,6 +516892,25 @@ 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), @@ -504989,52 +516920,35 @@ 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), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_COMMA] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(5965), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_GT] = ACTIONS(1969), - [anon_sym_where] = ACTIONS(1971), - [anon_sym_QMARK] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_PLUS_PLUS] = ACTIONS(1971), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_PLUS] = ACTIONS(1969), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(1969), - [anon_sym_PERCENT] = ACTIONS(1971), - [anon_sym_CARET] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_LT_LT] = ACTIONS(1971), - [anon_sym_GT_GT] = ACTIONS(1969), - [anon_sym_GT_GT_GT] = ACTIONS(1971), - [anon_sym_EQ_EQ] = ACTIONS(1971), - [anon_sym_BANG_EQ] = ACTIONS(1971), - [anon_sym_GT_EQ] = ACTIONS(1971), - [anon_sym_LT_EQ] = ACTIONS(1971), - [anon_sym_DOT] = ACTIONS(1969), - [anon_sym_switch] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1971), - [anon_sym_and] = ACTIONS(1971), - [anon_sym_or] = ACTIONS(1969), - [anon_sym_AMP_AMP] = ACTIONS(1971), - [anon_sym_PIPE_PIPE] = ACTIONS(1971), - [anon_sym_QMARK_QMARK] = ACTIONS(1971), - [anon_sym_from] = ACTIONS(1971), - [anon_sym_into] = ACTIONS(1971), - [anon_sym_join] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_orderby] = ACTIONS(1971), - [anon_sym_ascending] = ACTIONS(1971), - [anon_sym_descending] = ACTIONS(1971), - [anon_sym_group] = ACTIONS(1971), - [anon_sym_select] = ACTIONS(1971), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_is] = ACTIONS(1971), - [anon_sym_DASH_GT] = ACTIONS(1971), - [anon_sym_with] = ACTIONS(1971), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505056,52 +516970,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3645), [sym_preproc_define] = STATE(3645), [sym_preproc_undef] = STATE(3645), - [aux_sym__query_body_repeat2] = STATE(3731), - [anon_sym_SEMI] = ACTIONS(5833), - [anon_sym_LBRACK] = ACTIONS(5833), - [anon_sym_COMMA] = ACTIONS(5833), - [anon_sym_RBRACK] = ACTIONS(5833), - [anon_sym_LPAREN] = ACTIONS(5833), - [anon_sym_RPAREN] = ACTIONS(5833), - [anon_sym_RBRACE] = ACTIONS(5833), - [anon_sym_LT] = ACTIONS(5835), - [anon_sym_GT] = ACTIONS(5835), - [anon_sym_in] = ACTIONS(5835), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(5835), - [anon_sym_PLUS_PLUS] = ACTIONS(5833), - [anon_sym_DASH_DASH] = ACTIONS(5833), - [anon_sym_PLUS] = ACTIONS(5835), - [anon_sym_DASH] = ACTIONS(5835), - [anon_sym_STAR] = ACTIONS(5833), - [anon_sym_SLASH] = ACTIONS(5835), - [anon_sym_PERCENT] = ACTIONS(5833), - [anon_sym_CARET] = ACTIONS(5833), - [anon_sym_PIPE] = ACTIONS(5835), - [anon_sym_AMP] = ACTIONS(5835), - [anon_sym_LT_LT] = ACTIONS(5833), - [anon_sym_GT_GT] = ACTIONS(5835), - [anon_sym_GT_GT_GT] = ACTIONS(5833), - [anon_sym_EQ_EQ] = ACTIONS(5833), - [anon_sym_BANG_EQ] = ACTIONS(5833), - [anon_sym_GT_EQ] = ACTIONS(5833), - [anon_sym_LT_EQ] = ACTIONS(5833), - [anon_sym_DOT] = ACTIONS(5835), - [anon_sym_switch] = ACTIONS(5833), - [anon_sym_DOT_DOT] = ACTIONS(5833), - [anon_sym_and] = ACTIONS(5833), - [anon_sym_or] = ACTIONS(5833), - [anon_sym_AMP_AMP] = ACTIONS(5833), - [anon_sym_PIPE_PIPE] = ACTIONS(5833), - [anon_sym_QMARK_QMARK] = ACTIONS(5833), - [anon_sym_into] = ACTIONS(5967), - [anon_sym_as] = ACTIONS(5833), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(5833), - [anon_sym_with] = ACTIONS(5833), - [aux_sym_preproc_if_token3] = ACTIONS(5833), - [aux_sym_preproc_else_token1] = ACTIONS(5833), - [aux_sym_preproc_elif_token1] = ACTIONS(5833), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505123,52 +517039,54 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4938), - [anon_sym_COMMA] = ACTIONS(4938), - [anon_sym_LPAREN] = ACTIONS(4938), - [anon_sym_LT] = ACTIONS(4940), - [anon_sym_GT] = ACTIONS(4940), - [anon_sym_where] = ACTIONS(4938), - [anon_sym_QMARK] = ACTIONS(4940), - [anon_sym_BANG] = ACTIONS(4940), - [anon_sym_PLUS_PLUS] = ACTIONS(4938), - [anon_sym_DASH_DASH] = ACTIONS(4938), - [anon_sym_PLUS] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_STAR] = ACTIONS(4938), - [anon_sym_SLASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4938), - [anon_sym_CARET] = ACTIONS(4938), - [anon_sym_PIPE] = ACTIONS(4940), - [anon_sym_AMP] = ACTIONS(4940), - [anon_sym_LT_LT] = ACTIONS(4938), - [anon_sym_GT_GT] = ACTIONS(4940), - [anon_sym_GT_GT_GT] = ACTIONS(4938), - [anon_sym_EQ_EQ] = ACTIONS(4938), - [anon_sym_BANG_EQ] = ACTIONS(4938), - [anon_sym_GT_EQ] = ACTIONS(4938), - [anon_sym_LT_EQ] = ACTIONS(4938), - [anon_sym_DOT] = ACTIONS(4940), - [anon_sym_switch] = ACTIONS(4938), - [anon_sym_DOT_DOT] = ACTIONS(4938), - [anon_sym_and] = ACTIONS(4938), - [anon_sym_or] = ACTIONS(4940), - [anon_sym_AMP_AMP] = ACTIONS(4938), - [anon_sym_PIPE_PIPE] = ACTIONS(4938), - [anon_sym_QMARK_QMARK] = ACTIONS(4938), - [anon_sym_from] = ACTIONS(4938), - [anon_sym_into] = ACTIONS(4938), - [anon_sym_join] = ACTIONS(4938), - [anon_sym_let] = ACTIONS(4938), - [anon_sym_orderby] = ACTIONS(4938), - [anon_sym_ascending] = ACTIONS(4938), - [anon_sym_descending] = ACTIONS(4938), - [anon_sym_group] = ACTIONS(4938), - [anon_sym_select] = ACTIONS(4938), - [anon_sym_as] = ACTIONS(4940), - [anon_sym_is] = ACTIONS(4938), - [anon_sym_DASH_GT] = ACTIONS(4938), - [anon_sym_with] = ACTIONS(4938), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505181,24 +517099,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3647] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5890), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3647), [sym_preproc_endregion] = STATE(3647), [sym_preproc_line] = STATE(3647), @@ -505208,34 +517127,35 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505248,24 +517168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3648] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2849), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(2831), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), + [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), @@ -505275,34 +517179,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3648), [sym_preproc_define] = STATE(3648), [sym_preproc_undef] = STATE(3648), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LPAREN] = ACTIONS(5955), - [anon_sym_ref] = ACTIONS(4169), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_readonly] = ACTIONS(5969), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5722), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505315,6 +517237,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_preproc_region] = STATE(3649), [sym_preproc_endregion] = STATE(3649), [sym_preproc_line] = STATE(3649), @@ -505324,52 +517248,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(4835), - [anon_sym_COMMA] = ACTIONS(4835), - [anon_sym_LPAREN] = ACTIONS(4835), - [anon_sym_LT] = ACTIONS(4837), - [anon_sym_GT] = ACTIONS(4837), - [anon_sym_where] = ACTIONS(4835), - [anon_sym_QMARK] = ACTIONS(4837), - [anon_sym_BANG] = ACTIONS(4837), - [anon_sym_PLUS_PLUS] = ACTIONS(4835), - [anon_sym_DASH_DASH] = ACTIONS(4835), - [anon_sym_PLUS] = ACTIONS(4837), - [anon_sym_DASH] = ACTIONS(4837), - [anon_sym_STAR] = ACTIONS(4835), - [anon_sym_SLASH] = ACTIONS(4837), - [anon_sym_PERCENT] = ACTIONS(4835), - [anon_sym_CARET] = ACTIONS(4835), - [anon_sym_PIPE] = ACTIONS(4837), - [anon_sym_AMP] = ACTIONS(4837), - [anon_sym_LT_LT] = ACTIONS(4835), - [anon_sym_GT_GT] = ACTIONS(4837), - [anon_sym_GT_GT_GT] = ACTIONS(4835), - [anon_sym_EQ_EQ] = ACTIONS(4835), - [anon_sym_BANG_EQ] = ACTIONS(4835), - [anon_sym_GT_EQ] = ACTIONS(4835), - [anon_sym_LT_EQ] = ACTIONS(4835), - [anon_sym_DOT] = ACTIONS(4837), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4835), - [anon_sym_and] = ACTIONS(4835), - [anon_sym_or] = ACTIONS(4837), - [anon_sym_AMP_AMP] = ACTIONS(4835), - [anon_sym_PIPE_PIPE] = ACTIONS(4835), - [anon_sym_QMARK_QMARK] = ACTIONS(4835), - [anon_sym_from] = ACTIONS(4835), - [anon_sym_into] = ACTIONS(4835), - [anon_sym_join] = ACTIONS(4835), - [anon_sym_let] = ACTIONS(4835), - [anon_sym_orderby] = ACTIONS(4835), - [anon_sym_ascending] = ACTIONS(4835), - [anon_sym_descending] = ACTIONS(4835), - [anon_sym_group] = ACTIONS(4835), - [anon_sym_select] = ACTIONS(4835), - [anon_sym_as] = ACTIONS(4837), - [anon_sym_is] = ACTIONS(4835), - [anon_sym_DASH_GT] = ACTIONS(4835), - [anon_sym_with] = ACTIONS(4835), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505391,52 +517314,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3650), [sym_preproc_define] = STATE(3650), [sym_preproc_undef] = STATE(3650), - [sym__identifier_token] = ACTIONS(5152), - [anon_sym_extern] = ACTIONS(5152), - [anon_sym_alias] = ACTIONS(5152), - [anon_sym_global] = ACTIONS(5152), - [anon_sym_unsafe] = ACTIONS(5152), - [anon_sym_static] = ACTIONS(5152), - [anon_sym_LPAREN] = ACTIONS(5154), - [anon_sym_ref] = ACTIONS(5152), - [anon_sym_delegate] = ACTIONS(5152), - [anon_sym_abstract] = ACTIONS(5152), - [anon_sym_async] = ACTIONS(5152), - [anon_sym_const] = ACTIONS(5152), - [anon_sym_file] = ACTIONS(5152), - [anon_sym_fixed] = ACTIONS(5152), - [anon_sym_internal] = ACTIONS(5152), - [anon_sym_new] = ACTIONS(5152), - [anon_sym_override] = ACTIONS(5152), - [anon_sym_partial] = ACTIONS(5152), - [anon_sym_private] = ACTIONS(5152), - [anon_sym_protected] = ACTIONS(5152), - [anon_sym_public] = ACTIONS(5152), - [anon_sym_readonly] = ACTIONS(5152), - [anon_sym_required] = ACTIONS(5152), - [anon_sym_sealed] = ACTIONS(5152), - [anon_sym_virtual] = ACTIONS(5152), - [anon_sym_volatile] = ACTIONS(5152), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_notnull] = ACTIONS(5152), - [anon_sym_unmanaged] = ACTIONS(5152), - [anon_sym_scoped] = ACTIONS(5152), - [anon_sym_var] = ACTIONS(5152), - [sym_predefined_type] = ACTIONS(5152), - [anon_sym_yield] = ACTIONS(5152), - [anon_sym_when] = 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_ascending] = ACTIONS(5152), - [anon_sym_descending] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505449,15 +517373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3651] = { - [sym__name] = STATE(5124), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(2107), - [sym_ref_type] = STATE(2264), - [sym__scoped_base_type] = STATE(2265), - [sym_identifier] = STATE(4264), - [sym__reserved_identifier] = STATE(2106), [sym_preproc_region] = STATE(3651), [sym_preproc_endregion] = STATE(3651), [sym_preproc_line] = STATE(3651), @@ -505467,43 +517382,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), - [sym__identifier_token] = ACTIONS(3546), - [anon_sym_alias] = ACTIONS(3549), - [anon_sym_global] = ACTIONS(3549), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_COMMA] = ACTIONS(3393), - [anon_sym_LPAREN] = ACTIONS(3393), - [anon_sym_RPAREN] = ACTIONS(3393), - [anon_sym_ref] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3393), - [anon_sym_file] = ACTIONS(3549), - [anon_sym_LT] = ACTIONS(3393), - [anon_sym_where] = ACTIONS(3549), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_notnull] = ACTIONS(3549), - [anon_sym_unmanaged] = ACTIONS(3549), - [anon_sym_STAR] = ACTIONS(3393), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_scoped] = ACTIONS(3549), - [anon_sym_COLON_COLON] = ACTIONS(3393), - [anon_sym_var] = ACTIONS(3549), - [anon_sym_yield] = ACTIONS(3549), - [anon_sym_when] = ACTIONS(3549), - [sym_discard] = ACTIONS(3395), - [anon_sym_and] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3395), - [anon_sym_from] = ACTIONS(3549), - [anon_sym_into] = ACTIONS(3549), - [anon_sym_join] = ACTIONS(3549), - [anon_sym_on] = ACTIONS(3549), - [anon_sym_equals] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3549), - [anon_sym_orderby] = ACTIONS(3549), - [anon_sym_ascending] = ACTIONS(3549), - [anon_sym_descending] = ACTIONS(3549), - [anon_sym_group] = ACTIONS(3549), - [anon_sym_by] = ACTIONS(3549), - [anon_sym_select] = ACTIONS(3549), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505516,24 +517441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3652] = { - [sym__name] = STATE(4355), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_type] = STATE(4328), - [sym_implicit_type] = STATE(4266), - [sym_array_type] = STATE(4315), - [sym__array_base_type] = STATE(6996), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7242), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(4266), - [sym_scoped_type] = STATE(4266), - [sym_tuple_type] = STATE(4317), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), [sym_preproc_region] = STATE(3652), [sym_preproc_endregion] = STATE(3652), [sym_preproc_line] = STATE(3652), @@ -505543,34 +517450,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(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(5971), - [anon_sym_ref] = ACTIONS(3913), - [anon_sym_delegate] = ACTIONS(5622), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_readonly] = ACTIONS(5973), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_scoped] = ACTIONS(5636), - [anon_sym_var] = ACTIONS(5626), - [sym_predefined_type] = ACTIONS(5628), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_when] = 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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505583,24 +517509,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3653] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3653), [sym_preproc_endregion] = STATE(3653), [sym_preproc_line] = STATE(3653), @@ -505610,34 +517518,53 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5368), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(5975), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5376), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505650,6 +517577,8 @@ 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), @@ -505659,52 +517588,51 @@ 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(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_LT] = ACTIONS(4888), - [anon_sym_GT] = ACTIONS(4888), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(4888), - [anon_sym_BANG] = ACTIONS(4888), - [anon_sym_PLUS_PLUS] = ACTIONS(4886), - [anon_sym_DASH_DASH] = ACTIONS(4886), - [anon_sym_PLUS] = ACTIONS(4888), - [anon_sym_DASH] = ACTIONS(4888), - [anon_sym_STAR] = ACTIONS(4886), - [anon_sym_SLASH] = ACTIONS(4888), - [anon_sym_PERCENT] = ACTIONS(4886), - [anon_sym_CARET] = ACTIONS(4886), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_AMP] = ACTIONS(4888), - [anon_sym_LT_LT] = ACTIONS(4886), - [anon_sym_GT_GT] = ACTIONS(4888), - [anon_sym_GT_GT_GT] = ACTIONS(4886), - [anon_sym_EQ_EQ] = ACTIONS(4886), - [anon_sym_BANG_EQ] = ACTIONS(4886), - [anon_sym_GT_EQ] = ACTIONS(4886), - [anon_sym_LT_EQ] = ACTIONS(4886), - [anon_sym_DOT] = ACTIONS(4888), - [anon_sym_switch] = ACTIONS(4886), - [anon_sym_DOT_DOT] = ACTIONS(4886), - [anon_sym_and] = ACTIONS(4886), - [anon_sym_or] = ACTIONS(4888), - [anon_sym_AMP_AMP] = ACTIONS(4886), - [anon_sym_PIPE_PIPE] = ACTIONS(4886), - [anon_sym_QMARK_QMARK] = ACTIONS(4886), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_ascending] = ACTIONS(4886), - [anon_sym_descending] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(4888), - [anon_sym_is] = ACTIONS(4886), - [anon_sym_DASH_GT] = ACTIONS(4886), - [anon_sym_with] = ACTIONS(4886), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505717,25 +517645,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3655] = { - [sym_variable_declaration] = STATE(7238), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5540), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -505745,33 +517656,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3655), [sym_preproc_define] = STATE(3655), [sym_preproc_undef] = STATE(3655), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505793,52 +517722,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3656), [sym_preproc_define] = STATE(3656), [sym_preproc_undef] = STATE(3656), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_COMMA] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_LT] = ACTIONS(5286), - [anon_sym_GT] = ACTIONS(5286), - [anon_sym_where] = ACTIONS(3743), - [anon_sym_QMARK] = ACTIONS(5286), - [anon_sym_BANG] = ACTIONS(5286), - [anon_sym_PLUS_PLUS] = ACTIONS(3743), - [anon_sym_DASH_DASH] = ACTIONS(3743), - [anon_sym_PLUS] = ACTIONS(5286), - [anon_sym_DASH] = ACTIONS(5286), - [anon_sym_STAR] = ACTIONS(3743), - [anon_sym_SLASH] = ACTIONS(5286), - [anon_sym_PERCENT] = ACTIONS(3743), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_PIPE] = ACTIONS(5286), - [anon_sym_AMP] = ACTIONS(5286), - [anon_sym_LT_LT] = ACTIONS(3743), - [anon_sym_GT_GT] = ACTIONS(5286), - [anon_sym_GT_GT_GT] = ACTIONS(3743), - [anon_sym_EQ_EQ] = ACTIONS(3743), - [anon_sym_BANG_EQ] = ACTIONS(3743), - [anon_sym_GT_EQ] = ACTIONS(3743), - [anon_sym_LT_EQ] = ACTIONS(3743), - [anon_sym_DOT] = ACTIONS(5286), - [anon_sym_switch] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3743), - [anon_sym_and] = ACTIONS(3743), - [anon_sym_or] = ACTIONS(5286), - [anon_sym_AMP_AMP] = ACTIONS(3743), - [anon_sym_PIPE_PIPE] = ACTIONS(3743), - [anon_sym_QMARK_QMARK] = ACTIONS(3743), - [anon_sym_from] = ACTIONS(3743), - [anon_sym_into] = ACTIONS(3743), - [anon_sym_join] = ACTIONS(3743), - [anon_sym_let] = ACTIONS(3743), - [anon_sym_orderby] = ACTIONS(3743), - [anon_sym_ascending] = ACTIONS(3743), - [anon_sym_descending] = ACTIONS(3743), - [anon_sym_group] = ACTIONS(3743), - [anon_sym_select] = ACTIONS(3743), - [anon_sym_as] = ACTIONS(5286), - [anon_sym_is] = ACTIONS(3743), - [anon_sym_DASH_GT] = ACTIONS(3743), - [anon_sym_with] = ACTIONS(3743), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505860,52 +517790,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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5264), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505918,24 +517849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3658] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5895), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3658), [sym_preproc_endregion] = STATE(3658), [sym_preproc_line] = STATE(3658), @@ -505945,34 +517860,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -505985,24 +517917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3659] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2849), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(2831), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3659), [sym_preproc_endregion] = STATE(3659), [sym_preproc_line] = STATE(3659), @@ -506012,34 +517926,53 @@ 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), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LPAREN] = ACTIONS(5955), - [anon_sym_ref] = ACTIONS(4167), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_readonly] = ACTIONS(5977), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5682), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506052,8 +517985,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3660] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3660), [sym_preproc_endregion] = STATE(3660), [sym_preproc_line] = STATE(3660), @@ -506063,50 +517994,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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506119,6 +518053,8 @@ 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), @@ -506128,52 +518064,51 @@ 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(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_where] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_switch] = ACTIONS(3083), - [anon_sym_DOT_DOT] = ACTIONS(3083), - [anon_sym_and] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_QMARK_QMARK] = ACTIONS(3083), - [anon_sym_from] = ACTIONS(3083), - [anon_sym_into] = ACTIONS(3083), - [anon_sym_join] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3083), - [anon_sym_orderby] = ACTIONS(3083), - [anon_sym_ascending] = ACTIONS(3083), - [anon_sym_descending] = ACTIONS(3083), - [anon_sym_group] = ACTIONS(3083), - [anon_sym_select] = ACTIONS(3083), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3083), - [anon_sym_with] = ACTIONS(3083), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506186,8 +518121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3662] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3662), [sym_preproc_endregion] = STATE(3662), [sym_preproc_line] = STATE(3662), @@ -506197,50 +518130,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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5656), - [anon_sym_SLASH] = ACTIONS(5658), - [anon_sym_PERCENT] = ACTIONS(5656), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506253,8 +518189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3663] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3663), [sym_preproc_endregion] = STATE(3663), [sym_preproc_line] = STATE(3663), @@ -506264,50 +518198,53 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5564), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5564), - [anon_sym_into] = ACTIONS(5564), - [anon_sym_join] = ACTIONS(5564), - [anon_sym_let] = ACTIONS(5564), - [anon_sym_orderby] = ACTIONS(5564), - [anon_sym_ascending] = ACTIONS(5564), - [anon_sym_descending] = ACTIONS(5564), - [anon_sym_group] = ACTIONS(5564), - [anon_sym_select] = ACTIONS(5564), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506320,8 +518257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3664] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3664), [sym_preproc_endregion] = STATE(3664), [sym_preproc_line] = STATE(3664), @@ -506331,50 +518266,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3664), [sym_preproc_define] = STATE(3664), [sym_preproc_undef] = STATE(3664), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5658), - [anon_sym_DASH] = ACTIONS(5658), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5656), - [anon_sym_GT_GT] = ACTIONS(5658), - [anon_sym_GT_GT_GT] = ACTIONS(5656), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506387,8 +518325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3665] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3665), [sym_preproc_endregion] = STATE(3665), [sym_preproc_line] = STATE(3665), @@ -506398,50 +518334,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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5658), - [anon_sym_GT] = ACTIONS(5658), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(5656), - [anon_sym_LT_EQ] = ACTIONS(5656), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5658), - [anon_sym_is] = ACTIONS(5656), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506463,52 +518402,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), - [anon_sym_LBRACK] = ACTIONS(4730), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_LPAREN] = ACTIONS(4730), - [anon_sym_LT] = ACTIONS(4732), - [anon_sym_GT] = ACTIONS(4732), - [anon_sym_where] = ACTIONS(4730), - [anon_sym_QMARK] = ACTIONS(4732), - [anon_sym_BANG] = ACTIONS(4732), - [anon_sym_PLUS_PLUS] = ACTIONS(4730), - [anon_sym_DASH_DASH] = ACTIONS(4730), - [anon_sym_PLUS] = ACTIONS(4732), - [anon_sym_DASH] = ACTIONS(4732), - [anon_sym_STAR] = ACTIONS(4730), - [anon_sym_SLASH] = ACTIONS(4732), - [anon_sym_PERCENT] = ACTIONS(4730), - [anon_sym_CARET] = ACTIONS(4730), - [anon_sym_PIPE] = ACTIONS(4732), - [anon_sym_AMP] = ACTIONS(4732), - [anon_sym_LT_LT] = ACTIONS(4730), - [anon_sym_GT_GT] = ACTIONS(4732), - [anon_sym_GT_GT_GT] = ACTIONS(4730), - [anon_sym_EQ_EQ] = ACTIONS(4730), - [anon_sym_BANG_EQ] = ACTIONS(4730), - [anon_sym_GT_EQ] = ACTIONS(4730), - [anon_sym_LT_EQ] = ACTIONS(4730), - [anon_sym_DOT] = ACTIONS(4732), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4730), - [anon_sym_and] = ACTIONS(4730), - [anon_sym_or] = ACTIONS(4732), - [anon_sym_AMP_AMP] = ACTIONS(4730), - [anon_sym_PIPE_PIPE] = ACTIONS(4730), - [anon_sym_QMARK_QMARK] = ACTIONS(4730), - [anon_sym_from] = ACTIONS(4730), - [anon_sym_into] = ACTIONS(4730), - [anon_sym_join] = ACTIONS(4730), - [anon_sym_let] = ACTIONS(4730), - [anon_sym_orderby] = ACTIONS(4730), - [anon_sym_ascending] = ACTIONS(4730), - [anon_sym_descending] = ACTIONS(4730), - [anon_sym_group] = ACTIONS(4730), - [anon_sym_select] = ACTIONS(4730), - [anon_sym_as] = ACTIONS(4732), - [anon_sym_is] = ACTIONS(4730), - [anon_sym_DASH_GT] = ACTIONS(4730), - [anon_sym_with] = ACTIONS(4730), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506521,25 +518461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3667] = { - [sym_variable_declaration] = STATE(7120), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5743), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3667), [sym_preproc_endregion] = STATE(3667), [sym_preproc_line] = STATE(3667), @@ -506549,33 +518470,53 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506588,6 +518529,24 @@ 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_preproc_region] = STATE(3668), [sym_preproc_endregion] = STATE(3668), [sym_preproc_line] = STATE(3668), @@ -506597,52 +518556,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3668), [sym_preproc_define] = STATE(3668), [sym_preproc_undef] = STATE(3668), - [anon_sym_LBRACK] = ACTIONS(4910), - [anon_sym_COMMA] = ACTIONS(4910), - [anon_sym_LPAREN] = ACTIONS(4910), - [anon_sym_LT] = ACTIONS(4912), - [anon_sym_GT] = ACTIONS(4912), - [anon_sym_where] = ACTIONS(4910), - [anon_sym_QMARK] = ACTIONS(4912), - [anon_sym_BANG] = ACTIONS(4912), - [anon_sym_PLUS_PLUS] = ACTIONS(4910), - [anon_sym_DASH_DASH] = ACTIONS(4910), - [anon_sym_PLUS] = ACTIONS(4912), - [anon_sym_DASH] = ACTIONS(4912), - [anon_sym_STAR] = ACTIONS(4910), - [anon_sym_SLASH] = ACTIONS(4912), - [anon_sym_PERCENT] = ACTIONS(4910), - [anon_sym_CARET] = ACTIONS(4910), - [anon_sym_PIPE] = ACTIONS(4912), - [anon_sym_AMP] = ACTIONS(4912), - [anon_sym_LT_LT] = ACTIONS(4910), - [anon_sym_GT_GT] = ACTIONS(4912), - [anon_sym_GT_GT_GT] = ACTIONS(4910), - [anon_sym_EQ_EQ] = ACTIONS(4910), - [anon_sym_BANG_EQ] = ACTIONS(4910), - [anon_sym_GT_EQ] = ACTIONS(4910), - [anon_sym_LT_EQ] = ACTIONS(4910), - [anon_sym_DOT] = ACTIONS(4912), - [anon_sym_switch] = ACTIONS(4910), - [anon_sym_DOT_DOT] = ACTIONS(4910), - [anon_sym_and] = ACTIONS(4910), - [anon_sym_or] = ACTIONS(4912), - [anon_sym_AMP_AMP] = ACTIONS(4910), - [anon_sym_PIPE_PIPE] = ACTIONS(4910), - [anon_sym_QMARK_QMARK] = ACTIONS(4910), - [anon_sym_from] = ACTIONS(4910), - [anon_sym_into] = ACTIONS(4910), - [anon_sym_join] = ACTIONS(4910), - [anon_sym_let] = ACTIONS(4910), - [anon_sym_orderby] = ACTIONS(4910), - [anon_sym_ascending] = ACTIONS(4910), - [anon_sym_descending] = ACTIONS(4910), - [anon_sym_group] = ACTIONS(4910), - [anon_sym_select] = ACTIONS(4910), - [anon_sym_as] = ACTIONS(4912), - [anon_sym_is] = ACTIONS(4910), - [anon_sym_DASH_GT] = ACTIONS(4910), - [anon_sym_with] = ACTIONS(4910), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506655,24 +518597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3669] = { - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3080), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3103), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3669), [sym_preproc_endregion] = STATE(3669), [sym_preproc_line] = STATE(3669), @@ -506682,34 +518608,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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(5947), - [anon_sym_ref] = ACTIONS(4094), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_readonly] = ACTIONS(6013), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5746), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506722,6 +518665,23 @@ 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), @@ -506731,52 +518691,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3670), [sym_preproc_define] = STATE(3670), [sym_preproc_undef] = STATE(3670), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4684), - [anon_sym_LPAREN] = ACTIONS(4684), - [anon_sym_LT] = ACTIONS(4686), - [anon_sym_GT] = ACTIONS(4686), - [anon_sym_where] = ACTIONS(4684), - [anon_sym_QMARK] = ACTIONS(4686), - [anon_sym_BANG] = ACTIONS(4686), - [anon_sym_PLUS_PLUS] = ACTIONS(4684), - [anon_sym_DASH_DASH] = ACTIONS(4684), - [anon_sym_PLUS] = ACTIONS(4686), - [anon_sym_DASH] = ACTIONS(4686), - [anon_sym_STAR] = ACTIONS(4684), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_PERCENT] = ACTIONS(4684), - [anon_sym_CARET] = ACTIONS(4684), - [anon_sym_PIPE] = ACTIONS(4686), - [anon_sym_AMP] = ACTIONS(4686), - [anon_sym_LT_LT] = ACTIONS(4684), - [anon_sym_GT_GT] = ACTIONS(4686), - [anon_sym_GT_GT_GT] = ACTIONS(4684), - [anon_sym_EQ_EQ] = ACTIONS(4684), - [anon_sym_BANG_EQ] = ACTIONS(4684), - [anon_sym_GT_EQ] = ACTIONS(4684), - [anon_sym_LT_EQ] = ACTIONS(4684), - [anon_sym_DOT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4684), - [anon_sym_DOT_DOT] = ACTIONS(4684), - [anon_sym_and] = ACTIONS(4684), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4684), - [anon_sym_PIPE_PIPE] = ACTIONS(4684), - [anon_sym_QMARK_QMARK] = ACTIONS(4684), - [anon_sym_from] = ACTIONS(4684), - [anon_sym_into] = ACTIONS(4684), - [anon_sym_join] = ACTIONS(4684), - [anon_sym_let] = ACTIONS(4684), - [anon_sym_orderby] = ACTIONS(4684), - [anon_sym_ascending] = ACTIONS(4684), - [anon_sym_descending] = ACTIONS(4684), - [anon_sym_group] = ACTIONS(4684), - [anon_sym_select] = ACTIONS(4684), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4684), - [anon_sym_DASH_GT] = ACTIONS(4684), - [anon_sym_with] = ACTIONS(4684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506789,25 +518733,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3671] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6961), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3671), [sym_preproc_endregion] = STATE(3671), [sym_preproc_line] = STATE(3671), @@ -506817,33 +518744,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506856,6 +518801,8 @@ 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), @@ -506865,52 +518812,51 @@ 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(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_LPAREN] = ACTIONS(4982), - [anon_sym_LT] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_where] = ACTIONS(4982), - [anon_sym_QMARK] = ACTIONS(4984), - [anon_sym_BANG] = ACTIONS(4984), - [anon_sym_PLUS_PLUS] = ACTIONS(4982), - [anon_sym_DASH_DASH] = ACTIONS(4982), - [anon_sym_PLUS] = ACTIONS(4984), - [anon_sym_DASH] = ACTIONS(4984), - [anon_sym_STAR] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4984), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_CARET] = ACTIONS(4982), - [anon_sym_PIPE] = ACTIONS(4984), - [anon_sym_AMP] = ACTIONS(4984), - [anon_sym_LT_LT] = ACTIONS(4982), - [anon_sym_GT_GT] = ACTIONS(4984), - [anon_sym_GT_GT_GT] = ACTIONS(4982), - [anon_sym_EQ_EQ] = ACTIONS(4982), - [anon_sym_BANG_EQ] = ACTIONS(4982), - [anon_sym_GT_EQ] = ACTIONS(4982), - [anon_sym_LT_EQ] = ACTIONS(4982), - [anon_sym_DOT] = ACTIONS(4984), - [anon_sym_switch] = ACTIONS(4982), - [anon_sym_DOT_DOT] = ACTIONS(4982), - [anon_sym_and] = ACTIONS(4982), - [anon_sym_or] = ACTIONS(4984), - [anon_sym_AMP_AMP] = ACTIONS(4982), - [anon_sym_PIPE_PIPE] = ACTIONS(4982), - [anon_sym_QMARK_QMARK] = ACTIONS(4982), - [anon_sym_from] = ACTIONS(4982), - [anon_sym_into] = ACTIONS(4982), - [anon_sym_join] = ACTIONS(4982), - [anon_sym_let] = ACTIONS(4982), - [anon_sym_orderby] = ACTIONS(4982), - [anon_sym_ascending] = ACTIONS(4982), - [anon_sym_descending] = ACTIONS(4982), - [anon_sym_group] = ACTIONS(4982), - [anon_sym_select] = ACTIONS(4982), - [anon_sym_as] = ACTIONS(4984), - [anon_sym_is] = ACTIONS(4982), - [anon_sym_DASH_GT] = ACTIONS(4982), - [anon_sym_with] = ACTIONS(4982), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506923,6 +518869,8 @@ 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), @@ -506932,52 +518880,51 @@ 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(4978), - [anon_sym_COMMA] = ACTIONS(4978), - [anon_sym_LPAREN] = ACTIONS(4978), - [anon_sym_LT] = ACTIONS(4980), - [anon_sym_GT] = ACTIONS(4980), - [anon_sym_where] = ACTIONS(4978), - [anon_sym_QMARK] = ACTIONS(4980), - [anon_sym_BANG] = ACTIONS(4980), - [anon_sym_PLUS_PLUS] = ACTIONS(4978), - [anon_sym_DASH_DASH] = ACTIONS(4978), - [anon_sym_PLUS] = ACTIONS(4980), - [anon_sym_DASH] = ACTIONS(4980), - [anon_sym_STAR] = ACTIONS(4978), - [anon_sym_SLASH] = ACTIONS(4980), - [anon_sym_PERCENT] = ACTIONS(4978), - [anon_sym_CARET] = ACTIONS(4978), - [anon_sym_PIPE] = ACTIONS(4980), - [anon_sym_AMP] = ACTIONS(4980), - [anon_sym_LT_LT] = ACTIONS(4978), - [anon_sym_GT_GT] = ACTIONS(4980), - [anon_sym_GT_GT_GT] = ACTIONS(4978), - [anon_sym_EQ_EQ] = ACTIONS(4978), - [anon_sym_BANG_EQ] = ACTIONS(4978), - [anon_sym_GT_EQ] = ACTIONS(4978), - [anon_sym_LT_EQ] = ACTIONS(4978), - [anon_sym_DOT] = ACTIONS(4980), - [anon_sym_switch] = ACTIONS(4978), - [anon_sym_DOT_DOT] = ACTIONS(4978), - [anon_sym_and] = ACTIONS(4978), - [anon_sym_or] = ACTIONS(4980), - [anon_sym_AMP_AMP] = ACTIONS(4978), - [anon_sym_PIPE_PIPE] = ACTIONS(4978), - [anon_sym_QMARK_QMARK] = ACTIONS(4978), - [anon_sym_from] = ACTIONS(4978), - [anon_sym_into] = ACTIONS(4978), - [anon_sym_join] = ACTIONS(4978), - [anon_sym_let] = ACTIONS(4978), - [anon_sym_orderby] = ACTIONS(4978), - [anon_sym_ascending] = ACTIONS(4978), - [anon_sym_descending] = ACTIONS(4978), - [anon_sym_group] = ACTIONS(4978), - [anon_sym_select] = ACTIONS(4978), - [anon_sym_as] = ACTIONS(4980), - [anon_sym_is] = ACTIONS(4978), - [anon_sym_DASH_GT] = ACTIONS(4978), - [anon_sym_with] = ACTIONS(4978), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -506990,24 +518937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3674] = { - [sym__name] = STATE(2378), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(2328), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3674), [sym_preproc_endregion] = STATE(3674), [sym_preproc_line] = STATE(3674), @@ -507017,34 +518948,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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_ref] = ACTIONS(4027), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_readonly] = ACTIONS(6017), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(5750), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507057,24 +519005,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3675] = { - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3675), [sym_preproc_endregion] = STATE(3675), [sym_preproc_line] = STATE(3675), @@ -507084,34 +519016,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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(3829), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(6019), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507124,6 +519073,8 @@ 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_preproc_region] = STATE(3676), [sym_preproc_endregion] = STATE(3676), [sym_preproc_line] = STATE(3676), @@ -507133,52 +519084,51 @@ 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(4864), - [anon_sym_COMMA] = ACTIONS(4864), - [anon_sym_LPAREN] = ACTIONS(4864), - [anon_sym_LT] = ACTIONS(4866), - [anon_sym_GT] = ACTIONS(4866), - [anon_sym_where] = ACTIONS(4864), - [anon_sym_QMARK] = ACTIONS(4866), - [anon_sym_BANG] = ACTIONS(4866), - [anon_sym_PLUS_PLUS] = ACTIONS(4864), - [anon_sym_DASH_DASH] = ACTIONS(4864), - [anon_sym_PLUS] = ACTIONS(4866), - [anon_sym_DASH] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4864), - [anon_sym_SLASH] = ACTIONS(4866), - [anon_sym_PERCENT] = ACTIONS(4864), - [anon_sym_CARET] = ACTIONS(4864), - [anon_sym_PIPE] = ACTIONS(4866), - [anon_sym_AMP] = ACTIONS(4866), - [anon_sym_LT_LT] = ACTIONS(4864), - [anon_sym_GT_GT] = ACTIONS(4866), - [anon_sym_GT_GT_GT] = ACTIONS(4864), - [anon_sym_EQ_EQ] = ACTIONS(4864), - [anon_sym_BANG_EQ] = ACTIONS(4864), - [anon_sym_GT_EQ] = ACTIONS(4864), - [anon_sym_LT_EQ] = ACTIONS(4864), - [anon_sym_DOT] = ACTIONS(4866), - [anon_sym_switch] = ACTIONS(4864), - [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_and] = ACTIONS(4864), - [anon_sym_or] = ACTIONS(4866), - [anon_sym_AMP_AMP] = ACTIONS(4864), - [anon_sym_PIPE_PIPE] = ACTIONS(4864), - [anon_sym_QMARK_QMARK] = ACTIONS(4864), - [anon_sym_from] = ACTIONS(4864), - [anon_sym_into] = ACTIONS(4864), - [anon_sym_join] = ACTIONS(4864), - [anon_sym_let] = ACTIONS(4864), - [anon_sym_orderby] = ACTIONS(4864), - [anon_sym_ascending] = ACTIONS(4864), - [anon_sym_descending] = ACTIONS(4864), - [anon_sym_group] = ACTIONS(4864), - [anon_sym_select] = ACTIONS(4864), - [anon_sym_as] = ACTIONS(4866), - [anon_sym_is] = ACTIONS(4864), - [anon_sym_DASH_GT] = ACTIONS(4864), - [anon_sym_with] = ACTIONS(4864), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507200,52 +519150,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3677), [sym_preproc_define] = STATE(3677), [sym_preproc_undef] = STATE(3677), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_COMMA] = ACTIONS(4847), - [anon_sym_LPAREN] = ACTIONS(4847), - [anon_sym_LT] = ACTIONS(4849), - [anon_sym_GT] = ACTIONS(4849), - [anon_sym_where] = ACTIONS(4847), - [anon_sym_QMARK] = ACTIONS(4849), - [anon_sym_BANG] = ACTIONS(4849), - [anon_sym_PLUS_PLUS] = ACTIONS(4847), - [anon_sym_DASH_DASH] = ACTIONS(4847), - [anon_sym_PLUS] = ACTIONS(4849), - [anon_sym_DASH] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_SLASH] = ACTIONS(4849), - [anon_sym_PERCENT] = ACTIONS(4847), - [anon_sym_CARET] = ACTIONS(4847), - [anon_sym_PIPE] = ACTIONS(4849), - [anon_sym_AMP] = ACTIONS(4849), - [anon_sym_LT_LT] = ACTIONS(4847), - [anon_sym_GT_GT] = ACTIONS(4849), - [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(4849), - [anon_sym_switch] = ACTIONS(4847), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_and] = ACTIONS(4847), - [anon_sym_or] = ACTIONS(4849), - [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(4849), - [anon_sym_is] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_with] = ACTIONS(4847), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507258,6 +519209,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_preproc_region] = STATE(3678), [sym_preproc_endregion] = STATE(3678), [sym_preproc_line] = STATE(3678), @@ -507267,52 +519220,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(5336), - [anon_sym_COMMA] = ACTIONS(5336), - [anon_sym_LPAREN] = ACTIONS(5336), - [anon_sym_LT] = ACTIONS(5338), - [anon_sym_GT] = ACTIONS(5338), - [anon_sym_where] = ACTIONS(5336), - [anon_sym_QMARK] = ACTIONS(5338), - [anon_sym_BANG] = ACTIONS(5338), - [anon_sym_PLUS_PLUS] = ACTIONS(5336), - [anon_sym_DASH_DASH] = ACTIONS(5336), - [anon_sym_PLUS] = ACTIONS(5338), - [anon_sym_DASH] = ACTIONS(5338), - [anon_sym_STAR] = ACTIONS(5336), - [anon_sym_SLASH] = ACTIONS(5338), - [anon_sym_PERCENT] = ACTIONS(5336), - [anon_sym_CARET] = ACTIONS(5336), - [anon_sym_PIPE] = ACTIONS(5338), - [anon_sym_AMP] = ACTIONS(5338), - [anon_sym_LT_LT] = ACTIONS(5336), - [anon_sym_GT_GT] = ACTIONS(5338), - [anon_sym_GT_GT_GT] = ACTIONS(5336), - [anon_sym_EQ_EQ] = ACTIONS(5336), - [anon_sym_BANG_EQ] = ACTIONS(5336), - [anon_sym_GT_EQ] = ACTIONS(5336), - [anon_sym_LT_EQ] = ACTIONS(5336), - [anon_sym_DOT] = ACTIONS(5338), - [anon_sym_switch] = ACTIONS(5336), - [anon_sym_DOT_DOT] = ACTIONS(5336), - [anon_sym_and] = ACTIONS(5336), - [anon_sym_or] = ACTIONS(5338), - [anon_sym_AMP_AMP] = ACTIONS(5336), - [anon_sym_PIPE_PIPE] = ACTIONS(5336), - [anon_sym_QMARK_QMARK] = ACTIONS(5336), - [anon_sym_from] = ACTIONS(5336), - [anon_sym_into] = ACTIONS(5336), - [anon_sym_join] = ACTIONS(5336), - [anon_sym_let] = ACTIONS(5336), - [anon_sym_orderby] = ACTIONS(5336), - [anon_sym_ascending] = ACTIONS(5336), - [anon_sym_descending] = ACTIONS(5336), - [anon_sym_group] = ACTIONS(5336), - [anon_sym_select] = ACTIONS(5336), - [anon_sym_as] = ACTIONS(5338), - [anon_sym_is] = ACTIONS(5336), - [anon_sym_DASH_GT] = ACTIONS(5336), - [anon_sym_with] = ACTIONS(5336), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507325,6 +519277,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_preproc_region] = STATE(3679), [sym_preproc_endregion] = STATE(3679), [sym_preproc_line] = STATE(3679), @@ -507334,52 +519288,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(5274), - [anon_sym_COMMA] = ACTIONS(5274), - [anon_sym_LPAREN] = ACTIONS(5274), - [anon_sym_LT] = ACTIONS(5276), - [anon_sym_GT] = ACTIONS(5276), - [anon_sym_where] = ACTIONS(5274), - [anon_sym_QMARK] = ACTIONS(5276), - [anon_sym_BANG] = ACTIONS(5276), - [anon_sym_PLUS_PLUS] = ACTIONS(5274), - [anon_sym_DASH_DASH] = ACTIONS(5274), - [anon_sym_PLUS] = ACTIONS(5276), - [anon_sym_DASH] = ACTIONS(5276), - [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_SLASH] = ACTIONS(5276), - [anon_sym_PERCENT] = ACTIONS(5274), - [anon_sym_CARET] = ACTIONS(5274), - [anon_sym_PIPE] = ACTIONS(5276), - [anon_sym_AMP] = ACTIONS(5276), - [anon_sym_LT_LT] = ACTIONS(5274), - [anon_sym_GT_GT] = ACTIONS(5276), - [anon_sym_GT_GT_GT] = ACTIONS(5274), - [anon_sym_EQ_EQ] = ACTIONS(5274), - [anon_sym_BANG_EQ] = ACTIONS(5274), - [anon_sym_GT_EQ] = ACTIONS(5274), - [anon_sym_LT_EQ] = ACTIONS(5274), - [anon_sym_DOT] = ACTIONS(5276), - [anon_sym_switch] = ACTIONS(5274), - [anon_sym_DOT_DOT] = ACTIONS(5274), - [anon_sym_and] = ACTIONS(5274), - [anon_sym_or] = ACTIONS(5276), - [anon_sym_AMP_AMP] = ACTIONS(5274), - [anon_sym_PIPE_PIPE] = ACTIONS(5274), - [anon_sym_QMARK_QMARK] = ACTIONS(5274), - [anon_sym_from] = ACTIONS(5274), - [anon_sym_into] = ACTIONS(5274), - [anon_sym_join] = ACTIONS(5274), - [anon_sym_let] = ACTIONS(5274), - [anon_sym_orderby] = ACTIONS(5274), - [anon_sym_ascending] = ACTIONS(5274), - [anon_sym_descending] = ACTIONS(5274), - [anon_sym_group] = ACTIONS(5274), - [anon_sym_select] = ACTIONS(5274), - [anon_sym_as] = ACTIONS(5276), - [anon_sym_is] = ACTIONS(5274), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5274), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507392,6 +519345,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_preproc_region] = STATE(3680), [sym_preproc_endregion] = STATE(3680), [sym_preproc_line] = STATE(3680), @@ -507401,52 +519356,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(5296), - [anon_sym_COMMA] = ACTIONS(5296), - [anon_sym_LPAREN] = ACTIONS(5296), - [anon_sym_LT] = ACTIONS(5298), - [anon_sym_GT] = ACTIONS(5298), - [anon_sym_where] = ACTIONS(5296), - [anon_sym_QMARK] = ACTIONS(5298), - [anon_sym_BANG] = ACTIONS(5298), - [anon_sym_PLUS_PLUS] = ACTIONS(5296), - [anon_sym_DASH_DASH] = ACTIONS(5296), - [anon_sym_PLUS] = ACTIONS(5298), - [anon_sym_DASH] = ACTIONS(5298), - [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_SLASH] = ACTIONS(5298), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_CARET] = ACTIONS(5296), - [anon_sym_PIPE] = ACTIONS(5298), - [anon_sym_AMP] = ACTIONS(5298), - [anon_sym_LT_LT] = ACTIONS(5296), - [anon_sym_GT_GT] = ACTIONS(5298), - [anon_sym_GT_GT_GT] = ACTIONS(5296), - [anon_sym_EQ_EQ] = ACTIONS(5296), - [anon_sym_BANG_EQ] = ACTIONS(5296), - [anon_sym_GT_EQ] = ACTIONS(5296), - [anon_sym_LT_EQ] = ACTIONS(5296), - [anon_sym_DOT] = ACTIONS(5298), - [anon_sym_switch] = ACTIONS(5296), - [anon_sym_DOT_DOT] = ACTIONS(5296), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(6021), - [anon_sym_AMP_AMP] = ACTIONS(5296), - [anon_sym_PIPE_PIPE] = ACTIONS(5296), - [anon_sym_QMARK_QMARK] = ACTIONS(5296), - [anon_sym_from] = ACTIONS(5296), - [anon_sym_into] = ACTIONS(5296), - [anon_sym_join] = ACTIONS(5296), - [anon_sym_let] = ACTIONS(5296), - [anon_sym_orderby] = ACTIONS(5296), - [anon_sym_ascending] = ACTIONS(5296), - [anon_sym_descending] = ACTIONS(5296), - [anon_sym_group] = ACTIONS(5296), - [anon_sym_select] = ACTIONS(5296), - [anon_sym_as] = ACTIONS(5298), - [anon_sym_is] = ACTIONS(5296), - [anon_sym_DASH_GT] = ACTIONS(5296), - [anon_sym_with] = ACTIONS(5296), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507459,24 +519413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3681] = { - [sym__name] = STATE(6089), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(6070), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3681), [sym_preproc_endregion] = STATE(3681), [sym_preproc_line] = STATE(3681), @@ -507486,34 +519422,53 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(6023), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(6025), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(6027), - [anon_sym_var] = ACTIONS(6029), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507526,6 +519481,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_preproc_region] = STATE(3682), [sym_preproc_endregion] = STATE(3682), [sym_preproc_line] = STATE(3682), @@ -507535,52 +519492,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(5278), - [anon_sym_COMMA] = ACTIONS(5278), - [anon_sym_LPAREN] = ACTIONS(5278), - [anon_sym_LT] = ACTIONS(5280), - [anon_sym_GT] = ACTIONS(5280), - [anon_sym_where] = ACTIONS(5278), - [anon_sym_QMARK] = ACTIONS(5280), - [anon_sym_BANG] = ACTIONS(5280), - [anon_sym_PLUS_PLUS] = ACTIONS(5278), - [anon_sym_DASH_DASH] = ACTIONS(5278), - [anon_sym_PLUS] = ACTIONS(5280), - [anon_sym_DASH] = ACTIONS(5280), - [anon_sym_STAR] = ACTIONS(5278), - [anon_sym_SLASH] = ACTIONS(5280), - [anon_sym_PERCENT] = ACTIONS(5278), - [anon_sym_CARET] = ACTIONS(5278), - [anon_sym_PIPE] = ACTIONS(5280), - [anon_sym_AMP] = ACTIONS(5280), - [anon_sym_LT_LT] = ACTIONS(5278), - [anon_sym_GT_GT] = ACTIONS(5280), - [anon_sym_GT_GT_GT] = ACTIONS(5278), - [anon_sym_EQ_EQ] = ACTIONS(5278), - [anon_sym_BANG_EQ] = ACTIONS(5278), - [anon_sym_GT_EQ] = ACTIONS(5278), - [anon_sym_LT_EQ] = ACTIONS(5278), - [anon_sym_DOT] = ACTIONS(5280), - [anon_sym_switch] = ACTIONS(5278), - [anon_sym_DOT_DOT] = ACTIONS(5278), - [anon_sym_and] = ACTIONS(5278), - [anon_sym_or] = ACTIONS(5280), - [anon_sym_AMP_AMP] = ACTIONS(5278), - [anon_sym_PIPE_PIPE] = ACTIONS(5278), - [anon_sym_QMARK_QMARK] = ACTIONS(5278), - [anon_sym_from] = ACTIONS(5278), - [anon_sym_into] = ACTIONS(5278), - [anon_sym_join] = ACTIONS(5278), - [anon_sym_let] = ACTIONS(5278), - [anon_sym_orderby] = ACTIONS(5278), - [anon_sym_ascending] = ACTIONS(5278), - [anon_sym_descending] = ACTIONS(5278), - [anon_sym_group] = ACTIONS(5278), - [anon_sym_select] = ACTIONS(5278), - [anon_sym_as] = ACTIONS(5280), - [anon_sym_is] = ACTIONS(5278), - [anon_sym_DASH_GT] = ACTIONS(5278), - [anon_sym_with] = ACTIONS(5278), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507602,52 +519558,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), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_COMMA] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [anon_sym_LT] = ACTIONS(4825), - [anon_sym_GT] = ACTIONS(4825), - [anon_sym_where] = ACTIONS(4823), - [anon_sym_QMARK] = ACTIONS(4825), - [anon_sym_BANG] = ACTIONS(4825), - [anon_sym_PLUS_PLUS] = ACTIONS(4823), - [anon_sym_DASH_DASH] = ACTIONS(4823), - [anon_sym_PLUS] = ACTIONS(4825), - [anon_sym_DASH] = ACTIONS(4825), - [anon_sym_STAR] = ACTIONS(4823), - [anon_sym_SLASH] = ACTIONS(4825), - [anon_sym_PERCENT] = ACTIONS(4823), - [anon_sym_CARET] = ACTIONS(4823), - [anon_sym_PIPE] = ACTIONS(4825), - [anon_sym_AMP] = ACTIONS(4825), - [anon_sym_LT_LT] = ACTIONS(4823), - [anon_sym_GT_GT] = ACTIONS(4825), - [anon_sym_GT_GT_GT] = ACTIONS(4823), - [anon_sym_EQ_EQ] = ACTIONS(4823), - [anon_sym_BANG_EQ] = ACTIONS(4823), - [anon_sym_GT_EQ] = ACTIONS(4823), - [anon_sym_LT_EQ] = ACTIONS(4823), - [anon_sym_DOT] = ACTIONS(4825), - [anon_sym_switch] = ACTIONS(4823), - [anon_sym_DOT_DOT] = ACTIONS(4823), - [anon_sym_and] = ACTIONS(4823), - [anon_sym_or] = ACTIONS(4825), - [anon_sym_AMP_AMP] = ACTIONS(4823), - [anon_sym_PIPE_PIPE] = ACTIONS(4823), - [anon_sym_QMARK_QMARK] = ACTIONS(4823), - [anon_sym_from] = ACTIONS(4823), - [anon_sym_into] = ACTIONS(4823), - [anon_sym_join] = ACTIONS(4823), - [anon_sym_let] = ACTIONS(4823), - [anon_sym_orderby] = ACTIONS(4823), - [anon_sym_ascending] = ACTIONS(4823), - [anon_sym_descending] = ACTIONS(4823), - [anon_sym_group] = ACTIONS(4823), - [anon_sym_select] = ACTIONS(4823), - [anon_sym_as] = ACTIONS(4825), - [anon_sym_is] = ACTIONS(4823), - [anon_sym_DASH_GT] = ACTIONS(4823), - [anon_sym_with] = ACTIONS(4823), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507669,52 +519626,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4819), - [anon_sym_COMMA] = ACTIONS(4819), - [anon_sym_LPAREN] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4821), - [anon_sym_GT] = ACTIONS(4821), - [anon_sym_where] = ACTIONS(4819), - [anon_sym_QMARK] = ACTIONS(4821), - [anon_sym_BANG] = ACTIONS(4821), - [anon_sym_PLUS_PLUS] = ACTIONS(4819), - [anon_sym_DASH_DASH] = ACTIONS(4819), - [anon_sym_PLUS] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4821), - [anon_sym_AMP] = ACTIONS(4821), - [anon_sym_LT_LT] = ACTIONS(4819), - [anon_sym_GT_GT] = ACTIONS(4821), - [anon_sym_GT_GT_GT] = ACTIONS(4819), - [anon_sym_EQ_EQ] = ACTIONS(4819), - [anon_sym_BANG_EQ] = ACTIONS(4819), - [anon_sym_GT_EQ] = ACTIONS(4819), - [anon_sym_LT_EQ] = ACTIONS(4819), - [anon_sym_DOT] = ACTIONS(4821), - [anon_sym_switch] = ACTIONS(4819), - [anon_sym_DOT_DOT] = ACTIONS(4819), - [anon_sym_and] = ACTIONS(4819), - [anon_sym_or] = ACTIONS(4821), - [anon_sym_AMP_AMP] = ACTIONS(4819), - [anon_sym_PIPE_PIPE] = ACTIONS(4819), - [anon_sym_QMARK_QMARK] = ACTIONS(4819), - [anon_sym_from] = ACTIONS(4819), - [anon_sym_into] = ACTIONS(4819), - [anon_sym_join] = ACTIONS(4819), - [anon_sym_let] = ACTIONS(4819), - [anon_sym_orderby] = ACTIONS(4819), - [anon_sym_ascending] = ACTIONS(4819), - [anon_sym_descending] = ACTIONS(4819), - [anon_sym_group] = ACTIONS(4819), - [anon_sym_select] = ACTIONS(4819), - [anon_sym_as] = ACTIONS(4821), - [anon_sym_is] = ACTIONS(4819), - [anon_sym_DASH_GT] = ACTIONS(4819), - [anon_sym_with] = ACTIONS(4819), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507727,6 +519685,24 @@ 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), @@ -507736,52 +519712,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3685), [sym_preproc_define] = STATE(3685), [sym_preproc_undef] = STATE(3685), - [anon_sym_LBRACK] = ACTIONS(5282), - [anon_sym_COMMA] = ACTIONS(5282), - [anon_sym_LPAREN] = ACTIONS(5282), - [anon_sym_LT] = ACTIONS(5284), - [anon_sym_GT] = ACTIONS(5284), - [anon_sym_where] = ACTIONS(5282), - [anon_sym_QMARK] = ACTIONS(5284), - [anon_sym_BANG] = ACTIONS(5284), - [anon_sym_PLUS_PLUS] = ACTIONS(5282), - [anon_sym_DASH_DASH] = ACTIONS(5282), - [anon_sym_PLUS] = ACTIONS(5284), - [anon_sym_DASH] = ACTIONS(5284), - [anon_sym_STAR] = ACTIONS(5282), - [anon_sym_SLASH] = ACTIONS(5284), - [anon_sym_PERCENT] = ACTIONS(5282), - [anon_sym_CARET] = ACTIONS(5282), - [anon_sym_PIPE] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(5284), - [anon_sym_LT_LT] = ACTIONS(5282), - [anon_sym_GT_GT] = ACTIONS(5284), - [anon_sym_GT_GT_GT] = ACTIONS(5282), - [anon_sym_EQ_EQ] = ACTIONS(5282), - [anon_sym_BANG_EQ] = ACTIONS(5282), - [anon_sym_GT_EQ] = ACTIONS(5282), - [anon_sym_LT_EQ] = ACTIONS(5282), - [anon_sym_DOT] = ACTIONS(5284), - [anon_sym_switch] = ACTIONS(5282), - [anon_sym_DOT_DOT] = ACTIONS(5282), - [anon_sym_and] = ACTIONS(5282), - [anon_sym_or] = ACTIONS(5284), - [anon_sym_AMP_AMP] = ACTIONS(5282), - [anon_sym_PIPE_PIPE] = ACTIONS(5282), - [anon_sym_QMARK_QMARK] = ACTIONS(5282), - [anon_sym_from] = ACTIONS(5282), - [anon_sym_into] = ACTIONS(5282), - [anon_sym_join] = ACTIONS(5282), - [anon_sym_let] = ACTIONS(5282), - [anon_sym_orderby] = ACTIONS(5282), - [anon_sym_ascending] = ACTIONS(5282), - [anon_sym_descending] = ACTIONS(5282), - [anon_sym_group] = ACTIONS(5282), - [anon_sym_select] = ACTIONS(5282), - [anon_sym_as] = ACTIONS(5284), - [anon_sym_is] = ACTIONS(5282), - [anon_sym_DASH_GT] = ACTIONS(5282), - [anon_sym_with] = ACTIONS(5282), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507794,24 +519753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3686] = { - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3686), [sym_preproc_endregion] = STATE(3686), [sym_preproc_line] = STATE(3686), @@ -507821,34 +519764,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3686), [sym_preproc_define] = STATE(3686), [sym_preproc_undef] = STATE(3686), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(3718), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6033), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5638), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507870,52 +519830,53 @@ 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_LBRACK] = ACTIONS(5038), - [anon_sym_COMMA] = ACTIONS(5038), - [anon_sym_LPAREN] = ACTIONS(5038), - [anon_sym_LT] = ACTIONS(5040), - [anon_sym_GT] = ACTIONS(5040), - [anon_sym_where] = ACTIONS(5038), - [anon_sym_QMARK] = ACTIONS(5040), - [anon_sym_BANG] = ACTIONS(5040), - [anon_sym_PLUS_PLUS] = ACTIONS(5038), - [anon_sym_DASH_DASH] = ACTIONS(5038), - [anon_sym_PLUS] = ACTIONS(5040), - [anon_sym_DASH] = ACTIONS(5040), - [anon_sym_STAR] = ACTIONS(5038), - [anon_sym_SLASH] = ACTIONS(5040), - [anon_sym_PERCENT] = ACTIONS(5038), - [anon_sym_CARET] = ACTIONS(5038), - [anon_sym_PIPE] = ACTIONS(5040), - [anon_sym_AMP] = ACTIONS(5040), - [anon_sym_LT_LT] = ACTIONS(5038), - [anon_sym_GT_GT] = ACTIONS(5040), - [anon_sym_GT_GT_GT] = ACTIONS(5038), - [anon_sym_EQ_EQ] = ACTIONS(5038), - [anon_sym_BANG_EQ] = ACTIONS(5038), - [anon_sym_GT_EQ] = ACTIONS(5038), - [anon_sym_LT_EQ] = ACTIONS(5038), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_switch] = ACTIONS(5038), - [anon_sym_DOT_DOT] = ACTIONS(5038), - [anon_sym_and] = ACTIONS(5038), - [anon_sym_or] = ACTIONS(5040), - [anon_sym_AMP_AMP] = ACTIONS(5038), - [anon_sym_PIPE_PIPE] = ACTIONS(5038), - [anon_sym_QMARK_QMARK] = ACTIONS(5038), - [anon_sym_from] = ACTIONS(5038), - [anon_sym_into] = ACTIONS(5038), - [anon_sym_join] = ACTIONS(5038), - [anon_sym_let] = ACTIONS(5038), - [anon_sym_orderby] = ACTIONS(5038), - [anon_sym_ascending] = ACTIONS(5038), - [anon_sym_descending] = ACTIONS(5038), - [anon_sym_group] = ACTIONS(5038), - [anon_sym_select] = ACTIONS(5038), - [anon_sym_as] = ACTIONS(5040), - [anon_sym_is] = ACTIONS(5038), - [anon_sym_DASH_GT] = ACTIONS(5038), - [anon_sym_with] = ACTIONS(5038), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507928,8 +519889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3688] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3688), [sym_preproc_endregion] = STATE(3688), [sym_preproc_line] = STATE(3688), @@ -507939,50 +519898,53 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5716), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5716), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), + [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(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(5716), - [anon_sym_join] = ACTIONS(5716), - [anon_sym_let] = ACTIONS(5716), - [anon_sym_orderby] = ACTIONS(5716), - [anon_sym_ascending] = ACTIONS(5716), - [anon_sym_descending] = ACTIONS(5716), - [anon_sym_group] = ACTIONS(5716), - [anon_sym_select] = ACTIONS(5716), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -507995,24 +519957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3689] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5915), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3689), [sym_preproc_endregion] = STATE(3689), [sym_preproc_line] = STATE(3689), @@ -508022,34 +519966,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3689), [sym_preproc_define] = STATE(3689), [sym_preproc_undef] = STATE(3689), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(5483), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508062,6 +520025,25 @@ 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_preproc_region] = STATE(3690), [sym_preproc_endregion] = STATE(3690), [sym_preproc_line] = STATE(3690), @@ -508071,52 +520053,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), - [anon_sym_LBRACK] = ACTIONS(4946), - [anon_sym_COMMA] = ACTIONS(4946), - [anon_sym_LPAREN] = ACTIONS(4946), - [anon_sym_LT] = ACTIONS(4948), - [anon_sym_GT] = ACTIONS(4948), - [anon_sym_where] = ACTIONS(4946), - [anon_sym_QMARK] = ACTIONS(4948), - [anon_sym_BANG] = ACTIONS(4948), - [anon_sym_PLUS_PLUS] = ACTIONS(4946), - [anon_sym_DASH_DASH] = ACTIONS(4946), - [anon_sym_PLUS] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_STAR] = ACTIONS(4946), - [anon_sym_SLASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4946), - [anon_sym_CARET] = ACTIONS(4946), - [anon_sym_PIPE] = ACTIONS(4948), - [anon_sym_AMP] = ACTIONS(4948), - [anon_sym_LT_LT] = ACTIONS(4946), - [anon_sym_GT_GT] = ACTIONS(4948), - [anon_sym_GT_GT_GT] = ACTIONS(4946), - [anon_sym_EQ_EQ] = ACTIONS(4946), - [anon_sym_BANG_EQ] = ACTIONS(4946), - [anon_sym_GT_EQ] = ACTIONS(4946), - [anon_sym_LT_EQ] = ACTIONS(4946), - [anon_sym_DOT] = ACTIONS(4948), - [anon_sym_switch] = ACTIONS(4946), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_and] = ACTIONS(4946), - [anon_sym_or] = ACTIONS(4948), - [anon_sym_AMP_AMP] = ACTIONS(4946), - [anon_sym_PIPE_PIPE] = ACTIONS(4946), - [anon_sym_QMARK_QMARK] = ACTIONS(4946), - [anon_sym_from] = ACTIONS(4946), - [anon_sym_into] = ACTIONS(4946), - [anon_sym_join] = ACTIONS(4946), - [anon_sym_let] = ACTIONS(4946), - [anon_sym_orderby] = ACTIONS(4946), - [anon_sym_ascending] = ACTIONS(4946), - [anon_sym_descending] = ACTIONS(4946), - [anon_sym_group] = ACTIONS(4946), - [anon_sym_select] = ACTIONS(4946), - [anon_sym_as] = ACTIONS(4948), - [anon_sym_is] = ACTIONS(4946), - [anon_sym_DASH_GT] = ACTIONS(4946), - [anon_sym_with] = ACTIONS(4946), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508129,25 +520093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3691] = { - [sym_variable_declaration] = STATE(7192), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5544), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3691), [sym_preproc_endregion] = STATE(3691), [sym_preproc_line] = STATE(3691), @@ -508157,33 +520102,53 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508196,8 +520161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3692] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -508207,50 +520172,51 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(4886), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(4886), - [anon_sym_into] = ACTIONS(4886), - [anon_sym_join] = ACTIONS(4886), - [anon_sym_let] = ACTIONS(4886), - [anon_sym_orderby] = ACTIONS(4886), - [anon_sym_ascending] = ACTIONS(4886), - [anon_sym_descending] = ACTIONS(4886), - [anon_sym_group] = ACTIONS(4886), - [anon_sym_select] = ACTIONS(4886), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508263,24 +520229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3693] = { - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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), @@ -508290,34 +520240,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3693), [sym_preproc_define] = STATE(3693), [sym_preproc_undef] = STATE(3693), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(3967), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6035), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5634), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508330,6 +520297,24 @@ 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_preproc_region] = STATE(3694), [sym_preproc_endregion] = STATE(3694), [sym_preproc_line] = STATE(3694), @@ -508339,52 +520324,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3694), [sym_preproc_define] = STATE(3694), [sym_preproc_undef] = STATE(3694), - [anon_sym_LBRACK] = ACTIONS(4803), - [anon_sym_COMMA] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4803), - [anon_sym_LT] = ACTIONS(4805), - [anon_sym_GT] = ACTIONS(4805), - [anon_sym_where] = ACTIONS(4803), - [anon_sym_QMARK] = ACTIONS(4805), - [anon_sym_BANG] = ACTIONS(4805), - [anon_sym_PLUS_PLUS] = ACTIONS(4803), - [anon_sym_DASH_DASH] = ACTIONS(4803), - [anon_sym_PLUS] = ACTIONS(4805), - [anon_sym_DASH] = ACTIONS(4805), - [anon_sym_STAR] = ACTIONS(4803), - [anon_sym_SLASH] = ACTIONS(4805), - [anon_sym_PERCENT] = ACTIONS(4803), - [anon_sym_CARET] = ACTIONS(4803), - [anon_sym_PIPE] = ACTIONS(4805), - [anon_sym_AMP] = ACTIONS(4805), - [anon_sym_LT_LT] = ACTIONS(4803), - [anon_sym_GT_GT] = ACTIONS(4805), - [anon_sym_GT_GT_GT] = ACTIONS(4803), - [anon_sym_EQ_EQ] = ACTIONS(4803), - [anon_sym_BANG_EQ] = ACTIONS(4803), - [anon_sym_GT_EQ] = ACTIONS(4803), - [anon_sym_LT_EQ] = ACTIONS(4803), - [anon_sym_DOT] = ACTIONS(4805), - [anon_sym_switch] = ACTIONS(4803), - [anon_sym_DOT_DOT] = ACTIONS(4803), - [anon_sym_and] = ACTIONS(4803), - [anon_sym_or] = ACTIONS(4805), - [anon_sym_AMP_AMP] = ACTIONS(4803), - [anon_sym_PIPE_PIPE] = ACTIONS(4803), - [anon_sym_QMARK_QMARK] = ACTIONS(4803), - [anon_sym_from] = ACTIONS(4803), - [anon_sym_into] = ACTIONS(4803), - [anon_sym_join] = ACTIONS(4803), - [anon_sym_let] = ACTIONS(4803), - [anon_sym_orderby] = ACTIONS(4803), - [anon_sym_ascending] = ACTIONS(4803), - [anon_sym_descending] = ACTIONS(4803), - [anon_sym_group] = ACTIONS(4803), - [anon_sym_select] = ACTIONS(4803), - [anon_sym_as] = ACTIONS(4805), - [anon_sym_is] = ACTIONS(4803), - [anon_sym_DASH_GT] = ACTIONS(4803), - [anon_sym_with] = ACTIONS(4803), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508397,8 +520365,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3695] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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_preproc_region] = STATE(3695), [sym_preproc_endregion] = STATE(3695), [sym_preproc_line] = STATE(3695), @@ -508408,50 +520393,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), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5706), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5706), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5706), - [anon_sym_into] = ACTIONS(5706), - [anon_sym_join] = ACTIONS(5706), - [anon_sym_let] = ACTIONS(5706), - [anon_sym_orderby] = ACTIONS(5706), - [anon_sym_ascending] = ACTIONS(5706), - [anon_sym_descending] = ACTIONS(5706), - [anon_sym_group] = ACTIONS(5706), - [anon_sym_select] = ACTIONS(5706), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508464,8 +520432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3696] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3696), [sym_preproc_endregion] = STATE(3696), [sym_preproc_line] = STATE(3696), @@ -508475,50 +520441,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(5552), - [anon_sym_COMMA] = ACTIONS(5684), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5686), - [anon_sym_GT] = ACTIONS(5686), - [anon_sym_where] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5686), - [anon_sym_DASH] = ACTIONS(5686), - [anon_sym_STAR] = ACTIONS(5684), - [anon_sym_SLASH] = ACTIONS(5686), - [anon_sym_PERCENT] = ACTIONS(5684), - [anon_sym_CARET] = ACTIONS(5684), - [anon_sym_PIPE] = ACTIONS(5686), - [anon_sym_AMP] = ACTIONS(5686), - [anon_sym_LT_LT] = ACTIONS(5684), - [anon_sym_GT_GT] = ACTIONS(5686), - [anon_sym_GT_GT_GT] = ACTIONS(5684), - [anon_sym_EQ_EQ] = ACTIONS(5684), - [anon_sym_BANG_EQ] = ACTIONS(5684), - [anon_sym_GT_EQ] = ACTIONS(5684), - [anon_sym_LT_EQ] = ACTIONS(5684), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5684), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5684), - [anon_sym_PIPE_PIPE] = ACTIONS(5684), - [anon_sym_QMARK_QMARK] = ACTIONS(5684), - [anon_sym_from] = ACTIONS(5684), - [anon_sym_into] = ACTIONS(5684), - [anon_sym_join] = ACTIONS(5684), - [anon_sym_let] = ACTIONS(5684), - [anon_sym_orderby] = ACTIONS(5684), - [anon_sym_ascending] = ACTIONS(5684), - [anon_sym_descending] = ACTIONS(5684), - [anon_sym_group] = ACTIONS(5684), - [anon_sym_select] = ACTIONS(5684), - [anon_sym_as] = ACTIONS(5686), - [anon_sym_is] = ACTIONS(5684), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5684), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508531,8 +520499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3697] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3697), [sym_preproc_endregion] = STATE(3697), [sym_preproc_line] = STATE(3697), @@ -508542,50 +520508,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(5552), - [anon_sym_COMMA] = ACTIONS(5766), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5766), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5766), - [anon_sym_into] = ACTIONS(5766), - [anon_sym_join] = ACTIONS(5766), - [anon_sym_let] = ACTIONS(5766), - [anon_sym_orderby] = ACTIONS(5766), - [anon_sym_ascending] = ACTIONS(5766), - [anon_sym_descending] = ACTIONS(5766), - [anon_sym_group] = ACTIONS(5766), - [anon_sym_select] = ACTIONS(5766), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508598,25 +520566,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3698] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6987), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3698), [sym_preproc_endregion] = STATE(3698), [sym_preproc_line] = STATE(3698), @@ -508626,33 +520575,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3698), [sym_preproc_define] = STATE(3698), [sym_preproc_undef] = STATE(3698), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -508674,52 +520642,52 @@ 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(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(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), @@ -508732,24 +520700,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3700] = { - [sym__name] = STATE(5560), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(5352), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3700), [sym_preproc_endregion] = STATE(3700), [sym_preproc_line] = STATE(3700), @@ -508759,34 +520709,52 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3604), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2813), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(6037), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -508799,6 +520767,8 @@ 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_preproc_region] = STATE(3701), [sym_preproc_endregion] = STATE(3701), [sym_preproc_line] = STATE(3701), @@ -508808,52 +520778,50 @@ 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(2089), - [anon_sym_COMMA] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_GT] = ACTIONS(2091), - [anon_sym_where] = ACTIONS(2089), - [anon_sym_QMARK] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_PLUS_PLUS] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2089), - [anon_sym_PLUS] = ACTIONS(2091), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2089), - [anon_sym_SLASH] = ACTIONS(2091), - [anon_sym_PERCENT] = ACTIONS(2089), - [anon_sym_CARET] = ACTIONS(2089), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_LT_LT] = ACTIONS(2089), - [anon_sym_GT_GT] = ACTIONS(2091), - [anon_sym_GT_GT_GT] = ACTIONS(2089), - [anon_sym_EQ_EQ] = ACTIONS(2089), - [anon_sym_BANG_EQ] = ACTIONS(2089), - [anon_sym_GT_EQ] = ACTIONS(2089), - [anon_sym_LT_EQ] = ACTIONS(2089), - [anon_sym_DOT] = ACTIONS(2091), - [anon_sym_switch] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_and] = ACTIONS(2089), - [anon_sym_or] = ACTIONS(2091), - [anon_sym_AMP_AMP] = ACTIONS(2089), - [anon_sym_PIPE_PIPE] = ACTIONS(2089), - [anon_sym_QMARK_QMARK] = ACTIONS(2089), - [anon_sym_from] = ACTIONS(2089), - [anon_sym_into] = ACTIONS(2089), - [anon_sym_join] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_orderby] = ACTIONS(2089), - [anon_sym_ascending] = ACTIONS(2089), - [anon_sym_descending] = ACTIONS(2089), - [anon_sym_group] = ACTIONS(2089), - [anon_sym_select] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2091), - [anon_sym_is] = ACTIONS(2089), - [anon_sym_DASH_GT] = ACTIONS(2089), - [anon_sym_with] = ACTIONS(2089), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -508866,24 +520834,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3702] = { - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3702), [sym_preproc_endregion] = STATE(3702), [sym_preproc_line] = STATE(3702), @@ -508893,34 +520843,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3702), [sym_preproc_define] = STATE(3702), [sym_preproc_undef] = STATE(3702), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(4165), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(6039), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5776), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), @@ -508942,119 +520910,119 @@ 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(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_where] = ACTIONS(6041), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(5945), - [anon_sym_or] = ACTIONS(6021), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [anon_sym_QMARK_QMARK] = ACTIONS(6041), - [anon_sym_from] = ACTIONS(6041), - [anon_sym_into] = ACTIONS(6041), - [anon_sym_join] = ACTIONS(6041), - [anon_sym_let] = ACTIONS(6041), - [anon_sym_orderby] = ACTIONS(6041), - [anon_sym_ascending] = ACTIONS(6041), - [anon_sym_descending] = ACTIONS(6041), - [anon_sym_group] = ACTIONS(6041), - [anon_sym_select] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6043), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3704] = { - [sym_preproc_region] = STATE(3704), - [sym_preproc_endregion] = STATE(3704), - [sym_preproc_line] = STATE(3704), - [sym_preproc_pragma] = STATE(3704), - [sym_preproc_nullable] = STATE(3704), - [sym_preproc_error] = STATE(3704), - [sym_preproc_warning] = STATE(3704), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3704] = { + [sym_preproc_region] = STATE(3704), + [sym_preproc_endregion] = STATE(3704), + [sym_preproc_line] = STATE(3704), + [sym_preproc_pragma] = STATE(3704), + [sym_preproc_nullable] = STATE(3704), + [sym_preproc_error] = STATE(3704), + [sym_preproc_warning] = STATE(3704), [sym_preproc_define] = STATE(3704), [sym_preproc_undef] = STATE(3704), - [anon_sym_LBRACK] = ACTIONS(4994), - [anon_sym_COMMA] = ACTIONS(4994), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_LT] = ACTIONS(4996), - [anon_sym_GT] = ACTIONS(4996), - [anon_sym_where] = ACTIONS(4994), - [anon_sym_QMARK] = ACTIONS(4996), - [anon_sym_BANG] = ACTIONS(4996), - [anon_sym_PLUS_PLUS] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4994), - [anon_sym_PLUS] = ACTIONS(4996), - [anon_sym_DASH] = ACTIONS(4996), - [anon_sym_STAR] = ACTIONS(4994), - [anon_sym_SLASH] = ACTIONS(4996), - [anon_sym_PERCENT] = ACTIONS(4994), - [anon_sym_CARET] = ACTIONS(4994), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_AMP] = ACTIONS(4996), - [anon_sym_LT_LT] = ACTIONS(4994), - [anon_sym_GT_GT] = ACTIONS(4996), - [anon_sym_GT_GT_GT] = ACTIONS(4994), - [anon_sym_EQ_EQ] = ACTIONS(4994), - [anon_sym_BANG_EQ] = ACTIONS(4994), - [anon_sym_GT_EQ] = ACTIONS(4994), - [anon_sym_LT_EQ] = ACTIONS(4994), - [anon_sym_DOT] = ACTIONS(4996), - [anon_sym_switch] = ACTIONS(4994), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_and] = ACTIONS(4994), - [anon_sym_or] = ACTIONS(4996), - [anon_sym_AMP_AMP] = ACTIONS(4994), - [anon_sym_PIPE_PIPE] = ACTIONS(4994), - [anon_sym_QMARK_QMARK] = ACTIONS(4994), - [anon_sym_from] = ACTIONS(4994), - [anon_sym_into] = ACTIONS(4994), - [anon_sym_join] = ACTIONS(4994), - [anon_sym_let] = ACTIONS(4994), - [anon_sym_orderby] = ACTIONS(4994), - [anon_sym_ascending] = ACTIONS(4994), - [anon_sym_descending] = ACTIONS(4994), - [anon_sym_group] = ACTIONS(4994), - [anon_sym_select] = ACTIONS(4994), - [anon_sym_as] = ACTIONS(4996), - [anon_sym_is] = ACTIONS(4994), - [anon_sym_DASH_GT] = ACTIONS(4994), - [anon_sym_with] = ACTIONS(4994), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509076,52 +521044,52 @@ 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(5062), - [anon_sym_COMMA] = ACTIONS(5062), - [anon_sym_LPAREN] = ACTIONS(5062), - [anon_sym_LT] = ACTIONS(5064), - [anon_sym_GT] = ACTIONS(5064), - [anon_sym_where] = ACTIONS(5062), - [anon_sym_QMARK] = ACTIONS(5064), - [anon_sym_BANG] = ACTIONS(5064), - [anon_sym_PLUS_PLUS] = ACTIONS(5062), - [anon_sym_DASH_DASH] = ACTIONS(5062), - [anon_sym_PLUS] = ACTIONS(5064), - [anon_sym_DASH] = ACTIONS(5064), - [anon_sym_STAR] = ACTIONS(5062), - [anon_sym_SLASH] = ACTIONS(5064), - [anon_sym_PERCENT] = ACTIONS(5062), - [anon_sym_CARET] = ACTIONS(5062), - [anon_sym_PIPE] = ACTIONS(5064), - [anon_sym_AMP] = ACTIONS(5064), - [anon_sym_LT_LT] = ACTIONS(5062), - [anon_sym_GT_GT] = ACTIONS(5064), - [anon_sym_GT_GT_GT] = ACTIONS(5062), - [anon_sym_EQ_EQ] = ACTIONS(5062), - [anon_sym_BANG_EQ] = ACTIONS(5062), - [anon_sym_GT_EQ] = ACTIONS(5062), - [anon_sym_LT_EQ] = ACTIONS(5062), - [anon_sym_DOT] = ACTIONS(5064), - [anon_sym_switch] = ACTIONS(5062), - [anon_sym_DOT_DOT] = ACTIONS(5062), - [anon_sym_and] = ACTIONS(5062), - [anon_sym_or] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5062), - [anon_sym_PIPE_PIPE] = ACTIONS(5062), - [anon_sym_QMARK_QMARK] = ACTIONS(5062), - [anon_sym_from] = ACTIONS(5062), - [anon_sym_into] = ACTIONS(5062), - [anon_sym_join] = ACTIONS(5062), - [anon_sym_let] = ACTIONS(5062), - [anon_sym_orderby] = ACTIONS(5062), - [anon_sym_ascending] = ACTIONS(5062), - [anon_sym_descending] = ACTIONS(5062), - [anon_sym_group] = ACTIONS(5062), - [anon_sym_select] = ACTIONS(5062), - [anon_sym_as] = ACTIONS(5064), - [anon_sym_is] = ACTIONS(5062), - [anon_sym_DASH_GT] = ACTIONS(5062), - [anon_sym_with] = ACTIONS(5062), + [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), @@ -509134,24 +521102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3706] = { - [sym__name] = STATE(2766), - [sym_alias_qualified_name] = STATE(2747), - [sym__simple_name] = STATE(2747), - [sym_qualified_name] = STATE(2747), - [sym_generic_name] = STATE(2693), - [sym_type] = STATE(2730), - [sym_implicit_type] = STATE(2635), - [sym_array_type] = STATE(2751), - [sym__array_base_type] = STATE(6942), - [sym_nullable_type] = STATE(2752), - [sym_pointer_type] = STATE(2752), - [sym__pointer_base_type] = STATE(7423), - [sym_function_pointer_type] = STATE(2752), - [sym_ref_type] = STATE(2635), - [sym_scoped_type] = STATE(2635), - [sym_tuple_type] = STATE(2753), - [sym_identifier] = STATE(2506), - [sym__reserved_identifier] = STATE(2551), [sym_preproc_region] = STATE(3706), [sym_preproc_endregion] = STATE(3706), [sym_preproc_line] = STATE(3706), @@ -509161,34 +521111,52 @@ 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), - [sym__identifier_token] = ACTIONS(6045), - [anon_sym_alias] = ACTIONS(6047), - [anon_sym_global] = ACTIONS(6047), - [anon_sym_LPAREN] = ACTIONS(6049), - [anon_sym_ref] = ACTIONS(3592), - [anon_sym_delegate] = ACTIONS(6051), - [anon_sym_file] = ACTIONS(6047), - [anon_sym_readonly] = ACTIONS(2855), - [anon_sym_where] = ACTIONS(6047), - [anon_sym_notnull] = ACTIONS(6047), - [anon_sym_unmanaged] = ACTIONS(6047), - [anon_sym_scoped] = ACTIONS(6053), - [anon_sym_var] = ACTIONS(6055), - [sym_predefined_type] = ACTIONS(6057), - [anon_sym_yield] = ACTIONS(6047), - [anon_sym_when] = ACTIONS(6047), - [anon_sym_from] = ACTIONS(6047), - [anon_sym_into] = ACTIONS(6047), - [anon_sym_join] = ACTIONS(6047), - [anon_sym_on] = ACTIONS(6047), - [anon_sym_equals] = ACTIONS(6047), - [anon_sym_let] = ACTIONS(6047), - [anon_sym_orderby] = ACTIONS(6047), - [anon_sym_ascending] = ACTIONS(6047), - [anon_sym_descending] = ACTIONS(6047), - [anon_sym_group] = ACTIONS(6047), - [anon_sym_by] = ACTIONS(6047), - [anon_sym_select] = ACTIONS(6047), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509201,24 +521169,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3707] = { - [sym__name] = STATE(2378), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(2328), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(3707), [sym_preproc_endregion] = STATE(3707), [sym_preproc_line] = STATE(3707), @@ -509228,34 +521178,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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_ref] = ACTIONS(4060), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_readonly] = ACTIONS(6059), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(5736), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509277,52 +521245,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(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [anon_sym_QMARK_QMARK] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_join] = ACTIONS(4815), - [anon_sym_let] = ACTIONS(4815), - [anon_sym_orderby] = ACTIONS(4815), - [anon_sym_ascending] = ACTIONS(4815), - [anon_sym_descending] = ACTIONS(4815), - [anon_sym_group] = ACTIONS(4815), - [anon_sym_select] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509344,52 +521312,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(4827), - [anon_sym_COMMA] = ACTIONS(4827), - [anon_sym_LPAREN] = ACTIONS(4827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509411,52 +521379,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(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_ascending] = ACTIONS(2911), - [anon_sym_descending] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), + [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), @@ -509478,52 +521446,52 @@ 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(5288), - [anon_sym_COMMA] = ACTIONS(5288), - [anon_sym_LPAREN] = ACTIONS(5288), - [anon_sym_LT] = ACTIONS(5290), - [anon_sym_GT] = ACTIONS(5290), - [anon_sym_where] = ACTIONS(5288), - [anon_sym_QMARK] = ACTIONS(5290), - [anon_sym_BANG] = ACTIONS(5290), - [anon_sym_PLUS_PLUS] = ACTIONS(5288), - [anon_sym_DASH_DASH] = ACTIONS(5288), - [anon_sym_PLUS] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(5290), - [anon_sym_STAR] = ACTIONS(5288), - [anon_sym_SLASH] = ACTIONS(5290), - [anon_sym_PERCENT] = ACTIONS(5288), - [anon_sym_CARET] = ACTIONS(5288), - [anon_sym_PIPE] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(5290), - [anon_sym_LT_LT] = ACTIONS(5288), - [anon_sym_GT_GT] = ACTIONS(5290), - [anon_sym_GT_GT_GT] = ACTIONS(5288), - [anon_sym_EQ_EQ] = ACTIONS(5288), - [anon_sym_BANG_EQ] = ACTIONS(5288), - [anon_sym_GT_EQ] = ACTIONS(5288), - [anon_sym_LT_EQ] = ACTIONS(5288), - [anon_sym_DOT] = ACTIONS(5290), - [anon_sym_switch] = ACTIONS(5288), - [anon_sym_DOT_DOT] = ACTIONS(5288), - [anon_sym_and] = ACTIONS(5288), - [anon_sym_or] = ACTIONS(5290), - [anon_sym_AMP_AMP] = ACTIONS(5288), - [anon_sym_PIPE_PIPE] = ACTIONS(5288), - [anon_sym_QMARK_QMARK] = ACTIONS(5288), - [anon_sym_from] = ACTIONS(5288), - [anon_sym_into] = ACTIONS(5288), - [anon_sym_join] = ACTIONS(5288), - [anon_sym_let] = ACTIONS(5288), - [anon_sym_orderby] = ACTIONS(5288), - [anon_sym_ascending] = ACTIONS(5288), - [anon_sym_descending] = ACTIONS(5288), - [anon_sym_group] = ACTIONS(5288), - [anon_sym_select] = ACTIONS(5288), - [anon_sym_as] = ACTIONS(5290), - [anon_sym_is] = ACTIONS(5288), - [anon_sym_DASH_GT] = ACTIONS(5288), - [anon_sym_with] = ACTIONS(5288), + [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), @@ -509536,6 +521504,24 @@ 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_preproc_region] = STATE(3712), [sym_preproc_endregion] = STATE(3712), [sym_preproc_line] = STATE(3712), @@ -509545,52 +521531,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3712), [sym_preproc_define] = STATE(3712), [sym_preproc_undef] = STATE(3712), - [anon_sym_LBRACK] = ACTIONS(4831), - [anon_sym_COMMA] = ACTIONS(4831), - [anon_sym_LPAREN] = ACTIONS(4831), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509603,8 +521571,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3713] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3713), [sym_preproc_endregion] = STATE(3713), [sym_preproc_line] = STATE(3713), @@ -509614,50 +521580,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509670,8 +521638,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3714] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3714), [sym_preproc_endregion] = STATE(3714), [sym_preproc_line] = STATE(3714), @@ -509681,50 +521647,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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -509737,8 +521705,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3715] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3715), [sym_preproc_endregion] = STATE(3715), [sym_preproc_line] = STATE(3715), @@ -509748,50 +521714,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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -509804,8 +521772,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3716] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3716), [sym_preproc_endregion] = STATE(3716), [sym_preproc_line] = STATE(3716), @@ -509815,50 +521781,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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5656), - [anon_sym_PIPE] = ACTIONS(5658), - [anon_sym_AMP] = ACTIONS(5658), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(5656), - [anon_sym_BANG_EQ] = ACTIONS(5656), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -509871,8 +521839,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3717] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3717), [sym_preproc_endregion] = STATE(3717), [sym_preproc_line] = STATE(3717), @@ -509882,50 +521848,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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(5656), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), @@ -509938,25 +521906,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3718] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym__join_header] = STATE(6969), - [sym_identifier] = STATE(5611), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3718), [sym_preproc_endregion] = STATE(3718), [sym_preproc_line] = STATE(3718), @@ -509966,33 +521915,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -510005,8 +521973,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3719] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -510016,50 +522000,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3719), [sym_preproc_define] = STATE(3719), [sym_preproc_undef] = STATE(3719), - [anon_sym_LBRACK] = ACTIONS(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(5656), - [anon_sym_QMARK_QMARK] = ACTIONS(5656), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510072,24 +522040,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3720] = { - [sym__name] = STATE(2580), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(2328), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2481), - [sym__reserved_identifier] = STATE(2286), [sym_preproc_region] = STATE(3720), [sym_preproc_endregion] = STATE(3720), [sym_preproc_line] = STATE(3720), @@ -510099,34 +522049,52 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_ref] = ACTIONS(3576), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_readonly] = ACTIONS(2823), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(6061), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510148,52 +522116,52 @@ 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(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_LT] = ACTIONS(4976), - [anon_sym_GT] = ACTIONS(4976), - [anon_sym_where] = ACTIONS(4974), - [anon_sym_QMARK] = ACTIONS(4976), - [anon_sym_BANG] = ACTIONS(4976), - [anon_sym_PLUS_PLUS] = ACTIONS(4974), - [anon_sym_DASH_DASH] = ACTIONS(4974), - [anon_sym_PLUS] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_STAR] = ACTIONS(4974), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4974), - [anon_sym_CARET] = ACTIONS(4974), - [anon_sym_PIPE] = ACTIONS(4976), - [anon_sym_AMP] = ACTIONS(4976), - [anon_sym_LT_LT] = ACTIONS(4974), - [anon_sym_GT_GT] = ACTIONS(4976), - [anon_sym_GT_GT_GT] = ACTIONS(4974), - [anon_sym_EQ_EQ] = ACTIONS(4974), - [anon_sym_BANG_EQ] = ACTIONS(4974), - [anon_sym_GT_EQ] = ACTIONS(4974), - [anon_sym_LT_EQ] = ACTIONS(4974), - [anon_sym_DOT] = ACTIONS(4976), - [anon_sym_switch] = ACTIONS(4974), - [anon_sym_DOT_DOT] = ACTIONS(4974), - [anon_sym_and] = ACTIONS(4974), - [anon_sym_or] = ACTIONS(4976), - [anon_sym_AMP_AMP] = ACTIONS(4974), - [anon_sym_PIPE_PIPE] = ACTIONS(4974), - [anon_sym_QMARK_QMARK] = ACTIONS(4974), - [anon_sym_from] = ACTIONS(4974), - [anon_sym_into] = ACTIONS(4974), - [anon_sym_join] = ACTIONS(4974), - [anon_sym_let] = ACTIONS(4974), - [anon_sym_orderby] = ACTIONS(4974), - [anon_sym_ascending] = ACTIONS(4974), - [anon_sym_descending] = ACTIONS(4974), - [anon_sym_group] = ACTIONS(4974), - [anon_sym_select] = ACTIONS(4974), - [anon_sym_as] = ACTIONS(4976), - [anon_sym_is] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_with] = ACTIONS(4974), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510206,8 +522174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3722] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), + [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), @@ -510217,50 +522185,50 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5656), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5656), - [anon_sym_QMARK] = ACTIONS(5658), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5656), - [anon_sym_into] = ACTIONS(5656), - [anon_sym_join] = ACTIONS(5656), - [anon_sym_let] = ACTIONS(5656), - [anon_sym_orderby] = ACTIONS(5656), - [anon_sym_ascending] = ACTIONS(5656), - [anon_sym_descending] = ACTIONS(5656), - [anon_sym_group] = ACTIONS(5656), - [anon_sym_select] = ACTIONS(5656), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510273,6 +522241,8 @@ 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_preproc_region] = STATE(3723), [sym_preproc_endregion] = STATE(3723), [sym_preproc_line] = STATE(3723), @@ -510282,52 +522252,50 @@ 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(4854), - [anon_sym_COMMA] = ACTIONS(4854), - [anon_sym_LPAREN] = ACTIONS(4854), - [anon_sym_LT] = ACTIONS(4856), - [anon_sym_GT] = ACTIONS(4856), - [anon_sym_where] = ACTIONS(4854), - [anon_sym_QMARK] = ACTIONS(4856), - [anon_sym_BANG] = ACTIONS(4856), - [anon_sym_PLUS_PLUS] = ACTIONS(4854), - [anon_sym_DASH_DASH] = ACTIONS(4854), - [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(4856), - [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(4854), - [anon_sym_with] = ACTIONS(4854), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510340,6 +522308,8 @@ 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), @@ -510349,52 +522319,50 @@ 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(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5294), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_from] = ACTIONS(5292), - [anon_sym_into] = ACTIONS(5292), - [anon_sym_join] = ACTIONS(5292), - [anon_sym_let] = ACTIONS(5292), - [anon_sym_orderby] = ACTIONS(5292), - [anon_sym_ascending] = ACTIONS(5292), - [anon_sym_descending] = ACTIONS(5292), - [anon_sym_group] = ACTIONS(5292), - [anon_sym_select] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5294), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510407,6 +522375,8 @@ 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), @@ -510416,52 +522386,50 @@ 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(4868), - [anon_sym_COMMA] = ACTIONS(4868), - [anon_sym_LPAREN] = ACTIONS(4868), - [anon_sym_LT] = ACTIONS(4870), - [anon_sym_GT] = ACTIONS(4870), - [anon_sym_where] = ACTIONS(4868), - [anon_sym_QMARK] = ACTIONS(4870), - [anon_sym_BANG] = ACTIONS(4870), - [anon_sym_PLUS_PLUS] = ACTIONS(4868), - [anon_sym_DASH_DASH] = ACTIONS(4868), - [anon_sym_PLUS] = ACTIONS(4870), - [anon_sym_DASH] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4868), - [anon_sym_SLASH] = ACTIONS(4870), - [anon_sym_PERCENT] = ACTIONS(4868), - [anon_sym_CARET] = ACTIONS(4868), - [anon_sym_PIPE] = ACTIONS(4870), - [anon_sym_AMP] = ACTIONS(4870), - [anon_sym_LT_LT] = ACTIONS(4868), - [anon_sym_GT_GT] = ACTIONS(4870), - [anon_sym_GT_GT_GT] = ACTIONS(4868), - [anon_sym_EQ_EQ] = ACTIONS(4868), - [anon_sym_BANG_EQ] = ACTIONS(4868), - [anon_sym_GT_EQ] = ACTIONS(4868), - [anon_sym_LT_EQ] = ACTIONS(4868), - [anon_sym_DOT] = ACTIONS(4870), - [anon_sym_switch] = ACTIONS(4868), - [anon_sym_DOT_DOT] = ACTIONS(4868), - [anon_sym_and] = ACTIONS(4868), - [anon_sym_or] = ACTIONS(4870), - [anon_sym_AMP_AMP] = ACTIONS(4868), - [anon_sym_PIPE_PIPE] = ACTIONS(4868), - [anon_sym_QMARK_QMARK] = ACTIONS(4868), - [anon_sym_from] = ACTIONS(4868), - [anon_sym_into] = ACTIONS(4868), - [anon_sym_join] = ACTIONS(4868), - [anon_sym_let] = ACTIONS(4868), - [anon_sym_orderby] = ACTIONS(4868), - [anon_sym_ascending] = ACTIONS(4868), - [anon_sym_descending] = ACTIONS(4868), - [anon_sym_group] = ACTIONS(4868), - [anon_sym_select] = ACTIONS(4868), - [anon_sym_as] = ACTIONS(4870), - [anon_sym_is] = ACTIONS(4868), - [anon_sym_DASH_GT] = ACTIONS(4868), - [anon_sym_with] = ACTIONS(4868), + [anon_sym_LBRACK] = ACTIONS(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510474,6 +522442,8 @@ 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), @@ -510483,52 +522453,50 @@ 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(5346), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5346), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_where] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PLUS_PLUS] = ACTIONS(5346), - [anon_sym_DASH_DASH] = ACTIONS(5346), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_PERCENT] = ACTIONS(5346), - [anon_sym_CARET] = ACTIONS(5346), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_AMP] = ACTIONS(5349), - [anon_sym_LT_LT] = ACTIONS(5346), - [anon_sym_GT_GT] = ACTIONS(5349), - [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(5349), - [anon_sym_switch] = ACTIONS(5346), - [anon_sym_DOT_DOT] = ACTIONS(5346), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4213), - [anon_sym_AMP_AMP] = ACTIONS(5346), - [anon_sym_PIPE_PIPE] = ACTIONS(5346), - [anon_sym_QMARK_QMARK] = ACTIONS(5346), - [anon_sym_from] = ACTIONS(4205), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_join] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4205), - [anon_sym_orderby] = ACTIONS(4205), - [anon_sym_ascending] = ACTIONS(4205), - [anon_sym_descending] = ACTIONS(4205), - [anon_sym_group] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(5349), - [anon_sym_is] = ACTIONS(5346), - [anon_sym_DASH_GT] = ACTIONS(5346), - [anon_sym_with] = ACTIONS(5346), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510541,25 +522509,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3727] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7001), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -510569,33 +522536,34 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510617,52 +522585,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(5292), - [anon_sym_COMMA] = ACTIONS(5292), - [anon_sym_LPAREN] = ACTIONS(5292), - [anon_sym_LT] = ACTIONS(5294), - [anon_sym_GT] = ACTIONS(5294), - [anon_sym_where] = ACTIONS(5292), - [anon_sym_QMARK] = ACTIONS(5294), - [anon_sym_BANG] = ACTIONS(5294), - [anon_sym_PLUS_PLUS] = ACTIONS(5292), - [anon_sym_DASH_DASH] = ACTIONS(5292), - [anon_sym_PLUS] = ACTIONS(5294), - [anon_sym_DASH] = ACTIONS(5294), - [anon_sym_STAR] = ACTIONS(5292), - [anon_sym_SLASH] = ACTIONS(5294), - [anon_sym_PERCENT] = ACTIONS(5292), - [anon_sym_CARET] = ACTIONS(5292), - [anon_sym_PIPE] = ACTIONS(5294), - [anon_sym_AMP] = ACTIONS(5294), - [anon_sym_LT_LT] = ACTIONS(5292), - [anon_sym_GT_GT] = ACTIONS(5294), - [anon_sym_GT_GT_GT] = ACTIONS(5292), - [anon_sym_EQ_EQ] = ACTIONS(5292), - [anon_sym_BANG_EQ] = ACTIONS(5292), - [anon_sym_GT_EQ] = ACTIONS(5292), - [anon_sym_LT_EQ] = ACTIONS(5292), - [anon_sym_DOT] = ACTIONS(5294), - [anon_sym_switch] = ACTIONS(5292), - [anon_sym_DOT_DOT] = ACTIONS(5292), - [anon_sym_and] = ACTIONS(5292), - [anon_sym_or] = ACTIONS(5294), - [anon_sym_AMP_AMP] = ACTIONS(5292), - [anon_sym_PIPE_PIPE] = ACTIONS(5292), - [anon_sym_QMARK_QMARK] = ACTIONS(5292), - [anon_sym_from] = ACTIONS(5292), - [anon_sym_into] = ACTIONS(5292), - [anon_sym_join] = ACTIONS(5292), - [anon_sym_let] = ACTIONS(5292), - [anon_sym_orderby] = ACTIONS(5292), - [anon_sym_ascending] = ACTIONS(5292), - [anon_sym_descending] = ACTIONS(5292), - [anon_sym_group] = ACTIONS(5292), - [anon_sym_select] = ACTIONS(5292), - [anon_sym_as] = ACTIONS(5294), - [anon_sym_is] = ACTIONS(5292), - [anon_sym_DASH_GT] = ACTIONS(5292), - [anon_sym_with] = ACTIONS(5292), + [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), @@ -510684,52 +522652,52 @@ 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(5340), - [anon_sym_COMMA] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(5340), - [anon_sym_LT] = ACTIONS(5343), - [anon_sym_GT] = ACTIONS(5343), - [anon_sym_where] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(5343), - [anon_sym_BANG] = ACTIONS(5343), - [anon_sym_PLUS_PLUS] = ACTIONS(5340), - [anon_sym_DASH_DASH] = ACTIONS(5340), - [anon_sym_PLUS] = ACTIONS(5343), - [anon_sym_DASH] = ACTIONS(5343), - [anon_sym_STAR] = ACTIONS(5340), - [anon_sym_SLASH] = ACTIONS(5343), - [anon_sym_PERCENT] = ACTIONS(5340), - [anon_sym_CARET] = ACTIONS(5340), - [anon_sym_PIPE] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5343), - [anon_sym_LT_LT] = ACTIONS(5340), - [anon_sym_GT_GT] = ACTIONS(5343), - [anon_sym_GT_GT_GT] = ACTIONS(5340), - [anon_sym_EQ_EQ] = ACTIONS(5340), - [anon_sym_BANG_EQ] = ACTIONS(5340), - [anon_sym_GT_EQ] = ACTIONS(5340), - [anon_sym_LT_EQ] = ACTIONS(5340), - [anon_sym_DOT] = ACTIONS(5343), - [anon_sym_switch] = ACTIONS(5340), - [anon_sym_DOT_DOT] = ACTIONS(5340), - [anon_sym_and] = ACTIONS(4205), - [anon_sym_or] = ACTIONS(4213), - [anon_sym_AMP_AMP] = ACTIONS(5340), - [anon_sym_PIPE_PIPE] = ACTIONS(5340), - [anon_sym_QMARK_QMARK] = ACTIONS(5340), - [anon_sym_from] = ACTIONS(4205), - [anon_sym_into] = ACTIONS(4205), - [anon_sym_join] = ACTIONS(4205), - [anon_sym_let] = ACTIONS(4205), - [anon_sym_orderby] = ACTIONS(4205), - [anon_sym_ascending] = ACTIONS(4205), - [anon_sym_descending] = ACTIONS(4205), - [anon_sym_group] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_as] = ACTIONS(5343), - [anon_sym_is] = ACTIONS(5340), - [anon_sym_DASH_GT] = ACTIONS(5340), - [anon_sym_with] = ACTIONS(5340), + [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), @@ -510742,24 +522710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3730] = { - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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), @@ -510769,34 +522721,50 @@ 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), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(4116), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6063), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5770), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510809,6 +522777,8 @@ 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), @@ -510818,52 +522788,50 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3749), - [anon_sym_SEMI] = ACTIONS(5839), - [anon_sym_LBRACK] = ACTIONS(5839), - [anon_sym_COMMA] = ACTIONS(5839), - [anon_sym_RBRACK] = ACTIONS(5839), - [anon_sym_LPAREN] = ACTIONS(5839), - [anon_sym_RPAREN] = ACTIONS(5839), - [anon_sym_RBRACE] = ACTIONS(5839), - [anon_sym_LT] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5841), - [anon_sym_in] = ACTIONS(5841), - [anon_sym_QMARK] = ACTIONS(5841), - [anon_sym_BANG] = ACTIONS(5841), - [anon_sym_PLUS_PLUS] = ACTIONS(5839), - [anon_sym_DASH_DASH] = ACTIONS(5839), - [anon_sym_PLUS] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5841), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_SLASH] = ACTIONS(5841), - [anon_sym_PERCENT] = ACTIONS(5839), - [anon_sym_CARET] = ACTIONS(5839), - [anon_sym_PIPE] = ACTIONS(5841), - [anon_sym_AMP] = ACTIONS(5841), - [anon_sym_LT_LT] = ACTIONS(5839), - [anon_sym_GT_GT] = ACTIONS(5841), - [anon_sym_GT_GT_GT] = ACTIONS(5839), - [anon_sym_EQ_EQ] = ACTIONS(5839), - [anon_sym_BANG_EQ] = ACTIONS(5839), - [anon_sym_GT_EQ] = ACTIONS(5839), - [anon_sym_LT_EQ] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(5841), - [anon_sym_switch] = ACTIONS(5839), - [anon_sym_DOT_DOT] = ACTIONS(5839), - [anon_sym_and] = ACTIONS(5839), - [anon_sym_or] = ACTIONS(5839), - [anon_sym_AMP_AMP] = ACTIONS(5839), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_QMARK_QMARK] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(5967), - [anon_sym_as] = ACTIONS(5839), - [anon_sym_is] = ACTIONS(5839), - [anon_sym_DASH_GT] = ACTIONS(5839), - [anon_sym_with] = ACTIONS(5839), - [aux_sym_preproc_if_token3] = ACTIONS(5839), - [aux_sym_preproc_else_token1] = ACTIONS(5839), - [aux_sym_preproc_elif_token1] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510876,6 +522844,8 @@ 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), @@ -510885,52 +522855,50 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3750), - [anon_sym_SEMI] = ACTIONS(5839), - [anon_sym_LBRACK] = ACTIONS(5839), - [anon_sym_COMMA] = ACTIONS(5839), - [anon_sym_RBRACK] = ACTIONS(5839), - [anon_sym_LPAREN] = ACTIONS(5839), - [anon_sym_RPAREN] = ACTIONS(5839), - [anon_sym_RBRACE] = ACTIONS(5839), - [anon_sym_LT] = ACTIONS(5841), - [anon_sym_GT] = ACTIONS(5841), - [anon_sym_in] = ACTIONS(5841), - [anon_sym_QMARK] = ACTIONS(5841), - [anon_sym_BANG] = ACTIONS(5841), - [anon_sym_PLUS_PLUS] = ACTIONS(5839), - [anon_sym_DASH_DASH] = ACTIONS(5839), - [anon_sym_PLUS] = ACTIONS(5841), - [anon_sym_DASH] = ACTIONS(5841), - [anon_sym_STAR] = ACTIONS(5839), - [anon_sym_SLASH] = ACTIONS(5841), - [anon_sym_PERCENT] = ACTIONS(5839), - [anon_sym_CARET] = ACTIONS(5839), - [anon_sym_PIPE] = ACTIONS(5841), - [anon_sym_AMP] = ACTIONS(5841), - [anon_sym_LT_LT] = ACTIONS(5839), - [anon_sym_GT_GT] = ACTIONS(5841), - [anon_sym_GT_GT_GT] = ACTIONS(5839), - [anon_sym_EQ_EQ] = ACTIONS(5839), - [anon_sym_BANG_EQ] = ACTIONS(5839), - [anon_sym_GT_EQ] = ACTIONS(5839), - [anon_sym_LT_EQ] = ACTIONS(5839), - [anon_sym_DOT] = ACTIONS(5841), - [anon_sym_switch] = ACTIONS(5839), - [anon_sym_DOT_DOT] = ACTIONS(5839), - [anon_sym_and] = ACTIONS(5839), - [anon_sym_or] = ACTIONS(5839), - [anon_sym_AMP_AMP] = ACTIONS(5839), - [anon_sym_PIPE_PIPE] = ACTIONS(5839), - [anon_sym_QMARK_QMARK] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(5967), - [anon_sym_as] = ACTIONS(5839), - [anon_sym_is] = ACTIONS(5839), - [anon_sym_DASH_GT] = ACTIONS(5839), - [anon_sym_with] = ACTIONS(5839), - [aux_sym_preproc_if_token3] = ACTIONS(5839), - [aux_sym_preproc_else_token1] = ACTIONS(5839), - [aux_sym_preproc_elif_token1] = ACTIONS(5839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -510943,6 +522911,8 @@ 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), @@ -510952,52 +522922,50 @@ 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(5312), - [anon_sym_COMMA] = ACTIONS(5312), - [anon_sym_LPAREN] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_where] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(5314), - [anon_sym_BANG] = ACTIONS(5314), - [anon_sym_PLUS_PLUS] = ACTIONS(5312), - [anon_sym_DASH_DASH] = ACTIONS(5312), - [anon_sym_PLUS] = ACTIONS(5314), - [anon_sym_DASH] = ACTIONS(5314), - [anon_sym_STAR] = ACTIONS(5312), - [anon_sym_SLASH] = ACTIONS(5314), - [anon_sym_PERCENT] = ACTIONS(5312), - [anon_sym_CARET] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5314), - [anon_sym_LT_LT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5314), - [anon_sym_GT_GT_GT] = ACTIONS(5312), - [anon_sym_EQ_EQ] = ACTIONS(5312), - [anon_sym_BANG_EQ] = ACTIONS(5312), - [anon_sym_GT_EQ] = ACTIONS(5312), - [anon_sym_LT_EQ] = ACTIONS(5312), - [anon_sym_DOT] = ACTIONS(5314), - [anon_sym_switch] = ACTIONS(5312), - [anon_sym_DOT_DOT] = ACTIONS(5312), - [anon_sym_and] = ACTIONS(5312), - [anon_sym_or] = ACTIONS(5314), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_QMARK_QMARK] = ACTIONS(5312), - [anon_sym_from] = ACTIONS(5312), - [anon_sym_into] = ACTIONS(5312), - [anon_sym_join] = ACTIONS(5312), - [anon_sym_let] = ACTIONS(5312), - [anon_sym_orderby] = ACTIONS(5312), - [anon_sym_ascending] = ACTIONS(5312), - [anon_sym_descending] = ACTIONS(5312), - [anon_sym_group] = ACTIONS(5312), - [anon_sym_select] = ACTIONS(5312), - [anon_sym_as] = ACTIONS(5314), - [anon_sym_is] = ACTIONS(5312), - [anon_sym_DASH_GT] = ACTIONS(5312), - [anon_sym_with] = ACTIONS(5312), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511019,52 +522987,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3734), [sym_preproc_define] = STATE(3734), [sym_preproc_undef] = STATE(3734), - [sym__identifier_token] = ACTIONS(5696), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(5696), - [anon_sym_global] = ACTIONS(5696), - [anon_sym_unsafe] = ACTIONS(5696), - [anon_sym_static] = ACTIONS(5696), - [anon_sym_LPAREN] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(5696), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(5696), - [anon_sym_notnull] = ACTIONS(5696), - [anon_sym_unmanaged] = ACTIONS(5696), - [anon_sym_scoped] = ACTIONS(5696), - [anon_sym_var] = ACTIONS(5696), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(5696), - [anon_sym_when] = ACTIONS(5696), - [anon_sym_from] = ACTIONS(5696), - [anon_sym_into] = ACTIONS(5696), - [anon_sym_join] = ACTIONS(5696), - [anon_sym_on] = ACTIONS(5696), - [anon_sym_equals] = ACTIONS(5696), - [anon_sym_let] = ACTIONS(5696), - [anon_sym_orderby] = ACTIONS(5696), - [anon_sym_ascending] = ACTIONS(5696), - [anon_sym_descending] = ACTIONS(5696), - [anon_sym_group] = ACTIONS(5696), - [anon_sym_by] = ACTIONS(5696), - [anon_sym_select] = ACTIONS(5696), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511077,25 +523045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3735] = { - [sym_variable_declaration] = STATE(7289), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5743), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3735), [sym_preproc_endregion] = STATE(3735), [sym_preproc_line] = STATE(3735), @@ -511105,33 +523054,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3735), [sym_preproc_define] = STATE(3735), [sym_preproc_undef] = STATE(3735), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -511144,6 +523112,24 @@ 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), @@ -511153,52 +523139,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4950), - [anon_sym_COMMA] = ACTIONS(4950), - [anon_sym_LPAREN] = ACTIONS(4950), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_where] = ACTIONS(4950), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4952), - [anon_sym_PLUS_PLUS] = ACTIONS(4950), - [anon_sym_DASH_DASH] = ACTIONS(4950), - [anon_sym_PLUS] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_STAR] = ACTIONS(4950), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_CARET] = ACTIONS(4950), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_AMP] = ACTIONS(4952), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4952), - [anon_sym_GT_GT_GT] = ACTIONS(4950), - [anon_sym_EQ_EQ] = ACTIONS(4950), - [anon_sym_BANG_EQ] = ACTIONS(4950), - [anon_sym_GT_EQ] = ACTIONS(4950), - [anon_sym_LT_EQ] = ACTIONS(4950), - [anon_sym_DOT] = ACTIONS(4952), - [anon_sym_switch] = ACTIONS(4950), - [anon_sym_DOT_DOT] = ACTIONS(4950), - [anon_sym_and] = ACTIONS(4950), - [anon_sym_or] = ACTIONS(4952), - [anon_sym_AMP_AMP] = ACTIONS(4950), - [anon_sym_PIPE_PIPE] = ACTIONS(4950), - [anon_sym_QMARK_QMARK] = ACTIONS(4950), - [anon_sym_from] = ACTIONS(4950), - [anon_sym_into] = ACTIONS(4950), - [anon_sym_join] = ACTIONS(4950), - [anon_sym_let] = ACTIONS(4950), - [anon_sym_orderby] = ACTIONS(4950), - [anon_sym_ascending] = ACTIONS(4950), - [anon_sym_descending] = ACTIONS(4950), - [anon_sym_group] = ACTIONS(4950), - [anon_sym_select] = ACTIONS(4950), - [anon_sym_as] = ACTIONS(4952), - [anon_sym_is] = ACTIONS(4950), - [anon_sym_DASH_GT] = ACTIONS(4950), - [anon_sym_with] = ACTIONS(4950), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511211,8 +523179,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3737] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3737), [sym_preproc_endregion] = STATE(3737), [sym_preproc_line] = STATE(3737), @@ -511222,50 +523188,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(1153), - [anon_sym_GT] = ACTIONS(1153), - [anon_sym_where] = ACTIONS(1139), - [anon_sym_QMARK] = ACTIONS(1153), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(1153), - [anon_sym_DASH] = ACTIONS(1153), - [anon_sym_STAR] = ACTIONS(1139), - [anon_sym_SLASH] = ACTIONS(1153), - [anon_sym_PERCENT] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1139), - [anon_sym_PIPE] = ACTIONS(1153), - [anon_sym_AMP] = ACTIONS(1153), - [anon_sym_LT_LT] = ACTIONS(1139), - [anon_sym_GT_GT] = ACTIONS(1153), - [anon_sym_GT_GT_GT] = ACTIONS(1139), - [anon_sym_EQ_EQ] = ACTIONS(1139), - [anon_sym_BANG_EQ] = ACTIONS(1139), - [anon_sym_GT_EQ] = ACTIONS(1139), - [anon_sym_LT_EQ] = ACTIONS(1139), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(1139), - [anon_sym_PIPE_PIPE] = ACTIONS(1139), - [anon_sym_QMARK_QMARK] = ACTIONS(1139), - [anon_sym_from] = ACTIONS(1139), - [anon_sym_into] = ACTIONS(1139), - [anon_sym_join] = ACTIONS(1139), - [anon_sym_let] = ACTIONS(1139), - [anon_sym_orderby] = ACTIONS(1139), - [anon_sym_ascending] = ACTIONS(1139), - [anon_sym_descending] = ACTIONS(1139), - [anon_sym_group] = ACTIONS(1139), - [anon_sym_select] = ACTIONS(1139), - [anon_sym_as] = ACTIONS(1153), - [anon_sym_is] = ACTIONS(1139), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(1139), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511278,24 +523246,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3738] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2849), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(2831), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3738), [sym_preproc_endregion] = STATE(3738), [sym_preproc_line] = STATE(3738), @@ -511305,34 +523255,52 @@ 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(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LPAREN] = ACTIONS(5955), - [anon_sym_ref] = ACTIONS(3804), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_readonly] = ACTIONS(6065), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5666), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511345,24 +523313,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3739] = { - [sym__name] = STATE(4870), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(4318), - [sym__reserved_identifier] = STATE(2846), + [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(3739), [sym_preproc_endregion] = STATE(3739), [sym_preproc_line] = STATE(3739), @@ -511372,34 +523340,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(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(3961), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(6067), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5654), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511412,25 +523380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3740] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7019), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3740), [sym_preproc_endregion] = STATE(3740), [sym_preproc_line] = STATE(3740), @@ -511440,33 +523389,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3740), [sym_preproc_define] = STATE(3740), [sym_preproc_undef] = STATE(3740), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), @@ -511479,24 +523447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3741] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3741), [sym_preproc_endregion] = STATE(3741), [sym_preproc_line] = STATE(3741), @@ -511506,34 +523456,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3741), [sym_preproc_define] = STATE(3741), [sym_preproc_undef] = STATE(3741), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2711), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511555,52 +523523,52 @@ 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(4962), - [anon_sym_COMMA] = ACTIONS(4962), - [anon_sym_LPAREN] = ACTIONS(4962), - [anon_sym_LT] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_where] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(4964), - [anon_sym_BANG] = ACTIONS(4964), - [anon_sym_PLUS_PLUS] = ACTIONS(4962), - [anon_sym_DASH_DASH] = ACTIONS(4962), - [anon_sym_PLUS] = ACTIONS(4964), - [anon_sym_DASH] = ACTIONS(4964), - [anon_sym_STAR] = ACTIONS(4962), - [anon_sym_SLASH] = ACTIONS(4964), - [anon_sym_PERCENT] = ACTIONS(4962), - [anon_sym_CARET] = ACTIONS(4962), - [anon_sym_PIPE] = ACTIONS(4964), - [anon_sym_AMP] = ACTIONS(4964), - [anon_sym_LT_LT] = ACTIONS(4962), - [anon_sym_GT_GT] = ACTIONS(4964), - [anon_sym_GT_GT_GT] = ACTIONS(4962), - [anon_sym_EQ_EQ] = ACTIONS(4962), - [anon_sym_BANG_EQ] = ACTIONS(4962), - [anon_sym_GT_EQ] = ACTIONS(4962), - [anon_sym_LT_EQ] = ACTIONS(4962), - [anon_sym_DOT] = ACTIONS(4964), - [anon_sym_switch] = ACTIONS(4962), - [anon_sym_DOT_DOT] = ACTIONS(4962), - [anon_sym_and] = ACTIONS(4962), - [anon_sym_or] = ACTIONS(4964), - [anon_sym_AMP_AMP] = ACTIONS(4962), - [anon_sym_PIPE_PIPE] = ACTIONS(4962), - [anon_sym_QMARK_QMARK] = ACTIONS(4962), - [anon_sym_from] = ACTIONS(4962), - [anon_sym_into] = ACTIONS(4962), - [anon_sym_join] = ACTIONS(4962), - [anon_sym_let] = ACTIONS(4962), - [anon_sym_orderby] = ACTIONS(4962), - [anon_sym_ascending] = ACTIONS(4962), - [anon_sym_descending] = ACTIONS(4962), - [anon_sym_group] = ACTIONS(4962), - [anon_sym_select] = ACTIONS(4962), - [anon_sym_as] = ACTIONS(4964), - [anon_sym_is] = ACTIONS(4962), - [anon_sym_DASH_GT] = ACTIONS(4962), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -511622,52 +523590,52 @@ 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(4966), - [anon_sym_COMMA] = ACTIONS(4966), - [anon_sym_LPAREN] = ACTIONS(4966), - [anon_sym_LT] = ACTIONS(4968), - [anon_sym_GT] = ACTIONS(4968), - [anon_sym_where] = ACTIONS(4966), - [anon_sym_QMARK] = ACTIONS(4968), - [anon_sym_BANG] = ACTIONS(4968), - [anon_sym_PLUS_PLUS] = ACTIONS(4966), - [anon_sym_DASH_DASH] = ACTIONS(4966), - [anon_sym_PLUS] = ACTIONS(4968), - [anon_sym_DASH] = ACTIONS(4968), - [anon_sym_STAR] = ACTIONS(4966), - [anon_sym_SLASH] = ACTIONS(4968), - [anon_sym_PERCENT] = ACTIONS(4966), - [anon_sym_CARET] = ACTIONS(4966), - [anon_sym_PIPE] = ACTIONS(4968), - [anon_sym_AMP] = ACTIONS(4968), - [anon_sym_LT_LT] = ACTIONS(4966), - [anon_sym_GT_GT] = ACTIONS(4968), - [anon_sym_GT_GT_GT] = ACTIONS(4966), - [anon_sym_EQ_EQ] = ACTIONS(4966), - [anon_sym_BANG_EQ] = ACTIONS(4966), - [anon_sym_GT_EQ] = ACTIONS(4966), - [anon_sym_LT_EQ] = ACTIONS(4966), - [anon_sym_DOT] = ACTIONS(4968), - [anon_sym_switch] = ACTIONS(4966), - [anon_sym_DOT_DOT] = ACTIONS(4966), - [anon_sym_and] = ACTIONS(4966), - [anon_sym_or] = ACTIONS(4968), - [anon_sym_AMP_AMP] = ACTIONS(4966), - [anon_sym_PIPE_PIPE] = ACTIONS(4966), - [anon_sym_QMARK_QMARK] = ACTIONS(4966), - [anon_sym_from] = ACTIONS(4966), - [anon_sym_into] = ACTIONS(4966), - [anon_sym_join] = ACTIONS(4966), - [anon_sym_let] = ACTIONS(4966), - [anon_sym_orderby] = ACTIONS(4966), - [anon_sym_ascending] = ACTIONS(4966), - [anon_sym_descending] = ACTIONS(4966), - [anon_sym_group] = ACTIONS(4966), - [anon_sym_select] = ACTIONS(4966), - [anon_sym_as] = ACTIONS(4968), - [anon_sym_is] = ACTIONS(4966), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_with] = ACTIONS(4966), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511680,6 +523648,8 @@ 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_preproc_region] = STATE(3744), [sym_preproc_endregion] = STATE(3744), [sym_preproc_line] = STATE(3744), @@ -511689,52 +523659,50 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(6069), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511756,52 +523724,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(4986), - [anon_sym_COMMA] = ACTIONS(4986), - [anon_sym_LPAREN] = ACTIONS(4986), - [anon_sym_LT] = ACTIONS(4988), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_where] = ACTIONS(4986), - [anon_sym_QMARK] = ACTIONS(4988), - [anon_sym_BANG] = ACTIONS(4988), - [anon_sym_PLUS_PLUS] = ACTIONS(4986), - [anon_sym_DASH_DASH] = ACTIONS(4986), - [anon_sym_PLUS] = ACTIONS(4988), - [anon_sym_DASH] = ACTIONS(4988), - [anon_sym_STAR] = ACTIONS(4986), - [anon_sym_SLASH] = ACTIONS(4988), - [anon_sym_PERCENT] = ACTIONS(4986), - [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_PIPE] = ACTIONS(4988), - [anon_sym_AMP] = ACTIONS(4988), - [anon_sym_LT_LT] = ACTIONS(4986), - [anon_sym_GT_GT] = ACTIONS(4988), - [anon_sym_GT_GT_GT] = ACTIONS(4986), - [anon_sym_EQ_EQ] = ACTIONS(4986), - [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4986), - [anon_sym_DOT] = ACTIONS(4988), - [anon_sym_switch] = ACTIONS(4986), - [anon_sym_DOT_DOT] = ACTIONS(4986), - [anon_sym_and] = ACTIONS(4986), - [anon_sym_or] = ACTIONS(4988), - [anon_sym_AMP_AMP] = ACTIONS(4986), - [anon_sym_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_QMARK_QMARK] = ACTIONS(4986), - [anon_sym_from] = ACTIONS(4986), - [anon_sym_into] = ACTIONS(4986), - [anon_sym_join] = ACTIONS(4986), - [anon_sym_let] = ACTIONS(4986), - [anon_sym_orderby] = ACTIONS(4986), - [anon_sym_ascending] = ACTIONS(4986), - [anon_sym_descending] = ACTIONS(4986), - [anon_sym_group] = ACTIONS(4986), - [anon_sym_select] = ACTIONS(4986), - [anon_sym_as] = ACTIONS(4988), - [anon_sym_is] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4986), - [anon_sym_with] = ACTIONS(4986), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511814,24 +523782,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3746] = { - [sym__name] = STATE(3453), - [sym_alias_qualified_name] = STATE(2871), - [sym__simple_name] = STATE(2871), - [sym_qualified_name] = STATE(2871), - [sym_generic_name] = STATE(2873), - [sym_type] = STATE(2849), - [sym_implicit_type] = STATE(2870), - [sym_array_type] = STATE(2831), - [sym__array_base_type] = STATE(6935), - [sym_nullable_type] = STATE(2867), - [sym_pointer_type] = STATE(2867), - [sym__pointer_base_type] = STATE(7453), - [sym_function_pointer_type] = STATE(2867), - [sym_ref_type] = STATE(2870), - [sym_scoped_type] = STATE(2870), - [sym_tuple_type] = STATE(2866), - [sym_identifier] = STATE(3153), - [sym__reserved_identifier] = STATE(2826), [sym_preproc_region] = STATE(3746), [sym_preproc_endregion] = STATE(3746), [sym_preproc_line] = STATE(3746), @@ -511841,34 +523791,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3746), [sym_preproc_define] = STATE(3746), [sym_preproc_undef] = STATE(3746), - [sym__identifier_token] = ACTIONS(3800), - [anon_sym_alias] = ACTIONS(3802), - [anon_sym_global] = ACTIONS(3802), - [anon_sym_LPAREN] = ACTIONS(5955), - [anon_sym_ref] = ACTIONS(4163), - [anon_sym_delegate] = ACTIONS(5544), - [anon_sym_file] = ACTIONS(3802), - [anon_sym_readonly] = ACTIONS(6071), - [anon_sym_where] = ACTIONS(3802), - [anon_sym_notnull] = ACTIONS(3802), - [anon_sym_unmanaged] = ACTIONS(3802), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5548), - [sym_predefined_type] = ACTIONS(5550), - [anon_sym_yield] = ACTIONS(3802), - [anon_sym_when] = ACTIONS(3802), - [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_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), @@ -511881,25 +523849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3747] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6867), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3747), [sym_preproc_endregion] = STATE(3747), [sym_preproc_line] = STATE(3747), @@ -511909,33 +523858,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3747), [sym_preproc_define] = STATE(3747), [sym_preproc_undef] = STATE(3747), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -511948,24 +523916,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3748] = { - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3748), [sym_preproc_endregion] = STATE(3748), [sym_preproc_line] = STATE(3748), @@ -511975,34 +523925,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3748), [sym_preproc_define] = STATE(3748), [sym_preproc_undef] = STATE(3748), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(4140), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(6073), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5520), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512024,52 +523992,52 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3749), - [anon_sym_SEMI] = ACTIONS(5843), - [anon_sym_LBRACK] = ACTIONS(5843), - [anon_sym_COMMA] = ACTIONS(5843), - [anon_sym_RBRACK] = ACTIONS(5843), - [anon_sym_LPAREN] = ACTIONS(5843), - [anon_sym_RPAREN] = ACTIONS(5843), - [anon_sym_RBRACE] = ACTIONS(5843), - [anon_sym_LT] = ACTIONS(5845), - [anon_sym_GT] = ACTIONS(5845), - [anon_sym_in] = ACTIONS(5845), - [anon_sym_QMARK] = ACTIONS(5845), - [anon_sym_BANG] = ACTIONS(5845), - [anon_sym_PLUS_PLUS] = ACTIONS(5843), - [anon_sym_DASH_DASH] = ACTIONS(5843), - [anon_sym_PLUS] = ACTIONS(5845), - [anon_sym_DASH] = ACTIONS(5845), - [anon_sym_STAR] = ACTIONS(5843), - [anon_sym_SLASH] = ACTIONS(5845), - [anon_sym_PERCENT] = ACTIONS(5843), - [anon_sym_CARET] = ACTIONS(5843), - [anon_sym_PIPE] = ACTIONS(5845), - [anon_sym_AMP] = ACTIONS(5845), - [anon_sym_LT_LT] = ACTIONS(5843), - [anon_sym_GT_GT] = ACTIONS(5845), - [anon_sym_GT_GT_GT] = ACTIONS(5843), - [anon_sym_EQ_EQ] = ACTIONS(5843), - [anon_sym_BANG_EQ] = ACTIONS(5843), - [anon_sym_GT_EQ] = ACTIONS(5843), - [anon_sym_LT_EQ] = ACTIONS(5843), - [anon_sym_DOT] = ACTIONS(5845), - [anon_sym_switch] = ACTIONS(5843), - [anon_sym_DOT_DOT] = ACTIONS(5843), - [anon_sym_and] = ACTIONS(5843), - [anon_sym_or] = ACTIONS(5843), - [anon_sym_AMP_AMP] = ACTIONS(5843), - [anon_sym_PIPE_PIPE] = ACTIONS(5843), - [anon_sym_QMARK_QMARK] = ACTIONS(5843), - [anon_sym_into] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(5843), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(5843), - [anon_sym_with] = ACTIONS(5843), - [aux_sym_preproc_if_token3] = ACTIONS(5843), - [aux_sym_preproc_else_token1] = ACTIONS(5843), - [aux_sym_preproc_elif_token1] = ACTIONS(5843), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512091,52 +524059,52 @@ 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), - [aux_sym__query_body_repeat2] = STATE(3749), - [anon_sym_SEMI] = ACTIONS(5856), - [anon_sym_LBRACK] = ACTIONS(5856), - [anon_sym_COMMA] = ACTIONS(5856), - [anon_sym_RBRACK] = ACTIONS(5856), - [anon_sym_LPAREN] = ACTIONS(5856), - [anon_sym_RPAREN] = ACTIONS(5856), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_in] = ACTIONS(5858), - [anon_sym_QMARK] = ACTIONS(5858), - [anon_sym_BANG] = ACTIONS(5858), - [anon_sym_PLUS_PLUS] = ACTIONS(5856), - [anon_sym_DASH_DASH] = ACTIONS(5856), - [anon_sym_PLUS] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), - [anon_sym_STAR] = ACTIONS(5856), - [anon_sym_SLASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5856), - [anon_sym_CARET] = ACTIONS(5856), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_AMP] = ACTIONS(5858), - [anon_sym_LT_LT] = ACTIONS(5856), - [anon_sym_GT_GT] = ACTIONS(5858), - [anon_sym_GT_GT_GT] = ACTIONS(5856), - [anon_sym_EQ_EQ] = ACTIONS(5856), - [anon_sym_BANG_EQ] = ACTIONS(5856), - [anon_sym_GT_EQ] = ACTIONS(5856), - [anon_sym_LT_EQ] = ACTIONS(5856), - [anon_sym_DOT] = ACTIONS(5858), - [anon_sym_switch] = ACTIONS(5856), - [anon_sym_DOT_DOT] = ACTIONS(5856), - [anon_sym_and] = ACTIONS(5856), - [anon_sym_or] = ACTIONS(5856), - [anon_sym_AMP_AMP] = ACTIONS(5856), - [anon_sym_PIPE_PIPE] = ACTIONS(5856), - [anon_sym_QMARK_QMARK] = ACTIONS(5856), - [anon_sym_into] = ACTIONS(5967), - [anon_sym_as] = ACTIONS(5856), - [anon_sym_is] = ACTIONS(5856), - [anon_sym_DASH_GT] = ACTIONS(5856), - [anon_sym_with] = ACTIONS(5856), - [aux_sym_preproc_if_token3] = ACTIONS(5856), - [aux_sym_preproc_else_token1] = ACTIONS(5856), - [aux_sym_preproc_elif_token1] = ACTIONS(5856), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512149,8 +524117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3751] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3751), [sym_preproc_endregion] = STATE(3751), [sym_preproc_line] = STATE(3751), @@ -512160,50 +524126,52 @@ 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(5552), - [anon_sym_COMMA] = ACTIONS(5754), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5754), - [anon_sym_join] = ACTIONS(5754), - [anon_sym_let] = ACTIONS(5754), - [anon_sym_orderby] = ACTIONS(5754), - [anon_sym_ascending] = ACTIONS(5754), - [anon_sym_descending] = ACTIONS(5754), - [anon_sym_group] = ACTIONS(5754), - [anon_sym_select] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512225,52 +524193,52 @@ 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(4894), - [anon_sym_COMMA] = ACTIONS(4894), - [anon_sym_LPAREN] = ACTIONS(4894), - [anon_sym_LT] = ACTIONS(4896), - [anon_sym_GT] = ACTIONS(4896), - [anon_sym_where] = ACTIONS(4894), - [anon_sym_QMARK] = ACTIONS(4896), - [anon_sym_BANG] = ACTIONS(4896), - [anon_sym_PLUS_PLUS] = ACTIONS(4894), - [anon_sym_DASH_DASH] = ACTIONS(4894), - [anon_sym_PLUS] = ACTIONS(4896), - [anon_sym_DASH] = ACTIONS(4896), - [anon_sym_STAR] = ACTIONS(4894), - [anon_sym_SLASH] = ACTIONS(4896), - [anon_sym_PERCENT] = ACTIONS(4894), - [anon_sym_CARET] = ACTIONS(4894), - [anon_sym_PIPE] = ACTIONS(4896), - [anon_sym_AMP] = ACTIONS(4896), - [anon_sym_LT_LT] = ACTIONS(4894), - [anon_sym_GT_GT] = ACTIONS(4896), - [anon_sym_GT_GT_GT] = ACTIONS(4894), - [anon_sym_EQ_EQ] = ACTIONS(4894), - [anon_sym_BANG_EQ] = ACTIONS(4894), - [anon_sym_GT_EQ] = ACTIONS(4894), - [anon_sym_LT_EQ] = ACTIONS(4894), - [anon_sym_DOT] = ACTIONS(4896), - [anon_sym_switch] = ACTIONS(4894), - [anon_sym_DOT_DOT] = ACTIONS(4894), - [anon_sym_and] = ACTIONS(4894), - [anon_sym_or] = ACTIONS(4896), - [anon_sym_AMP_AMP] = ACTIONS(4894), - [anon_sym_PIPE_PIPE] = ACTIONS(4894), - [anon_sym_QMARK_QMARK] = ACTIONS(4894), - [anon_sym_from] = ACTIONS(4894), - [anon_sym_into] = ACTIONS(4894), - [anon_sym_join] = ACTIONS(4894), - [anon_sym_let] = ACTIONS(4894), - [anon_sym_orderby] = ACTIONS(4894), - [anon_sym_ascending] = ACTIONS(4894), - [anon_sym_descending] = ACTIONS(4894), - [anon_sym_group] = ACTIONS(4894), - [anon_sym_select] = ACTIONS(4894), - [anon_sym_as] = ACTIONS(4896), - [anon_sym_is] = ACTIONS(4894), - [anon_sym_DASH_GT] = ACTIONS(4894), - [anon_sym_with] = ACTIONS(4894), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512283,24 +524251,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3753] = { - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3080), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3103), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3753), [sym_preproc_endregion] = STATE(3753), [sym_preproc_line] = STATE(3753), @@ -512310,34 +524260,52 @@ 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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(5947), - [anon_sym_ref] = ACTIONS(4096), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_readonly] = ACTIONS(6078), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5785), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512350,24 +524318,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3754] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3754), [sym_preproc_endregion] = STATE(3754), [sym_preproc_line] = STATE(3754), @@ -512377,34 +524327,52 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(6080), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(6082), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(6084), - [anon_sym_var] = ACTIONS(5953), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512417,25 +524385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3755] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7054), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3755), [sym_preproc_endregion] = STATE(3755), [sym_preproc_line] = STATE(3755), @@ -512445,33 +524394,52 @@ 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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512484,6 +524452,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_preproc_region] = STATE(3756), [sym_preproc_endregion] = STATE(3756), [sym_preproc_line] = STATE(3756), @@ -512493,52 +524479,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), - [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512551,6 +524519,25 @@ 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), @@ -512560,52 +524547,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5324), - [anon_sym_COMMA] = ACTIONS(5324), - [anon_sym_LPAREN] = ACTIONS(5324), - [anon_sym_LT] = ACTIONS(5326), - [anon_sym_GT] = ACTIONS(5326), - [anon_sym_where] = ACTIONS(5324), - [anon_sym_QMARK] = ACTIONS(5326), - [anon_sym_BANG] = ACTIONS(5326), - [anon_sym_PLUS_PLUS] = ACTIONS(5324), - [anon_sym_DASH_DASH] = ACTIONS(5324), - [anon_sym_PLUS] = ACTIONS(5326), - [anon_sym_DASH] = ACTIONS(5326), - [anon_sym_STAR] = ACTIONS(5324), - [anon_sym_SLASH] = ACTIONS(5326), - [anon_sym_PERCENT] = ACTIONS(5324), - [anon_sym_CARET] = ACTIONS(5324), - [anon_sym_PIPE] = ACTIONS(5326), - [anon_sym_AMP] = ACTIONS(5326), - [anon_sym_LT_LT] = ACTIONS(5324), - [anon_sym_GT_GT] = ACTIONS(5326), - [anon_sym_GT_GT_GT] = ACTIONS(5324), - [anon_sym_EQ_EQ] = ACTIONS(5324), - [anon_sym_BANG_EQ] = ACTIONS(5324), - [anon_sym_GT_EQ] = ACTIONS(5324), - [anon_sym_LT_EQ] = ACTIONS(5324), - [anon_sym_DOT] = ACTIONS(5326), - [anon_sym_switch] = ACTIONS(5324), - [anon_sym_DOT_DOT] = ACTIONS(5324), - [anon_sym_and] = ACTIONS(5324), - [anon_sym_or] = ACTIONS(5326), - [anon_sym_AMP_AMP] = ACTIONS(5324), - [anon_sym_PIPE_PIPE] = ACTIONS(5324), - [anon_sym_QMARK_QMARK] = ACTIONS(5324), - [anon_sym_from] = ACTIONS(5324), - [anon_sym_into] = ACTIONS(5324), - [anon_sym_join] = ACTIONS(5324), - [anon_sym_let] = ACTIONS(5324), - [anon_sym_orderby] = ACTIONS(5324), - [anon_sym_ascending] = ACTIONS(5324), - [anon_sym_descending] = ACTIONS(5324), - [anon_sym_group] = ACTIONS(5324), - [anon_sym_select] = ACTIONS(5324), - [anon_sym_as] = ACTIONS(5326), - [anon_sym_is] = ACTIONS(5324), - [anon_sym_DASH_GT] = ACTIONS(5324), - [anon_sym_with] = ACTIONS(5324), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512618,6 +524586,24 @@ 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), @@ -512627,52 +524613,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3758), [sym_preproc_define] = STATE(3758), [sym_preproc_undef] = STATE(3758), - [anon_sym_LBRACK] = ACTIONS(5332), - [anon_sym_COMMA] = ACTIONS(5332), - [anon_sym_LPAREN] = ACTIONS(5332), - [anon_sym_LT] = ACTIONS(5334), - [anon_sym_GT] = ACTIONS(5334), - [anon_sym_where] = ACTIONS(5332), - [anon_sym_QMARK] = ACTIONS(5334), - [anon_sym_BANG] = ACTIONS(5334), - [anon_sym_PLUS_PLUS] = ACTIONS(5332), - [anon_sym_DASH_DASH] = ACTIONS(5332), - [anon_sym_PLUS] = ACTIONS(5334), - [anon_sym_DASH] = ACTIONS(5334), - [anon_sym_STAR] = ACTIONS(5332), - [anon_sym_SLASH] = ACTIONS(5334), - [anon_sym_PERCENT] = ACTIONS(5332), - [anon_sym_CARET] = ACTIONS(5332), - [anon_sym_PIPE] = ACTIONS(5334), - [anon_sym_AMP] = ACTIONS(5334), - [anon_sym_LT_LT] = ACTIONS(5332), - [anon_sym_GT_GT] = ACTIONS(5334), - [anon_sym_GT_GT_GT] = ACTIONS(5332), - [anon_sym_EQ_EQ] = ACTIONS(5332), - [anon_sym_BANG_EQ] = ACTIONS(5332), - [anon_sym_GT_EQ] = ACTIONS(5332), - [anon_sym_LT_EQ] = ACTIONS(5332), - [anon_sym_DOT] = ACTIONS(5334), - [anon_sym_switch] = ACTIONS(5332), - [anon_sym_DOT_DOT] = ACTIONS(5332), - [anon_sym_and] = ACTIONS(5332), - [anon_sym_or] = ACTIONS(5334), - [anon_sym_AMP_AMP] = ACTIONS(5332), - [anon_sym_PIPE_PIPE] = ACTIONS(5332), - [anon_sym_QMARK_QMARK] = ACTIONS(5332), - [anon_sym_from] = ACTIONS(5332), - [anon_sym_into] = ACTIONS(5332), - [anon_sym_join] = ACTIONS(5332), - [anon_sym_let] = ACTIONS(5332), - [anon_sym_orderby] = ACTIONS(5332), - [anon_sym_ascending] = ACTIONS(5332), - [anon_sym_descending] = ACTIONS(5332), - [anon_sym_group] = ACTIONS(5332), - [anon_sym_select] = ACTIONS(5332), - [anon_sym_as] = ACTIONS(5334), - [anon_sym_is] = ACTIONS(5332), - [anon_sym_DASH_GT] = ACTIONS(5332), - [anon_sym_with] = ACTIONS(5332), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512685,6 +524653,15 @@ 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_preproc_region] = STATE(3759), [sym_preproc_endregion] = STATE(3759), [sym_preproc_line] = STATE(3759), @@ -512694,52 +524671,43 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5006), - [anon_sym_COMMA] = ACTIONS(5006), - [anon_sym_LPAREN] = ACTIONS(5006), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5006), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5006), - [anon_sym_DASH_DASH] = ACTIONS(5006), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5006), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5006), - [anon_sym_CARET] = ACTIONS(5006), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5006), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5006), - [anon_sym_EQ_EQ] = ACTIONS(5006), - [anon_sym_BANG_EQ] = ACTIONS(5006), - [anon_sym_GT_EQ] = ACTIONS(5006), - [anon_sym_LT_EQ] = ACTIONS(5006), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_switch] = ACTIONS(5006), - [anon_sym_DOT_DOT] = ACTIONS(5006), - [anon_sym_and] = ACTIONS(5006), - [anon_sym_or] = ACTIONS(5008), - [anon_sym_AMP_AMP] = ACTIONS(5006), - [anon_sym_PIPE_PIPE] = ACTIONS(5006), - [anon_sym_QMARK_QMARK] = ACTIONS(5006), - [anon_sym_from] = ACTIONS(5006), - [anon_sym_into] = ACTIONS(5006), - [anon_sym_join] = ACTIONS(5006), - [anon_sym_let] = ACTIONS(5006), - [anon_sym_orderby] = ACTIONS(5006), - [anon_sym_ascending] = ACTIONS(5006), - [anon_sym_descending] = ACTIONS(5006), - [anon_sym_group] = ACTIONS(5006), - [anon_sym_select] = ACTIONS(5006), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_is] = ACTIONS(5006), - [anon_sym_DASH_GT] = ACTIONS(5006), - [anon_sym_with] = ACTIONS(5006), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512752,6 +524720,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_preproc_region] = STATE(3760), [sym_preproc_endregion] = STATE(3760), [sym_preproc_line] = STATE(3760), @@ -512761,52 +524747,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512819,25 +524787,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3761] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6916), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3761), [sym_preproc_endregion] = STATE(3761), [sym_preproc_line] = STATE(3761), @@ -512847,33 +524815,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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3594), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5951), - [anon_sym_var] = ACTIONS(5953), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512886,6 +524854,24 @@ 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_preproc_region] = STATE(3762), [sym_preproc_endregion] = STATE(3762), [sym_preproc_line] = STATE(3762), @@ -512895,52 +524881,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4898), - [anon_sym_COMMA] = ACTIONS(4898), - [anon_sym_LPAREN] = ACTIONS(4898), - [anon_sym_LT] = ACTIONS(4900), - [anon_sym_GT] = ACTIONS(4900), - [anon_sym_where] = ACTIONS(4898), - [anon_sym_QMARK] = ACTIONS(4900), - [anon_sym_BANG] = ACTIONS(4900), - [anon_sym_PLUS_PLUS] = ACTIONS(4898), - [anon_sym_DASH_DASH] = ACTIONS(4898), - [anon_sym_PLUS] = ACTIONS(4900), - [anon_sym_DASH] = ACTIONS(4900), - [anon_sym_STAR] = ACTIONS(4898), - [anon_sym_SLASH] = ACTIONS(4900), - [anon_sym_PERCENT] = ACTIONS(4898), - [anon_sym_CARET] = ACTIONS(4898), - [anon_sym_PIPE] = ACTIONS(4900), - [anon_sym_AMP] = ACTIONS(4900), - [anon_sym_LT_LT] = ACTIONS(4898), - [anon_sym_GT_GT] = ACTIONS(4900), - [anon_sym_GT_GT_GT] = ACTIONS(4898), - [anon_sym_EQ_EQ] = ACTIONS(4898), - [anon_sym_BANG_EQ] = ACTIONS(4898), - [anon_sym_GT_EQ] = ACTIONS(4898), - [anon_sym_LT_EQ] = ACTIONS(4898), - [anon_sym_DOT] = ACTIONS(4900), - [anon_sym_switch] = ACTIONS(4898), - [anon_sym_DOT_DOT] = ACTIONS(4898), - [anon_sym_and] = ACTIONS(4898), - [anon_sym_or] = ACTIONS(4900), - [anon_sym_AMP_AMP] = ACTIONS(4898), - [anon_sym_PIPE_PIPE] = ACTIONS(4898), - [anon_sym_QMARK_QMARK] = ACTIONS(4898), - [anon_sym_from] = ACTIONS(4898), - [anon_sym_into] = ACTIONS(4898), - [anon_sym_join] = ACTIONS(4898), - [anon_sym_let] = ACTIONS(4898), - [anon_sym_orderby] = ACTIONS(4898), - [anon_sym_ascending] = ACTIONS(4898), - [anon_sym_descending] = ACTIONS(4898), - [anon_sym_group] = ACTIONS(4898), - [anon_sym_select] = ACTIONS(4898), - [anon_sym_as] = ACTIONS(4900), - [anon_sym_is] = ACTIONS(4898), - [anon_sym_DASH_GT] = ACTIONS(4898), - [anon_sym_with] = ACTIONS(4898), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -512953,24 +524921,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3763] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(3763), [sym_preproc_endregion] = STATE(3763), [sym_preproc_line] = STATE(3763), @@ -512980,34 +524948,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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5904), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(5906), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5362), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513020,6 +524988,8 @@ 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), @@ -513029,52 +524999,50 @@ 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(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_where] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_switch] = ACTIONS(2911), - [anon_sym_DOT_DOT] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_QMARK_QMARK] = ACTIONS(2911), - [anon_sym_from] = ACTIONS(2911), - [anon_sym_into] = ACTIONS(2911), - [anon_sym_join] = ACTIONS(2911), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_orderby] = ACTIONS(2911), - [anon_sym_ascending] = ACTIONS(2911), - [anon_sym_descending] = ACTIONS(2911), - [anon_sym_group] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513087,6 +525055,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_preproc_region] = STATE(3765), [sym_preproc_endregion] = STATE(3765), [sym_preproc_line] = STATE(3765), @@ -513096,52 +525066,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(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2905), - [anon_sym_GT] = ACTIONS(2905), - [anon_sym_where] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2905), - [anon_sym_BANG] = ACTIONS(2905), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2905), - [anon_sym_DASH] = ACTIONS(2905), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2905), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2905), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_switch] = ACTIONS(2907), - [anon_sym_DOT_DOT] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_QMARK_QMARK] = ACTIONS(2907), - [anon_sym_from] = ACTIONS(2907), - [anon_sym_into] = ACTIONS(2907), - [anon_sym_join] = ACTIONS(2907), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_orderby] = ACTIONS(2907), - [anon_sym_ascending] = ACTIONS(2907), - [anon_sym_descending] = ACTIONS(2907), - [anon_sym_group] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2905), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513154,6 +525122,8 @@ 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), @@ -513163,52 +525133,50 @@ 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(5328), - [anon_sym_COMMA] = ACTIONS(5328), - [anon_sym_LPAREN] = ACTIONS(5328), - [anon_sym_LT] = ACTIONS(5330), - [anon_sym_GT] = ACTIONS(5330), - [anon_sym_where] = ACTIONS(5328), - [anon_sym_QMARK] = ACTIONS(5330), - [anon_sym_BANG] = ACTIONS(5330), - [anon_sym_PLUS_PLUS] = ACTIONS(5328), - [anon_sym_DASH_DASH] = ACTIONS(5328), - [anon_sym_PLUS] = ACTIONS(5330), - [anon_sym_DASH] = ACTIONS(5330), - [anon_sym_STAR] = ACTIONS(5328), - [anon_sym_SLASH] = ACTIONS(5330), - [anon_sym_PERCENT] = ACTIONS(5328), - [anon_sym_CARET] = ACTIONS(5328), - [anon_sym_PIPE] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(5330), - [anon_sym_LT_LT] = ACTIONS(5328), - [anon_sym_GT_GT] = ACTIONS(5330), - [anon_sym_GT_GT_GT] = ACTIONS(5328), - [anon_sym_EQ_EQ] = ACTIONS(5328), - [anon_sym_BANG_EQ] = ACTIONS(5328), - [anon_sym_GT_EQ] = ACTIONS(5328), - [anon_sym_LT_EQ] = ACTIONS(5328), - [anon_sym_DOT] = ACTIONS(5330), - [anon_sym_switch] = ACTIONS(5328), - [anon_sym_DOT_DOT] = ACTIONS(5328), - [anon_sym_and] = ACTIONS(5328), - [anon_sym_or] = ACTIONS(5330), - [anon_sym_AMP_AMP] = ACTIONS(5328), - [anon_sym_PIPE_PIPE] = ACTIONS(5328), - [anon_sym_QMARK_QMARK] = ACTIONS(5328), - [anon_sym_from] = ACTIONS(5328), - [anon_sym_into] = ACTIONS(5328), - [anon_sym_join] = ACTIONS(5328), - [anon_sym_let] = ACTIONS(5328), - [anon_sym_orderby] = ACTIONS(5328), - [anon_sym_ascending] = ACTIONS(5328), - [anon_sym_descending] = ACTIONS(5328), - [anon_sym_group] = ACTIONS(5328), - [anon_sym_select] = ACTIONS(5328), - [anon_sym_as] = ACTIONS(5330), - [anon_sym_is] = ACTIONS(5328), - [anon_sym_DASH_GT] = ACTIONS(5328), - [anon_sym_with] = ACTIONS(5328), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513221,6 +525189,8 @@ 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), @@ -513230,52 +525200,50 @@ 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(5320), - [anon_sym_COMMA] = ACTIONS(5320), - [anon_sym_LPAREN] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5322), - [anon_sym_GT] = ACTIONS(5322), - [anon_sym_where] = ACTIONS(5320), - [anon_sym_QMARK] = ACTIONS(5322), - [anon_sym_BANG] = ACTIONS(5322), - [anon_sym_PLUS_PLUS] = ACTIONS(5320), - [anon_sym_DASH_DASH] = ACTIONS(5320), - [anon_sym_PLUS] = ACTIONS(5322), - [anon_sym_DASH] = ACTIONS(5322), - [anon_sym_STAR] = ACTIONS(5320), - [anon_sym_SLASH] = ACTIONS(5322), - [anon_sym_PERCENT] = ACTIONS(5320), - [anon_sym_CARET] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5322), - [anon_sym_AMP] = ACTIONS(5322), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5322), - [anon_sym_GT_GT_GT] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5320), - [anon_sym_BANG_EQ] = ACTIONS(5320), - [anon_sym_GT_EQ] = ACTIONS(5320), - [anon_sym_LT_EQ] = ACTIONS(5320), - [anon_sym_DOT] = ACTIONS(5322), - [anon_sym_switch] = ACTIONS(5320), - [anon_sym_DOT_DOT] = ACTIONS(5320), - [anon_sym_and] = ACTIONS(5320), - [anon_sym_or] = ACTIONS(5322), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_QMARK_QMARK] = ACTIONS(5320), - [anon_sym_from] = ACTIONS(5320), - [anon_sym_into] = ACTIONS(5320), - [anon_sym_join] = ACTIONS(5320), - [anon_sym_let] = ACTIONS(5320), - [anon_sym_orderby] = ACTIONS(5320), - [anon_sym_ascending] = ACTIONS(5320), - [anon_sym_descending] = ACTIONS(5320), - [anon_sym_group] = ACTIONS(5320), - [anon_sym_select] = ACTIONS(5320), - [anon_sym_as] = ACTIONS(5322), - [anon_sym_is] = ACTIONS(5320), - [anon_sym_DASH_GT] = ACTIONS(5320), - [anon_sym_with] = ACTIONS(5320), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513288,7 +525256,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3768] = { - [sym_type_argument_list] = STATE(2868), + [sym_argument_list] = STATE(3886), + [sym_bracketed_argument_list] = STATE(2902), [sym_preproc_region] = STATE(3768), [sym_preproc_endregion] = STATE(3768), [sym_preproc_line] = STATE(3768), @@ -513298,51 +525267,50 @@ 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(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(4679), - [anon_sym_GT] = ACTIONS(3600), - [anon_sym_where] = ACTIONS(3602), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_PERCENT] = ACTIONS(3602), - [anon_sym_CARET] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_LT_LT] = ACTIONS(3602), - [anon_sym_GT_GT] = ACTIONS(3600), - [anon_sym_GT_GT_GT] = ACTIONS(3602), - [anon_sym_EQ_EQ] = ACTIONS(3602), - [anon_sym_BANG_EQ] = ACTIONS(3602), - [anon_sym_GT_EQ] = ACTIONS(3602), - [anon_sym_LT_EQ] = ACTIONS(3602), - [anon_sym_DOT] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(6086), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_and] = ACTIONS(3602), - [anon_sym_or] = ACTIONS(3600), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_PIPE_PIPE] = ACTIONS(3602), - [anon_sym_QMARK_QMARK] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_into] = ACTIONS(3602), - [anon_sym_join] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_orderby] = ACTIONS(3602), - [anon_sym_group] = ACTIONS(3602), - [anon_sym_select] = ACTIONS(3602), - [anon_sym_as] = ACTIONS(3602), - [anon_sym_is] = ACTIONS(3602), - [anon_sym_DASH_GT] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513355,24 +525323,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3769] = { - [sym__name] = STATE(2378), - [sym_alias_qualified_name] = STATE(2315), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2315), - [sym_generic_name] = STATE(2344), - [sym_type] = STATE(2328), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(2318), - [sym__array_base_type] = STATE(7049), - [sym_nullable_type] = STATE(2320), - [sym_pointer_type] = STATE(2320), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(2320), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(2321), - [sym_identifier] = STATE(2296), - [sym__reserved_identifier] = STATE(2286), + [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), @@ -513382,34 +525334,50 @@ 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), - [sym__identifier_token] = ACTIONS(4023), - [anon_sym_alias] = ACTIONS(4025), - [anon_sym_global] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(6015), - [anon_sym_ref] = ACTIONS(3544), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(4025), - [anon_sym_readonly] = ACTIONS(2851), - [anon_sym_where] = ACTIONS(4025), - [anon_sym_notnull] = ACTIONS(4025), - [anon_sym_unmanaged] = ACTIONS(4025), - [anon_sym_scoped] = ACTIONS(6088), - [anon_sym_var] = ACTIONS(5738), - [sym_predefined_type] = ACTIONS(5740), - [anon_sym_yield] = ACTIONS(4025), - [anon_sym_when] = ACTIONS(4025), - [anon_sym_from] = ACTIONS(4025), - [anon_sym_into] = ACTIONS(4025), - [anon_sym_join] = ACTIONS(4025), - [anon_sym_on] = ACTIONS(4025), - [anon_sym_equals] = ACTIONS(4025), - [anon_sym_let] = ACTIONS(4025), - [anon_sym_orderby] = ACTIONS(4025), - [anon_sym_ascending] = ACTIONS(4025), - [anon_sym_descending] = ACTIONS(4025), - [anon_sym_group] = ACTIONS(4025), - [anon_sym_by] = ACTIONS(4025), - [anon_sym_select] = ACTIONS(4025), + [anon_sym_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513422,6 +525390,8 @@ 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_preproc_region] = STATE(3770), [sym_preproc_endregion] = STATE(3770), [sym_preproc_line] = STATE(3770), @@ -513431,52 +525401,50 @@ 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(4906), - [anon_sym_COMMA] = ACTIONS(4906), - [anon_sym_LPAREN] = ACTIONS(4906), - [anon_sym_LT] = ACTIONS(4908), - [anon_sym_GT] = ACTIONS(4908), - [anon_sym_where] = ACTIONS(4906), - [anon_sym_QMARK] = ACTIONS(4908), - [anon_sym_BANG] = ACTIONS(4908), - [anon_sym_PLUS_PLUS] = ACTIONS(4906), - [anon_sym_DASH_DASH] = ACTIONS(4906), - [anon_sym_PLUS] = ACTIONS(4908), - [anon_sym_DASH] = ACTIONS(4908), - [anon_sym_STAR] = ACTIONS(4906), - [anon_sym_SLASH] = ACTIONS(4908), - [anon_sym_PERCENT] = ACTIONS(4906), - [anon_sym_CARET] = ACTIONS(4906), - [anon_sym_PIPE] = ACTIONS(4908), - [anon_sym_AMP] = ACTIONS(4908), - [anon_sym_LT_LT] = ACTIONS(4906), - [anon_sym_GT_GT] = ACTIONS(4908), - [anon_sym_GT_GT_GT] = ACTIONS(4906), - [anon_sym_EQ_EQ] = ACTIONS(4906), - [anon_sym_BANG_EQ] = ACTIONS(4906), - [anon_sym_GT_EQ] = ACTIONS(4906), - [anon_sym_LT_EQ] = ACTIONS(4906), - [anon_sym_DOT] = ACTIONS(4908), - [anon_sym_switch] = ACTIONS(4906), - [anon_sym_DOT_DOT] = ACTIONS(4906), - [anon_sym_and] = ACTIONS(4906), - [anon_sym_or] = ACTIONS(4908), - [anon_sym_AMP_AMP] = ACTIONS(4906), - [anon_sym_PIPE_PIPE] = ACTIONS(4906), - [anon_sym_QMARK_QMARK] = ACTIONS(4906), - [anon_sym_from] = ACTIONS(4906), - [anon_sym_into] = ACTIONS(4906), - [anon_sym_join] = ACTIONS(4906), - [anon_sym_let] = ACTIONS(4906), - [anon_sym_orderby] = ACTIONS(4906), - [anon_sym_ascending] = ACTIONS(4906), - [anon_sym_descending] = ACTIONS(4906), - [anon_sym_group] = ACTIONS(4906), - [anon_sym_select] = ACTIONS(4906), - [anon_sym_as] = ACTIONS(4908), - [anon_sym_is] = ACTIONS(4906), - [anon_sym_DASH_GT] = ACTIONS(4906), - [anon_sym_with] = ACTIONS(4906), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513498,52 +525466,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(4914), - [anon_sym_COMMA] = ACTIONS(4914), - [anon_sym_LPAREN] = ACTIONS(4914), - [anon_sym_LT] = ACTIONS(4916), - [anon_sym_GT] = ACTIONS(4916), - [anon_sym_where] = ACTIONS(4914), - [anon_sym_QMARK] = ACTIONS(4916), - [anon_sym_BANG] = ACTIONS(4916), - [anon_sym_PLUS_PLUS] = ACTIONS(4914), - [anon_sym_DASH_DASH] = ACTIONS(4914), - [anon_sym_PLUS] = ACTIONS(4916), - [anon_sym_DASH] = ACTIONS(4916), - [anon_sym_STAR] = ACTIONS(4914), - [anon_sym_SLASH] = ACTIONS(4916), - [anon_sym_PERCENT] = ACTIONS(4914), - [anon_sym_CARET] = ACTIONS(4914), - [anon_sym_PIPE] = ACTIONS(4916), - [anon_sym_AMP] = ACTIONS(4916), - [anon_sym_LT_LT] = ACTIONS(4914), - [anon_sym_GT_GT] = ACTIONS(4916), - [anon_sym_GT_GT_GT] = ACTIONS(4914), - [anon_sym_EQ_EQ] = ACTIONS(4914), - [anon_sym_BANG_EQ] = ACTIONS(4914), - [anon_sym_GT_EQ] = ACTIONS(4914), - [anon_sym_LT_EQ] = ACTIONS(4914), - [anon_sym_DOT] = ACTIONS(4916), - [anon_sym_switch] = ACTIONS(4914), - [anon_sym_DOT_DOT] = ACTIONS(4914), - [anon_sym_and] = ACTIONS(4914), - [anon_sym_or] = ACTIONS(4916), - [anon_sym_AMP_AMP] = ACTIONS(4914), - [anon_sym_PIPE_PIPE] = ACTIONS(4914), - [anon_sym_QMARK_QMARK] = ACTIONS(4914), - [anon_sym_from] = ACTIONS(4914), - [anon_sym_into] = ACTIONS(4914), - [anon_sym_join] = ACTIONS(4914), - [anon_sym_let] = ACTIONS(4914), - [anon_sym_orderby] = ACTIONS(4914), - [anon_sym_ascending] = ACTIONS(4914), - [anon_sym_descending] = ACTIONS(4914), - [anon_sym_group] = ACTIONS(4914), - [anon_sym_select] = ACTIONS(4914), - [anon_sym_as] = ACTIONS(4916), - [anon_sym_is] = ACTIONS(4914), - [anon_sym_DASH_GT] = ACTIONS(4914), - [anon_sym_with] = ACTIONS(4914), + [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), @@ -513565,52 +525533,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3772), [sym_preproc_define] = STATE(3772), [sym_preproc_undef] = STATE(3772), - [anon_sym_LBRACK] = ACTIONS(4918), - [anon_sym_COMMA] = ACTIONS(4918), - [anon_sym_LPAREN] = ACTIONS(4918), - [anon_sym_LT] = ACTIONS(4920), - [anon_sym_GT] = ACTIONS(4920), - [anon_sym_where] = ACTIONS(4918), - [anon_sym_QMARK] = ACTIONS(4920), - [anon_sym_BANG] = ACTIONS(4920), - [anon_sym_PLUS_PLUS] = ACTIONS(4918), - [anon_sym_DASH_DASH] = ACTIONS(4918), - [anon_sym_PLUS] = ACTIONS(4920), - [anon_sym_DASH] = ACTIONS(4920), - [anon_sym_STAR] = ACTIONS(4918), - [anon_sym_SLASH] = ACTIONS(4920), - [anon_sym_PERCENT] = ACTIONS(4918), - [anon_sym_CARET] = ACTIONS(4918), - [anon_sym_PIPE] = ACTIONS(4920), - [anon_sym_AMP] = ACTIONS(4920), - [anon_sym_LT_LT] = ACTIONS(4918), - [anon_sym_GT_GT] = ACTIONS(4920), - [anon_sym_GT_GT_GT] = ACTIONS(4918), - [anon_sym_EQ_EQ] = ACTIONS(4918), - [anon_sym_BANG_EQ] = ACTIONS(4918), - [anon_sym_GT_EQ] = ACTIONS(4918), - [anon_sym_LT_EQ] = ACTIONS(4918), - [anon_sym_DOT] = ACTIONS(4920), - [anon_sym_switch] = ACTIONS(4918), - [anon_sym_DOT_DOT] = ACTIONS(4918), - [anon_sym_and] = ACTIONS(4918), - [anon_sym_or] = ACTIONS(4920), - [anon_sym_AMP_AMP] = ACTIONS(4918), - [anon_sym_PIPE_PIPE] = ACTIONS(4918), - [anon_sym_QMARK_QMARK] = ACTIONS(4918), - [anon_sym_from] = ACTIONS(4918), - [anon_sym_into] = ACTIONS(4918), - [anon_sym_join] = ACTIONS(4918), - [anon_sym_let] = ACTIONS(4918), - [anon_sym_orderby] = ACTIONS(4918), - [anon_sym_ascending] = ACTIONS(4918), - [anon_sym_descending] = ACTIONS(4918), - [anon_sym_group] = ACTIONS(4918), - [anon_sym_select] = ACTIONS(4918), - [anon_sym_as] = ACTIONS(4920), - [anon_sym_is] = ACTIONS(4918), - [anon_sym_DASH_GT] = ACTIONS(4918), - [anon_sym_with] = ACTIONS(4918), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513623,6 +525591,24 @@ 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), @@ -513632,52 +525618,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3773), [sym_preproc_define] = STATE(3773), [sym_preproc_undef] = STATE(3773), - [anon_sym_LBRACK] = ACTIONS(5034), - [anon_sym_COMMA] = ACTIONS(5034), - [anon_sym_LPAREN] = ACTIONS(5034), - [anon_sym_LT] = ACTIONS(5036), - [anon_sym_GT] = ACTIONS(5036), - [anon_sym_where] = ACTIONS(5034), - [anon_sym_QMARK] = ACTIONS(5036), - [anon_sym_BANG] = ACTIONS(5036), - [anon_sym_PLUS_PLUS] = ACTIONS(5034), - [anon_sym_DASH_DASH] = ACTIONS(5034), - [anon_sym_PLUS] = ACTIONS(5036), - [anon_sym_DASH] = ACTIONS(5036), - [anon_sym_STAR] = ACTIONS(5034), - [anon_sym_SLASH] = ACTIONS(5036), - [anon_sym_PERCENT] = ACTIONS(5034), - [anon_sym_CARET] = ACTIONS(5034), - [anon_sym_PIPE] = ACTIONS(5036), - [anon_sym_AMP] = ACTIONS(5036), - [anon_sym_LT_LT] = ACTIONS(5034), - [anon_sym_GT_GT] = ACTIONS(5036), - [anon_sym_GT_GT_GT] = ACTIONS(5034), - [anon_sym_EQ_EQ] = ACTIONS(5034), - [anon_sym_BANG_EQ] = ACTIONS(5034), - [anon_sym_GT_EQ] = ACTIONS(5034), - [anon_sym_LT_EQ] = ACTIONS(5034), - [anon_sym_DOT] = ACTIONS(5036), - [anon_sym_switch] = ACTIONS(5034), - [anon_sym_DOT_DOT] = ACTIONS(5034), - [anon_sym_and] = ACTIONS(5034), - [anon_sym_or] = ACTIONS(5036), - [anon_sym_AMP_AMP] = ACTIONS(5034), - [anon_sym_PIPE_PIPE] = ACTIONS(5034), - [anon_sym_QMARK_QMARK] = ACTIONS(5034), - [anon_sym_from] = ACTIONS(5034), - [anon_sym_into] = ACTIONS(5034), - [anon_sym_join] = ACTIONS(5034), - [anon_sym_let] = ACTIONS(5034), - [anon_sym_orderby] = ACTIONS(5034), - [anon_sym_ascending] = ACTIONS(5034), - [anon_sym_descending] = ACTIONS(5034), - [anon_sym_group] = ACTIONS(5034), - [anon_sym_select] = ACTIONS(5034), - [anon_sym_as] = ACTIONS(5036), - [anon_sym_is] = ACTIONS(5034), - [anon_sym_DASH_GT] = ACTIONS(5034), - [anon_sym_with] = ACTIONS(5034), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513699,52 +525667,52 @@ 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(4926), - [anon_sym_COMMA] = ACTIONS(4926), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4928), - [anon_sym_where] = ACTIONS(4926), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4926), - [anon_sym_DASH_DASH] = ACTIONS(4926), - [anon_sym_PLUS] = ACTIONS(4928), - [anon_sym_DASH] = ACTIONS(4928), - [anon_sym_STAR] = ACTIONS(4926), - [anon_sym_SLASH] = ACTIONS(4928), - [anon_sym_PERCENT] = ACTIONS(4926), - [anon_sym_CARET] = ACTIONS(4926), - [anon_sym_PIPE] = ACTIONS(4928), - [anon_sym_AMP] = ACTIONS(4928), - [anon_sym_LT_LT] = ACTIONS(4926), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym_GT_GT_GT] = ACTIONS(4926), - [anon_sym_EQ_EQ] = ACTIONS(4926), - [anon_sym_BANG_EQ] = ACTIONS(4926), - [anon_sym_GT_EQ] = ACTIONS(4926), - [anon_sym_LT_EQ] = ACTIONS(4926), - [anon_sym_DOT] = ACTIONS(4928), - [anon_sym_switch] = ACTIONS(4926), - [anon_sym_DOT_DOT] = ACTIONS(4926), - [anon_sym_and] = ACTIONS(4926), - [anon_sym_or] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4926), - [anon_sym_PIPE_PIPE] = ACTIONS(4926), - [anon_sym_QMARK_QMARK] = ACTIONS(4926), - [anon_sym_from] = ACTIONS(4926), - [anon_sym_into] = ACTIONS(4926), - [anon_sym_join] = ACTIONS(4926), - [anon_sym_let] = ACTIONS(4926), - [anon_sym_orderby] = ACTIONS(4926), - [anon_sym_ascending] = ACTIONS(4926), - [anon_sym_descending] = ACTIONS(4926), - [anon_sym_group] = ACTIONS(4926), - [anon_sym_select] = ACTIONS(4926), - [anon_sym_as] = ACTIONS(4928), - [anon_sym_is] = ACTIONS(4926), - [anon_sym_DASH_GT] = ACTIONS(4926), - [anon_sym_with] = ACTIONS(4926), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513757,24 +525725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3775] = { - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3080), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3103), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), [sym_preproc_region] = STATE(3775), [sym_preproc_endregion] = STATE(3775), [sym_preproc_line] = STATE(3775), @@ -513784,34 +525734,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), - [sym__identifier_token] = ACTIONS(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(5947), - [anon_sym_ref] = ACTIONS(4102), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_readonly] = ACTIONS(6090), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5760), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_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_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), @@ -513824,6 +525792,24 @@ 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), @@ -513833,52 +525819,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3776), [sym_preproc_define] = STATE(3776), [sym_preproc_undef] = STATE(3776), - [anon_sym_LBRACK] = ACTIONS(5300), - [anon_sym_COMMA] = ACTIONS(5300), - [anon_sym_LPAREN] = ACTIONS(5300), - [anon_sym_LT] = ACTIONS(5302), - [anon_sym_GT] = ACTIONS(5302), - [anon_sym_where] = ACTIONS(5300), - [anon_sym_QMARK] = ACTIONS(5302), - [anon_sym_BANG] = ACTIONS(5302), - [anon_sym_PLUS_PLUS] = ACTIONS(5300), - [anon_sym_DASH_DASH] = ACTIONS(5300), - [anon_sym_PLUS] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_SLASH] = ACTIONS(5302), - [anon_sym_PERCENT] = ACTIONS(5300), - [anon_sym_CARET] = ACTIONS(5300), - [anon_sym_PIPE] = ACTIONS(5302), - [anon_sym_AMP] = ACTIONS(5302), - [anon_sym_LT_LT] = ACTIONS(5300), - [anon_sym_GT_GT] = ACTIONS(5302), - [anon_sym_GT_GT_GT] = ACTIONS(5300), - [anon_sym_EQ_EQ] = ACTIONS(5300), - [anon_sym_BANG_EQ] = ACTIONS(5300), - [anon_sym_GT_EQ] = ACTIONS(5300), - [anon_sym_LT_EQ] = ACTIONS(5300), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5300), - [anon_sym_DOT_DOT] = ACTIONS(5300), - [anon_sym_and] = ACTIONS(5300), - [anon_sym_or] = ACTIONS(5302), - [anon_sym_AMP_AMP] = ACTIONS(5300), - [anon_sym_PIPE_PIPE] = ACTIONS(5300), - [anon_sym_QMARK_QMARK] = ACTIONS(5300), - [anon_sym_from] = ACTIONS(5300), - [anon_sym_into] = ACTIONS(5300), - [anon_sym_join] = ACTIONS(5300), - [anon_sym_let] = ACTIONS(5300), - [anon_sym_orderby] = ACTIONS(5300), - [anon_sym_ascending] = ACTIONS(5300), - [anon_sym_descending] = ACTIONS(5300), - [anon_sym_group] = ACTIONS(5300), - [anon_sym_select] = ACTIONS(5300), - [anon_sym_as] = ACTIONS(5302), - [anon_sym_is] = ACTIONS(5300), - [anon_sym_DASH_GT] = ACTIONS(5300), - [anon_sym_with] = ACTIONS(5300), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513900,52 +525868,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(5352), - [anon_sym_COMMA] = ACTIONS(5352), - [anon_sym_LPAREN] = ACTIONS(5352), - [anon_sym_LT] = ACTIONS(5354), - [anon_sym_GT] = ACTIONS(5354), - [anon_sym_where] = ACTIONS(5352), - [anon_sym_QMARK] = ACTIONS(5354), - [anon_sym_BANG] = ACTIONS(5354), - [anon_sym_PLUS_PLUS] = ACTIONS(5352), - [anon_sym_DASH_DASH] = ACTIONS(5352), - [anon_sym_PLUS] = ACTIONS(5354), - [anon_sym_DASH] = ACTIONS(5354), - [anon_sym_STAR] = ACTIONS(5352), - [anon_sym_SLASH] = ACTIONS(5354), - [anon_sym_PERCENT] = ACTIONS(5352), - [anon_sym_CARET] = ACTIONS(5352), - [anon_sym_PIPE] = ACTIONS(5354), - [anon_sym_AMP] = ACTIONS(5354), - [anon_sym_LT_LT] = ACTIONS(5352), - [anon_sym_GT_GT] = ACTIONS(5354), - [anon_sym_GT_GT_GT] = ACTIONS(5352), - [anon_sym_EQ_EQ] = ACTIONS(5352), - [anon_sym_BANG_EQ] = ACTIONS(5352), - [anon_sym_GT_EQ] = ACTIONS(5352), - [anon_sym_LT_EQ] = ACTIONS(5352), - [anon_sym_DOT] = ACTIONS(5354), - [anon_sym_switch] = ACTIONS(5352), - [anon_sym_DOT_DOT] = ACTIONS(5352), - [anon_sym_and] = ACTIONS(5352), - [anon_sym_or] = ACTIONS(5354), - [anon_sym_AMP_AMP] = ACTIONS(5352), - [anon_sym_PIPE_PIPE] = ACTIONS(5352), - [anon_sym_QMARK_QMARK] = ACTIONS(5352), - [anon_sym_from] = ACTIONS(5352), - [anon_sym_into] = ACTIONS(5352), - [anon_sym_join] = ACTIONS(5352), - [anon_sym_let] = ACTIONS(5352), - [anon_sym_orderby] = ACTIONS(5352), - [anon_sym_ascending] = ACTIONS(5352), - [anon_sym_descending] = ACTIONS(5352), - [anon_sym_group] = ACTIONS(5352), - [anon_sym_select] = ACTIONS(5352), - [anon_sym_as] = ACTIONS(5354), - [anon_sym_is] = ACTIONS(5352), - [anon_sym_DASH_GT] = ACTIONS(5352), - [anon_sym_with] = ACTIONS(5352), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -513958,6 +525926,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_preproc_region] = STATE(3778), [sym_preproc_endregion] = STATE(3778), [sym_preproc_line] = STATE(3778), @@ -513967,52 +525953,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), - [anon_sym_LBRACK] = ACTIONS(4932), - [anon_sym_COMMA] = ACTIONS(4932), - [anon_sym_LPAREN] = ACTIONS(4932), - [anon_sym_LT] = ACTIONS(4934), - [anon_sym_GT] = ACTIONS(4934), - [anon_sym_where] = ACTIONS(4932), - [anon_sym_QMARK] = ACTIONS(4934), - [anon_sym_BANG] = ACTIONS(4934), - [anon_sym_PLUS_PLUS] = ACTIONS(4932), - [anon_sym_DASH_DASH] = ACTIONS(4932), - [anon_sym_PLUS] = ACTIONS(4934), - [anon_sym_DASH] = ACTIONS(4934), - [anon_sym_STAR] = ACTIONS(4932), - [anon_sym_SLASH] = ACTIONS(4934), - [anon_sym_PERCENT] = ACTIONS(4932), - [anon_sym_CARET] = ACTIONS(4932), - [anon_sym_PIPE] = ACTIONS(4934), - [anon_sym_AMP] = ACTIONS(4934), - [anon_sym_LT_LT] = ACTIONS(4932), - [anon_sym_GT_GT] = ACTIONS(4934), - [anon_sym_GT_GT_GT] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4932), - [anon_sym_BANG_EQ] = ACTIONS(4932), - [anon_sym_GT_EQ] = ACTIONS(4932), - [anon_sym_LT_EQ] = ACTIONS(4932), - [anon_sym_DOT] = ACTIONS(4934), - [anon_sym_switch] = ACTIONS(4932), - [anon_sym_DOT_DOT] = ACTIONS(4932), - [anon_sym_and] = ACTIONS(4932), - [anon_sym_or] = ACTIONS(4934), - [anon_sym_AMP_AMP] = ACTIONS(4932), - [anon_sym_PIPE_PIPE] = ACTIONS(4932), - [anon_sym_QMARK_QMARK] = ACTIONS(4932), - [anon_sym_from] = ACTIONS(4932), - [anon_sym_into] = ACTIONS(4932), - [anon_sym_join] = ACTIONS(4932), - [anon_sym_let] = ACTIONS(4932), - [anon_sym_orderby] = ACTIONS(4932), - [anon_sym_ascending] = ACTIONS(4932), - [anon_sym_descending] = ACTIONS(4932), - [anon_sym_group] = ACTIONS(4932), - [anon_sym_select] = ACTIONS(4932), - [anon_sym_as] = ACTIONS(4934), - [anon_sym_is] = ACTIONS(4932), - [anon_sym_DASH_GT] = ACTIONS(4932), - [anon_sym_with] = ACTIONS(4932), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514034,52 +526002,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3779), [sym_preproc_define] = STATE(3779), [sym_preproc_undef] = STATE(3779), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_where] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_switch] = ACTIONS(2915), - [anon_sym_DOT_DOT] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_QMARK_QMARK] = ACTIONS(2915), - [anon_sym_from] = ACTIONS(2915), - [anon_sym_into] = ACTIONS(2915), - [anon_sym_join] = ACTIONS(2915), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_orderby] = ACTIONS(2915), - [anon_sym_ascending] = ACTIONS(2915), - [anon_sym_descending] = ACTIONS(2915), - [anon_sym_group] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514101,52 +526069,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(5304), - [anon_sym_COMMA] = ACTIONS(5304), - [anon_sym_LPAREN] = ACTIONS(5304), - [anon_sym_LT] = ACTIONS(5306), - [anon_sym_GT] = ACTIONS(5306), - [anon_sym_where] = ACTIONS(5304), - [anon_sym_QMARK] = ACTIONS(5306), - [anon_sym_BANG] = ACTIONS(5306), - [anon_sym_PLUS_PLUS] = ACTIONS(5304), - [anon_sym_DASH_DASH] = ACTIONS(5304), - [anon_sym_PLUS] = ACTIONS(5306), - [anon_sym_DASH] = ACTIONS(5306), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_SLASH] = ACTIONS(5306), - [anon_sym_PERCENT] = ACTIONS(5304), - [anon_sym_CARET] = ACTIONS(5304), - [anon_sym_PIPE] = ACTIONS(5306), - [anon_sym_AMP] = ACTIONS(5306), - [anon_sym_LT_LT] = ACTIONS(5304), - [anon_sym_GT_GT] = ACTIONS(5306), - [anon_sym_GT_GT_GT] = ACTIONS(5304), - [anon_sym_EQ_EQ] = ACTIONS(5304), - [anon_sym_BANG_EQ] = ACTIONS(5304), - [anon_sym_GT_EQ] = ACTIONS(5304), - [anon_sym_LT_EQ] = ACTIONS(5304), - [anon_sym_DOT] = ACTIONS(5306), - [anon_sym_switch] = ACTIONS(5304), - [anon_sym_DOT_DOT] = ACTIONS(5304), - [anon_sym_and] = ACTIONS(5304), - [anon_sym_or] = ACTIONS(5306), - [anon_sym_AMP_AMP] = ACTIONS(5304), - [anon_sym_PIPE_PIPE] = ACTIONS(5304), - [anon_sym_QMARK_QMARK] = ACTIONS(5304), - [anon_sym_from] = ACTIONS(5304), - [anon_sym_into] = ACTIONS(5304), - [anon_sym_join] = ACTIONS(5304), - [anon_sym_let] = ACTIONS(5304), - [anon_sym_orderby] = ACTIONS(5304), - [anon_sym_ascending] = ACTIONS(5304), - [anon_sym_descending] = ACTIONS(5304), - [anon_sym_group] = ACTIONS(5304), - [anon_sym_select] = ACTIONS(5304), - [anon_sym_as] = ACTIONS(5306), - [anon_sym_is] = ACTIONS(5304), - [anon_sym_DASH_GT] = ACTIONS(5304), - [anon_sym_with] = ACTIONS(5304), + [anon_sym_LBRACK] = ACTIONS(5433), + [anon_sym_COMMA] = ACTIONS(5433), + [anon_sym_LPAREN] = ACTIONS(5433), + [anon_sym_LT] = ACTIONS(5435), + [anon_sym_GT] = ACTIONS(5435), + [anon_sym_where] = ACTIONS(5433), + [anon_sym_QMARK] = ACTIONS(5435), + [anon_sym_BANG] = ACTIONS(5435), + [anon_sym_PLUS_PLUS] = ACTIONS(5433), + [anon_sym_DASH_DASH] = ACTIONS(5433), + [anon_sym_PLUS] = ACTIONS(5435), + [anon_sym_DASH] = ACTIONS(5435), + [anon_sym_STAR] = ACTIONS(5433), + [anon_sym_SLASH] = ACTIONS(5435), + [anon_sym_PERCENT] = ACTIONS(5433), + [anon_sym_CARET] = ACTIONS(5433), + [anon_sym_PIPE] = ACTIONS(5435), + [anon_sym_AMP] = ACTIONS(5435), + [anon_sym_LT_LT] = ACTIONS(5433), + [anon_sym_GT_GT] = ACTIONS(5435), + [anon_sym_GT_GT_GT] = ACTIONS(5433), + [anon_sym_EQ_EQ] = ACTIONS(5433), + [anon_sym_BANG_EQ] = ACTIONS(5433), + [anon_sym_GT_EQ] = ACTIONS(5433), + [anon_sym_LT_EQ] = ACTIONS(5433), + [anon_sym_DOT] = ACTIONS(5435), + [anon_sym_switch] = ACTIONS(5433), + [anon_sym_DOT_DOT] = ACTIONS(5433), + [anon_sym_and] = ACTIONS(5433), + [anon_sym_or] = ACTIONS(5435), + [anon_sym_AMP_AMP] = ACTIONS(5433), + [anon_sym_PIPE_PIPE] = ACTIONS(5433), + [anon_sym_QMARK_QMARK] = ACTIONS(5433), + [anon_sym_from] = ACTIONS(5433), + [anon_sym_into] = ACTIONS(5433), + [anon_sym_join] = ACTIONS(5433), + [anon_sym_let] = ACTIONS(5433), + [anon_sym_orderby] = ACTIONS(5433), + [anon_sym_ascending] = ACTIONS(5433), + [anon_sym_descending] = ACTIONS(5433), + [anon_sym_group] = ACTIONS(5433), + [anon_sym_select] = ACTIONS(5433), + [anon_sym_as] = ACTIONS(5435), + [anon_sym_is] = ACTIONS(5433), + [anon_sym_DASH_GT] = ACTIONS(5433), + [anon_sym_with] = ACTIONS(5433), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514168,52 +526136,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(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_where] = ACTIONS(5308), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_from] = ACTIONS(5308), - [anon_sym_into] = ACTIONS(5308), - [anon_sym_join] = ACTIONS(5308), - [anon_sym_let] = ACTIONS(5308), - [anon_sym_orderby] = ACTIONS(5308), - [anon_sym_ascending] = ACTIONS(5308), - [anon_sym_descending] = ACTIONS(5308), - [anon_sym_group] = ACTIONS(5308), - [anon_sym_select] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5310), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514226,24 +526194,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3782] = { - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(3782), [sym_preproc_endregion] = STATE(3782), [sym_preproc_line] = STATE(3782), @@ -514253,34 +526203,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3782), [sym_preproc_define] = STATE(3782), [sym_preproc_undef] = STATE(3782), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(4110), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6092), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5783), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(5437), + [anon_sym_COMMA] = ACTIONS(5437), + [anon_sym_LPAREN] = ACTIONS(5437), + [anon_sym_LT] = ACTIONS(5439), + [anon_sym_GT] = ACTIONS(5439), + [anon_sym_where] = ACTIONS(5437), + [anon_sym_QMARK] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5439), + [anon_sym_STAR] = ACTIONS(5437), + [anon_sym_SLASH] = ACTIONS(5439), + [anon_sym_PERCENT] = ACTIONS(5437), + [anon_sym_CARET] = ACTIONS(5437), + [anon_sym_PIPE] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym_LT_LT] = ACTIONS(5437), + [anon_sym_GT_GT] = ACTIONS(5439), + [anon_sym_GT_GT_GT] = ACTIONS(5437), + [anon_sym_EQ_EQ] = ACTIONS(5437), + [anon_sym_BANG_EQ] = ACTIONS(5437), + [anon_sym_GT_EQ] = ACTIONS(5437), + [anon_sym_LT_EQ] = ACTIONS(5437), + [anon_sym_DOT] = ACTIONS(5439), + [anon_sym_switch] = ACTIONS(5437), + [anon_sym_DOT_DOT] = ACTIONS(5437), + [anon_sym_and] = ACTIONS(5437), + [anon_sym_or] = ACTIONS(5439), + [anon_sym_AMP_AMP] = ACTIONS(5437), + [anon_sym_PIPE_PIPE] = ACTIONS(5437), + [anon_sym_QMARK_QMARK] = ACTIONS(5437), + [anon_sym_from] = ACTIONS(5437), + [anon_sym_into] = ACTIONS(5437), + [anon_sym_join] = ACTIONS(5437), + [anon_sym_let] = ACTIONS(5437), + [anon_sym_orderby] = ACTIONS(5437), + [anon_sym_ascending] = ACTIONS(5437), + [anon_sym_descending] = ACTIONS(5437), + [anon_sym_group] = ACTIONS(5437), + [anon_sym_select] = ACTIONS(5437), + [anon_sym_as] = ACTIONS(5439), + [anon_sym_is] = ACTIONS(5437), + [anon_sym_DASH_GT] = ACTIONS(5437), + [anon_sym_with] = ACTIONS(5437), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514293,6 +526261,24 @@ 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), @@ -514302,52 +526288,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3783), [sym_preproc_define] = STATE(3783), [sym_preproc_undef] = STATE(3783), - [anon_sym_LBRACK] = ACTIONS(5308), - [anon_sym_COMMA] = ACTIONS(5308), - [anon_sym_LPAREN] = ACTIONS(5308), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_where] = ACTIONS(5308), - [anon_sym_QMARK] = ACTIONS(5310), - [anon_sym_BANG] = ACTIONS(5310), - [anon_sym_PLUS_PLUS] = ACTIONS(5308), - [anon_sym_DASH_DASH] = ACTIONS(5308), - [anon_sym_PLUS] = ACTIONS(5310), - [anon_sym_DASH] = ACTIONS(5310), - [anon_sym_STAR] = ACTIONS(5308), - [anon_sym_SLASH] = ACTIONS(5310), - [anon_sym_PERCENT] = ACTIONS(5308), - [anon_sym_CARET] = ACTIONS(5308), - [anon_sym_PIPE] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5310), - [anon_sym_LT_LT] = ACTIONS(5308), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_GT_GT_GT] = ACTIONS(5308), - [anon_sym_EQ_EQ] = ACTIONS(5308), - [anon_sym_BANG_EQ] = ACTIONS(5308), - [anon_sym_GT_EQ] = ACTIONS(5308), - [anon_sym_LT_EQ] = ACTIONS(5308), - [anon_sym_DOT] = ACTIONS(5310), - [anon_sym_switch] = ACTIONS(5308), - [anon_sym_DOT_DOT] = ACTIONS(5308), - [anon_sym_and] = ACTIONS(5308), - [anon_sym_or] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(5308), - [anon_sym_PIPE_PIPE] = ACTIONS(5308), - [anon_sym_QMARK_QMARK] = ACTIONS(5308), - [anon_sym_from] = ACTIONS(5308), - [anon_sym_into] = ACTIONS(5308), - [anon_sym_join] = ACTIONS(5308), - [anon_sym_let] = ACTIONS(5308), - [anon_sym_orderby] = ACTIONS(5308), - [anon_sym_ascending] = ACTIONS(5308), - [anon_sym_descending] = ACTIONS(5308), - [anon_sym_group] = ACTIONS(5308), - [anon_sym_select] = ACTIONS(5308), - [anon_sym_as] = ACTIONS(5310), - [anon_sym_is] = ACTIONS(5308), - [anon_sym_DASH_GT] = ACTIONS(5308), - [anon_sym_with] = ACTIONS(5308), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514360,24 +526328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3784] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3784), [sym_preproc_endregion] = STATE(3784), [sym_preproc_line] = STATE(3784), @@ -514387,34 +526337,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(6094), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(6096), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(6098), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_where] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5447), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_from] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_join] = ACTIONS(5445), + [anon_sym_let] = ACTIONS(5445), + [anon_sym_orderby] = ACTIONS(5445), + [anon_sym_ascending] = ACTIONS(5445), + [anon_sym_descending] = ACTIONS(5445), + [anon_sym_group] = ACTIONS(5445), + [anon_sym_select] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5447), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514427,24 +526395,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3785] = { - [sym__name] = STATE(5020), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(4668), - [sym__reserved_identifier] = STATE(3109), [sym_preproc_region] = STATE(3785), [sym_preproc_endregion] = STATE(3785), [sym_preproc_line] = STATE(3785), @@ -514454,34 +526404,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3785), [sym_preproc_define] = STATE(3785), [sym_preproc_undef] = STATE(3785), - [sym__identifier_token] = ACTIONS(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(4009), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6100), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5762), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(5445), + [anon_sym_COMMA] = ACTIONS(5445), + [anon_sym_LPAREN] = ACTIONS(5445), + [anon_sym_LT] = ACTIONS(5447), + [anon_sym_GT] = ACTIONS(5447), + [anon_sym_where] = ACTIONS(5445), + [anon_sym_QMARK] = ACTIONS(5447), + [anon_sym_BANG] = ACTIONS(5447), + [anon_sym_PLUS_PLUS] = ACTIONS(5445), + [anon_sym_DASH_DASH] = ACTIONS(5445), + [anon_sym_PLUS] = ACTIONS(5447), + [anon_sym_DASH] = ACTIONS(5447), + [anon_sym_STAR] = ACTIONS(5445), + [anon_sym_SLASH] = ACTIONS(5447), + [anon_sym_PERCENT] = ACTIONS(5445), + [anon_sym_CARET] = ACTIONS(5445), + [anon_sym_PIPE] = ACTIONS(5447), + [anon_sym_AMP] = ACTIONS(5447), + [anon_sym_LT_LT] = ACTIONS(5445), + [anon_sym_GT_GT] = ACTIONS(5447), + [anon_sym_GT_GT_GT] = ACTIONS(5445), + [anon_sym_EQ_EQ] = ACTIONS(5445), + [anon_sym_BANG_EQ] = ACTIONS(5445), + [anon_sym_GT_EQ] = ACTIONS(5445), + [anon_sym_LT_EQ] = ACTIONS(5445), + [anon_sym_DOT] = ACTIONS(5447), + [anon_sym_switch] = ACTIONS(5445), + [anon_sym_DOT_DOT] = ACTIONS(5445), + [anon_sym_and] = ACTIONS(5445), + [anon_sym_or] = ACTIONS(5447), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [anon_sym_QMARK_QMARK] = ACTIONS(5445), + [anon_sym_from] = ACTIONS(5445), + [anon_sym_into] = ACTIONS(5445), + [anon_sym_join] = ACTIONS(5445), + [anon_sym_let] = ACTIONS(5445), + [anon_sym_orderby] = ACTIONS(5445), + [anon_sym_ascending] = ACTIONS(5445), + [anon_sym_descending] = ACTIONS(5445), + [anon_sym_group] = ACTIONS(5445), + [anon_sym_select] = ACTIONS(5445), + [anon_sym_as] = ACTIONS(5447), + [anon_sym_is] = ACTIONS(5445), + [anon_sym_DASH_GT] = ACTIONS(5445), + [anon_sym_with] = ACTIONS(5445), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514494,24 +526462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3786] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3786), [sym_preproc_endregion] = STATE(3786), [sym_preproc_line] = STATE(3786), @@ -514521,34 +526471,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5451), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(6102), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5455), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514570,52 +526538,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(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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514637,52 +526605,52 @@ 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(5316), - [anon_sym_COMMA] = ACTIONS(5316), - [anon_sym_LPAREN] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_where] = ACTIONS(5316), - [anon_sym_QMARK] = ACTIONS(5318), - [anon_sym_BANG] = ACTIONS(5318), - [anon_sym_PLUS_PLUS] = ACTIONS(5316), - [anon_sym_DASH_DASH] = ACTIONS(5316), - [anon_sym_PLUS] = ACTIONS(5318), - [anon_sym_DASH] = ACTIONS(5318), - [anon_sym_STAR] = ACTIONS(5316), - [anon_sym_SLASH] = ACTIONS(5318), - [anon_sym_PERCENT] = ACTIONS(5316), - [anon_sym_CARET] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5318), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5318), - [anon_sym_GT_GT_GT] = ACTIONS(5316), - [anon_sym_EQ_EQ] = ACTIONS(5316), - [anon_sym_BANG_EQ] = ACTIONS(5316), - [anon_sym_GT_EQ] = ACTIONS(5316), - [anon_sym_LT_EQ] = ACTIONS(5316), - [anon_sym_DOT] = ACTIONS(5318), - [anon_sym_switch] = ACTIONS(5316), - [anon_sym_DOT_DOT] = ACTIONS(5316), - [anon_sym_and] = ACTIONS(5316), - [anon_sym_or] = ACTIONS(5318), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_QMARK_QMARK] = ACTIONS(5316), - [anon_sym_from] = ACTIONS(5316), - [anon_sym_into] = ACTIONS(5316), - [anon_sym_join] = ACTIONS(5316), - [anon_sym_let] = ACTIONS(5316), - [anon_sym_orderby] = ACTIONS(5316), - [anon_sym_ascending] = ACTIONS(5316), - [anon_sym_descending] = ACTIONS(5316), - [anon_sym_group] = ACTIONS(5316), - [anon_sym_select] = ACTIONS(5316), - [anon_sym_as] = ACTIONS(5318), - [anon_sym_is] = ACTIONS(5316), - [anon_sym_DASH_GT] = ACTIONS(5316), - [anon_sym_with] = ACTIONS(5316), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514695,24 +526663,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3789] = { - [sym__name] = STATE(3025), - [sym_alias_qualified_name] = STATE(2889), - [sym__simple_name] = STATE(2889), - [sym_qualified_name] = STATE(2889), - [sym_generic_name] = STATE(2923), - [sym_type] = STATE(2930), - [sym_implicit_type] = STATE(2890), - [sym_array_type] = STATE(2894), - [sym__array_base_type] = STATE(6934), - [sym_nullable_type] = STATE(2900), - [sym_pointer_type] = STATE(2900), - [sym__pointer_base_type] = STATE(7370), - [sym_function_pointer_type] = STATE(2900), - [sym_ref_type] = STATE(2890), - [sym_scoped_type] = STATE(2890), - [sym_tuple_type] = STATE(2905), - [sym_identifier] = STATE(2838), - [sym__reserved_identifier] = STATE(2846), [sym_preproc_region] = STATE(3789), [sym_preproc_endregion] = STATE(3789), [sym_preproc_line] = STATE(3789), @@ -514722,34 +526672,52 @@ 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), - [sym__identifier_token] = ACTIONS(3825), - [anon_sym_alias] = ACTIONS(3827), - [anon_sym_global] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(5959), - [anon_sym_ref] = ACTIONS(4157), - [anon_sym_delegate] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3827), - [anon_sym_readonly] = ACTIONS(6104), - [anon_sym_where] = ACTIONS(3827), - [anon_sym_notnull] = ACTIONS(3827), - [anon_sym_unmanaged] = ACTIONS(3827), - [anon_sym_scoped] = ACTIONS(5758), - [anon_sym_var] = ACTIONS(3982), - [sym_predefined_type] = ACTIONS(3984), - [anon_sym_yield] = ACTIONS(3827), - [anon_sym_when] = ACTIONS(3827), - [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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514762,25 +526730,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3790] = { - [sym_variable_declaration] = STATE(7160), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5543), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), [sym_preproc_region] = STATE(3790), [sym_preproc_endregion] = STATE(3790), [sym_preproc_line] = STATE(3790), @@ -514790,33 +526739,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), - [sym__identifier_token] = ACTIONS(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -514838,52 +526806,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(4882), - [anon_sym_COMMA] = ACTIONS(4882), - [anon_sym_LPAREN] = ACTIONS(4882), - [anon_sym_LT] = ACTIONS(4884), - [anon_sym_GT] = ACTIONS(4884), - [anon_sym_where] = ACTIONS(4882), - [anon_sym_QMARK] = ACTIONS(4884), - [anon_sym_BANG] = ACTIONS(4884), - [anon_sym_PLUS_PLUS] = ACTIONS(4882), - [anon_sym_DASH_DASH] = ACTIONS(4882), - [anon_sym_PLUS] = ACTIONS(4884), - [anon_sym_DASH] = ACTIONS(4884), - [anon_sym_STAR] = ACTIONS(4882), - [anon_sym_SLASH] = ACTIONS(4884), - [anon_sym_PERCENT] = ACTIONS(4882), - [anon_sym_CARET] = ACTIONS(4882), - [anon_sym_PIPE] = ACTIONS(4884), - [anon_sym_AMP] = ACTIONS(4884), - [anon_sym_LT_LT] = ACTIONS(4882), - [anon_sym_GT_GT] = ACTIONS(4884), - [anon_sym_GT_GT_GT] = ACTIONS(4882), - [anon_sym_EQ_EQ] = ACTIONS(4882), - [anon_sym_BANG_EQ] = ACTIONS(4882), - [anon_sym_GT_EQ] = ACTIONS(4882), - [anon_sym_LT_EQ] = ACTIONS(4882), - [anon_sym_DOT] = ACTIONS(4884), - [anon_sym_switch] = ACTIONS(4882), - [anon_sym_DOT_DOT] = ACTIONS(4882), - [anon_sym_and] = ACTIONS(4882), - [anon_sym_or] = ACTIONS(4884), - [anon_sym_AMP_AMP] = ACTIONS(4882), - [anon_sym_PIPE_PIPE] = ACTIONS(4882), - [anon_sym_QMARK_QMARK] = ACTIONS(4882), - [anon_sym_from] = ACTIONS(4882), - [anon_sym_into] = ACTIONS(4882), - [anon_sym_join] = ACTIONS(4882), - [anon_sym_let] = ACTIONS(4882), - [anon_sym_orderby] = ACTIONS(4882), - [anon_sym_ascending] = ACTIONS(4882), - [anon_sym_descending] = ACTIONS(4882), - [anon_sym_group] = ACTIONS(4882), - [anon_sym_select] = ACTIONS(4882), - [anon_sym_as] = ACTIONS(4884), - [anon_sym_is] = ACTIONS(4882), - [anon_sym_DASH_GT] = ACTIONS(4882), - [anon_sym_with] = ACTIONS(4882), + [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), @@ -514905,52 +526873,52 @@ 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), - [sym__identifier_token] = ACTIONS(3428), - [anon_sym_extern] = ACTIONS(3428), - [anon_sym_alias] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3428), - [anon_sym_unsafe] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(5268), - [anon_sym_ref] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_file] = ACTIONS(3428), - [anon_sym_fixed] = ACTIONS(3428), - [anon_sym_internal] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_partial] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_sealed] = ACTIONS(3428), - [anon_sym_virtual] = ACTIONS(3428), - [anon_sym_volatile] = ACTIONS(3428), - [anon_sym_where] = ACTIONS(3428), - [anon_sym_notnull] = ACTIONS(3428), - [anon_sym_unmanaged] = ACTIONS(3428), - [anon_sym_scoped] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [sym_predefined_type] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_when] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_into] = ACTIONS(3428), - [anon_sym_join] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_equals] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_orderby] = ACTIONS(3428), - [anon_sym_ascending] = ACTIONS(3428), - [anon_sym_descending] = ACTIONS(3428), - [anon_sym_group] = ACTIONS(3428), - [anon_sym_by] = ACTIONS(3428), - [anon_sym_select] = ACTIONS(3428), + [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), @@ -514963,24 +526931,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3793] = { - [sym__name] = STATE(4355), - [sym_alias_qualified_name] = STATE(4314), - [sym__simple_name] = STATE(4314), - [sym_qualified_name] = STATE(4314), - [sym_generic_name] = STATE(4376), - [sym_type] = STATE(4328), - [sym_implicit_type] = STATE(4266), - [sym_array_type] = STATE(4315), - [sym__array_base_type] = STATE(6996), - [sym_nullable_type] = STATE(4316), - [sym_pointer_type] = STATE(4316), - [sym__pointer_base_type] = STATE(7242), - [sym_function_pointer_type] = STATE(4316), - [sym_ref_type] = STATE(4266), - [sym_scoped_type] = STATE(4266), - [sym_tuple_type] = STATE(4317), - [sym_identifier] = STATE(4139), - [sym__reserved_identifier] = STATE(4193), + [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_preproc_region] = STATE(3793), [sym_preproc_endregion] = STATE(3793), [sym_preproc_line] = STATE(3793), @@ -514990,34 +526958,34 @@ 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(3909), - [anon_sym_alias] = ACTIONS(3911), - [anon_sym_global] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(5971), - [anon_sym_ref] = ACTIONS(3956), - [anon_sym_delegate] = ACTIONS(5622), - [anon_sym_file] = ACTIONS(3911), - [anon_sym_readonly] = ACTIONS(6106), - [anon_sym_where] = ACTIONS(3911), - [anon_sym_notnull] = ACTIONS(3911), - [anon_sym_unmanaged] = ACTIONS(3911), - [anon_sym_scoped] = ACTIONS(5624), - [anon_sym_var] = ACTIONS(5626), - [sym_predefined_type] = ACTIONS(5628), - [anon_sym_yield] = ACTIONS(3911), - [anon_sym_when] = 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_ascending] = ACTIONS(3911), - [anon_sym_descending] = ACTIONS(3911), - [anon_sym_group] = ACTIONS(3911), - [anon_sym_by] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515039,52 +527007,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(4970), - [anon_sym_COMMA] = ACTIONS(4970), - [anon_sym_LPAREN] = ACTIONS(4970), - [anon_sym_LT] = ACTIONS(4972), - [anon_sym_GT] = ACTIONS(4972), - [anon_sym_where] = ACTIONS(4970), - [anon_sym_QMARK] = ACTIONS(4972), - [anon_sym_BANG] = ACTIONS(4972), - [anon_sym_PLUS_PLUS] = ACTIONS(4970), - [anon_sym_DASH_DASH] = ACTIONS(4970), - [anon_sym_PLUS] = ACTIONS(4972), - [anon_sym_DASH] = ACTIONS(4972), - [anon_sym_STAR] = ACTIONS(4970), - [anon_sym_SLASH] = ACTIONS(4972), - [anon_sym_PERCENT] = ACTIONS(4970), - [anon_sym_CARET] = ACTIONS(4970), - [anon_sym_PIPE] = ACTIONS(4972), - [anon_sym_AMP] = ACTIONS(4972), - [anon_sym_LT_LT] = ACTIONS(4970), - [anon_sym_GT_GT] = ACTIONS(4972), - [anon_sym_GT_GT_GT] = ACTIONS(4970), - [anon_sym_EQ_EQ] = ACTIONS(4970), - [anon_sym_BANG_EQ] = ACTIONS(4970), - [anon_sym_GT_EQ] = ACTIONS(4970), - [anon_sym_LT_EQ] = ACTIONS(4970), - [anon_sym_DOT] = ACTIONS(4972), - [anon_sym_switch] = ACTIONS(4970), - [anon_sym_DOT_DOT] = ACTIONS(4970), - [anon_sym_and] = ACTIONS(4970), - [anon_sym_or] = ACTIONS(4972), - [anon_sym_AMP_AMP] = ACTIONS(4970), - [anon_sym_PIPE_PIPE] = ACTIONS(4970), - [anon_sym_QMARK_QMARK] = ACTIONS(4970), - [anon_sym_from] = ACTIONS(4970), - [anon_sym_into] = ACTIONS(4970), - [anon_sym_join] = ACTIONS(4970), - [anon_sym_let] = ACTIONS(4970), - [anon_sym_orderby] = ACTIONS(4970), - [anon_sym_ascending] = ACTIONS(4970), - [anon_sym_descending] = ACTIONS(4970), - [anon_sym_group] = ACTIONS(4970), - [anon_sym_select] = ACTIONS(4970), - [anon_sym_as] = ACTIONS(4972), - [anon_sym_is] = ACTIONS(4970), - [anon_sym_DASH_GT] = ACTIONS(4970), - [anon_sym_with] = ACTIONS(4970), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515106,52 +527074,52 @@ 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(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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515164,8 +527132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3796] = { - [sym_argument_list] = STATE(3742), - [sym_bracketed_argument_list] = STATE(2830), [sym_preproc_region] = STATE(3796), [sym_preproc_endregion] = STATE(3796), [sym_preproc_line] = STATE(3796), @@ -515175,50 +527141,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(5552), - [anon_sym_COMMA] = ACTIONS(5610), - [anon_sym_LPAREN] = ACTIONS(5494), - [anon_sym_LT] = ACTIONS(5987), - [anon_sym_GT] = ACTIONS(5987), - [anon_sym_where] = ACTIONS(5610), - [anon_sym_QMARK] = ACTIONS(5989), - [anon_sym_BANG] = ACTIONS(5554), - [anon_sym_PLUS_PLUS] = ACTIONS(5556), - [anon_sym_DASH_DASH] = ACTIONS(5556), - [anon_sym_PLUS] = ACTIONS(5979), - [anon_sym_DASH] = ACTIONS(5979), - [anon_sym_STAR] = ACTIONS(5981), - [anon_sym_SLASH] = ACTIONS(5983), - [anon_sym_PERCENT] = ACTIONS(5981), - [anon_sym_CARET] = ACTIONS(5991), - [anon_sym_PIPE] = ACTIONS(5993), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5997), - [anon_sym_GT_GT] = ACTIONS(5999), - [anon_sym_GT_GT_GT] = ACTIONS(5997), - [anon_sym_EQ_EQ] = ACTIONS(6001), - [anon_sym_BANG_EQ] = ACTIONS(6001), - [anon_sym_GT_EQ] = ACTIONS(6003), - [anon_sym_LT_EQ] = ACTIONS(6003), - [anon_sym_DOT] = ACTIONS(4641), - [anon_sym_switch] = ACTIONS(5590), - [anon_sym_DOT_DOT] = ACTIONS(5985), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6007), - [anon_sym_QMARK_QMARK] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(5610), - [anon_sym_into] = ACTIONS(5610), - [anon_sym_join] = ACTIONS(5610), - [anon_sym_let] = ACTIONS(5610), - [anon_sym_orderby] = ACTIONS(5610), - [anon_sym_ascending] = ACTIONS(5610), - [anon_sym_descending] = ACTIONS(5610), - [anon_sym_group] = ACTIONS(5610), - [anon_sym_select] = ACTIONS(5610), - [anon_sym_as] = ACTIONS(5602), - [anon_sym_is] = ACTIONS(6011), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_with] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(5407), + [anon_sym_COMMA] = ACTIONS(5407), + [anon_sym_LPAREN] = ACTIONS(5407), + [anon_sym_LT] = ACTIONS(5409), + [anon_sym_GT] = ACTIONS(5409), + [anon_sym_where] = ACTIONS(5407), + [anon_sym_QMARK] = ACTIONS(5409), + [anon_sym_BANG] = ACTIONS(5409), + [anon_sym_PLUS_PLUS] = ACTIONS(5407), + [anon_sym_DASH_DASH] = ACTIONS(5407), + [anon_sym_PLUS] = ACTIONS(5409), + [anon_sym_DASH] = ACTIONS(5409), + [anon_sym_STAR] = ACTIONS(5407), + [anon_sym_SLASH] = ACTIONS(5409), + [anon_sym_PERCENT] = ACTIONS(5407), + [anon_sym_CARET] = ACTIONS(5407), + [anon_sym_PIPE] = ACTIONS(5409), + [anon_sym_AMP] = ACTIONS(5409), + [anon_sym_LT_LT] = ACTIONS(5407), + [anon_sym_GT_GT] = ACTIONS(5409), + [anon_sym_GT_GT_GT] = ACTIONS(5407), + [anon_sym_EQ_EQ] = ACTIONS(5407), + [anon_sym_BANG_EQ] = ACTIONS(5407), + [anon_sym_GT_EQ] = ACTIONS(5407), + [anon_sym_LT_EQ] = ACTIONS(5407), + [anon_sym_DOT] = ACTIONS(5409), + [anon_sym_switch] = ACTIONS(5407), + [anon_sym_DOT_DOT] = ACTIONS(5407), + [anon_sym_and] = ACTIONS(5407), + [anon_sym_or] = ACTIONS(5409), + [anon_sym_AMP_AMP] = ACTIONS(5407), + [anon_sym_PIPE_PIPE] = ACTIONS(5407), + [anon_sym_QMARK_QMARK] = ACTIONS(5407), + [anon_sym_from] = ACTIONS(5407), + [anon_sym_into] = ACTIONS(5407), + [anon_sym_join] = ACTIONS(5407), + [anon_sym_let] = ACTIONS(5407), + [anon_sym_orderby] = ACTIONS(5407), + [anon_sym_ascending] = ACTIONS(5407), + [anon_sym_descending] = ACTIONS(5407), + [anon_sym_group] = ACTIONS(5407), + [anon_sym_select] = ACTIONS(5407), + [anon_sym_as] = ACTIONS(5409), + [anon_sym_is] = ACTIONS(5407), + [anon_sym_DASH_GT] = ACTIONS(5407), + [anon_sym_with] = ACTIONS(5407), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515240,52 +527208,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3797), [sym_preproc_define] = STATE(3797), [sym_preproc_undef] = STATE(3797), - [anon_sym_LBRACK] = ACTIONS(4990), - [anon_sym_COMMA] = ACTIONS(4990), - [anon_sym_LPAREN] = ACTIONS(4990), - [anon_sym_LT] = ACTIONS(4992), - [anon_sym_GT] = ACTIONS(4992), - [anon_sym_where] = ACTIONS(4990), - [anon_sym_QMARK] = ACTIONS(4992), - [anon_sym_BANG] = ACTIONS(4992), - [anon_sym_PLUS_PLUS] = ACTIONS(4990), - [anon_sym_DASH_DASH] = ACTIONS(4990), - [anon_sym_PLUS] = ACTIONS(4992), - [anon_sym_DASH] = ACTIONS(4992), - [anon_sym_STAR] = ACTIONS(4990), - [anon_sym_SLASH] = ACTIONS(4992), - [anon_sym_PERCENT] = ACTIONS(4990), - [anon_sym_CARET] = ACTIONS(4990), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_AMP] = ACTIONS(4992), - [anon_sym_LT_LT] = ACTIONS(4990), - [anon_sym_GT_GT] = ACTIONS(4992), - [anon_sym_GT_GT_GT] = ACTIONS(4990), - [anon_sym_EQ_EQ] = ACTIONS(4990), - [anon_sym_BANG_EQ] = ACTIONS(4990), - [anon_sym_GT_EQ] = ACTIONS(4990), - [anon_sym_LT_EQ] = ACTIONS(4990), - [anon_sym_DOT] = ACTIONS(4992), - [anon_sym_switch] = ACTIONS(4990), - [anon_sym_DOT_DOT] = ACTIONS(4990), - [anon_sym_and] = ACTIONS(4990), - [anon_sym_or] = ACTIONS(4992), - [anon_sym_AMP_AMP] = ACTIONS(4990), - [anon_sym_PIPE_PIPE] = ACTIONS(4990), - [anon_sym_QMARK_QMARK] = ACTIONS(4990), - [anon_sym_from] = ACTIONS(4990), - [anon_sym_into] = ACTIONS(4990), - [anon_sym_join] = ACTIONS(4990), - [anon_sym_let] = ACTIONS(4990), - [anon_sym_orderby] = ACTIONS(4990), - [anon_sym_ascending] = ACTIONS(4990), - [anon_sym_descending] = ACTIONS(4990), - [anon_sym_group] = ACTIONS(4990), - [anon_sym_select] = ACTIONS(4990), - [anon_sym_as] = ACTIONS(4992), - [anon_sym_is] = ACTIONS(4990), - [anon_sym_DASH_GT] = ACTIONS(4990), - [anon_sym_with] = ACTIONS(4990), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515307,52 +527275,52 @@ 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(4922), - [anon_sym_COMMA] = ACTIONS(4922), - [anon_sym_LPAREN] = ACTIONS(4922), - [anon_sym_LT] = ACTIONS(4924), - [anon_sym_GT] = ACTIONS(4924), - [anon_sym_where] = ACTIONS(4922), - [anon_sym_QMARK] = ACTIONS(4924), - [anon_sym_BANG] = ACTIONS(4924), - [anon_sym_PLUS_PLUS] = ACTIONS(4922), - [anon_sym_DASH_DASH] = ACTIONS(4922), - [anon_sym_PLUS] = ACTIONS(4924), - [anon_sym_DASH] = ACTIONS(4924), - [anon_sym_STAR] = ACTIONS(4922), - [anon_sym_SLASH] = ACTIONS(4924), - [anon_sym_PERCENT] = ACTIONS(4922), - [anon_sym_CARET] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [anon_sym_AMP] = ACTIONS(4924), - [anon_sym_LT_LT] = ACTIONS(4922), - [anon_sym_GT_GT] = ACTIONS(4924), - [anon_sym_GT_GT_GT] = ACTIONS(4922), - [anon_sym_EQ_EQ] = ACTIONS(4922), - [anon_sym_BANG_EQ] = ACTIONS(4922), - [anon_sym_GT_EQ] = ACTIONS(4922), - [anon_sym_LT_EQ] = ACTIONS(4922), - [anon_sym_DOT] = ACTIONS(4924), - [anon_sym_switch] = ACTIONS(4922), - [anon_sym_DOT_DOT] = ACTIONS(4922), - [anon_sym_and] = ACTIONS(4922), - [anon_sym_or] = ACTIONS(4924), - [anon_sym_AMP_AMP] = ACTIONS(4922), - [anon_sym_PIPE_PIPE] = ACTIONS(4922), - [anon_sym_QMARK_QMARK] = ACTIONS(4922), - [anon_sym_from] = ACTIONS(4922), - [anon_sym_into] = ACTIONS(4922), - [anon_sym_join] = ACTIONS(4922), - [anon_sym_let] = ACTIONS(4922), - [anon_sym_orderby] = ACTIONS(4922), - [anon_sym_ascending] = ACTIONS(4922), - [anon_sym_descending] = ACTIONS(4922), - [anon_sym_group] = ACTIONS(4922), - [anon_sym_select] = ACTIONS(4922), - [anon_sym_as] = ACTIONS(4924), - [anon_sym_is] = ACTIONS(4922), - [anon_sym_DASH_GT] = ACTIONS(4922), - [anon_sym_with] = ACTIONS(4922), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515365,6 +527333,24 @@ 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), @@ -515374,52 +527360,34 @@ 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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515432,25 +527400,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3800] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(6866), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(3800), [sym_preproc_endregion] = STATE(3800), [sym_preproc_line] = STATE(3800), @@ -515460,33 +527427,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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515499,24 +527467,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3801] = { - [sym__name] = STATE(6191), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(6830), - [sym_array_type] = STATE(6429), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7114), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(6830), - [sym_scoped_type] = STATE(6830), - [sym_tuple_type] = STATE(6358), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -515526,34 +527494,34 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(5131), - [anon_sym_delegate] = ACTIONS(5133), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(6108), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5139), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(5141), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515566,25 +527534,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3802] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5821), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_tuple_element] = STATE(7064), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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(3802), [sym_preproc_endregion] = STATE(3802), [sym_preproc_line] = STATE(3802), @@ -515594,33 +527561,34 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515642,52 +527610,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(4807), - [anon_sym_COMMA] = ACTIONS(4807), - [anon_sym_LPAREN] = ACTIONS(4807), - [anon_sym_LT] = ACTIONS(4809), - [anon_sym_GT] = ACTIONS(4809), - [anon_sym_where] = ACTIONS(4807), - [anon_sym_QMARK] = ACTIONS(4809), - [anon_sym_BANG] = ACTIONS(4809), - [anon_sym_PLUS_PLUS] = ACTIONS(4807), - [anon_sym_DASH_DASH] = ACTIONS(4807), - [anon_sym_PLUS] = ACTIONS(4809), - [anon_sym_DASH] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(4807), - [anon_sym_SLASH] = ACTIONS(4809), - [anon_sym_PERCENT] = ACTIONS(4807), - [anon_sym_CARET] = ACTIONS(4807), - [anon_sym_PIPE] = ACTIONS(4809), - [anon_sym_AMP] = ACTIONS(4809), - [anon_sym_LT_LT] = ACTIONS(4807), - [anon_sym_GT_GT] = ACTIONS(4809), - [anon_sym_GT_GT_GT] = ACTIONS(4807), - [anon_sym_EQ_EQ] = ACTIONS(4807), - [anon_sym_BANG_EQ] = ACTIONS(4807), - [anon_sym_GT_EQ] = ACTIONS(4807), - [anon_sym_LT_EQ] = ACTIONS(4807), - [anon_sym_DOT] = ACTIONS(4809), - [anon_sym_switch] = ACTIONS(4807), - [anon_sym_DOT_DOT] = ACTIONS(4807), - [anon_sym_and] = ACTIONS(4807), - [anon_sym_or] = ACTIONS(4809), - [anon_sym_AMP_AMP] = ACTIONS(4807), - [anon_sym_PIPE_PIPE] = ACTIONS(4807), - [anon_sym_QMARK_QMARK] = ACTIONS(4807), - [anon_sym_from] = ACTIONS(4807), - [anon_sym_into] = ACTIONS(4807), - [anon_sym_join] = ACTIONS(4807), - [anon_sym_let] = ACTIONS(4807), - [anon_sym_orderby] = ACTIONS(4807), - [anon_sym_ascending] = ACTIONS(4807), - [anon_sym_descending] = ACTIONS(4807), - [anon_sym_group] = ACTIONS(4807), - [anon_sym_select] = ACTIONS(4807), - [anon_sym_as] = ACTIONS(4809), - [anon_sym_is] = ACTIONS(4807), - [anon_sym_DASH_GT] = ACTIONS(4807), - [anon_sym_with] = ACTIONS(4807), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515709,52 +527677,52 @@ 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(4799), - [anon_sym_COMMA] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4799), - [anon_sym_LT] = ACTIONS(4801), - [anon_sym_GT] = ACTIONS(4801), - [anon_sym_where] = ACTIONS(4799), - [anon_sym_QMARK] = ACTIONS(4801), - [anon_sym_BANG] = ACTIONS(4801), - [anon_sym_PLUS_PLUS] = ACTIONS(4799), - [anon_sym_DASH_DASH] = ACTIONS(4799), - [anon_sym_PLUS] = ACTIONS(4801), - [anon_sym_DASH] = ACTIONS(4801), - [anon_sym_STAR] = ACTIONS(4799), - [anon_sym_SLASH] = ACTIONS(4801), - [anon_sym_PERCENT] = ACTIONS(4799), - [anon_sym_CARET] = ACTIONS(4799), - [anon_sym_PIPE] = ACTIONS(4801), - [anon_sym_AMP] = ACTIONS(4801), - [anon_sym_LT_LT] = ACTIONS(4799), - [anon_sym_GT_GT] = ACTIONS(4801), - [anon_sym_GT_GT_GT] = ACTIONS(4799), - [anon_sym_EQ_EQ] = ACTIONS(4799), - [anon_sym_BANG_EQ] = ACTIONS(4799), - [anon_sym_GT_EQ] = ACTIONS(4799), - [anon_sym_LT_EQ] = ACTIONS(4799), - [anon_sym_DOT] = ACTIONS(4801), - [anon_sym_switch] = ACTIONS(4799), - [anon_sym_DOT_DOT] = ACTIONS(4799), - [anon_sym_and] = ACTIONS(4799), - [anon_sym_or] = ACTIONS(4801), - [anon_sym_AMP_AMP] = ACTIONS(4799), - [anon_sym_PIPE_PIPE] = ACTIONS(4799), - [anon_sym_QMARK_QMARK] = ACTIONS(4799), - [anon_sym_from] = ACTIONS(4799), - [anon_sym_into] = ACTIONS(4799), - [anon_sym_join] = ACTIONS(4799), - [anon_sym_let] = ACTIONS(4799), - [anon_sym_orderby] = ACTIONS(4799), - [anon_sym_ascending] = ACTIONS(4799), - [anon_sym_descending] = ACTIONS(4799), - [anon_sym_group] = ACTIONS(4799), - [anon_sym_select] = ACTIONS(4799), - [anon_sym_as] = ACTIONS(4801), - [anon_sym_is] = ACTIONS(4799), - [anon_sym_DASH_GT] = ACTIONS(4799), - [anon_sym_with] = ACTIONS(4799), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515767,6 +527735,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_preproc_region] = STATE(3805), [sym_preproc_endregion] = STATE(3805), [sym_preproc_line] = STATE(3805), @@ -515776,52 +527762,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), - [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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515834,6 +527802,8 @@ 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), @@ -515843,52 +527813,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3806), [sym_preproc_define] = STATE(3806), [sym_preproc_undef] = STATE(3806), - [anon_sym_LBRACK] = ACTIONS(4998), - [anon_sym_COMMA] = ACTIONS(4998), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_LT] = ACTIONS(5000), - [anon_sym_GT] = ACTIONS(5000), - [anon_sym_where] = ACTIONS(4998), - [anon_sym_QMARK] = ACTIONS(5000), - [anon_sym_BANG] = ACTIONS(5000), - [anon_sym_PLUS_PLUS] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4998), - [anon_sym_PLUS] = ACTIONS(5000), - [anon_sym_DASH] = ACTIONS(5000), - [anon_sym_STAR] = ACTIONS(4998), - [anon_sym_SLASH] = ACTIONS(5000), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_CARET] = ACTIONS(4998), - [anon_sym_PIPE] = ACTIONS(5000), - [anon_sym_AMP] = ACTIONS(5000), - [anon_sym_LT_LT] = ACTIONS(4998), - [anon_sym_GT_GT] = ACTIONS(5000), - [anon_sym_GT_GT_GT] = ACTIONS(4998), - [anon_sym_EQ_EQ] = ACTIONS(4998), - [anon_sym_BANG_EQ] = ACTIONS(4998), - [anon_sym_GT_EQ] = ACTIONS(4998), - [anon_sym_LT_EQ] = ACTIONS(4998), - [anon_sym_DOT] = ACTIONS(5000), - [anon_sym_switch] = ACTIONS(4998), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_and] = ACTIONS(4998), - [anon_sym_or] = ACTIONS(5000), - [anon_sym_AMP_AMP] = ACTIONS(4998), - [anon_sym_PIPE_PIPE] = ACTIONS(4998), - [anon_sym_QMARK_QMARK] = ACTIONS(4998), - [anon_sym_from] = ACTIONS(4998), - [anon_sym_into] = ACTIONS(4998), - [anon_sym_join] = ACTIONS(4998), - [anon_sym_let] = ACTIONS(4998), - [anon_sym_orderby] = ACTIONS(4998), - [anon_sym_ascending] = ACTIONS(4998), - [anon_sym_descending] = ACTIONS(4998), - [anon_sym_group] = ACTIONS(4998), - [anon_sym_select] = ACTIONS(4998), - [anon_sym_as] = ACTIONS(5000), - [anon_sym_is] = ACTIONS(4998), - [anon_sym_DASH_GT] = ACTIONS(4998), - [anon_sym_with] = ACTIONS(4998), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -515910,52 +527878,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(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(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), @@ -515968,6 +527936,24 @@ 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), @@ -515977,52 +527963,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3808), [sym_preproc_define] = STATE(3808), [sym_preproc_undef] = STATE(3808), - [anon_sym_LBRACK] = ACTIONS(5030), - [anon_sym_COMMA] = ACTIONS(5030), - [anon_sym_LPAREN] = ACTIONS(5030), - [anon_sym_LT] = ACTIONS(5032), - [anon_sym_GT] = ACTIONS(5032), - [anon_sym_where] = ACTIONS(5030), - [anon_sym_QMARK] = ACTIONS(5032), - [anon_sym_BANG] = ACTIONS(5032), - [anon_sym_PLUS_PLUS] = ACTIONS(5030), - [anon_sym_DASH_DASH] = ACTIONS(5030), - [anon_sym_PLUS] = ACTIONS(5032), - [anon_sym_DASH] = ACTIONS(5032), - [anon_sym_STAR] = ACTIONS(5030), - [anon_sym_SLASH] = ACTIONS(5032), - [anon_sym_PERCENT] = ACTIONS(5030), - [anon_sym_CARET] = ACTIONS(5030), - [anon_sym_PIPE] = ACTIONS(5032), - [anon_sym_AMP] = ACTIONS(5032), - [anon_sym_LT_LT] = ACTIONS(5030), - [anon_sym_GT_GT] = ACTIONS(5032), - [anon_sym_GT_GT_GT] = ACTIONS(5030), - [anon_sym_EQ_EQ] = ACTIONS(5030), - [anon_sym_BANG_EQ] = ACTIONS(5030), - [anon_sym_GT_EQ] = ACTIONS(5030), - [anon_sym_LT_EQ] = ACTIONS(5030), - [anon_sym_DOT] = ACTIONS(5032), - [anon_sym_switch] = ACTIONS(5030), - [anon_sym_DOT_DOT] = ACTIONS(5030), - [anon_sym_and] = ACTIONS(5030), - [anon_sym_or] = ACTIONS(5032), - [anon_sym_AMP_AMP] = ACTIONS(5030), - [anon_sym_PIPE_PIPE] = ACTIONS(5030), - [anon_sym_QMARK_QMARK] = ACTIONS(5030), - [anon_sym_from] = ACTIONS(5030), - [anon_sym_into] = ACTIONS(5030), - [anon_sym_join] = ACTIONS(5030), - [anon_sym_let] = ACTIONS(5030), - [anon_sym_orderby] = ACTIONS(5030), - [anon_sym_ascending] = ACTIONS(5030), - [anon_sym_descending] = ACTIONS(5030), - [anon_sym_group] = ACTIONS(5030), - [anon_sym_select] = ACTIONS(5030), - [anon_sym_as] = ACTIONS(5032), - [anon_sym_is] = ACTIONS(5030), - [anon_sym_DASH_GT] = ACTIONS(5030), - [anon_sym_with] = ACTIONS(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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516035,25 +528003,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3809] = { - [sym_variable_declaration] = STATE(7450), - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(5743), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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_preproc_region] = STATE(3809), [sym_preproc_endregion] = STATE(3809), [sym_preproc_line] = STATE(3809), @@ -516063,33 +528031,33 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3400), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(2947), - [anon_sym_var] = ACTIONS(2949), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516102,6 +528070,24 @@ 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), @@ -516111,52 +528097,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4843), - [anon_sym_COMMA] = ACTIONS(4843), - [anon_sym_LPAREN] = ACTIONS(4843), - [anon_sym_LT] = ACTIONS(4845), - [anon_sym_GT] = ACTIONS(4845), - [anon_sym_where] = ACTIONS(4843), - [anon_sym_QMARK] = ACTIONS(4845), - [anon_sym_BANG] = ACTIONS(4845), - [anon_sym_PLUS_PLUS] = ACTIONS(4843), - [anon_sym_DASH_DASH] = ACTIONS(4843), - [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(4845), - [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(4843), - [anon_sym_with] = ACTIONS(4843), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516169,6 +528137,8 @@ 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), @@ -516178,52 +528148,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3811), [sym_preproc_define] = STATE(3811), [sym_preproc_undef] = STATE(3811), - [anon_sym_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), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516236,24 +528204,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3812] = { - [sym__name] = STATE(3096), - [sym_alias_qualified_name] = STATE(3108), - [sym__simple_name] = STATE(3108), - [sym_qualified_name] = STATE(3108), - [sym_generic_name] = STATE(3138), - [sym_type] = STATE(3080), - [sym_implicit_type] = STATE(3104), - [sym_array_type] = STATE(3103), - [sym__array_base_type] = STATE(7035), - [sym_nullable_type] = STATE(3101), - [sym_pointer_type] = STATE(3101), - [sym__pointer_base_type] = STATE(7148), - [sym_function_pointer_type] = STATE(3101), - [sym_ref_type] = STATE(3104), - [sym_scoped_type] = STATE(3104), - [sym_tuple_type] = STATE(3099), - [sym_identifier] = STATE(3046), - [sym__reserved_identifier] = STATE(3056), + [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), @@ -516263,34 +528231,34 @@ 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(3697), - [anon_sym_alias] = ACTIONS(3699), - [anon_sym_global] = ACTIONS(3699), - [anon_sym_LPAREN] = ACTIONS(5947), - [anon_sym_ref] = ACTIONS(3986), - [anon_sym_delegate] = ACTIONS(5646), - [anon_sym_file] = ACTIONS(3699), - [anon_sym_readonly] = ACTIONS(6110), - [anon_sym_where] = ACTIONS(3699), - [anon_sym_notnull] = ACTIONS(3699), - [anon_sym_unmanaged] = ACTIONS(3699), - [anon_sym_scoped] = ACTIONS(5648), - [anon_sym_var] = ACTIONS(5650), - [sym_predefined_type] = ACTIONS(5652), - [anon_sym_yield] = ACTIONS(3699), - [anon_sym_when] = ACTIONS(3699), - [anon_sym_from] = ACTIONS(3699), - [anon_sym_into] = ACTIONS(3699), - [anon_sym_join] = ACTIONS(3699), - [anon_sym_on] = ACTIONS(3699), - [anon_sym_equals] = ACTIONS(3699), - [anon_sym_let] = ACTIONS(3699), - [anon_sym_orderby] = ACTIONS(3699), - [anon_sym_ascending] = ACTIONS(3699), - [anon_sym_descending] = ACTIONS(3699), - [anon_sym_group] = ACTIONS(3699), - [anon_sym_by] = ACTIONS(3699), - [anon_sym_select] = ACTIONS(3699), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516303,24 +528271,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3813] = { - [sym__name] = STATE(4302), - [sym_alias_qualified_name] = STATE(4015), - [sym__simple_name] = STATE(4015), - [sym_qualified_name] = STATE(4015), - [sym_generic_name] = STATE(3999), - [sym_type] = STATE(4600), - [sym_implicit_type] = STATE(2275), - [sym_array_type] = STATE(4401), - [sym__array_base_type] = STATE(6947), - [sym_nullable_type] = STATE(4256), - [sym_pointer_type] = STATE(4256), - [sym__pointer_base_type] = STATE(7350), - [sym_function_pointer_type] = STATE(4256), - [sym_ref_type] = STATE(2275), - [sym_scoped_type] = STATE(2275), - [sym_tuple_type] = STATE(4250), - [sym_identifier] = STATE(4014), - [sym__reserved_identifier] = STATE(3558), + [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), @@ -516330,34 +528298,34 @@ 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(2917), - [anon_sym_alias] = ACTIONS(2921), - [anon_sym_global] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_ref] = ACTIONS(3552), - [anon_sym_delegate] = ACTIONS(3402), - [anon_sym_file] = ACTIONS(2921), - [anon_sym_readonly] = ACTIONS(2717), - [anon_sym_where] = ACTIONS(2921), - [anon_sym_notnull] = ACTIONS(2921), - [anon_sym_unmanaged] = ACTIONS(2921), - [anon_sym_scoped] = ACTIONS(5558), - [anon_sym_var] = ACTIONS(4745), - [sym_predefined_type] = ACTIONS(2951), - [anon_sym_yield] = ACTIONS(2921), - [anon_sym_when] = ACTIONS(2921), - [anon_sym_from] = ACTIONS(2921), - [anon_sym_into] = ACTIONS(2921), - [anon_sym_join] = ACTIONS(2921), - [anon_sym_on] = ACTIONS(2921), - [anon_sym_equals] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2921), - [anon_sym_orderby] = ACTIONS(2921), - [anon_sym_ascending] = ACTIONS(2921), - [anon_sym_descending] = ACTIONS(2921), - [anon_sym_group] = ACTIONS(2921), - [anon_sym_by] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516370,6 +528338,25 @@ 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), @@ -516379,52 +528366,33 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4839), - [anon_sym_COMMA] = ACTIONS(4839), - [anon_sym_LPAREN] = ACTIONS(4839), - [anon_sym_LT] = ACTIONS(4841), - [anon_sym_GT] = ACTIONS(4841), - [anon_sym_where] = ACTIONS(4839), - [anon_sym_QMARK] = ACTIONS(4841), - [anon_sym_BANG] = ACTIONS(4841), - [anon_sym_PLUS_PLUS] = ACTIONS(4839), - [anon_sym_DASH_DASH] = ACTIONS(4839), - [anon_sym_PLUS] = ACTIONS(4841), - [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_STAR] = ACTIONS(4839), - [anon_sym_SLASH] = ACTIONS(4841), - [anon_sym_PERCENT] = ACTIONS(4839), - [anon_sym_CARET] = ACTIONS(4839), - [anon_sym_PIPE] = ACTIONS(4841), - [anon_sym_AMP] = ACTIONS(4841), - [anon_sym_LT_LT] = ACTIONS(4839), - [anon_sym_GT_GT] = ACTIONS(4841), - [anon_sym_GT_GT_GT] = ACTIONS(4839), - [anon_sym_EQ_EQ] = ACTIONS(4839), - [anon_sym_BANG_EQ] = ACTIONS(4839), - [anon_sym_GT_EQ] = ACTIONS(4839), - [anon_sym_LT_EQ] = ACTIONS(4839), - [anon_sym_DOT] = ACTIONS(4841), - [anon_sym_switch] = ACTIONS(4839), - [anon_sym_DOT_DOT] = ACTIONS(4839), - [anon_sym_and] = ACTIONS(4839), - [anon_sym_or] = ACTIONS(4841), - [anon_sym_AMP_AMP] = ACTIONS(4839), - [anon_sym_PIPE_PIPE] = ACTIONS(4839), - [anon_sym_QMARK_QMARK] = ACTIONS(4839), - [anon_sym_from] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4839), - [anon_sym_join] = ACTIONS(4839), - [anon_sym_let] = ACTIONS(4839), - [anon_sym_orderby] = ACTIONS(4839), - [anon_sym_ascending] = ACTIONS(4839), - [anon_sym_descending] = ACTIONS(4839), - [anon_sym_group] = ACTIONS(4839), - [anon_sym_select] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4839), - [anon_sym_DASH_GT] = ACTIONS(4839), - [anon_sym_with] = ACTIONS(4839), + [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -516437,24 +528405,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3815] = { - [sym__name] = STATE(3374), - [sym_alias_qualified_name] = STATE(3173), - [sym__simple_name] = STATE(3173), - [sym_qualified_name] = STATE(3173), - [sym_generic_name] = STATE(3222), - [sym_type] = STATE(3167), - [sym_implicit_type] = STATE(3147), - [sym_array_type] = STATE(3148), - [sym__array_base_type] = STATE(7008), - [sym_nullable_type] = STATE(3149), - [sym_pointer_type] = STATE(3149), - [sym__pointer_base_type] = STATE(7189), - [sym_function_pointer_type] = STATE(3149), - [sym_ref_type] = STATE(3147), - [sym_scoped_type] = STATE(3147), - [sym_tuple_type] = STATE(3150), - [sym_identifier] = STATE(3102), - [sym__reserved_identifier] = STATE(3109), + [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(3815), [sym_preproc_endregion] = STATE(3815), [sym_preproc_line] = STATE(3815), @@ -516464,34 +528432,5662 @@ 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(3714), - [anon_sym_alias] = ACTIONS(3716), - [anon_sym_global] = ACTIONS(3716), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_ref] = ACTIONS(4104), - [anon_sym_delegate] = ACTIONS(5530), - [anon_sym_file] = ACTIONS(3716), - [anon_sym_readonly] = ACTIONS(6112), - [anon_sym_where] = ACTIONS(3716), - [anon_sym_notnull] = ACTIONS(3716), - [anon_sym_unmanaged] = ACTIONS(3716), - [anon_sym_scoped] = ACTIONS(5532), - [anon_sym_var] = ACTIONS(5534), - [sym_predefined_type] = ACTIONS(5536), - [anon_sym_yield] = ACTIONS(3716), - [anon_sym_when] = ACTIONS(3716), - [anon_sym_from] = ACTIONS(3716), - [anon_sym_into] = ACTIONS(3716), - [anon_sym_join] = ACTIONS(3716), - [anon_sym_on] = ACTIONS(3716), - [anon_sym_equals] = ACTIONS(3716), - [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(3716), - [anon_sym_select] = ACTIONS(3716), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3816] = { + [sym_preproc_region] = STATE(3816), + [sym_preproc_endregion] = STATE(3816), + [sym_preproc_line] = STATE(3816), + [sym_preproc_pragma] = STATE(3816), + [sym_preproc_nullable] = STATE(3816), + [sym_preproc_error] = STATE(3816), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3817), + [sym_preproc_endregion] = STATE(3817), + [sym_preproc_line] = STATE(3817), + [sym_preproc_pragma] = STATE(3817), + [sym_preproc_nullable] = STATE(3817), + [sym_preproc_error] = STATE(3817), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3818), + [sym_preproc_nullable] = STATE(3818), + [sym_preproc_error] = STATE(3818), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3819), + [sym_preproc_nullable] = STATE(3819), + [sym_preproc_error] = STATE(3819), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3820), + [sym_preproc_nullable] = STATE(3820), + [sym_preproc_error] = STATE(3820), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3821), + [sym_preproc_nullable] = STATE(3821), + [sym_preproc_error] = STATE(3821), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3822), + [sym_preproc_endregion] = STATE(3822), + [sym_preproc_line] = STATE(3822), + [sym_preproc_pragma] = STATE(3822), + [sym_preproc_nullable] = STATE(3822), + [sym_preproc_error] = STATE(3822), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3823), + [sym_preproc_nullable] = STATE(3823), + [sym_preproc_error] = STATE(3823), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3824), + [sym_preproc_nullable] = STATE(3824), + [sym_preproc_error] = STATE(3824), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3825), + [sym_preproc_endregion] = STATE(3825), + [sym_preproc_line] = STATE(3825), + [sym_preproc_pragma] = STATE(3825), + [sym_preproc_nullable] = STATE(3825), + [sym_preproc_error] = STATE(3825), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3826] = { + [sym_preproc_region] = STATE(3826), + [sym_preproc_endregion] = STATE(3826), + [sym_preproc_line] = STATE(3826), + [sym_preproc_pragma] = STATE(3826), + [sym_preproc_nullable] = STATE(3826), + [sym_preproc_error] = STATE(3826), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3827), + [sym_preproc_endregion] = STATE(3827), + [sym_preproc_line] = STATE(3827), + [sym_preproc_pragma] = STATE(3827), + [sym_preproc_nullable] = STATE(3827), + [sym_preproc_error] = STATE(3827), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3828] = { + [sym_argument_list] = STATE(3259), + [sym_bracketed_argument_list] = STATE(2613), + [sym_preproc_region] = STATE(3828), + [sym_preproc_endregion] = STATE(3828), + [sym_preproc_line] = STATE(3828), + [sym_preproc_pragma] = STATE(3828), + [sym_preproc_nullable] = STATE(3828), + [sym_preproc_error] = STATE(3828), + [sym_preproc_warning] = STATE(3828), + [sym_preproc_define] = STATE(3828), + [sym_preproc_undef] = STATE(3828), + [anon_sym_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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3829] = { + [sym_preproc_region] = STATE(3829), + [sym_preproc_endregion] = STATE(3829), + [sym_preproc_line] = STATE(3829), + [sym_preproc_pragma] = STATE(3829), + [sym_preproc_nullable] = STATE(3829), + [sym_preproc_error] = STATE(3829), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3830), + [sym_preproc_endregion] = STATE(3830), + [sym_preproc_line] = STATE(3830), + [sym_preproc_pragma] = STATE(3830), + [sym_preproc_nullable] = STATE(3830), + [sym_preproc_error] = STATE(3830), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3831), + [sym_preproc_endregion] = STATE(3831), + [sym_preproc_line] = STATE(3831), + [sym_preproc_pragma] = STATE(3831), + [sym_preproc_nullable] = STATE(3831), + [sym_preproc_error] = STATE(3831), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3832] = { + [sym__name] = STATE(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_preproc_region] = STATE(3832), + [sym_preproc_endregion] = STATE(3832), + [sym_preproc_line] = STATE(3832), + [sym_preproc_pragma] = STATE(3832), + [sym_preproc_nullable] = STATE(3832), + [sym_preproc_error] = STATE(3832), + [sym_preproc_warning] = STATE(3832), + [sym_preproc_define] = STATE(3832), + [sym_preproc_undef] = STATE(3832), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3833] = { + [sym_preproc_region] = STATE(3833), + [sym_preproc_endregion] = STATE(3833), + [sym_preproc_line] = STATE(3833), + [sym_preproc_pragma] = STATE(3833), + [sym_preproc_nullable] = STATE(3833), + [sym_preproc_error] = STATE(3833), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3834), + [sym_preproc_nullable] = STATE(3834), + [sym_preproc_error] = STATE(3834), + [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), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3836), + [sym_preproc_nullable] = STATE(3836), + [sym_preproc_error] = STATE(3836), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3837] = { + [sym_preproc_region] = STATE(3837), + [sym_preproc_endregion] = STATE(3837), + [sym_preproc_line] = STATE(3837), + [sym_preproc_pragma] = STATE(3837), + [sym_preproc_nullable] = STATE(3837), + [sym_preproc_error] = STATE(3837), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3838] = { + [sym_preproc_region] = STATE(3838), + [sym_preproc_endregion] = STATE(3838), + [sym_preproc_line] = STATE(3838), + [sym_preproc_pragma] = STATE(3838), + [sym_preproc_nullable] = STATE(3838), + [sym_preproc_error] = STATE(3838), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3839] = { + [sym_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), + [sym_preproc_pragma] = STATE(3839), + [sym_preproc_nullable] = STATE(3839), + [sym_preproc_error] = STATE(3839), + [sym_preproc_warning] = STATE(3839), + [sym_preproc_define] = STATE(3839), + [sym_preproc_undef] = STATE(3839), + [anon_sym_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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3840] = { + [sym_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), + [sym_preproc_pragma] = STATE(3840), + [sym_preproc_nullable] = STATE(3840), + [sym_preproc_error] = STATE(3840), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3841), + [sym_preproc_nullable] = STATE(3841), + [sym_preproc_error] = STATE(3841), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3842] = { + [sym_argument_list] = STATE(3259), + [sym_bracketed_argument_list] = STATE(2613), + [sym_preproc_region] = STATE(3842), + [sym_preproc_endregion] = STATE(3842), + [sym_preproc_line] = STATE(3842), + [sym_preproc_pragma] = STATE(3842), + [sym_preproc_nullable] = STATE(3842), + [sym_preproc_error] = STATE(3842), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3843), + [sym_preproc_nullable] = STATE(3843), + [sym_preproc_error] = STATE(3843), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3844), + [sym_preproc_nullable] = STATE(3844), + [sym_preproc_error] = STATE(3844), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3845), + [sym_preproc_nullable] = STATE(3845), + [sym_preproc_error] = STATE(3845), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3846] = { + [sym_argument_list] = STATE(3259), + [sym_bracketed_argument_list] = STATE(2613), + [sym_preproc_region] = STATE(3846), + [sym_preproc_endregion] = STATE(3846), + [sym_preproc_line] = STATE(3846), + [sym_preproc_pragma] = STATE(3846), + [sym_preproc_nullable] = STATE(3846), + [sym_preproc_error] = STATE(3846), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3847), + [sym_preproc_nullable] = STATE(3847), + [sym_preproc_error] = STATE(3847), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3848), + [sym_preproc_nullable] = STATE(3848), + [sym_preproc_error] = STATE(3848), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3849), + [sym_preproc_nullable] = STATE(3849), + [sym_preproc_error] = STATE(3849), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3850), + [sym_preproc_nullable] = STATE(3850), + [sym_preproc_error] = STATE(3850), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3851), + [sym_preproc_nullable] = STATE(3851), + [sym_preproc_error] = STATE(3851), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3852), + [sym_preproc_nullable] = STATE(3852), + [sym_preproc_error] = STATE(3852), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3853] = { + [sym_preproc_region] = STATE(3853), + [sym_preproc_endregion] = STATE(3853), + [sym_preproc_line] = STATE(3853), + [sym_preproc_pragma] = STATE(3853), + [sym_preproc_nullable] = STATE(3853), + [sym_preproc_error] = STATE(3853), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3854), + [sym_preproc_endregion] = STATE(3854), + [sym_preproc_line] = STATE(3854), + [sym_preproc_pragma] = STATE(3854), + [sym_preproc_nullable] = STATE(3854), + [sym_preproc_error] = STATE(3854), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3855] = { + [sym_argument_list] = STATE(3259), + [sym_bracketed_argument_list] = STATE(2613), + [sym_preproc_region] = STATE(3855), + [sym_preproc_endregion] = STATE(3855), + [sym_preproc_line] = STATE(3855), + [sym_preproc_pragma] = STATE(3855), + [sym_preproc_nullable] = STATE(3855), + [sym_preproc_error] = STATE(3855), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3856), + [sym_preproc_nullable] = STATE(3856), + [sym_preproc_error] = STATE(3856), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3857), + [sym_preproc_nullable] = STATE(3857), + [sym_preproc_error] = STATE(3857), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3858), + [sym_preproc_nullable] = STATE(3858), + [sym_preproc_error] = STATE(3858), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3859), + [sym_preproc_nullable] = STATE(3859), + [sym_preproc_error] = STATE(3859), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3860), + [sym_preproc_nullable] = STATE(3860), + [sym_preproc_error] = STATE(3860), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3861] = { + [sym__name] = STATE(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_preproc_region] = STATE(3861), + [sym_preproc_endregion] = STATE(3861), + [sym_preproc_line] = STATE(3861), + [sym_preproc_pragma] = STATE(3861), + [sym_preproc_nullable] = STATE(3861), + [sym_preproc_error] = STATE(3861), + [sym_preproc_warning] = STATE(3861), + [sym_preproc_define] = STATE(3861), + [sym_preproc_undef] = STATE(3861), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3862), + [sym_preproc_nullable] = STATE(3862), + [sym_preproc_error] = STATE(3862), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3863), + [sym_preproc_nullable] = STATE(3863), + [sym_preproc_error] = STATE(3863), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3864), + [sym_preproc_endregion] = STATE(3864), + [sym_preproc_line] = STATE(3864), + [sym_preproc_pragma] = STATE(3864), + [sym_preproc_nullable] = STATE(3864), + [sym_preproc_error] = STATE(3864), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3865), + [sym_preproc_endregion] = STATE(3865), + [sym_preproc_line] = STATE(3865), + [sym_preproc_pragma] = STATE(3865), + [sym_preproc_nullable] = STATE(3865), + [sym_preproc_error] = STATE(3865), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3866), + [sym_preproc_nullable] = STATE(3866), + [sym_preproc_error] = STATE(3866), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3867), + [sym_preproc_endregion] = STATE(3867), + [sym_preproc_line] = STATE(3867), + [sym_preproc_pragma] = STATE(3867), + [sym_preproc_nullable] = STATE(3867), + [sym_preproc_error] = STATE(3867), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3868), + [sym_preproc_endregion] = STATE(3868), + [sym_preproc_line] = STATE(3868), + [sym_preproc_pragma] = STATE(3868), + [sym_preproc_nullable] = STATE(3868), + [sym_preproc_error] = STATE(3868), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3869] = { + [sym_preproc_region] = STATE(3869), + [sym_preproc_endregion] = STATE(3869), + [sym_preproc_line] = STATE(3869), + [sym_preproc_pragma] = STATE(3869), + [sym_preproc_nullable] = STATE(3869), + [sym_preproc_error] = STATE(3869), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3870] = { + [sym_preproc_region] = STATE(3870), + [sym_preproc_endregion] = STATE(3870), + [sym_preproc_line] = STATE(3870), + [sym_preproc_pragma] = STATE(3870), + [sym_preproc_nullable] = STATE(3870), + [sym_preproc_error] = STATE(3870), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3871] = { + [sym_preproc_region] = STATE(3871), + [sym_preproc_endregion] = STATE(3871), + [sym_preproc_line] = STATE(3871), + [sym_preproc_pragma] = STATE(3871), + [sym_preproc_nullable] = STATE(3871), + [sym_preproc_error] = STATE(3871), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3872), + [sym_preproc_nullable] = STATE(3872), + [sym_preproc_error] = STATE(3872), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3873] = { + [sym_preproc_region] = STATE(3873), + [sym_preproc_endregion] = STATE(3873), + [sym_preproc_line] = STATE(3873), + [sym_preproc_pragma] = STATE(3873), + [sym_preproc_nullable] = STATE(3873), + [sym_preproc_error] = STATE(3873), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3874] = { + [sym_preproc_region] = STATE(3874), + [sym_preproc_endregion] = STATE(3874), + [sym_preproc_line] = STATE(3874), + [sym_preproc_pragma] = STATE(3874), + [sym_preproc_nullable] = STATE(3874), + [sym_preproc_error] = STATE(3874), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3875] = { + [sym_preproc_region] = STATE(3875), + [sym_preproc_endregion] = STATE(3875), + [sym_preproc_line] = STATE(3875), + [sym_preproc_pragma] = STATE(3875), + [sym_preproc_nullable] = STATE(3875), + [sym_preproc_error] = STATE(3875), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3876), + [sym_preproc_nullable] = STATE(3876), + [sym_preproc_error] = STATE(3876), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3877] = { + [sym_preproc_region] = STATE(3877), + [sym_preproc_endregion] = STATE(3877), + [sym_preproc_line] = STATE(3877), + [sym_preproc_pragma] = STATE(3877), + [sym_preproc_nullable] = STATE(3877), + [sym_preproc_error] = STATE(3877), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3878] = { + [sym_preproc_region] = STATE(3878), + [sym_preproc_endregion] = STATE(3878), + [sym_preproc_line] = STATE(3878), + [sym_preproc_pragma] = STATE(3878), + [sym_preproc_nullable] = STATE(3878), + [sym_preproc_error] = STATE(3878), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3879), + [sym_preproc_nullable] = STATE(3879), + [sym_preproc_error] = STATE(3879), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3880] = { + [sym_preproc_region] = STATE(3880), + [sym_preproc_endregion] = STATE(3880), + [sym_preproc_line] = STATE(3880), + [sym_preproc_pragma] = STATE(3880), + [sym_preproc_nullable] = STATE(3880), + [sym_preproc_error] = STATE(3880), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3881] = { + [sym_preproc_region] = STATE(3881), + [sym_preproc_endregion] = STATE(3881), + [sym_preproc_line] = STATE(3881), + [sym_preproc_pragma] = STATE(3881), + [sym_preproc_nullable] = STATE(3881), + [sym_preproc_error] = STATE(3881), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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_preproc_region] = STATE(3882), + [sym_preproc_endregion] = STATE(3882), + [sym_preproc_line] = STATE(3882), + [sym_preproc_pragma] = STATE(3882), + [sym_preproc_nullable] = STATE(3882), + [sym_preproc_error] = STATE(3882), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(3883), + [sym_preproc_nullable] = STATE(3883), + [sym_preproc_error] = STATE(3883), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3884] = { + [sym_preproc_region] = STATE(3884), + [sym_preproc_endregion] = STATE(3884), + [sym_preproc_line] = STATE(3884), + [sym_preproc_pragma] = STATE(3884), + [sym_preproc_nullable] = STATE(3884), + [sym_preproc_error] = STATE(3884), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3885] = { + [sym_preproc_region] = STATE(3885), + [sym_preproc_endregion] = STATE(3885), + [sym_preproc_line] = STATE(3885), + [sym_preproc_pragma] = STATE(3885), + [sym_preproc_nullable] = STATE(3885), + [sym_preproc_error] = STATE(3885), + [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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3886] = { + [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), @@ -516506,7 +534102,12904 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 26, + [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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(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, + 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, + sym_preproc_region, + sym_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, + [5811] = 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(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(6395), 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(3947), 9, + sym_preproc_region, + sym_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, + [5938] = 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(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, + sym_preproc_region, + sym_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, + [6065] = 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(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(3949), 9, + sym_preproc_region, + sym_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, + [6192] = 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(4227), 1, + anon_sym_ref, + ACTIONS(5698), 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(3950), 9, + sym_preproc_region, + sym_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, + [6319] = 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(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, + sym_preproc_region, + sym_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, + [6446] = 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(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(3952), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [6573] = 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(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, + 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(3953), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [6700] = 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(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, + sym_preproc_region, + sym_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, + [6827] = 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(4173), 1, + anon_sym_ref, + ACTIONS(5818), 1, + anon_sym_delegate, + ACTIONS(5822), 1, + anon_sym_var, + ACTIONS(5824), 1, + sym_predefined_type, + ACTIONS(5890), 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(3955), 9, + sym_preproc_region, + sym_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, + [6954] = 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(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(3956), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [7081] = 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(4217), 1, + anon_sym_ref, + ACTIONS(5646), 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(3957), 9, + sym_preproc_region, + sym_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, + [7208] = 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(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, + 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(3958), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [7335] = 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(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, + sym_preproc_region, + sym_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, + [7462] = 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(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, + 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(3960), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [7589] = 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(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(3961), 9, + sym_preproc_region, + sym_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, + [7716] = 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(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, + 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(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, + 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, + [7843] = 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(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, + sym_preproc_region, + sym_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, + [7970] = 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(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(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(3964), 9, + sym_preproc_region, + sym_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, + [8097] = 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(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, + 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, + sym_preproc_region, + sym_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, + [8224] = 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(4912), 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, + sym_preproc_region, + sym_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), 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(4916), 30, + anon_sym_LPAREN, + anon_sym_where, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [8323] = 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(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, + 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, + sym_preproc_region, + sym_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, + [8450] = 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(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(3968), 9, + sym_preproc_region, + sym_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, + [8577] = 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(6264), 1, + anon_sym_into, + STATE(3969), 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_QMARK, + anon_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(5949), 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, + [8670] = 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(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, + 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, + sym_preproc_region, + sym_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, + [8797] = 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(4173), 1, + anon_sym_ref, + ACTIONS(5818), 1, + anon_sym_delegate, + ACTIONS(5822), 1, + anon_sym_var, + ACTIONS(5824), 1, + sym_predefined_type, + ACTIONS(5890), 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(3971), 9, + sym_preproc_region, + sym_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, + [8924] = 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(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, + 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, + sym_preproc_region, + sym_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, + [9051] = 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(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, + 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, + sym_preproc_region, + sym_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, + [9178] = 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(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, + 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, + sym_preproc_region, + sym_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, + [9305] = 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(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, + 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(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(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, + [9432] = 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(3648), 1, + anon_sym_ref, + ACTIONS(6109), 1, + sym__identifier_token, + ACTIONS(6113), 1, + anon_sym_LPAREN, + ACTIONS(6115), 1, + anon_sym_delegate, + ACTIONS(6117), 1, + anon_sym_scoped, + ACTIONS(6119), 1, + anon_sym_var, + ACTIONS(6121), 1, + sym_predefined_type, + STATE(2581), 1, + sym_identifier, + STATE(2627), 1, + sym__reserved_identifier, + STATE(2722), 1, + sym_generic_name, + STATE(2767), 1, + sym_array_type, + STATE(2769), 1, + sym_tuple_type, + STATE(2771), 1, + sym__name, + STATE(2822), 1, + sym_type, + STATE(7243), 1, + sym__array_base_type, + STATE(7717), 1, + sym__pointer_base_type, + STATE(2764), 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, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(3976), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6111), 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, + [9559] = 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(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(3977), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5858), 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, + [9704] = 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(3001), 1, + sym_predefined_type, + ACTIONS(3454), 1, + anon_sym_delegate, + ACTIONS(3658), 1, + anon_sym_ref, + ACTIONS(6201), 1, + anon_sym_scoped, + 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(5568), 1, + sym_identifier, + STATE(5738), 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(3978), 9, + sym_preproc_region, + sym_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, + [9831] = 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4806), 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(4802), 29, + anon_sym_LBRACK, + 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_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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(7702), 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(3980), 9, + sym_preproc_region, + sym_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, + [10057] = 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(3969), 1, + aux_sym__query_body_repeat2, + STATE(3981), 9, + sym_preproc_region, + sym_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), 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_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, + [10152] = 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(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, + sym_preproc_region, + sym_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, + [10279] = 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(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, + sym_preproc_region, + sym_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, + [10406] = 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(7497), 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(3984), 9, + sym_preproc_region, + sym_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, + [10533] = 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(7568), 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(3985), 9, + sym_preproc_region, + sym_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, + [10660] = 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(7294), 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(3986), 9, + sym_preproc_region, + sym_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, + [10787] = 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(7305), 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(3987), 9, + sym_preproc_region, + sym_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, + [10914] = 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(4737), 1, + anon_sym_var, + ACTIONS(5028), 1, + anon_sym_ref, + ACTIONS(5030), 1, + anon_sym_delegate, + ACTIONS(5036), 1, + anon_sym_scoped, + ACTIONS(5038), 1, + sym_predefined_type, + 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(7099), 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(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(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, + [11041] = 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(5779), 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(5777), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(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, + sym_preproc_region, + sym_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), 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(4064), 1, + anon_sym_ref, + ACTIONS(5818), 1, + anon_sym_delegate, + ACTIONS(5822), 1, + anon_sym_var, + ACTIONS(5824), 1, + sym_predefined_type, + ACTIONS(5830), 1, + anon_sym_scoped, + ACTIONS(6059), 1, + anon_sym_LPAREN, + 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(4654), 1, + sym_identifier, + STATE(5231), 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(3992), 9, + sym_preproc_region, + sym_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, + [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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(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(3994), 9, + sym_preproc_region, + sym_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, + [11739] = 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(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, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, + 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(5864), 9, + anon_sym_where, + anon_sym_and, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(3996), 9, + sym_preproc_region, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(5074), 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, + 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(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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(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, + sym_preproc_region, + sym_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_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, + [12462] = 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(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, + sym_preproc_region, + sym_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_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, + [12599] = 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(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(6289), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + 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(4001), 9, + sym_preproc_region, + sym_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_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, + [12732] = 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(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, + sym_preproc_region, + sym_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, + anon_sym_where, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [12863] = 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(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(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(4003), 9, + sym_preproc_region, + sym_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_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, + [13002] = 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(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(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, + sym_preproc_region, + sym_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_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, + [13143] = 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(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, + 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, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [13288] = 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(6309), 1, + anon_sym_and, + ACTIONS(6313), 1, + anon_sym_or, + 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(5356), 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(5354), 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, + [13383] = 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(4064), 1, + anon_sym_ref, + ACTIONS(5818), 1, + anon_sym_delegate, + ACTIONS(5822), 1, + anon_sym_var, + ACTIONS(5824), 1, + sym_predefined_type, + ACTIONS(5830), 1, + anon_sym_scoped, + ACTIONS(6059), 1, + anon_sym_LPAREN, + 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(4654), 1, + sym_identifier, + STATE(5231), 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(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(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, + [13510] = 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(7617), 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(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(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, + [13637] = 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(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(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(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, + [13764] = 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(7690), 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(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(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, + [13891] = 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(7694), 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(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(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, + [14018] = 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(7607), 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(4012), 9, + sym_preproc_region, + sym_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, + [14145] = 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(7638), 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(4013), 9, + sym_preproc_region, + sym_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, + [14272] = 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(7667), 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(4014), 9, + sym_preproc_region, + sym_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, + [14399] = 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(7349), 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(4015), 9, + sym_preproc_region, + sym_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, + [14526] = 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(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, + sym_preproc_region, + sym_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, + [14653] = 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(7524), 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(4017), 9, + sym_preproc_region, + sym_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, + [14780] = 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(7350), 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(4018), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [14907] = 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(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, + sym_preproc_region, + sym_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, + [15034] = 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(7707), 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(4020), 9, + sym_preproc_region, + sym_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, + [15161] = 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(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, + sym_preproc_region, + sym_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, + [15288] = 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(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(4022), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5864), 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, + [15433] = 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(7537), 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(4023), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [15560] = 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(7541), 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(4024), 9, + sym_preproc_region, + sym_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, + [15687] = 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(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, + sym_preproc_region, + sym_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, + [15814] = 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(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(4026), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5072), 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, + [15959] = 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(7356), 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(4027), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [16086] = 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(4217), 1, + anon_sym_ref, + ACTIONS(5646), 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(4028), 9, + sym_preproc_region, + sym_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, + [16213] = 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(5751), 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(5745), 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(4029), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [16360] = 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(5769), 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [16507] = 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(5901), 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(5899), 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(4031), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [16654] = 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(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(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(4032), 9, + sym_preproc_region, + sym_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, + [16781] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3600), 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, + 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, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + 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, + 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(7414), 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(4034), 9, + sym_preproc_region, + sym_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, + [17019] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -516527,77 +547020,188 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, + 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(7419), 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(4035), 9, + sym_preproc_region, + sym_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, + [17146] = 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(4719), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4733), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(5624), 1, + anon_sym_LPAREN, + ACTIONS(5658), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5666), 1, anon_sym_BANG, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(5688), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(5696), 1, anon_sym_with, - STATE(2358), 1, + 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(2936), 1, + STATE(3886), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5668), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6227), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - STATE(3816), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 21, - anon_sym_where, - anon_sym_CARET, + 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, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6317), 2, + anon_sym_ascending, + anon_sym_descending, + ACTIONS(6315), 8, + anon_sym_COMMA, + 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, - [117] = 31, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -516618,51 +547222,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(4096), 1, - anon_sym_ref, - ACTIONS(5646), 1, + ACTIONS(2979), 1, + anon_sym_LPAREN, + ACTIONS(3001), 1, + sym_predefined_type, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(5650), 1, + ACTIONS(4737), 1, anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5785), 1, + ACTIONS(6103), 1, + anon_sym_ref, + ACTIONS(6107), 1, anon_sym_scoped, - ACTIONS(5947), 1, - anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(3096), 1, - sym__name, - STATE(3099), 1, + STATE(4087), 1, + sym_identifier, + STATE(4109), 1, + sym_generic_name, + STATE(4292), 1, sym_tuple_type, - STATE(3103), 1, + STATE(4390), 1, + sym__name, + STATE(4404), 1, sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(3274), 1, + STATE(6531), 1, sym_type, - STATE(7035), 1, + STATE(7162), 1, sym__array_base_type, - STATE(7148), 1, + STATE(7413), 1, sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, + STATE(2347), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(3108), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3817), 9, + STATE(4285), 3, + sym_nullable_type, + sym_pointer_type, + sym_function_pointer_type, + STATE(4037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -516672,7 +547276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -516693,7 +547297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [244] = 31, + [17420] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -516714,51 +547318,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3887), 1, sym__identifier_token, - ACTIONS(3978), 1, + ACTIONS(4042), 1, anon_sym_delegate, - ACTIONS(3982), 1, + ACTIONS(4046), 1, anon_sym_var, - ACTIONS(3984), 1, + ACTIONS(4048), 1, sym_predefined_type, - ACTIONS(4157), 1, + ACTIONS(4227), 1, anon_sym_ref, - ACTIONS(5758), 1, + ACTIONS(5698), 1, anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(6051), 1, anon_sym_LPAREN, - STATE(2838), 1, + STATE(2923), 1, sym_identifier, - STATE(2846), 1, + STATE(2945), 1, sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, + STATE(2985), 1, + sym_generic_name, + STATE(2992), 1, sym_array_type, - STATE(2905), 1, + STATE(3038), 1, + sym_type, + STATE(3058), 1, sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3025), 1, + STATE(3072), 1, sym__name, - STATE(6934), 1, + STATE(7267), 1, sym__array_base_type, - STATE(7370), 1, + STATE(7693), 1, sym__pointer_base_type, - STATE(2889), 3, + 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(2890), 3, + STATE(3054), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3818), 9, + STATE(4038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -516768,7 +547372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, + ACTIONS(3889), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -516789,7 +547393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [371] = 31, + [17547] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -516810,51 +547414,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3887), 1, sym__identifier_token, - ACTIONS(4104), 1, + ACTIONS(4024), 1, anon_sym_ref, - ACTIONS(5530), 1, + ACTIONS(4042), 1, anon_sym_delegate, - ACTIONS(5532), 1, - anon_sym_scoped, - ACTIONS(5534), 1, + ACTIONS(4046), 1, anon_sym_var, - ACTIONS(5536), 1, + ACTIONS(4048), 1, sym_predefined_type, - ACTIONS(6031), 1, + ACTIONS(5862), 1, + anon_sym_scoped, + ACTIONS(6051), 1, anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, + STATE(2945), 1, sym__reserved_identifier, - STATE(3148), 1, + STATE(2985), 1, + sym_generic_name, + STATE(2992), 1, sym_array_type, - STATE(3150), 1, + STATE(3058), 1, sym_tuple_type, - STATE(3169), 1, + STATE(3106), 1, sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(3374), 1, + STATE(4395), 1, + sym_identifier, + STATE(5023), 1, sym__name, - STATE(7008), 1, + STATE(7267), 1, sym__array_base_type, - STATE(7189), 1, + STATE(7693), 1, sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, + STATE(3012), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3173), 3, + STATE(3029), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3819), 9, + STATE(3054), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -516864,7 +547468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, + ACTIONS(3889), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -516885,7 +547489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [498] = 31, + [17674] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -516906,51 +547510,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(3887), 1, sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, + ACTIONS(4042), 1, anon_sym_delegate, - ACTIONS(5953), 1, + ACTIONS(4046), 1, anon_sym_var, - ACTIONS(6080), 1, + ACTIONS(4048), 1, + sym_predefined_type, + ACTIONS(4168), 1, anon_sym_ref, - ACTIONS(6084), 1, + ACTIONS(5729), 1, anon_sym_scoped, - STATE(3558), 1, + ACTIONS(6051), 1, + anon_sym_LPAREN, + STATE(2923), 1, + sym_identifier, + STATE(2945), 1, sym__reserved_identifier, - STATE(3999), 1, + STATE(2985), 1, sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, + STATE(2992), 1, + sym_array_type, + STATE(3038), 1, + sym_type, + STATE(3058), 1, sym_tuple_type, - STATE(4302), 1, + STATE(3072), 1, sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, + STATE(7267), 1, sym__array_base_type, - STATE(7350), 1, + STATE(7693), 1, sym__pointer_base_type, - STATE(7431), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, + STATE(3012), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3820), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -516960,7 +547564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(3889), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -516981,7 +547585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [625] = 40, + [17801] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517002,70 +547606,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(3447), 2, + anon_sym_EQ, + anon_sym_in, + ACTIONS(3616), 3, anon_sym_LPAREN, - ACTIONS(5552), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, - anon_sym_QMARK, - ACTIONS(6132), 1, - anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, - anon_sym_PIPE, - ACTIONS(6138), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, - anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, - anon_sym_is, - STATE(2830), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6124), 2, - anon_sym_LT, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(6128), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6130), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6140), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6144), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6146), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3821), 9, + STATE(4041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517075,18 +547623,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4886), 10, + 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, + 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, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, anon_sym_ascending, anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - [770] = 41, + sym__identifier_token, + [17896] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517107,92 +547686,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5612), 1, - anon_sym_in, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6160), 1, + 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(6166), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, anon_sym_PIPE, - ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6205), 31, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 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(3822), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [917] = 31, + 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, + [17991] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517213,51 +547766,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3402), 1, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(4023), 1, - sym__identifier_token, - ACTIONS(4060), 1, + ACTIONS(3630), 1, anon_sym_ref, - ACTIONS(5736), 1, - anon_sym_scoped, - ACTIONS(5738), 1, + ACTIONS(4058), 1, + sym__identifier_token, + ACTIONS(5638), 1, anon_sym_var, - ACTIONS(5740), 1, + ACTIONS(5640), 1, sym_predefined_type, - ACTIONS(6015), 1, + ACTIONS(6055), 1, anon_sym_LPAREN, - STATE(2286), 1, + ACTIONS(6221), 1, + anon_sym_scoped, + STATE(2343), 1, + sym_type, + STATE(2361), 1, sym__reserved_identifier, - STATE(2296), 1, - sym_identifier, - STATE(2318), 1, + STATE(2378), 1, sym_array_type, - STATE(2321), 1, + STATE(2380), 1, sym_tuple_type, - STATE(2344), 1, + STATE(2389), 1, sym_generic_name, - STATE(2378), 1, + STATE(2564), 1, + sym_identifier, + STATE(2623), 1, sym__name, - STATE(3684), 1, - sym_type, - STATE(7049), 1, + STATE(7103), 1, sym__array_base_type, - STATE(7350), 1, + STATE(7413), 1, sym__pointer_base_type, - STATE(2275), 3, + STATE(2347), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2315), 3, + STATE(2373), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2320), 3, + STATE(2379), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3823), 9, + STATE(4043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517267,7 +547820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 20, + ACTIONS(4060), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -517288,7 +547841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1044] = 31, + [18118] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517309,51 +547862,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(3788), 1, sym__identifier_token, - ACTIONS(3961), 1, + ACTIONS(4028), 1, anon_sym_ref, - ACTIONS(3978), 1, + ACTIONS(5818), 1, anon_sym_delegate, - ACTIONS(3982), 1, + ACTIONS(5822), 1, anon_sym_var, - ACTIONS(3984), 1, + ACTIONS(5824), 1, sym_predefined_type, - ACTIONS(5654), 1, + ACTIONS(5895), 1, anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(6059), 1, anon_sym_LPAREN, - STATE(2846), 1, + STATE(3167), 1, + sym_identifier, + STATE(3225), 1, sym__reserved_identifier, - STATE(2894), 1, + STATE(3246), 1, + sym_generic_name, + STATE(3255), 1, sym_array_type, - STATE(2905), 1, + STATE(3258), 1, sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, + STATE(3274), 1, sym_type, - STATE(4318), 1, - sym_identifier, - STATE(4870), 1, + STATE(3453), 1, sym__name, - STATE(6934), 1, + STATE(7101), 1, sym__array_base_type, - STATE(7370), 1, + STATE(7546), 1, sym__pointer_base_type, - STATE(2889), 3, + STATE(3251), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(2890), 3, + STATE(3253), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(2900), 3, + STATE(3257), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3824), 9, + STATE(4044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517363,7 +547916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, + ACTIONS(3790), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -517384,7 +547937,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1171] = 31, + [18245] = 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5882), 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, + [18390] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517405,51 +548063,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(3887), 1, sym__identifier_token, - ACTIONS(4104), 1, + ACTIONS(3891), 1, anon_sym_ref, - ACTIONS(5530), 1, + ACTIONS(4042), 1, anon_sym_delegate, - ACTIONS(5532), 1, + ACTIONS(4044), 1, anon_sym_scoped, - ACTIONS(5534), 1, + ACTIONS(4046), 1, anon_sym_var, - ACTIONS(5536), 1, + ACTIONS(4048), 1, sym_predefined_type, - ACTIONS(6031), 1, + ACTIONS(6051), 1, anon_sym_LPAREN, - STATE(3102), 1, + STATE(2923), 1, sym_identifier, - STATE(3109), 1, + STATE(2945), 1, sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, + STATE(2985), 1, sym_generic_name, - STATE(3347), 1, + STATE(2992), 1, + sym_array_type, + STATE(3038), 1, sym_type, - STATE(3374), 1, + STATE(3058), 1, + sym_tuple_type, + STATE(3072), 1, sym__name, - STATE(7008), 1, + STATE(7267), 1, sym__array_base_type, - STATE(7189), 1, + STATE(7693), 1, sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, + STATE(3012), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3173), 3, + STATE(3029), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3825), 9, + STATE(3054), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517459,7 +548117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, + ACTIONS(3889), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -517480,7 +548138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1298] = 31, + [18517] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517501,51 +548159,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3576), 1, - anon_sym_ref, - ACTIONS(4023), 1, - sym__identifier_token, - ACTIONS(5738), 1, - anon_sym_var, - ACTIONS(5740), 1, - sym_predefined_type, - ACTIONS(6015), 1, + ACTIONS(4719), 1, + anon_sym_DASH_GT, + ACTIONS(4733), 1, + anon_sym_DOT, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(6061), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(2286), 1, - sym__reserved_identifier, - STATE(2318), 1, - sym_array_type, - STATE(2321), 1, - sym_tuple_type, - STATE(2344), 1, - sym_generic_name, - STATE(2481), 1, - sym_identifier, - STATE(2580), 1, - sym__name, - STATE(7049), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2315), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2320), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3826), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517555,28 +548232,105 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5899), 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, - [1425] = 31, + [18662] = 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(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(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_as, + ACTIONS(1221), 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, + [18771] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517597,51 +548351,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, + ACTIONS(3001), 1, sym_predefined_type, - ACTIONS(3402), 1, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(4745), 1, + ACTIONS(4737), 1, anon_sym_var, - ACTIONS(6094), 1, + ACTIONS(6103), 1, anon_sym_ref, - ACTIONS(6098), 1, + ACTIONS(6107), 1, anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, + STATE(4087), 1, sym_identifier, - STATE(4250), 1, + STATE(4109), 1, + sym_generic_name, + STATE(4292), 1, sym_tuple_type, - STATE(4302), 1, + STATE(4390), 1, sym__name, - STATE(4401), 1, + STATE(4404), 1, sym_array_type, - STATE(6947), 1, + STATE(7162), 1, sym__array_base_type, - STATE(7350), 1, + STATE(7413), 1, sym__pointer_base_type, - STATE(2275), 3, + STATE(7618), 1, + sym_type, + STATE(2347), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4256), 3, + STATE(4285), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3827), 9, + STATE(4049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517651,7 +548405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -517672,7 +548426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1552] = 31, + [18898] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517693,51 +548447,302 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7179), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3828), 9, + 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, + sym_preproc_region, + sym_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_or, + ACTIONS(5731), 25, + anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [19007] = 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(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(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(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(5664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_or, + STATE(4051), 9, + sym_preproc_region, + sym_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_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_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, + [19130] = 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(6277), 1, + anon_sym_SLASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6295), 1, + anon_sym_DOT_DOT, + 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(6275), 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(4052), 9, + sym_preproc_region, + sym_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_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_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, + [19247] = 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(6295), 1, + anon_sym_DOT_DOT, + 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, + STATE(4053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517747,28 +548752,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_or, + ACTIONS(5660), 23, 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_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, - [1679] = 31, + anon_sym_as, + anon_sym_is, + [19360] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517789,51 +548808,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7424), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3829), 9, + 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(6293), 1, + anon_sym_switch, + ACTIONS(6295), 1, + anon_sym_DOT_DOT, + 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(6273), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6275), 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(4054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517843,28 +548857,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 21, 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_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, - [1806] = 31, + anon_sym_as, + anon_sym_is, + [19479] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517885,51 +548900,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3909), 1, - sym__identifier_token, - ACTIONS(3956), 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(5971), 1, - anon_sym_LPAREN, - STATE(4139), 1, - sym_identifier, - STATE(4193), 1, - sym__reserved_identifier, - STATE(4315), 1, - sym_array_type, - STATE(4317), 1, - sym_tuple_type, - STATE(4333), 1, - sym_type, - STATE(4355), 1, - sym__name, - STATE(4376), 1, - sym_generic_name, - STATE(6996), 1, - sym__array_base_type, - STATE(7242), 1, - sym__pointer_base_type, - STATE(4266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4314), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3830), 9, + ACTIONS(6259), 1, + anon_sym_into, + STATE(4056), 1, + aux_sym__query_body_repeat2, + STATE(4055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -517939,28 +548914,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3911), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(6001), 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(5999), 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, - [1933] = 31, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [19574] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -517981,51 +548980,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7405), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3831), 9, + ACTIONS(6259), 1, + anon_sym_into, + STATE(3969), 1, + aux_sym__query_body_repeat2, + STATE(4056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518035,28 +548994,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_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, - [2060] = 22, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [19669] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518077,26 +549060,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6120), 1, + ACTIONS(6295), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3832), 9, + STATE(4057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518106,7 +549089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1153), 10, + ACTIONS(1223), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -518117,7 +549100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_or, - ACTIONS(1139), 25, + ACTIONS(1221), 25, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -518143,7 +549126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [2169] = 31, + [19778] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518164,51 +549147,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5131), 1, - anon_sym_ref, - ACTIONS(5133), 1, + ACTIONS(3001), 1, + sym_predefined_type, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(5139), 1, + ACTIONS(3640), 1, + anon_sym_ref, + ACTIONS(6079), 1, + anon_sym_var, + ACTIONS(6179), 1, anon_sym_scoped, - ACTIONS(5141), 1, - sym_predefined_type, - STATE(3558), 1, + STATE(2343), 1, + sym_type, + STATE(3691), 1, sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, + STATE(4087), 1, sym_identifier, - STATE(6191), 1, - sym__name, - STATE(6358), 1, + STATE(4109), 1, + sym_generic_name, + STATE(4292), 1, sym_tuple_type, - STATE(6429), 1, + STATE(4390), 1, + sym__name, + STATE(4404), 1, sym_array_type, - STATE(6839), 1, - sym_type, - STATE(6947), 1, + STATE(7162), 1, sym__array_base_type, - STATE(7114), 1, + STATE(7413), 1, sym__pointer_base_type, - STATE(4015), 3, + 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(4256), 3, + STATE(4285), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(6830), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3833), 9, + STATE(4058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518218,7 +549201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -518239,7 +549222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2296] = 31, + [19905] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518260,51 +549243,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, + ACTIONS(3001), 1, sym_predefined_type, - ACTIONS(3402), 1, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, + ACTIONS(3640), 1, anon_sym_ref, - ACTIONS(6098), 1, + ACTIONS(6079), 1, + anon_sym_var, + ACTIONS(6179), 1, anon_sym_scoped, - STATE(3558), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, + STATE(4087), 1, sym_identifier, - STATE(4250), 1, + STATE(4109), 1, + sym_generic_name, + STATE(4292), 1, sym_tuple_type, - STATE(4302), 1, + STATE(4390), 1, sym__name, - STATE(4401), 1, + STATE(4404), 1, sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7078), 1, + STATE(6064), 1, sym_type, - STATE(7350), 1, + STATE(7162), 1, + sym__array_base_type, + STATE(7413), 1, sym__pointer_base_type, - STATE(2275), 3, + STATE(2347), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4256), 3, + STATE(4285), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3834), 9, + STATE(4059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518314,7 +549297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -518335,7 +549318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2423] = 31, + [20032] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518356,51 +549339,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, + ACTIONS(4737), 1, anon_sym_var, - ACTIONS(6080), 1, + ACTIONS(5028), 1, anon_sym_ref, - ACTIONS(6084), 1, + ACTIONS(5030), 1, + anon_sym_delegate, + ACTIONS(5036), 1, anon_sym_scoped, - STATE(3558), 1, + ACTIONS(5038), 1, + sym_predefined_type, + STATE(3691), 1, sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, + STATE(4087), 1, sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, + STATE(4109), 1, + sym_generic_name, + STATE(6450), 1, sym__name, - STATE(4401), 1, + STATE(6579), 1, + sym_tuple_type, + STATE(6694), 1, sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7197), 1, + STATE(7110), 1, sym_type, - STATE(7350), 1, + STATE(7162), 1, + sym__array_base_type, + STATE(7446), 1, sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4256), 3, + STATE(4285), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3835), 9, + STATE(7266), 3, + sym_implicit_type, + sym_ref_type, + sym_scoped_type, + STATE(4060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518410,7 +549393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -518431,7 +549414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2550] = 31, + [20159] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518452,51 +549435,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, + ACTIONS(3001), 1, sym_predefined_type, - ACTIONS(3402), 1, + ACTIONS(3454), 1, anon_sym_delegate, - ACTIONS(5953), 1, + ACTIONS(4737), 1, anon_sym_var, - ACTIONS(6080), 1, + ACTIONS(6103), 1, anon_sym_ref, - ACTIONS(6084), 1, + ACTIONS(6107), 1, anon_sym_scoped, - STATE(3558), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, + STATE(4087), 1, sym_identifier, - STATE(4250), 1, + STATE(4109), 1, + sym_generic_name, + STATE(4292), 1, sym_tuple_type, - STATE(4302), 1, + STATE(4390), 1, sym__name, - STATE(4401), 1, + STATE(4404), 1, sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7275), 1, + STATE(6572), 1, sym_type, - STATE(7350), 1, + STATE(7162), 1, + sym__array_base_type, + STATE(7413), 1, sym__pointer_base_type, - STATE(2275), 3, + STATE(2347), 3, sym_implicit_type, sym_ref_type, sym_scoped_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4256), 3, + STATE(4285), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3836), 9, + STATE(4061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518506,7 +549489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(2971), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -518527,7 +549510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2677] = 31, + [20286] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518548,51 +549531,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3544), 1, - anon_sym_ref, - ACTIONS(4023), 1, + ACTIONS(3887), 1, sym__identifier_token, - ACTIONS(5738), 1, + ACTIONS(4024), 1, + anon_sym_ref, + ACTIONS(4042), 1, + anon_sym_delegate, + ACTIONS(4046), 1, anon_sym_var, - ACTIONS(5740), 1, + ACTIONS(4048), 1, sym_predefined_type, - ACTIONS(6015), 1, - anon_sym_LPAREN, - ACTIONS(6088), 1, + ACTIONS(5862), 1, anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(2286), 1, + ACTIONS(6051), 1, + anon_sym_LPAREN, + STATE(2945), 1, sym__reserved_identifier, - STATE(2296), 1, - sym_identifier, - STATE(2318), 1, + STATE(2985), 1, + sym_generic_name, + STATE(2992), 1, sym_array_type, - STATE(2321), 1, + STATE(3038), 1, + sym_type, + STATE(3058), 1, sym_tuple_type, - STATE(2344), 1, - sym_generic_name, - STATE(2378), 1, + STATE(4395), 1, + sym_identifier, + STATE(5023), 1, sym__name, - STATE(7049), 1, + STATE(7267), 1, sym__array_base_type, - STATE(7350), 1, + STATE(7693), 1, sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2315), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2320), 3, + STATE(3012), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(3837), 9, + 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(4062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518602,7 +549585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 20, + ACTIONS(3889), 20, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -518623,7 +549606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2804] = 31, + [20413] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518644,51 +549627,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3909), 1, - sym__identifier_token, - ACTIONS(3956), 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(5971), 1, - anon_sym_LPAREN, - STATE(4139), 1, - sym_identifier, - STATE(4193), 1, - sym__reserved_identifier, - STATE(4315), 1, - sym_array_type, - STATE(4317), 1, - sym_tuple_type, - STATE(4355), 1, - sym__name, - STATE(4376), 1, - sym_generic_name, - STATE(4706), 1, - sym_type, - STATE(6996), 1, - sym__array_base_type, - STATE(7242), 1, - sym__pointer_base_type, - STATE(4266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4314), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3838), 9, + STATE(4063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518698,15 +549637,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3911), 20, + 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, 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, @@ -518719,7 +549682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [2931] = 31, + sym__identifier_token, + [20503] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518740,51 +549704,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4110), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5783), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3169), 1, - sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3839), 9, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5884), 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(5882), 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(4064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518794,28 +549788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 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, - [3058] = 31, + [20649] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518836,51 +549809,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7204), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3840), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518890,28 +549836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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, 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_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [3185] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [20755] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -518932,51 +549894,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3909), 1, - sym__identifier_token, - ACTIONS(3913), 1, - anon_sym_ref, - ACTIONS(5622), 1, - anon_sym_delegate, - ACTIONS(5626), 1, - anon_sym_var, - ACTIONS(5628), 1, - sym_predefined_type, - ACTIONS(5636), 1, - anon_sym_scoped, - ACTIONS(5971), 1, - anon_sym_LPAREN, - STATE(4139), 1, - sym_identifier, - STATE(4193), 1, - sym__reserved_identifier, - STATE(4315), 1, - sym_array_type, - STATE(4317), 1, - sym_tuple_type, - STATE(4355), 1, - sym__name, - STATE(4376), 1, - sym_generic_name, - STATE(4706), 1, - sym_type, - STATE(6996), 1, - sym__array_base_type, - STATE(7242), 1, - sym__pointer_base_type, - STATE(4266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4314), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3841), 9, + ACTIONS(6359), 1, + anon_sym_and, + STATE(4066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -518986,28 +549906,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3911), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [3312] = 41, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519028,92 +549972,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5768), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6196), 1, - anon_sym_QMARK, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6222), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + STATE(4067), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4845), 10, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + ACTIONS(4843), 25, + anon_sym_where, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 9, - 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(3842), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [3459] = 41, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [20953] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519134,82 +550057,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5708), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6196), 1, + ACTIONS(6363), 1, anon_sym_QMARK, - ACTIONS(6200), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6202), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6204), 1, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6387), 1, anon_sym_AMP_AMP, - ACTIONS(6216), 1, + ACTIONS(6389), 1, anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, + ACTIONS(6391), 1, anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, + ACTIONS(5899), 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(3843), 9, + 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, @@ -519219,7 +550140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [3606] = 41, + [21097] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519240,82 +550161,157 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + 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(3677), 16, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(4655), 1, + 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, + 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, + [21187] = 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(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(4888), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6196), 1, + ACTIONS(6363), 1, anon_sym_QMARK, - ACTIONS(6200), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6202), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6204), 1, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6387), 1, anon_sym_AMP_AMP, - ACTIONS(6216), 1, + ACTIONS(6389), 1, anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, + ACTIONS(6391), 1, anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, + ACTIONS(5858), 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(3844), 9, + 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, @@ -519325,7 +550321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [3753] = 41, + [21331] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519346,82 +550342,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5594), 1, - anon_sym_in, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6160), 1, - anon_sym_QMARK, - ACTIONS(6166), 1, + ACTIONS(6369), 1, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, - anon_sym_PIPE, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6180), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5564), 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(3845), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -519431,7 +550394,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [3900] = 31, + 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, @@ -519452,51 +550435,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4088), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5764), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(2884), 1, - sym_type, - STATE(3768), 1, - sym_identifier, - STATE(4029), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3846), 9, + 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, + 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, @@ -519506,28 +550482,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [4027] = 31, + 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, @@ -519548,51 +550525,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6345), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3847), 9, + 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, @@ -519602,28 +550568,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 23, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [4154] = 41, + 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, @@ -519644,82 +550613,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5718), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6196), 1, - anon_sym_QMARK, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 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(3848), 9, + STATE(4074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -519729,7 +550677,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [4301] = 31, + 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, @@ -519750,51 +550712,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2947), 1, - anon_sym_scoped, - ACTIONS(2949), 1, - anon_sym_var, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3400), 1, - anon_sym_ref, - ACTIONS(3402), 1, - anon_sym_delegate, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3849), 9, + 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, @@ -519804,28 +550778,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [4428] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [21951] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519846,70 +550812,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, - anon_sym_QMARK, - ACTIONS(6132), 1, + ACTIONS(6369), 1, anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, - anon_sym_PIPE, - ACTIONS(6138), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6395), 1, anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3850), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -519919,18 +550875,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 10, + ACTIONS(5660), 13, + anon_sym_SEMI, 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, - [4573] = 31, + 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, + [22083] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -519951,51 +550910,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4009), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5762), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3169), 1, - sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(4668), 1, - sym_identifier, - STATE(5020), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3851), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520005,28 +550958,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [4700] = 35, + anon_sym_as, + anon_sym_is, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22201] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520047,62 +551001,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6220), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_or, - STATE(3852), 9, + anon_sym_AMP, + STATE(4078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520112,117 +551061,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_where, + ACTIONS(5660), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, - anon_sym_and, + 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_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [4835] = 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7182), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3853), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2921), 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, - [4962] = 36, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22331] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520243,64 +551098,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6200), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6204), 1, + ACTIONS(6373), 1, + anon_sym_PIPE, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6220), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(3854), 9, + STATE(4079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520310,20 +551165,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_where, - anon_sym_and, + 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, - anon_sym_from, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [5099] = 31, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22469] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520344,51 +551199,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2949), 1, - anon_sym_var, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5451), 1, - anon_sym_ref, - ACTIONS(5455), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3855), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520398,28 +551268,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [5226] = 31, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [22609] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520440,51 +551301,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3856), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520494,28 +551384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [5353] = 41, + [22753] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520536,72 +551405,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5718), 1, - anon_sym_in, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6160), 1, + ACTIONS(6363), 1, anon_sym_QMARK, - ACTIONS(6166), 1, + ACTIONS(6369), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6170), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6184), 1, + ACTIONS(6387), 1, anon_sym_AMP_AMP, - ACTIONS(6186), 1, + ACTIONS(6389), 1, anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, + ACTIONS(6391), 1, anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 9, + ACTIONS(5882), 9, anon_sym_SEMI, anon_sym_COMMA, anon_sym_RBRACK, @@ -520611,7 +551478,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - STATE(3857), 9, + STATE(4082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520621,7 +551488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [5500] = 31, + [22897] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520642,51 +551509,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3804), 1, + ACTIONS(3603), 1, + anon_sym_where, + ACTIONS(5530), 1, anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5666), 1, - anon_sym_scoped, - ACTIONS(5955), 1, - anon_sym_LPAREN, - STATE(2826), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, + STATE(2181), 1, sym_generic_name, - STATE(2884), 1, - sym_type, - STATE(3153), 1, + STATE(2317), 1, + sym_ref_type, + STATE(2340), 1, + sym__scoped_base_type, + STATE(4373), 1, sym_identifier, - STATE(3453), 1, + STATE(5302), 1, sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(3858), 9, + STATE(4083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520696,13 +551541,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, + 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, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -520717,7 +551575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [5627] = 41, + [23007] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520738,82 +551596,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5612), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6196), 1, + ACTIONS(6363), 1, anon_sym_QMARK, - ACTIONS(6200), 1, + ACTIONS(6369), 1, + anon_sym_SLASH, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6202), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6204), 1, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, + ACTIONS(6385), 1, + anon_sym_DOT_DOT, + ACTIONS(6387), 1, anon_sym_AMP_AMP, - ACTIONS(6216), 1, + ACTIONS(6389), 1, anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, + ACTIONS(6391), 1, anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6395), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6367), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 9, - anon_sym_where, - anon_sym_and, - anon_sym_from, + ACTIONS(5864), 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(3859), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520823,7 +551679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [5774] = 40, + [23151] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520844,70 +551700,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5552), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, + ACTIONS(6359), 1, + anon_sym_and, + ACTIONS(6397), 1, + anon_sym_or, + STATE(4085), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5356), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6132), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, anon_sym_PIPE, - ACTIONS(6138), 1, anon_sym_AMP, - ACTIONS(6142), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, - anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, - anon_sym_is, - STATE(2830), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, + 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, - ACTIONS(6124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6128), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6130), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3860), 9, + 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, + [23245] = 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(6359), 1, + anon_sym_and, + ACTIONS(6397), 1, + anon_sym_or, + STATE(4086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -520917,18 +551793,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5706), 10, + 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_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, - [5919] = 31, + 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_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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -520949,51 +551858,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5368), 1, - anon_sym_ref, - ACTIONS(5376), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6218), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3861), 9, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + STATE(4063), 1, + sym_type_argument_list, + STATE(4087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521003,15 +551874,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + 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, 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, @@ -521024,7 +551916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6046] = 41, + sym__identifier_token, + [23435] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521045,82 +551938,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5756), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5901), 1, anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6196), 1, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(6200), 1, + ACTIONS(6327), 1, + anon_sym_SLASH, + ACTIONS(6329), 1, anon_sym_CARET, - ACTIONS(6202), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6204), 1, + ACTIONS(6333), 1, anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6337), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, + anon_sym_DOT_DOT, + ACTIONS(6347), 1, anon_sym_AMP_AMP, - ACTIONS(6216), 1, + ACTIONS(6349), 1, anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, + ACTIONS(6351), 1, anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6325), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, + ACTIONS(5899), 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(3862), 9, + STATE(4088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521130,7 +552022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [6193] = 40, + [23581] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521151,70 +552043,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, - anon_sym_QMARK, - ACTIONS(6132), 1, - anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, - anon_sym_PIPE, - ACTIONS(6138), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, - anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6140), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6144), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6146), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3863), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521224,18 +552082,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5716), 10, + ACTIONS(1221), 25, + anon_sym_SEMI, 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, - [6338] = 41, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [23689] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521256,82 +552129,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, + ACTIONS(6363), 1, anon_sym_QMARK, - ACTIONS(6132), 1, + ACTIONS(6369), 1, anon_sym_SLASH, - ACTIONS(6134), 1, + ACTIONS(6371), 1, anon_sym_CARET, - ACTIONS(6136), 1, + ACTIONS(6373), 1, anon_sym_PIPE, - ACTIONS(6138), 1, + ACTIONS(6375), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6379), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6385), 1, anon_sym_DOT_DOT, - ACTIONS(6150), 1, + ACTIONS(6387), 1, anon_sym_AMP_AMP, - ACTIONS(6152), 1, + ACTIONS(6389), 1, anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, + ACTIONS(6391), 1, anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6395), 1, anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6377), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, + ACTIONS(6381), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6383), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6226), 2, - anon_sym_ascending, - anon_sym_descending, - ACTIONS(6224), 8, + ACTIONS(5072), 9, + 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(3864), 9, + 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, @@ -521341,7 +552212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [6485] = 31, + [23833] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521362,51 +552233,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3961), 1, - anon_sym_ref, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(5654), 1, - anon_sym_scoped, - ACTIONS(5959), 1, - anon_sym_LPAREN, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(4318), 1, - sym_identifier, - STATE(4870), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3865), 9, + STATE(4091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521416,111 +552243,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 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, - [6612] = 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(3697), 1, - sym__identifier_token, - ACTIONS(4102), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5760), 1, - anon_sym_scoped, - ACTIONS(5947), 1, + ACTIONS(3673), 16, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3078), 1, - sym_type, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3866), 9, - sym_preproc_region, - sym_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), 20, + 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, 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, @@ -521533,7 +552288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6739] = 31, + sym__identifier_token, + [23923] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521554,147 +552310,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2949), 1, - anon_sym_var, - ACTIONS(5133), 1, - anon_sym_delegate, - ACTIONS(5141), 1, - sym_predefined_type, - ACTIONS(5362), 1, - anon_sym_scoped, - ACTIONS(5904), 1, - anon_sym_ref, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6191), 1, - sym__name, - STATE(6358), 1, - sym_tuple_type, - STATE(6429), 1, - sym_array_type, - STATE(6839), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7114), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(6830), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3867), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_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, - [6866] = 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(3402), 1, - anon_sym_delegate, - ACTIONS(4023), 1, - sym__identifier_token, - ACTIONS(4027), 1, - anon_sym_ref, - ACTIONS(5738), 1, - anon_sym_var, - ACTIONS(5740), 1, - sym_predefined_type, - ACTIONS(5750), 1, - anon_sym_scoped, - ACTIONS(6015), 1, - anon_sym_LPAREN, - STATE(2286), 1, - sym__reserved_identifier, - STATE(2296), 1, - sym_identifier, - STATE(2318), 1, - sym_array_type, - STATE(2321), 1, - sym_tuple_type, - STATE(2344), 1, - sym_generic_name, - STATE(2378), 1, - sym__name, - STATE(3684), 1, - sym_type, - STATE(7049), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2315), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2320), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3868), 9, + STATE(4092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521704,28 +552394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 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, - [6993] = 31, + [24069] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521746,51 +552415,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7159), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3869), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521800,28 +552454,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [7120] = 31, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521842,51 +552501,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(3701), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5664), 1, - anon_sym_scoped, - ACTIONS(5947), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(3274), 1, - sym_type, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3870), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -521896,28 +552530,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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, 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_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, - [7247] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [24285] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -521938,51 +552587,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4155), 1, - anon_sym_ref, - ACTIONS(5676), 1, - anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, - sym_type, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3871), 9, + 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, @@ -521992,28 +552670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 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, - [7374] = 31, + [24429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522034,51 +552691,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5131), 1, - anon_sym_ref, - ACTIONS(5133), 1, - anon_sym_delegate, - ACTIONS(5139), 1, - anon_sym_scoped, - ACTIONS(5141), 1, - sym_predefined_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6191), 1, - sym__name, - STATE(6358), 1, - sym_tuple_type, - STATE(6429), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(6991), 1, - sym_type, - STATE(7114), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(6830), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3872), 9, + STATE(4096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522088,15 +552701,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + 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, 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, @@ -522109,7 +552746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [7501] = 31, + sym__identifier_token, + [24519] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522130,51 +552768,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3552), 1, - anon_sym_ref, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5558), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3873), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522184,28 +552821,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 18, 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_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, - [7628] = 29, + anon_sym_as, + anon_sym_is, + [24641] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522226,50 +552861,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6176), 1, - anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 6, + ACTIONS(5664), 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, - STATE(3874), 9, + anon_sym_GT_GT, + anon_sym_or, + STATE(4098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522279,27 +552909,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [7751] = 26, + [24757] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522320,45 +552951,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + 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(6182), 1, + 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, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6164), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 9, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(3875), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522368,29 +553035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [7868] = 24, + [24903] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522411,75 +553056,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6182), 1, + 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, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3876), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5658), 10, + ACTIONS(6361), 2, anon_sym_LT, anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5656), 23, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6367), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5745), 9, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_as, - anon_sym_is, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [7981] = 35, + 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, + [25047] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522500,62 +553160,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6172), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6178), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6180), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_in, + ACTIONS(5664), 7, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, - STATE(3877), 9, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + STATE(4101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522565,21 +553209,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [8116] = 36, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + anon_sym_as, + anon_sym_is, + [25165] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522600,64 +553251,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5866), 1, + anon_sym_or, + ACTIONS(6321), 1, + anon_sym_QMARK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6329), 1, anon_sym_CARET, - ACTIONS(6172), 1, + ACTIONS(6331), 1, + anon_sym_PIPE, + ACTIONS(6333), 1, anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6337), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6190), 1, + 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(6192), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_in, - anon_sym_QMARK, - anon_sym_PIPE, - STATE(3878), 9, + ACTIONS(5864), 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(4102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522667,20 +553335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [8253] = 34, + [25311] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522701,61 +553356,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6176), 1, + ACTIONS(6333), 1, + anon_sym_AMP, + ACTIONS(6337), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6190), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, - anon_sym_in, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_AMP, - STATE(3879), 9, + anon_sym_or, + STATE(4103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522765,21 +553421,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5660), 12, + anon_sym_where, anon_sym_CARET, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [8386] = 34, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [25445] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522800,61 +553455,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6116), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6333), 1, + anon_sym_AMP, + ACTIONS(6337), 1, + anon_sym_GT_GT, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6120), 1, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6220), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6325), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, - anon_sym_AMP, anon_sym_or, - STATE(3880), 9, + STATE(4104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522864,21 +553522,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + ACTIONS(5660), 11, 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, - [8519] = 33, + [25581] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522899,58 +553555,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6116), 1, + ACTIONS(5074), 1, + anon_sym_or, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6321), 1, + anon_sym_QMARK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6118), 1, + 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(6120), 1, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6220), 1, + 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(6222), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6325), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6212), 2, + ACTIONS(6339), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(3881), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -522960,11 +553672,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, @@ -522976,7 +553713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [8650] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [25819] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -522997,51 +553738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(3701), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5664), 1, - anon_sym_scoped, - ACTIONS(5947), 1, - anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3078), 1, - sym_type, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3882), 9, + STATE(4107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523051,15 +553748,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, + ACTIONS(4114), 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(4112), 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, @@ -523072,7 +553793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8777] = 27, + sym__identifier_token, + [25909] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523093,46 +553815,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, - anon_sym_SLASH, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(4072), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, + ACTIONS(4887), 1, anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(3883), 9, + ACTIONS(6399), 1, + anon_sym_DOT, + STATE(4108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523142,12 +553833,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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, @@ -523155,16 +553858,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [8896] = 31, + anon_sym_DASH_GT, + anon_sym_with, + [26007] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523185,51 +553896,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7260), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3884), 9, + STATE(4109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523239,15 +553906,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(3662), 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(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, @@ -523260,7 +553951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9023] = 15, + sym__identifier_token, + [26097] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523281,11 +553973,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_into, - STATE(3890), 1, - aux_sym__query_body_repeat2, - STATE(3885), 9, + ACTIONS(6399), 1, + anon_sym_DOT, + STATE(4110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523295,7 +553985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 12, + ACTIONS(3975), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -523306,12 +553996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_as, - ACTIONS(5856), 31, + anon_sym_or, + ACTIONS(3977), 32, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -523326,21 +554015,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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [9118] = 37, + [26189] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523361,65 +554051,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6116), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6337), 1, + anon_sym_GT_GT, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6120), 1, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6220), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6325), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3886), 9, + 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, @@ -523429,20 +554115,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, + ACTIONS(5660), 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, - [9257] = 33, + [26321] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523463,58 +554149,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6176), 1, + ACTIONS(6337), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6190), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6180), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, - anon_sym_in, + ACTIONS(5664), 4, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(3887), 9, + anon_sym_or, + STATE(4112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523524,23 +554210,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [9388] = 37, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [26451] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523561,88 +554246,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6401), 1, + anon_sym_into, + STATE(4115), 1, + aux_sym__query_body_repeat2, + 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(6005), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, anon_sym_PIPE, - ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(6003), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3888), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [9527] = 38, + 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, + [26545] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523663,89 +554325,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6401), 1, + anon_sym_into, + STATE(4116), 1, + aux_sym__query_body_repeat2, + STATE(4114), 9, + sym_preproc_region, + sym_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, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, anon_sym_PIPE, - ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(6003), 30, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_in, - anon_sym_QMARK, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3889), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 11, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [9668] = 14, + 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, + [26639] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523766,9 +554404,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6230), 1, + ACTIONS(6403), 1, anon_sym_into, - STATE(3890), 10, + STATE(4115), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523779,7 +554417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_define, sym_preproc_undef, aux_sym__query_body_repeat2, - ACTIONS(5845), 12, + ACTIONS(5951), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -523791,10 +554429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_as, - ACTIONS(5843), 31, + anon_sym_or, + ACTIONS(5949), 30, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, @@ -523810,6 +554447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -523817,14 +554455,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [9761] = 31, + [26731] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523845,51 +554482,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7272), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3891), 9, + ACTIONS(6401), 1, + anon_sym_into, + STATE(4115), 1, + aux_sym__query_body_repeat2, + STATE(4116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -523899,28 +554496,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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_or, + ACTIONS(5958), 30, + anon_sym_LBRACK, + 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_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, - [9888] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [26825] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -523941,11 +554561,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_and, - ACTIONS(6235), 1, - anon_sym_or, - STATE(3892), 9, + 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(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, @@ -523955,26 +554590,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 12, + ACTIONS(1223), 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_as, - ACTIONS(5296), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_or, + ACTIONS(1221), 24, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -523985,7 +554613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -523993,14 +554621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [9983] = 31, + [26933] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524021,51 +554647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(3967), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5634), 1, - anon_sym_scoped, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, - sym_generic_name, - STATE(3347), 1, - sym_type, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3893), 9, + STATE(4118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524075,15 +554657,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, + 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, + 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, @@ -524096,7 +554702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [10110] = 40, + sym__identifier_token, + [27023] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524117,81 +554724,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6166), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6329), 1, anon_sym_CARET, - ACTIONS(6170), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6333), 1, anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6337), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6345), 1, anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, + ACTIONS(6353), 1, anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6355), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6357), 1, + anon_sym_with, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_in, + ACTIONS(5664), 2, anon_sym_QMARK, - ACTIONS(6158), 2, + anon_sym_or, + ACTIONS(6319), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(3894), 9, + STATE(4119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524201,7 +554792,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [10255] = 31, + ACTIONS(5660), 11, + anon_sym_where, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [27161] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524222,51 +554825,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7513), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3895), 9, + 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(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(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_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, + STATE(4120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524276,28 +554895,122 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 10, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, + anon_sym_and, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + [27301] = 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(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(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_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_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [10382] = 31, + STATE(4121), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [27445] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524318,51 +555031,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4157), 1, - anon_sym_ref, - ACTIONS(5758), 1, - anon_sym_scoped, - ACTIONS(5959), 1, - anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, - sym_type, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3896), 9, + ACTIONS(6401), 1, + anon_sym_into, + STATE(4113), 1, + aux_sym__query_body_repeat2, + STATE(4122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524372,28 +555045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(6001), 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(5999), 30, + anon_sym_LBRACK, + 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_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, - [10509] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27539] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524414,51 +555110,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(4102), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5760), 1, - anon_sym_scoped, - ACTIONS(5947), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(3274), 1, - sym_type, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3897), 9, + 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(4123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524468,28 +555137,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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, 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_DOT_DOT, + anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, - anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, - anon_sym_by, anon_sym_select, - [10636] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [27645] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524510,51 +555195,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4163), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5546), 1, - anon_sym_scoped, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2848), 1, - sym_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3898), 9, + 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(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, + STATE(4124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524564,28 +555228,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_or, + ACTIONS(5660), 22, 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_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, - [10763] = 31, + anon_sym_as, + anon_sym_is, + [27757] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524606,51 +555283,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(4096), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5785), 1, - anon_sym_scoped, - ACTIONS(5947), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3078), 1, - sym_type, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3899), 9, + 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(5882), 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(4125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524660,28 +555365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 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, - [10890] = 31, + [27900] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524702,51 +555386,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4140), 1, - anon_sym_ref, - ACTIONS(5520), 1, - anon_sym_scoped, - ACTIONS(5959), 1, - anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3900), 9, + STATE(4126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524756,28 +555396,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5409), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5407), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_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_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, - [11017] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27989] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524798,51 +555462,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7280), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3901), 9, + ACTIONS(6440), 1, + anon_sym_into, + STATE(4170), 1, + aux_sym__query_body_repeat2, + STATE(4127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -524852,28 +555476,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [11144] = 38, + 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, + 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, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [28082] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524894,89 +555540,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + 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, anon_sym_BANG, - ACTIONS(6116), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, anon_sym_PIPE, - ACTIONS(6204), 1, anon_sym_AMP, - ACTIONS(6208), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6222), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6114), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6206), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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(5656), 11, - 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_group, - anon_sym_select, - [11285] = 40, + 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, + [28175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -524997,73 +555618,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + 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, anon_sym_BANG, - ACTIONS(6116), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, anon_sym_PIPE, - ACTIONS(6204), 1, anon_sym_AMP, - ACTIONS(6208), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6222), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5415), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6114), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6206), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - 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, @@ -525071,17 +555669,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - 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, - [11430] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [28264] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525102,26 +555694,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3904), 9, + STATE(4130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525131,23 +555704,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1153), 10, + ACTIONS(5447), 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, - ACTIONS(1139), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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, @@ -525158,17 +555733,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, anon_sym_into, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [11539] = 15, + [28353] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525189,11 +555770,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_into, - STATE(3989), 1, - aux_sym__query_body_repeat2, - STATE(3905), 9, + STATE(4131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525203,7 +555780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 12, + ACTIONS(5389), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -525215,10 +555792,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_as, - ACTIONS(5833), 31, + anon_sym_or, + ACTIONS(5387), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, @@ -525234,21 +555810,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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11634] = 31, + [28442] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525269,51 +555846,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7261), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3906), 9, + STATE(4132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525323,28 +555856,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5375), 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(5373), 31, + anon_sym_LBRACK, + 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_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, - [11761] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [28531] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525365,15 +555922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LBRACE, - ACTIONS(4647), 1, - anon_sym_LPAREN, - STATE(2833), 1, - sym_argument_list, - STATE(3032), 1, - sym_initializer_expression, - STATE(3907), 9, + STATE(4133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525383,7 +555932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4649), 12, + ACTIONS(5462), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -525396,8 +555945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(4645), 29, + ACTIONS(5460), 31, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -525417,6 +555967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, @@ -525426,7 +555977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [11860] = 31, + [28620] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525447,51 +555998,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6023), 1, + ACTIONS(6103), 1, anon_sym_ref, - ACTIONS(6027), 1, - anon_sym_scoped, - ACTIONS(6029), 1, - anon_sym_var, - STATE(3558), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3999), 1, + STATE(2181), 1, sym_generic_name, - STATE(4250), 1, - sym_tuple_type, - STATE(4401), 1, - sym_array_type, - STATE(6070), 1, + STATE(2317), 1, + sym_ref_type, + STATE(2340), 1, + sym__scoped_base_type, + STATE(4373), 1, sym_identifier, - STATE(6089), 1, + STATE(5302), 1, sym__name, - STATE(6142), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3908), 9, + STATE(4134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525501,13 +556028,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(3445), 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), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -525522,7 +556062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [11987] = 31, + [28727] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525543,51 +556083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(3804), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5666), 1, - anon_sym_scoped, - ACTIONS(5955), 1, - anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2848), 1, - sym_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3909), 9, + STATE(4135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525597,28 +556093,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5466), 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(5464), 31, + anon_sym_LBRACK, + 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_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, - [12114] = 41, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [28816] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525639,82 +556159,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5756), 1, - anon_sym_in, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6160), 1, + 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(6166), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, anon_sym_PIPE, - ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 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(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(3910), 9, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(4137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525724,7 +556245,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [12261] = 31, + ACTIONS(5385), 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(5383), 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, + [28994] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525745,51 +556311,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7334), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3911), 9, + STATE(4138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525799,28 +556321,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5379), 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(5377), 31, + anon_sym_LBRACK, + 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_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, - [12388] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29083] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525841,51 +556387,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3829), 1, - anon_sym_ref, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3980), 1, - anon_sym_scoped, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(5959), 1, - anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, - sym_type, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3912), 9, + STATE(4139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525895,28 +556397,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5439), 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(5437), 31, + anon_sym_LBRACK, + 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_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, - [12515] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29172] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -525937,11 +556463,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6237), 1, - anon_sym_and, - ACTIONS(6239), 1, - anon_sym_or, - STATE(3913), 9, + ACTIONS(6440), 1, + anon_sym_into, + STATE(4127), 1, + aux_sym__query_body_repeat2, + STATE(4140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -525951,10 +556477,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 12, + ACTIONS(6001), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -525964,7 +556489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 31, + ACTIONS(5999), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -525988,7 +556513,6 @@ 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, @@ -525996,7 +556520,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [12610] = 31, + [29265] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526017,51 +556541,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2949), 1, - anon_sym_var, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3604), 1, - anon_sym_ref, - ACTIONS(6037), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4250), 1, - sym_tuple_type, - STATE(4401), 1, - sym_array_type, - STATE(5352), 1, - sym_identifier, - STATE(5560), 1, - sym__name, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3914), 9, + STATE(4141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526071,28 +556551,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5344), 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(5342), 31, + anon_sym_LBRACK, + 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_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, - [12737] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29354] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526113,26 +556617,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5552), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_BANG, - ACTIONS(6148), 1, - anon_sym_DOT_DOT, - STATE(2830), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3915), 9, + ACTIONS(6442), 1, + anon_sym_and, + STATE(4142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526142,20 +556629,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 10, + 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_as, - ACTIONS(5684), 25, - anon_sym_COMMA, + 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, anon_sym_CARET, @@ -526166,20 +556658,22 @@ 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, - 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, - [12846] = 40, + [29445] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526200,91 +556694,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5552), 1, - anon_sym_LBRACK, - ACTIONS(5554), 1, - anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6126), 1, + STATE(4143), 9, + sym_preproc_region, + sym_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), 12, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6132), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, anon_sym_PIPE, - ACTIONS(6138), 1, anon_sym_AMP, - ACTIONS(6142), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, - anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6152), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, - anon_sym_is, - STATE(2830), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, + anon_sym_DOT, + anon_sym_or, + ACTIONS(5342), 31, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6128), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6130), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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(5766), 10, - 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_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [12991] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29534] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526305,51 +556770,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7295), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3917), 9, + ACTIONS(6442), 1, + anon_sym_and, + ACTIONS(6444), 1, + anon_sym_or, + STATE(4144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526359,28 +556784,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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), 30, + anon_sym_LBRACK, + 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, - [13118] = 41, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [29627] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526401,82 +556848,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(4888), 1, - anon_sym_in, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6303), 1, + anon_sym_as, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6160), 1, + ACTIONS(6408), 1, anon_sym_QMARK, - ACTIONS(6166), 1, + ACTIONS(6414), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6416), 1, anon_sym_CARET, - ACTIONS(6170), 1, + ACTIONS(6418), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6424), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - ACTIONS(6184), 1, + ACTIONS(6432), 1, anon_sym_AMP_AMP, - ACTIONS(6186), 1, + ACTIONS(6434), 1, anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, + ACTIONS(6436), 1, anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6438), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6422), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6428), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5864), 8, + anon_sym_where, + anon_sym_from, anon_sym_into, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(3918), 9, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(4145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526486,7 +556930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [13265] = 31, + [29770] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526507,51 +556951,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4116), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5770), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, - sym_generic_name, - STATE(3347), 1, - sym_type, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3919), 9, + 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(5072), 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(4146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526561,28 +557033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 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, - [13392] = 31, + [29913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526603,51 +557054,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7277), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3920), 9, + STATE(4147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526657,28 +557064,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_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_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, - [13519] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [30002] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526699,51 +557130,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4116), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5770), 1, - anon_sym_scoped, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3169), 1, - sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3921), 9, + 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(4148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526753,134 +557152,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 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, - [13646] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5708), 1, - anon_sym_in, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6160), 1, + ACTIONS(5400), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6166), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6168), 1, - anon_sym_CARET, - ACTIONS(6170), 1, anon_sym_PIPE, - ACTIONS(6172), 1, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - ACTIONS(6184), 1, - anon_sym_AMP_AMP, - ACTIONS(6186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6192), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(5397), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6162), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6164), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 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(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, - [13793] = 31, + 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, + [30095] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526901,51 +557208,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(3967), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5634), 1, - anon_sym_scoped, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3169), 1, - sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3923), 9, + STATE(4149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -526955,28 +557218,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5421), 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(5419), 31, + anon_sym_LBRACK, + 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_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, - [13920] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [30184] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -526997,51 +557284,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6297), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3924), 9, + STATE(4150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527051,15 +557294,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, + ACTIONS(3687), 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_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ_GT, + ACTIONS(3685), 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, @@ -527072,7 +557338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14047] = 31, + sym__identifier_token, + [30273] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527093,51 +557360,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4088), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5764), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2848), 1, - sym_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(3768), 1, - sym_identifier, - STATE(4029), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3925), 9, + 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(6414), 1, + anon_sym_SLASH, + 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(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, @@ -527147,28 +557407,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 20, 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, - [14174] = 31, + anon_sym_as, + anon_sym_is, + [30388] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527189,51 +557449,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7396), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3926), 9, + STATE(4152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527243,28 +557459,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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_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_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, - [14301] = 31, + 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, @@ -527285,51 +557525,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2947), 1, - anon_sym_scoped, - ACTIONS(2949), 1, - anon_sym_var, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3400), 1, - anon_sym_ref, - ACTIONS(3402), 1, - anon_sym_delegate, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(5606), 1, - sym_identifier, - STATE(5946), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3927), 9, + 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, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527339,28 +557568,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 22, 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_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, - [14428] = 31, + anon_sym_as, + anon_sym_is, + [30588] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527381,51 +557612,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(3986), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5648), 1, - anon_sym_scoped, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5947), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3078), 1, - sym_type, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3928), 9, + 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(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, @@ -527435,28 +557676,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 12, 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, - [14555] = 31, + [30721] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527477,51 +557710,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4169), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5722), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(2884), 1, - sym_type, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3929), 9, + 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(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, + 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(4155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527531,28 +557776,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 11, 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, - [14682] = 41, + [30856] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527573,82 +557809,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5594), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6303), 1, + anon_sym_as, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6196), 1, - anon_sym_QMARK, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, + ACTIONS(6414), 1, + anon_sym_SLASH, + ACTIONS(6424), 1, anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6222), 1, + ACTIONS(6430), 1, + anon_sym_DOT_DOT, + ACTIONS(6438), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6412), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6422), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6210), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6212), 2, + ACTIONS(6428), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 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(3930), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527658,7 +557872,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [14829] = 40, + 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, + [30987] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527679,70 +557906,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6303), 1, + anon_sym_as, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5658), 1, + ACTIONS(6408), 1, anon_sym_QMARK, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6414), 1, anon_sym_SLASH, - ACTIONS(6134), 1, + ACTIONS(6416), 1, anon_sym_CARET, - ACTIONS(6136), 1, + ACTIONS(6418), 1, anon_sym_PIPE, - ACTIONS(6138), 1, + ACTIONS(6420), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6424), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - ACTIONS(6150), 1, + ACTIONS(6432), 1, anon_sym_AMP_AMP, - ACTIONS(6152), 1, + ACTIONS(6434), 1, anon_sym_PIPE_PIPE, - ACTIONS(6154), 1, + ACTIONS(6436), 1, anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, + ACTIONS(6438), 1, anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6422), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, + ACTIONS(6426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6428), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3931), 9, + ACTIONS(5745), 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(4157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527752,18 +557988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [14974] = 23, + [31130] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527784,33 +558009,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3546), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3604), 1, + ACTIONS(3447), 1, + anon_sym_COLON, + ACTIONS(3603), 1, + anon_sym_where, + ACTIONS(6163), 1, anon_sym_ref, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2264), 1, + STATE(2317), 1, sym_ref_type, - STATE(2265), 1, + STATE(2340), 1, sym__scoped_base_type, - STATE(5559), 1, + STATE(6318), 1, sym_identifier, - STATE(5650), 1, + STATE(6356), 1, sym__name, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(3395), 4, - anon_sym_COLON, - sym_discard, - anon_sym_and, - anon_sym_or, - ACTIONS(3393), 8, + ACTIONS(3445), 9, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, @@ -527818,7 +558043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(3932), 9, + STATE(4158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -527828,11 +558053,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3549), 22, + ACTIONS(29), 21, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, @@ -527851,103 +558075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15085] = 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7143), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_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(2921), 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, - [15212] = 38, + [31241] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -527968,66 +558096,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6414), 1, anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, - anon_sym_PIPE, - ACTIONS(6138), 1, - anon_sym_AMP, - ACTIONS(6142), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - ACTIONS(6150), 1, - anon_sym_AMP_AMP, - ACTIONS(6156), 1, - anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6144), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6146), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(3934), 9, + ACTIONS(5664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528037,20 +558144,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_COMMA, + 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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [15353] = 37, + anon_sym_as, + anon_sym_is, + [31358] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528071,64 +558186,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5888), 1, + ACTIONS(6303), 1, anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6414), 1, anon_sym_SLASH, - ACTIONS(6134), 1, - anon_sym_CARET, - ACTIONS(6136), 1, - anon_sym_PIPE, - ACTIONS(6138), 1, - anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6424), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - ACTIONS(6156), 1, + ACTIONS(6438), 1, anon_sym_is, - STATE(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6422), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6428), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3935), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528138,21 +558246,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_COMMA, + ACTIONS(5660), 14, anon_sym_where, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - [15492] = 17, + [31487] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528173,15 +558282,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4776), 1, - anon_sym_LBRACK, - ACTIONS(5410), 1, - anon_sym_LBRACE, - ACTIONS(5413), 1, - anon_sym_QMARK, - STATE(2880), 1, - sym_initializer_expression, - STATE(3936), 9, + STATE(4161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528191,9 +558292,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4786), 11, + ACTIONS(5447), 12, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -528203,7 +558305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - ACTIONS(4780), 30, + ACTIONS(5445), 31, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, @@ -528234,7 +558337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [15591] = 31, + [31576] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528255,51 +558358,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7141), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3937), 9, + STATE(4162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528309,28 +558368,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5435), 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(5433), 31, + anon_sym_LBRACK, + 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_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, - [15718] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [31665] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528351,26 +558434,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6182), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3938), 9, + ACTIONS(6442), 1, + anon_sym_and, + ACTIONS(6444), 1, + anon_sym_or, + STATE(4163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528380,23 +558448,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5686), 10, + ACTIONS(5356), 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(5684), 25, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DOT, + ACTIONS(5354), 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, @@ -528407,17 +558476,22 @@ 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, + 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, - [15827] = 22, + [31758] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528438,73 +558512,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6148), 1, + 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, - STATE(2830), 1, + 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(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - 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(1153), 10, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - ACTIONS(1139), 25, - anon_sym_COMMA, - anon_sym_where, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6446), 8, + anon_sym_where, anon_sym_from, + anon_sym_into, anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, - anon_sym_is, - anon_sym_with, - [15936] = 31, + STATE(4164), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [31901] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528525,51 +558615,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4023), 1, - sym__identifier_token, - ACTIONS(4060), 1, - anon_sym_ref, - ACTIONS(5736), 1, - anon_sym_scoped, - ACTIONS(5738), 1, - anon_sym_var, - ACTIONS(5740), 1, - sym_predefined_type, - ACTIONS(6015), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2245), 1, - sym_type, - STATE(2286), 1, - sym__reserved_identifier, - STATE(2296), 1, - sym_identifier, - STATE(2318), 1, - sym_array_type, - STATE(2321), 1, - sym_tuple_type, - STATE(2344), 1, - sym_generic_name, - STATE(2378), 1, - sym__name, - STATE(7049), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2315), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2320), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3940), 9, + 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(6303), 1, + anon_sym_as, + ACTIONS(6307), 1, + anon_sym_with, + 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(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, + STATE(4165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528579,28 +558682,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 11, 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, - [16063] = 31, + [32038] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528621,51 +558715,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4165), 1, - anon_sym_ref, - ACTIONS(5776), 1, - anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3941), 9, + 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(5767), 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(4166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528675,28 +558797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 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, - [16190] = 31, + [32181] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528717,51 +558818,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3592), 1, - anon_sym_ref, - ACTIONS(6045), 1, - sym__identifier_token, - ACTIONS(6049), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6051), 1, - anon_sym_delegate, - ACTIONS(6053), 1, - anon_sym_scoped, - ACTIONS(6055), 1, - anon_sym_var, - ACTIONS(6057), 1, - sym_predefined_type, - STATE(2506), 1, - sym_identifier, - STATE(2551), 1, - sym__reserved_identifier, - STATE(2650), 1, - sym_type, - STATE(2693), 1, - sym_generic_name, - STATE(2751), 1, - sym_array_type, - STATE(2753), 1, - sym_tuple_type, - STATE(2766), 1, - sym__name, - STATE(6942), 1, - sym__array_base_type, - STATE(7423), 1, - sym__pointer_base_type, - STATE(2635), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2747), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2752), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3942), 9, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, + anon_sym_BANG, + 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(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(4167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528771,28 +558857,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6047), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5731), 24, 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, - [16317] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [32288] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528813,51 +558903,169 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4169), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5722), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2848), 1, - sym_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3943), 9, + 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, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [32431] = 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(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, + anon_sym_QMARK, + 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(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(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, + STATE(4169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528867,28 +559075,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 10, 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, - [16444] = 15, + [32570] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528909,11 +559107,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6237), 1, - anon_sym_and, - ACTIONS(6239), 1, - anon_sym_or, - STATE(3944), 9, + ACTIONS(6448), 1, + anon_sym_into, + STATE(4170), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -528923,10 +559119,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 12, + aux_sym__query_body_repeat2, + ACTIONS(5951), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -528936,7 +559132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5296), 31, + ACTIONS(5949), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -528960,7 +559156,6 @@ 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, @@ -528968,7 +559163,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [16539] = 22, + [32661] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -528989,36 +559184,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6120), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - 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(5686), 10, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -529028,8 +559213,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5684), 25, + STATE(4171), 9, + sym_preproc_region, + sym_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), 24, anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, @@ -529041,7 +559235,6 @@ 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, @@ -529055,7 +559248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [16648] = 31, + [32768] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529076,51 +559269,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7474), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3946), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529130,28 +559291,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [16775] = 31, + ACTIONS(5394), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_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_DASH_GT, + anon_sym_with, + [32861] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529172,51 +559347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7524), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3947), 9, + STATE(4173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529226,28 +559357,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5429), 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(5427), 31, + anon_sym_LBRACK, + 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_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, - [16902] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [32950] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529268,51 +559423,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7077), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3948), 9, + 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(6303), 1, + anon_sym_as, + ACTIONS(6307), 1, + anon_sym_with, + 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(5660), 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(4174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529322,28 +559505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [17029] = 14, + [33093] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529364,9 +559526,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_and, - STATE(3949), 9, + STATE(4175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529376,7 +559536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 13, + ACTIONS(5425), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -529389,10 +559549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_DOT, anon_sym_or, - anon_sym_as, - ACTIONS(5941), 31, + ACTIONS(5423), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, @@ -529408,21 +559566,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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17122] = 15, + [33182] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529443,14 +559602,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3395), 2, - anon_sym_EQ, - anon_sym_in, - ACTIONS(3562), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_GT, - STATE(3950), 9, + ACTIONS(6440), 1, + anon_sym_into, + STATE(4170), 1, + aux_sym__query_body_repeat2, + STATE(4176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529460,49 +559616,126 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3393), 11, + 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), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_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, + [33275] = 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(4177), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5431), 12, anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - ACTIONS(3565), 29, - anon_sym_alias, - anon_sym_global, - anon_sym_COLON, - anon_sym_file, + anon_sym_or, + ACTIONS(3829), 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, - [17217] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [33364] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529523,57 +559756,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, + ACTIONS(6303), 1, anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6408), 1, + anon_sym_QMARK, + ACTIONS(6414), 1, anon_sym_SLASH, - ACTIONS(6142), 1, + 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(6148), 1, + ACTIONS(6430), 1, anon_sym_DOT_DOT, - ACTIONS(6156), 1, + 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(2830), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6410), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6412), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6422), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6146), 2, + ACTIONS(6426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6428), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(3951), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529583,24 +559838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [17348] = 31, + [33507] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529621,51 +559859,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3594), 1, - anon_sym_ref, - ACTIONS(5951), 1, - anon_sym_scoped, - ACTIONS(5953), 1, - anon_sym_var, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3952), 9, + 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(6414), 1, + anon_sym_SLASH, + ACTIONS(6424), 1, + anon_sym_GT_GT, + 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(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(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529675,28 +559911,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 18, 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, - [17475] = 41, + anon_sym_as, + anon_sym_is, + [33628] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529717,82 +559951,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5768), 1, - anon_sym_in, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6160), 1, + ACTIONS(6453), 1, anon_sym_QMARK, - ACTIONS(6166), 1, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(6168), 1, + ACTIONS(6461), 1, anon_sym_CARET, - ACTIONS(6170), 1, + ACTIONS(6463), 1, anon_sym_PIPE, - ACTIONS(6172), 1, + ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6176), 1, + ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6182), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6184), 1, + ACTIONS(6479), 1, anon_sym_AMP_AMP, - ACTIONS(6186), 1, + ACTIONS(6481), 1, anon_sym_PIPE_PIPE, - ACTIONS(6188), 1, + ACTIONS(6483), 1, anon_sym_QMARK_QMARK, - ACTIONS(6190), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6192), 1, + ACTIONS(6487), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6489), 1, + anon_sym_with, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6158), 2, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6162), 2, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6164), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6174), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6178), 2, + ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6180), 2, + ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 9, + ACTIONS(5858), 7, 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(3953), 9, + anon_sym_and, + anon_sym_or, + STATE(4180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529802,7 +560032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [17622] = 31, + [33770] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529823,51 +560053,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3909), 1, - sym__identifier_token, - ACTIONS(3913), 1, - anon_sym_ref, - ACTIONS(5622), 1, - anon_sym_delegate, - ACTIONS(5626), 1, - anon_sym_var, - ACTIONS(5628), 1, - sym_predefined_type, - ACTIONS(5636), 1, - anon_sym_scoped, - ACTIONS(5971), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(4139), 1, - sym_identifier, - STATE(4193), 1, - sym__reserved_identifier, - STATE(4315), 1, - sym_array_type, - STATE(4317), 1, - sym_tuple_type, - STATE(4333), 1, - sym_type, - STATE(4355), 1, - sym__name, - STATE(4376), 1, - sym_generic_name, - STATE(6996), 1, - sym__array_base_type, - STATE(7242), 1, - sym__pointer_base_type, - STATE(4266), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4314), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4316), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3954), 9, + 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(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(6467), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529877,28 +560105,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3911), 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, - [17749] = 15, + 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, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [33890] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529919,11 +560144,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6233), 1, - anon_sym_and, - ACTIONS(6235), 1, - anon_sym_or, - STATE(3955), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -529933,28 +560191,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 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(6041), 31, - anon_sym_LBRACK, + ACTIONS(5660), 19, + anon_sym_SEMI, 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_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -529962,23 +560204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_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, - [17844] = 27, + [34004] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -529999,46 +560232,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(6132), 1, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(6148), 1, + 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, - STATE(2830), 1, + 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(3742), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + 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(6130), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - STATE(3956), 9, + 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, + STATE(4183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530048,29 +560296,117 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, + ACTIONS(5660), 11, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_where, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(6459), 1, + anon_sym_SLASH, + ACTIONS(6461), 1, anon_sym_CARET, + 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_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_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_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, - [17963] = 31, + [34270] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530091,51 +560427,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4140), 1, - anon_sym_ref, - ACTIONS(5520), 1, - anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, - sym_type, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3957), 9, + 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(6471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6473), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530145,28 +560490,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 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, - [18090] = 31, + 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, + [34400] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530187,51 +560523,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7522), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3958), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530241,28 +560571,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [18217] = 34, + ACTIONS(5660), 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, + 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, + [34516] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530283,60 +560612,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(6142), 1, + ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6156), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6487), 1, anon_sym_is, - STATE(2830), 1, + ACTIONS(6489), 1, + anon_sym_with, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6124), 2, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(3959), 9, + STATE(4187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530346,22 +560672,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 13, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_where, + 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_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, - [18350] = 14, + [34644] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530382,9 +560707,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6237), 1, - anon_sym_and, - STATE(3960), 9, + 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(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, + 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(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, @@ -530394,29 +560774,83 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 12, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [34780] = 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(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_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(5941), 32, + STATE(4189), 9, + sym_preproc_region, + sym_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_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, @@ -530427,20 +560861,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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [18443] = 36, + [34886] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530461,63 +560890,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6453), 1, + anon_sym_QMARK, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(6134), 1, + ACTIONS(6461), 1, anon_sym_CARET, - ACTIONS(6138), 1, + ACTIONS(6463), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6156), 1, + 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, - STATE(2830), 1, + ACTIONS(6489), 1, + anon_sym_with, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6124), 2, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, + ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3961), 9, + ACTIONS(5864), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530527,21 +560971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [18580] = 31, + [35028] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530562,51 +560992,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(3594), 1, - anon_sym_ref, - ACTIONS(5951), 1, - anon_sym_scoped, - ACTIONS(5953), 1, - anon_sym_var, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(5874), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3962), 9, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 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, + 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_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(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_and, + anon_sym_or, + STATE(4191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530616,28 +561073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [18707] = 31, + [35170] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530658,51 +561094,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7138), 1, - sym_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3963), 9, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 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, + anon_sym_DOT_DOT, + ACTIONS(6479), 1, + anon_sym_AMP_AMP, + 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(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_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530712,28 +561173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [18834] = 35, + [35308] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530754,61 +561194,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5590), 1, - anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(5888), 1, - anon_sym_as, - ACTIONS(6132), 1, + ACTIONS(6453), 1, + anon_sym_QMARK, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(6138), 1, + ACTIONS(6461), 1, + anon_sym_CARET, + ACTIONS(6463), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(6142), 1, + ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6477), 1, anon_sym_DOT_DOT, - ACTIONS(6156), 1, + 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, - STATE(2830), 1, + ACTIONS(6489), 1, + anon_sym_with, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6124), 2, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6128), 2, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6144), 2, + ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6146), 2, + ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3964), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530818,22 +561275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [18969] = 31, + [35450] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530854,51 +561296,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4110), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5783), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, - sym_generic_name, - STATE(3347), 1, - sym_type, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3965), 9, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 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, + 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_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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -530908,28 +561377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 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, - [19096] = 24, + [35592] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -530950,75 +561398,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5590), 1, + 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, anon_sym_switch, - ACTIONS(5606), 1, - anon_sym_with, - ACTIONS(6148), 1, + ACTIONS(6477), 1, anon_sym_DOT_DOT, - STATE(2830), 1, + 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(3742), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3966), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5658), 10, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - ACTIONS(5656), 23, - anon_sym_COMMA, - anon_sym_where, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [19209] = 15, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [35734] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531039,11 +561500,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6241), 1, + 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, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6491), 2, anon_sym_LT, - STATE(4028), 1, - sym_type_argument_list, - STATE(3967), 9, + 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_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(5858), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531053,52 +561581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3602), 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(3600), 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, - [19304] = 31, + [35876] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531119,51 +561602,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(3718), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5638), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3169), 1, - sym_type, - STATE(3222), 1, - sym_generic_name, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3968), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531173,28 +561654,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 17, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [19431] = 41, + anon_sym_as, + anon_sym_is, + [35996] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531215,82 +561693,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5662), 1, - anon_sym_or, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6196), 1, - anon_sym_QMARK, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6222), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(6499), 1, + anon_sym_SLASH, + ACTIONS(6515), 1, + anon_sym_DOT_DOT, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, + ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6194), 2, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6198), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6212), 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(3969), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531300,7 +561740,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [19578] = 31, + ACTIONS(5660), 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, + [36110] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531308,64 +561768,53 @@ 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6023), 1, - anon_sym_ref, - ACTIONS(6027), 1, - anon_sym_scoped, - ACTIONS(6029), 1, - anon_sym_var, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4250), 1, - sym_tuple_type, - STATE(4401), 1, - sym_array_type, - STATE(6070), 1, - sym_identifier, - STATE(6089), 1, - sym__name, - STATE(6166), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3970), 9, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531375,28 +561824,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [19705] = 31, + anon_sym_as, + anon_sym_is, + [36220] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531417,51 +561867,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5368), 1, - anon_sym_ref, - ACTIONS(5376), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6345), 1, - sym_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3971), 9, + 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(6499), 1, + anon_sym_SLASH, + 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_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_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(4200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531471,28 +561931,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [19832] = 31, + [36352] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531513,51 +561964,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3829), 1, - anon_sym_ref, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3980), 1, - anon_sym_scoped, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(5959), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3972), 9, + 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(6499), 1, + anon_sym_SLASH, + ACTIONS(6501), 1, + anon_sym_CARET, + 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_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_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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531567,28 +562030,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [19959] = 26, + [36486] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531609,45 +562062,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6132), 1, + ACTIONS(6499), 1, anon_sym_SLASH, - ACTIONS(6148), 1, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6515), 1, anon_sym_DOT_DOT, - STATE(2830), 1, + ACTIONS(6523), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6130), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 9, + ACTIONS(6491), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + 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(6511), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6513), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_as, - STATE(3973), 9, + STATE(4202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531657,29 +562125,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, + ACTIONS(5660), 11, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_where, + 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_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, - [20076] = 29, + anon_sym_into, + [36616] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531700,50 +562158,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(5494), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5552), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5554), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5590), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5606), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6132), 1, + ACTIONS(6499), 1, anon_sym_SLASH, - ACTIONS(6142), 1, - anon_sym_GT_GT, - ACTIONS(6148), 1, + ACTIONS(6515), 1, anon_sym_DOT_DOT, - STATE(2830), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3742), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5556), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6128), 2, + ACTIONS(6495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6130), 2, + ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6140), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 6, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_as, - STATE(3974), 9, + anon_sym_GT_GT, + STATE(4203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531753,27 +562206,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, + ACTIONS(5660), 19, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_where, + 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_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_select, + anon_sym_into, + anon_sym_as, anon_sym_is, - [20199] = 31, + [36732] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531794,51 +562247,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6023), 1, - anon_sym_ref, - ACTIONS(6027), 1, - anon_sym_scoped, - ACTIONS(6029), 1, - anon_sym_var, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4250), 1, - sym_tuple_type, - STATE(4401), 1, - sym_array_type, - STATE(6070), 1, - sym_identifier, - STATE(6089), 1, - sym__name, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3975), 9, + 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(6499), 1, + anon_sym_SLASH, + 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_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_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6513), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531848,28 +562307,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 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, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [20326] = 31, + [36860] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531890,51 +562342,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4023), 1, - sym__identifier_token, - ACTIONS(4027), 1, - anon_sym_ref, - ACTIONS(5738), 1, - anon_sym_var, - ACTIONS(5740), 1, - sym_predefined_type, - ACTIONS(5750), 1, - anon_sym_scoped, - ACTIONS(6015), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - STATE(2245), 1, - sym_type, - STATE(2286), 1, - sym__reserved_identifier, - STATE(2296), 1, - sym_identifier, - STATE(2318), 1, - sym_array_type, - STATE(2321), 1, - sym_tuple_type, - STATE(2344), 1, - sym_generic_name, - STATE(2378), 1, - sym__name, - STATE(7049), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2315), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2320), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3976), 9, + ACTIONS(5283), 1, + anon_sym_LBRACK, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + 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_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_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_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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -531944,28 +562409,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [20453] = 31, + [36996] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -531986,51 +562441,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7417), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3977), 9, + ACTIONS(5283), 1, + anon_sym_LBRACK, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + 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_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_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_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_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532040,28 +562520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [20580] = 31, + [37134] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532082,51 +562541,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7404), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3978), 9, + ACTIONS(5283), 1, + anon_sym_LBRACK, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + 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_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_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_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), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532136,28 +562622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [20707] = 31, + [37276] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532178,51 +562643,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4165), 1, - anon_sym_ref, - ACTIONS(5776), 1, - anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3011), 1, - sym_type, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3979), 9, + 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, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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_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_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_and, + anon_sym_or, + anon_sym_into, + STATE(4208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532232,28 +562724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 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, - [20834] = 31, + [37418] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532274,51 +562745,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6094), 1, - anon_sym_ref, - ACTIONS(6098), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7387), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3980), 9, + 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, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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_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_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_and, + anon_sym_or, + anon_sym_into, + STATE(4209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532328,28 +562826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [20961] = 31, + [37560] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532370,51 +562847,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(4094), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5746), 1, - anon_sym_scoped, - ACTIONS(5947), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(3274), 1, - sym_type, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3981), 9, + 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, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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_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_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_and, + anon_sym_or, + anon_sym_into, + STATE(4210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532424,28 +562928,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 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, - [21088] = 29, + [37702] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532466,50 +562949,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6208), 1, + ACTIONS(6493), 1, + anon_sym_QMARK, + ACTIONS(6499), 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, anon_sym_GT_GT, - STATE(2358), 1, + 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(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6198), 2, + ACTIONS(6491), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6206), 2, + ACTIONS(6497), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6507), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6511), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6513), 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, - STATE(3982), 9, + anon_sym_into, + STATE(4211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532519,27 +563030,109 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_where, + [37844] = 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, + 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, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(6527), 7, + 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, - [21211] = 31, + STATE(4212), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [37986] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532560,51 +563153,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(3718), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5638), 1, - anon_sym_scoped, - ACTIONS(6031), 1, - anon_sym_LPAREN, - STATE(3102), 1, - sym_identifier, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, - sym_generic_name, - STATE(3347), 1, - sym_type, - STATE(3374), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3983), 9, + ACTIONS(6561), 1, + anon_sym_and, + ACTIONS(6563), 1, + anon_sym_or, + STATE(4213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532614,28 +563167,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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), 29, + anon_sym_LBRACK, + 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, - [21338] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38078] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532656,51 +563230,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4163), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5546), 1, - anon_sym_scoped, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5955), 1, + 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, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(2884), 1, - sym_type, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3984), 9, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_GT, + anon_sym_EQ_GT, + STATE(4214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532710,15 +563259,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 20, + ACTIONS(3619), 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, @@ -532731,7 +563285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [21465] = 24, + sym__identifier_token, + [38170] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532752,30 +563307,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3985), 9, + ACTIONS(6565), 1, + anon_sym_LT, + ACTIONS(6568), 1, + anon_sym_COLON_COLON, + STATE(4410), 1, + sym_type_argument_list, + STATE(4215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532785,19 +563323,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5658), 10, - anon_sym_LT, + ACTIONS(3660), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5656), 23, - anon_sym_where, + anon_sym_DOT, + ACTIONS(3662), 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, @@ -532807,20 +563352,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_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, - [21578] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [38264] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532841,46 +563385,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6120), 1, - anon_sym_DOT_DOT, - ACTIONS(6122), 1, - anon_sym_with, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5658), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, + ACTIONS(4271), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, anon_sym_or, - STATE(3986), 9, + ACTIONS(5391), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532890,8 +563405,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, - anon_sym_where, + 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, + 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, @@ -532899,20 +563432,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_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, - [21697] = 31, + anon_sym_DASH_GT, + anon_sym_with, + [38356] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -532933,51 +563462,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(5953), 1, - anon_sym_var, - ACTIONS(6080), 1, - anon_sym_ref, - ACTIONS(6084), 1, - anon_sym_scoped, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7402), 1, - sym_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3987), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -532987,28 +563543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 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, - [21824] = 31, + [38498] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533029,51 +563564,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, - sym__identifier_token, - ACTIONS(4009), 1, - anon_sym_ref, - ACTIONS(5530), 1, - anon_sym_delegate, - ACTIONS(5534), 1, - anon_sym_var, - ACTIONS(5536), 1, - sym_predefined_type, - ACTIONS(5762), 1, - anon_sym_scoped, - ACTIONS(6031), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3148), 1, - sym_array_type, - STATE(3150), 1, - sym_tuple_type, - STATE(3222), 1, - sym_generic_name, - STATE(3347), 1, - sym_type, - STATE(4668), 1, - sym_identifier, - STATE(5020), 1, - sym__name, - STATE(7008), 1, - sym__array_base_type, - STATE(7189), 1, - sym__pointer_base_type, - STATE(3147), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3149), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3173), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3988), 9, + 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(6572), 7, + anon_sym_where, + anon_sym_from, + 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, @@ -533083,28 +563645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 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, - [21951] = 15, + [38640] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533125,11 +563666,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_into, - STATE(3890), 1, - aux_sym__query_body_repeat2, - STATE(3989), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533139,7 +563686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 12, + ACTIONS(5092), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -533151,12 +563698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_as, - ACTIONS(5839), 31, + ACTIONS(5090), 23, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -533173,18 +563718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_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, - [22046] = 31, + [38732] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533205,51 +563743,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(4094), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5746), 1, - anon_sym_scoped, - ACTIONS(5947), 1, - anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3078), 1, - sym_type, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3990), 9, + STATE(4220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533259,15 +563753,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 20, + 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, + 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_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, @@ -533280,7 +563796,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [22173] = 31, + sym__identifier_token, + [38820] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533301,51 +563818,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, - sym__identifier_token, - ACTIONS(3978), 1, - anon_sym_delegate, - ACTIONS(3982), 1, - anon_sym_var, - ACTIONS(3984), 1, - sym_predefined_type, - ACTIONS(4155), 1, - anon_sym_ref, - ACTIONS(5676), 1, - anon_sym_scoped, - ACTIONS(5959), 1, + ACTIONS(1397), 1, + anon_sym_LBRACE, + ACTIONS(6574), 1, anon_sym_LPAREN, - STATE(2838), 1, - sym_identifier, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2883), 1, - sym_type, - STATE(2894), 1, - sym_array_type, - STATE(2905), 1, - sym_tuple_type, - STATE(2923), 1, - sym_generic_name, - STATE(3025), 1, - sym__name, - STATE(6934), 1, - sym__array_base_type, - STATE(7370), 1, - sym__pointer_base_type, - STATE(2889), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(2890), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2900), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3991), 9, + STATE(4294), 1, + sym_argument_list, + STATE(4645), 1, + sym_initializer_expression, + STATE(4221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533355,28 +563836,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, - [22300] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38916] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533397,51 +563897,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3697), 1, - sym__identifier_token, - ACTIONS(3986), 1, - anon_sym_ref, - ACTIONS(5646), 1, - anon_sym_delegate, - ACTIONS(5648), 1, - anon_sym_scoped, - ACTIONS(5650), 1, - anon_sym_var, - ACTIONS(5652), 1, - sym_predefined_type, - ACTIONS(5947), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(3046), 1, - sym_identifier, - STATE(3056), 1, - sym__reserved_identifier, - STATE(3096), 1, - sym__name, - STATE(3099), 1, - sym_tuple_type, - STATE(3103), 1, - sym_array_type, - STATE(3138), 1, - sym_generic_name, - STATE(3274), 1, - sym_type, - STATE(7035), 1, - sym__array_base_type, - STATE(7148), 1, - sym__pointer_base_type, - STATE(3101), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3104), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(3108), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3992), 9, + 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(5899), 7, + anon_sym_where, + anon_sym_from, + 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, @@ -533451,28 +563978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3699), 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, - [22427] = 31, + [39058] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533493,51 +563999,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(2951), 1, - sym_predefined_type, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(5368), 1, - anon_sym_ref, - ACTIONS(5376), 1, - anon_sym_scoped, - STATE(2245), 1, - sym_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(4250), 1, - sym_tuple_type, - STATE(4302), 1, - sym__name, - STATE(4401), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(2275), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4256), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(3993), 9, + ACTIONS(6561), 1, + anon_sym_and, + STATE(4223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533547,28 +564011,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 20, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + 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), 29, + anon_sym_LBRACK, + 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, - [22554] = 31, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [39148] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533589,51 +564075,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4167), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5682), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2848), 1, - sym_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3994), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533643,28 +564156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 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, - [22681] = 15, + [39290] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533685,11 +564177,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_into, - STATE(3885), 1, - aux_sym__query_body_repeat2, - STATE(3995), 9, + ACTIONS(6561), 1, + anon_sym_and, + ACTIONS(6563), 1, + anon_sym_or, + STATE(4225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533699,7 +564191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 12, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -533711,10 +564203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_as, - ACTIONS(5839), 31, + ACTIONS(6205), 29, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, anon_sym_PLUS_PLUS, @@ -533737,14 +564227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_join, anon_sym_let, anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [22776] = 31, + [39382] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533765,51 +564254,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, - sym__identifier_token, - ACTIONS(4167), 1, - anon_sym_ref, - ACTIONS(5544), 1, - anon_sym_delegate, - ACTIONS(5548), 1, - anon_sym_var, - ACTIONS(5550), 1, - sym_predefined_type, - ACTIONS(5682), 1, - anon_sym_scoped, - ACTIONS(5955), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(2826), 1, - sym__reserved_identifier, - STATE(2831), 1, - sym_array_type, - STATE(2866), 1, - sym_tuple_type, - STATE(2873), 1, - sym_generic_name, - STATE(2884), 1, - sym_type, - STATE(3153), 1, - sym_identifier, - STATE(3453), 1, - sym__name, - STATE(6935), 1, - sym__array_base_type, - STATE(7453), 1, - sym__pointer_base_type, - STATE(2867), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(2870), 3, - sym_implicit_type, - sym_ref_type, - sym_scoped_type, - STATE(2871), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(3996), 9, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 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, + 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_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(6471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6473), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533819,28 +564335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 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, - [22903] = 38, + [39524] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533861,67 +564356,164 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, + 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(5442), 1, + 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(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(4227), 9, + sym_preproc_region, + sym_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_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(6249), 1, + 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, + anon_sym_QMARK, + ACTIONS(6499), 1, anon_sym_SLASH, - ACTIONS(6251), 1, + ACTIONS(6501), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6515), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6517), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6519), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6521), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6523), 1, anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6243), 2, + ACTIONS(6491), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6507), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(3997), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533931,18 +564523,109 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_where, - anon_sym_and, + [39776] = 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, + anon_sym_BANG, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6493), 1, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [23043] = 21, + ACTIONS(6523), 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(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_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(5777), 7, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4229), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [39918] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -533963,24 +564646,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - STATE(2399), 1, + 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, + anon_sym_QMARK, + ACTIONS(6499), 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, + 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(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3998), 9, + 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_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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -533990,7 +564727,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4673), 10, + [40060] = 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(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(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -534000,9 +564777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4669), 25, - anon_sym_where, + STATE(4231), 9, + sym_preproc_region, + sym_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), 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, @@ -534013,21 +564803,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_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, - [23149] = 13, + [40166] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534048,7 +564832,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(3999), 9, + 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, @@ -534058,39 +564880,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3602), 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(3600), 28, + ACTIONS(2971), 21, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, - anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -534103,8 +564902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [23239] = 29, + [40286] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534125,50 +564923,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_SLASH, - ACTIONS(6259), 1, - anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6245), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6247), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 6, + 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_or, - STATE(4000), 9, + anon_sym_GT_GT, + STATE(4233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534178,14 +564962,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, + ACTIONS(5731), 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_and, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -534197,7 +564985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [23361] = 15, + anon_sym_with, + [40392] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534218,39 +565007,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, - anon_sym_into, - STATE(4022), 1, - aux_sym__query_body_repeat2, - STATE(4001), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 12, + 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(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(1223), 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(5833), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(4234), 9, + sym_preproc_region, + sym_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), 23, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -534261,8 +565058,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, anon_sym_QMARK_QMARK, @@ -534274,9 +565069,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, - [23455] = 21, + [40498] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534297,24 +565091,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4002), 9, + 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, @@ -534324,19 +565105,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4692), 10, + 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_or, - ACTIONS(4690), 25, + 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, @@ -534348,7 +565134,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -534360,8 +565145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [23561] = 26, + [40590] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534382,45 +565168,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_SLASH, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, - anon_sym_DOT_DOT, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6247), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4003), 9, + ACTIONS(6578), 1, + anon_sym_into, + STATE(4238), 1, + aux_sym__query_body_repeat2, + STATE(4236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534430,8 +565182,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 20, + 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, @@ -534439,7 +565209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -534451,7 +565222,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [23677] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [40682] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534472,11 +565245,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6279), 1, + ACTIONS(6580), 1, anon_sym_into, - STATE(4034), 1, - aux_sym__query_body_repeat2, - STATE(4004), 9, + STATE(4237), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534486,10 +565257,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 12, + aux_sym__query_body_repeat2, + ACTIONS(5951), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -534499,14 +565270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 30, - anon_sym_SEMI, + ACTIONS(5949), 29, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_where, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -534523,14 +565290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_from, + anon_sym_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, - [23771] = 24, + [40772] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534551,30 +565321,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, - anon_sym_DOT_DOT, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4005), 9, + 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, @@ -534584,19 +565335,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5658), 10, + 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_or, - ACTIONS(5656), 22, + anon_sym_DOT, + ACTIONS(5958), 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, @@ -534606,7 +565362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -534618,7 +565375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_select, anon_sym_as, anon_sym_is, - [23883] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [40864] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534639,46 +565398,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_SLASH, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6515), 1, anon_sym_DOT_DOT, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6245), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6247), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 7, + 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, - anon_sym_or, - STATE(4006), 9, + STATE(4239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534688,8 +565437,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 20, - anon_sym_where, + ACTIONS(1221), 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, @@ -534697,19 +565451,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_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, - [24001] = 13, + anon_sym_with, + [40970] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534730,7 +565482,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4007), 9, + 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(6545), 1, + anon_sym_GT_GT, + 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(6543), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534740,53 +565534,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3623), 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(3621), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 17, 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_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, - sym__identifier_token, - [24091] = 21, + anon_sym_as, + anon_sym_is, + [41090] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534807,34 +565573,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - STATE(2399), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6515), 1, + anon_sym_DOT_DOT, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - 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(4725), 10, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -534844,9 +565602,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(4723), 25, - anon_sym_where, + 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, @@ -534857,21 +565627,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_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_with, - [24197] = 14, + [41196] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534892,9 +565657,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - STATE(4009), 9, + 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, + sym_bracketed_argument_list, + STATE(3035), 1, + sym_argument_list, + ACTIONS(4841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6533), 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(4242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -534904,27 +565704,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5286), 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(3743), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5660), 19, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -534932,14 +565713,10 @@ 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, @@ -534947,9 +565724,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, - [24289] = 40, + [41310] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -534970,90 +565745,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_SLASH, - ACTIONS(6251), 1, - anon_sym_CARET, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6255), 1, - anon_sym_AMP, - ACTIONS(6259), 1, - anon_sym_GT_GT, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6267), 1, - anon_sym_DOT_DOT, - ACTIONS(6269), 1, - anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, - anon_sym_is, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(6551), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_or, - ACTIONS(6243), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4243), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 21, + anon_sym_where, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_where, - anon_sym_and, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_from, anon_sym_join, anon_sym_let, anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(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, - [24433] = 41, + anon_sym_as, + anon_sym_is, + [41420] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535074,81 +565831,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5718), 1, - anon_sym_or, - ACTIONS(6249), 1, + 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(6251), 1, + ACTIONS(6537), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6539), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6553), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, - anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6281), 1, + ACTIONS(6555), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6557), 1, anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + ACTIONS(6559), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 8, + ACTIONS(6583), 7, 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(4011), 9, + STATE(4244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535158,7 +565912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [24579] = 37, + [41562] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535179,65 +565933,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6535), 1, anon_sym_SLASH, - ACTIONS(6251), 1, - anon_sym_CARET, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6559), 1, anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, - anon_sym_or, - ACTIONS(6243), 2, + anon_sym_PIPE, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4012), 9, + STATE(4245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535247,9 +565997,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + ACTIONS(5660), 11, anon_sym_where, - anon_sym_and, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -535259,7 +566009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [24717] = 33, + [41694] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535280,58 +566030,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6535), 1, anon_sym_SLASH, - ACTIONS(6259), 1, + ACTIONS(6537), 1, + anon_sym_CARET, + ACTIONS(6541), 1, + anon_sym_AMP, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6559), 1, anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6263), 2, + ACTIONS(6547), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_or, - STATE(4013), 9, + STATE(4246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535341,12 +566096,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 10, 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, @@ -535356,7 +566107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [24847] = 16, + [41828] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535377,13 +566128,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, + 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(6535), 1, + anon_sym_SLASH, + ACTIONS(6545), 1, + anon_sym_GT_GT, + ACTIONS(6551), 1, + anon_sym_DOT_DOT, + 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, - STATE(4028), 1, - sym_type_argument_list, - STATE(4014), 9, + 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(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535393,50 +566191,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3602), 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(3600), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 11, 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_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, - sym__identifier_token, - [24943] = 13, + [41958] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535457,7 +566224,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4015), 9, + 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, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535467,53 +566272,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3642), 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(3631), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, + ACTIONS(5660), 19, 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_CARET, + anon_sym_LT_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, - sym__identifier_token, - [25033] = 34, + anon_sym_as, + anon_sym_is, + [42074] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535534,61 +566313,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6535), 1, anon_sym_SLASH, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6559), 1, anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 4, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_or, - STATE(4016), 9, + STATE(4249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535598,10 +566373,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, + ACTIONS(5660), 13, anon_sym_where, anon_sym_CARET, - anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -535611,7 +566387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [25165] = 35, + [42202] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535632,62 +566408,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + 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(6255), 1, + ACTIONS(6537), 1, + anon_sym_CARET, + ACTIONS(6539), 1, + anon_sym_PIPE, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + 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, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4017), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535697,20 +566489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_where, - anon_sym_CARET, - anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [25299] = 36, + [42344] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535731,64 +566510,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6535), 1, anon_sym_SLASH, - ACTIONS(6251), 1, + ACTIONS(6537), 1, anon_sym_CARET, - ACTIONS(6255), 1, + ACTIONS(6539), 1, + anon_sym_PIPE, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6559), 1, anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_or, - STATE(4018), 9, + STATE(4251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -535798,9 +566577,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + ACTIONS(5660), 10, anon_sym_where, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -535810,7 +566588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - [25435] = 23, + [42480] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -535831,226 +566609,67 @@ 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(3549), 1, - anon_sym_where, - ACTIONS(5368), 1, - anon_sym_ref, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2264), 1, - sym_ref_type, - STATE(2265), 1, - sym__scoped_base_type, - STATE(4264), 1, - sym_identifier, - STATE(5124), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4019), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3393), 11, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(4808), 1, 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, - [25545] = 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(6279), 1, - anon_sym_into, - STATE(4038), 1, - aux_sym__query_body_repeat2, - STATE(4020), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4839), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + 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, - anon_sym_DOT, - ACTIONS(5833), 30, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(6551), 1, anon_sym_DOT_DOT, + ACTIONS(6553), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, + ACTIONS(6559), 1, 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, - [25639] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(4021), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5686), 10, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - ACTIONS(5684), 24, - anon_sym_where, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_and, - anon_sym_AMP_AMP, + ACTIONS(5660), 9, + anon_sym_where, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_from, @@ -536059,35 +566678,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, - [25747] = 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(6277), 1, - anon_sym_into, - STATE(4027), 1, - aux_sym__query_body_repeat2, - STATE(4022), 9, + STATE(4252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536097,51 +566688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 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(5839), 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_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, - [25841] = 41, + [42618] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536162,81 +566709,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5662), 1, - anon_sym_or, - ACTIONS(6249), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6353), 1, + anon_sym_as, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6535), 1, anon_sym_SLASH, - ACTIONS(6251), 1, + ACTIONS(6537), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6539), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6553), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, - anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6281), 1, + ACTIONS(6555), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6557), 1, anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + ACTIONS(6559), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 8, + ACTIONS(5660), 7, 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(4023), 9, + STATE(4253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536246,7 +566790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [25987] = 15, + [42760] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536267,11 +566811,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, + ACTIONS(6578), 1, anon_sym_into, - STATE(4031), 1, + STATE(4235), 1, aux_sym__query_body_repeat2, - STATE(4024), 9, + STATE(4254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536281,7 +566825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 12, + ACTIONS(6001), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -536293,8 +566837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5839), 30, + ACTIONS(5999), 29, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_where, @@ -536311,7 +566854,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -536325,7 +566867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26081] = 41, + [42852] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536346,81 +566888,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(4888), 1, - anon_sym_or, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6249), 1, + 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(6251), 1, + ACTIONS(6537), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6539), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6553), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, - anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6281), 1, + ACTIONS(6555), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6557), 1, anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + ACTIONS(6559), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 8, + ACTIONS(5858), 7, 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(4025), 9, + STATE(4255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536430,7 +566969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [26227] = 41, + [42994] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536451,81 +566990,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5768), 1, - anon_sym_or, - ACTIONS(6249), 1, + 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(6251), 1, + ACTIONS(6537), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6539), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6541), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6545), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6551), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6553), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6273), 1, - anon_sym_is, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6281), 1, + ACTIONS(6555), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6557), 1, anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + ACTIONS(6559), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6525), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6531), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6533), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6543), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6547), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6549), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 8, + ACTIONS(5864), 7, 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(4026), 9, + STATE(4256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536535,7 +567071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [26373] = 14, + [43136] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536556,85 +567092,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6287), 1, - anon_sym_into, - STATE(4027), 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(5845), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5843), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5864), 6, + anon_sym_SEMI, 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, - [26465] = 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(4028), 9, + anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536644,53 +567172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3627), 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(3625), 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, - [26555] = 17, + [43277] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536711,90 +567193,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - ACTIONS(4727), 1, - anon_sym_QMARK, - ACTIONS(6290), 1, + ACTIONS(4100), 1, anon_sym_DOT, - STATE(4029), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3948), 10, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6593), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6603), 1, anon_sym_GT_GT, - anon_sym_or, - ACTIONS(3950), 30, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, + 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(6589), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6591), 2, + anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(6601), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_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, - [26653] = 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(6290), 1, - anon_sym_DOT, - STATE(4030), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536804,52 +567245,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3932), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - 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(3934), 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, + ACTIONS(5660), 16, + 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_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, - [26745] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [43396] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536870,11 +567283,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6277), 1, - anon_sym_into, - STATE(4027), 1, - aux_sym__query_body_repeat2, - STATE(4031), 9, + ACTIONS(1397), 1, + anon_sym_LBRACE, + STATE(4643), 1, + sym_initializer_expression, + STATE(4259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -536884,7 +567297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 12, + ACTIONS(4831), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -536896,11 +567309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5856), 30, + ACTIONS(4829), 28, + sym_interpolation_close_brace, 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, @@ -536915,20 +567329,16 @@ 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_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [26839] = 13, + [43487] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -536949,7 +567359,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4032), 9, + 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, + 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, @@ -536959,53 +567439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3612), 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(3610), 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, - [26929] = 41, + [43628] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537026,81 +567460,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5756), 1, - anon_sym_or, - ACTIONS(6249), 1, + ACTIONS(6623), 1, + anon_sym_QMARK, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6251), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, + ACTIONS(6655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6657), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6659), 1, anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6661), 1, anon_sym_is, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 8, - anon_sym_where, + ACTIONS(5858), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4033), 9, + anon_sym_or, + anon_sym_into, + STATE(4261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537110,7 +567540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [27075] = 15, + [43769] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537131,43 +567561,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_into, - STATE(4037), 1, - aux_sym__query_body_repeat2, - STATE(4034), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 12, + 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(4837), 9, 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(5856), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(4262), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4833), 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, @@ -537179,17 +567613,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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [27169] = 22, + [43872] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537210,26 +567643,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4912), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(4035), 9, + 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, @@ -537239,19 +567661,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1153), 10, + ACTIONS(4922), 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_or, - ACTIONS(1139), 24, - anon_sym_where, + 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, @@ -537262,20 +567689,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_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, - [27277] = 13, + [43967] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537296,7 +567721,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4036), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537306,39 +567760,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4007), 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(4005), 28, + ACTIONS(2971), 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, @@ -537351,8 +567783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [27367] = 14, + [44072] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537373,42 +567804,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_into, - STATE(4037), 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(5845), 12, + 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, 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(5843), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + 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_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, @@ -537420,17 +567856,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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [27459] = 15, + [44175] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537451,11 +567886,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6279), 1, - anon_sym_into, - STATE(4037), 1, - aux_sym__query_body_repeat2, - STATE(4038), 9, + ACTIONS(1397), 1, + anon_sym_LBRACE, + ACTIONS(4849), 1, + anon_sym_LBRACK, + STATE(4687), 1, + sym_initializer_expression, + STATE(4266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537465,10 +567902,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 12, + ACTIONS(4852), 11, anon_sym_LT, anon_sym_GT, - anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -537478,14 +567914,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 30, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4847), 27, + 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, @@ -537499,17 +567932,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [27553] = 13, + [44268] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537530,7 +567963,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4039), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537540,53 +568010,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3608), 16, + ACTIONS(5660), 18, 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(3606), 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_into, - anon_sym_join, - anon_sym_on, - 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, - [27643] = 41, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537607,81 +568050,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5708), 1, - anon_sym_or, - ACTIONS(6249), 1, + ACTIONS(6623), 1, + anon_sym_QMARK, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6251), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(6253), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6255), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6259), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6265), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6267), 1, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6269), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6271), 1, + ACTIONS(6655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6657), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6659), 1, anon_sym_as, - ACTIONS(6273), 1, + ACTIONS(6661), 1, anon_sym_is, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6285), 1, - anon_sym_QMARK, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6243), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6245), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6247), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6257), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6261), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6263), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 8, - anon_sym_where, + ACTIONS(5864), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4040), 9, + anon_sym_or, + anon_sym_into, + STATE(4268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537691,7 +568130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [27789] = 13, + [44522] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537712,62 +568151,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4041), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5334), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5332), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5858), 6, + anon_sym_SEMI, 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, - [27878] = 13, + anon_sym_or, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4269), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [44663] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537788,35 +568252,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5294), 12, + 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_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(5292), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4270), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5731), 22, + anon_sym_SEMI, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -537827,23 +568303,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_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, - [27967] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [44768] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537864,79 +568335,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6297), 1, + ACTIONS(6623), 1, anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6323), 1, + ACTIONS(6655), 1, anon_sym_PIPE_PIPE, - ACTIONS(6325), 1, + ACTIONS(6657), 1, anon_sym_QMARK_QMARK, - ACTIONS(6327), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6661), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 8, - anon_sym_where, - anon_sym_from, + ACTIONS(5072), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4043), 9, + STATE(4271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537946,7 +568415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [28110] = 15, + [44909] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -537967,11 +568436,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6329), 1, - anon_sym_and, - ACTIONS(6331), 1, - anon_sym_or, - STATE(4044), 9, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, + anon_sym_LPAREN, + ACTIONS(3454), 1, + anon_sym_delegate, + ACTIONS(6672), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -537981,50 +568480,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2971), 22, + 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_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [28203] = 13, + [45024] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538045,62 +568524,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4045), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5330), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5328), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5072), 6, + anon_sym_SEMI, 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, - [28292] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538121,7 +568625,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4046), 9, + 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(6676), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538131,52 +568669,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5338), 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(5336), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2971), 22, + 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_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [28381] = 13, + [45280] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538197,62 +568713,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4047), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5294), 12, - anon_sym_LT, - anon_sym_GT, + 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, anon_sym_QMARK, + ACTIONS(6625), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5292), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5882), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, + anon_sym_or, 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, - [28470] = 15, + STATE(4275), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [45421] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538273,38 +568814,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6329), 1, - anon_sym_and, - ACTIONS(6331), 1, - anon_sym_or, - 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(6043), 11, + 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(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(5664), 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(6041), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4276), 9, + sym_preproc_region, + sym_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_SEMI, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -538314,23 +568868,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_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, - [28563] = 24, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [45530] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538351,40 +568899,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6319), 1, + ACTIONS(6593), 1, + anon_sym_SLASH, + ACTIONS(6599), 1, + anon_sym_AMP, + ACTIONS(6603), 1, + anon_sym_GT_GT, + ACTIONS(6609), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(6617), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6585), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4049), 9, + 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, + STATE(4277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538394,30 +568963,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 22, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 10, + 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_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - anon_sym_as, - anon_sym_is, - [28674] = 26, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [45661] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538438,44 +568995,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6303), 1, + ACTIONS(6587), 1, + anon_sym_QMARK, + ACTIONS(6593), 1, anon_sym_SLASH, - ACTIONS(6319), 1, + 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, - STATE(2358), 1, + 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, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6301), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(6585), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4050), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538485,28 +569075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [28789] = 13, + [45802] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538527,7 +569096,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4051), 9, + STATE(4279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -538537,52 +569106,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5314), 12, + 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, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_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(5312), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4082), 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, - [28878] = 29, + sym__identifier_token, + [45889] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538603,49 +569170,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6623), 1, + anon_sym_QMARK, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6303), 1, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6313), 1, + 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(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + 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(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6621), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6299), 2, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4052), 9, + 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, @@ -538655,26 +569250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_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, - [28999] = 13, + [46030] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538695,62 +569271,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4053), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5290), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6593), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6595), 1, + anon_sym_CARET, + ACTIONS(6599), 1, anon_sym_AMP, + ACTIONS(6603), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5288), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 1, + anon_sym_DOT_DOT, + 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(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 9, + anon_sym_SEMI, 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, - [29088] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + [46163] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538771,62 +569368,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4054), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5286), 12, - anon_sym_LT, - anon_sym_GT, + 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, anon_sym_QMARK, + ACTIONS(6625), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(3743), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5767), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_and, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, + anon_sym_or, 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, - [29177] = 13, + 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, + [46304] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538847,62 +569469,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4055), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5318), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6593), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6603), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5316), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 1, + anon_sym_DOT_DOT, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4283), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 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_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, - [29266] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [46433] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -538923,79 +569564,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6297), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6587), 1, anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6593), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6595), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6597), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6599), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6603), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6609), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6611), 1, anon_sym_AMP_AMP, - ACTIONS(6323), 1, + ACTIONS(6613), 1, anon_sym_PIPE_PIPE, - ACTIONS(6325), 1, + ACTIONS(6615), 1, anon_sym_QMARK_QMARK, - ACTIONS(6327), 1, + ACTIONS(6617), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6601), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 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(4056), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539005,7 +569644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [29409] = 13, + [46574] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539026,7 +569665,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4057), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + STATE(4285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539036,52 +569679,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5284), 12, + 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, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_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(5282), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4016), 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, - [29498] = 13, + sym__identifier_token, + [46665] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539102,62 +569741,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4058), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5280), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5278), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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_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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5858), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, - [29587] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539178,62 +569842,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4059), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5310), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6633), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6639), 1, anon_sym_AMP, + ACTIONS(6643), 1, anon_sym_GT_GT, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5308), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + STATE(4287), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 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_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, - [29676] = 35, + [46937] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539254,61 +569938,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6309), 1, + ACTIONS(6635), 1, + anon_sym_CARET, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6327), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6661), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6295), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4060), 9, + 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(4288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539318,20 +570014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [29809] = 40, + [47070] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539352,79 +570035,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6297), 1, - anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6633), 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, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 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, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6661), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 8, - anon_sym_where, - anon_sym_from, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4061), 9, + [47199] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539434,7 +570169,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [29952] = 40, + 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, + [47304] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539455,79 +570213,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6297), 1, - anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6593), 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, + ACTIONS(6609), 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_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6591), 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(5706), 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(4062), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539537,7 +570261,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [30095] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539558,7 +570301,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4063), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(4292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539568,52 +570317,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5276), 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(5274), 31, - anon_sym_LBRACK, + 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, + 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, - [30184] = 22, + sym__identifier_token, + [47512] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539634,36 +570378,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6319), 1, + ACTIONS(6633), 1, + anon_sym_SLASH, + ACTIONS(6643), 1, + anon_sym_GT_GT, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + 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(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6631), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6641), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6647), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4064), 9, + STATE(4293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539673,32 +570438,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 24, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 12, + 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_switch, + 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_with, - [30291] = 13, + [47639] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539719,7 +570472,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4065), 9, + ACTIONS(1397), 1, + anon_sym_LBRACE, + STATE(4591), 1, + sym_initializer_expression, + STATE(4294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539729,7 +570486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5310), 12, + ACTIONS(4868), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -539741,11 +570498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5308), 31, + ACTIONS(4866), 28, + sym_interpolation_close_brace, 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, @@ -539760,21 +570518,16 @@ 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, - [30380] = 40, + [47730] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539795,79 +570548,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - 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, + ACTIONS(6651), 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_is, - STATE(2358), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + anon_sym_QMARK, 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(6333), 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(4066), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539877,7 +570587,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [30523] = 15, + ACTIONS(5731), 22, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [47835] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -539898,19 +570631,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_or, - ACTIONS(4205), 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(4067), 9, + STATE(4296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -539920,7 +570641,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5349), 11, + ACTIONS(3447), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -539932,9 +570654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5346), 22, + ACTIONS(3445), 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, @@ -539946,115 +570671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON_COLON, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30616] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6303), 1, - anon_sym_SLASH, - ACTIONS(6305), 1, - anon_sym_CARET, - 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_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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, - 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(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, - ACTIONS(5656), 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, - [30751] = 15, + [47922] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540075,19 +570705,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_or, - ACTIONS(4205), 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(4069), 9, + STATE(4297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540097,7 +570715,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5343), 11, + ACTIONS(3650), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -540109,9 +570728,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5340), 22, + 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, @@ -540123,16 +570745,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_COLON_COLON, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [30844] = 40, + [48009] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540153,79 +570779,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6297), 1, - anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6633), 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, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 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_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 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(5766), 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(4070), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540235,7 +570831,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [30987] = 34, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540256,60 +570869,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6313), 1, - anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6327), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6631), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + anon_sym_QMARK, 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(5658), 3, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4071), 9, + anon_sym_GT_GT, + STATE(4299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540319,20 +570916,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, - anon_sym_where, + ACTIONS(5660), 18, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [31118] = 13, + anon_sym_as, + anon_sym_is, + [48241] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540353,35 +570956,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5322), 12, + 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(6651), 1, + anon_sym_DOT_DOT, + ACTIONS(6663), 1, + anon_sym_with, + 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_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(5320), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -540391,24 +571012,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_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, - [31207] = 13, + [48350] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540429,7 +571041,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4073), 9, + 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(6633), 1, + anon_sym_SLASH, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, + anon_sym_DOT_DOT, + ACTIONS(6663), 1, + anon_sym_with, + 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(6629), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6631), 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(4301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540439,27 +571089,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 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(5296), 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(5660), 18, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -540467,24 +571100,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_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, - [31296] = 22, + [48465] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540505,27 +571129,57 @@ 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(6094), 1, - anon_sym_ref, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2264), 1, - sym_ref_type, - STATE(2265), 1, - sym__scoped_base_type, - STATE(4264), 1, - sym_identifier, - STATE(5124), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4074), 9, + 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(6593), 1, + anon_sym_SLASH, + ACTIONS(6603), 1, + anon_sym_GT_GT, + ACTIONS(6609), 1, + anon_sym_DOT_DOT, + 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(6607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540535,41 +571189,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3393), 10, + ACTIONS(5660), 12, 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), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [31403] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540590,35 +571223,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5306), 12, + 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(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(5733), 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(5304), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, + ACTIONS(5731), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -540629,23 +571277,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_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, - [31492] = 27, + [48697] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540666,76 +571306,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6303), 1, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6319), 1, + 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, - STATE(2358), 1, + 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(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6621), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6299), 2, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4076), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 20, - anon_sym_where, - anon_sym_CARET, + 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(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_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, - [31609] = 33, + 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, + [48832] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540756,57 +571404,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6587), 1, + anon_sym_QMARK, + ACTIONS(6593), 1, anon_sym_SLASH, - ACTIONS(6313), 1, + 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(6319), 1, + ACTIONS(6609), 1, anon_sym_DOT_DOT, - ACTIONS(6327), 1, + 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(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6601), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6317), 2, + ACTIONS(6605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4077), 9, + ACTIONS(5777), 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(4305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540816,22 +571484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, - anon_sym_where, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [31738] = 37, + [48973] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540852,64 +571505,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6593), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6595), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6597), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6599), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6603), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6609), 1, anon_sym_DOT_DOT, - ACTIONS(6327), 1, + ACTIONS(6611), 1, + anon_sym_AMP_AMP, + ACTIONS(6617), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6601), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4078), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -540919,19 +571583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [31875] = 38, + [49110] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -540952,66 +571604,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, - anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6327), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6661), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4079), 9, + ACTIONS(5660), 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(4307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541021,18 +571682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_where, - 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, - [32014] = 13, + [49247] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541053,117 +571703,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5354), 12, - anon_sym_LT, - anon_sym_GT, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5352), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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, - anon_sym_CARET, + 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, - 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, - [32103] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(3395), 1, + ACTIONS(5660), 6, + sym_interpolation_close_brace, anon_sym_COLON, - ACTIONS(3549), 1, - anon_sym_where, - ACTIONS(6023), 1, - anon_sym_ref, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2264), 1, - sym_ref_type, - STATE(2265), 1, - sym__scoped_base_type, - STATE(6127), 1, - sym_identifier, - STATE(6159), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3393), 9, - 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, - STATE(4081), 9, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541173,29 +571783,7 @@ 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, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [32214] = 40, + [49388] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541216,79 +571804,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6297), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6708), 1, anon_sym_AMP_AMP, - ACTIONS(6323), 1, + ACTIONS(6710), 1, anon_sym_PIPE_PIPE, - ACTIONS(6325), 1, + ACTIONS(6712), 1, anon_sym_QMARK_QMARK, - ACTIONS(6327), 1, + ACTIONS(6714), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 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(4082), 9, + ACTIONS(5864), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541298,7 +571884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32357] = 40, + [49529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541319,79 +571905,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6297), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6303), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6708), 1, anon_sym_AMP_AMP, - ACTIONS(6323), 1, + ACTIONS(6710), 1, anon_sym_PIPE_PIPE, - ACTIONS(6325), 1, + ACTIONS(6712), 1, anon_sym_QMARK_QMARK, - ACTIONS(6327), 1, + ACTIONS(6714), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 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(4083), 9, + ACTIONS(5072), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541401,7 +571985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [32500] = 13, + [49670] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541422,7 +572006,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4084), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541432,52 +572045,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3660), 15, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1221), 22, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ_GT, - ACTIONS(3653), 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_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_from, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [32589] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [49775] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541498,7 +572089,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4085), 9, + ACTIONS(3445), 1, + anon_sym_COLON_COLON, + STATE(4312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541508,7 +572101,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5302), 12, + ACTIONS(3619), 12, + anon_sym_COLON, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -541520,11 +572114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5300), 31, + ACTIONS(3616), 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, @@ -541539,21 +572134,16 @@ 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, - [32678] = 13, + [49864] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541574,62 +572164,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4086), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5272), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5270), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + 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_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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5882), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, 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, - [32767] = 13, + anon_sym_or, + 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, + [50005] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541650,7 +572265,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4087), 9, + ACTIONS(6565), 1, + anon_sym_LT, + STATE(4410), 1, + sym_type_argument_list, + STATE(4314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541660,8 +572279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5326), 12, - anon_sym_LT, + ACTIONS(3660), 10, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -541672,11 +572290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5324), 31, + ACTIONS(3662), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -541691,21 +572311,16 @@ 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, - [32856] = 14, + [50096] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541726,63 +572341,161 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6329), 1, - anon_sym_and, - STATE(4088), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 12, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - anon_sym_or, - ACTIONS(5941), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, + ACTIONS(6609), 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5660), 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(4315), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [50237] = 13, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + STATE(4316), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [32947] = 40, + sym__identifier_token, + [50324] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541803,79 +572516,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6220), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6303), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6684), 1, + anon_sym_QMARK, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6305), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6307), 1, + ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(6309), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6313), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6319), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6321), 1, + ACTIONS(6708), 1, anon_sym_AMP_AMP, - ACTIONS(6323), 1, + ACTIONS(6710), 1, anon_sym_PIPE_PIPE, - ACTIONS(6325), 1, + ACTIONS(6712), 1, anon_sym_QMARK_QMARK, - ACTIONS(6327), 1, + ACTIONS(6714), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6295), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6299), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6301), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6311), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6315), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6317), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4089), 9, + ACTIONS(5899), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541885,7 +572596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33090] = 22, + [50465] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541906,26 +572617,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6319), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -541935,7 +572650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4090), 9, + STATE(4318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -541945,8 +572660,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 24, - anon_sym_where, + ACTIONS(5660), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -541956,21 +572674,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_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, - [33197] = 40, + [50574] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -541991,78 +572702,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6337), 1, + ACTIONS(6623), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6651), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6655), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6657), 1, anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6661), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(6663), 1, + anon_sym_with, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4091), 9, + ACTIONS(5899), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542072,7 +572782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33339] = 40, + [50715] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542093,78 +572803,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6337), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, - anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, - anon_sym_PIPE, - ACTIONS(6349), 1, - anon_sym_AMP, - ACTIONS(6353), 1, - anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4320), 9, + sym_preproc_region, + sym_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), 22, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4092), 9, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(4321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542174,7 +572896,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33481] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542195,88 +572960,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6371), 1, + STATE(4322), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3447), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6377), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, anon_sym_PIPE, - ACTIONS(6383), 1, anon_sym_AMP, - ACTIONS(6387), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(3445), 30, + 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(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4093), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [33623] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [50994] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542297,88 +573034,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6371), 1, + 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(3650), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6377), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, anon_sym_PIPE, - ACTIONS(6383), 1, anon_sym_AMP, - ACTIONS(6387), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(3652), 30, + 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(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4094), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [33765] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [51081] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542399,78 +573108,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6337), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, - anon_sym_PIPE, - ACTIONS(6349), 1, - anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5716), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4095), 9, + ACTIONS(5664), 5, + 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, @@ -542480,7 +573160,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [33907] = 40, + ACTIONS(5660), 16, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + [51200] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542501,78 +573198,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - STATE(2738), 1, + ACTIONS(6690), 1, + anon_sym_SLASH, + ACTIONS(6706), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6369), 2, + ACTIONS(6688), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6389), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6391), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5716), 7, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4096), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542582,7 +573245,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34049] = 36, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542603,63 +573285,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6271), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6343), 1, + ACTIONS(6684), 1, + anon_sym_QMARK, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6349), 1, + ACTIONS(6694), 1, + anon_sym_PIPE, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6367), 1, + 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(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6335), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4097), 9, + ACTIONS(5777), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542669,18 +573365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [34183] = 22, + [51454] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542701,26 +573386,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(4856), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -542730,7 +573413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4098), 9, + STATE(4327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542740,11 +573423,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 23, + ACTIONS(4854), 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, @@ -542755,6 +573437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -542764,7 +573447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_is, anon_sym_with, - [34289] = 22, + [51557] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542785,36 +573468,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6359), 1, + 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(6690), 1, + anon_sym_SLASH, + ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_GT_GT, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(6714), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4099), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542824,31 +573532,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 23, - anon_sym_where, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 10, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_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, - [34395] = 40, + [51688] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542869,78 +573564,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6371), 1, - anon_sym_QMARK, - ACTIONS(6377), 1, + 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(6379), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6387), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, + ACTIONS(6714), 1, anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6369), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_SEMI, + ACTIONS(5660), 9, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4100), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -542950,7 +573640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34537] = 34, + [51821] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -542971,60 +573661,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + STATE(4330), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4110), 13, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + 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_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, + [51908] = 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(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6271), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6343), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6353), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6367), 1, + ACTIONS(6714), 1, anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4101), 9, + STATE(4331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543034,19 +573798,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, - anon_sym_where, + ACTIONS(5660), 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, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [34667] = 24, + [52037] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543067,40 +573830,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - STATE(2738), 1, + ACTIONS(6690), 1, + anon_sym_SLASH, + ACTIONS(6706), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + 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_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4102), 9, + STATE(4332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543110,14 +573878,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, - anon_sym_SEMI, + ACTIONS(5660), 18, + 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, @@ -543132,7 +573897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [34777] = 40, + [52152] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543153,78 +573918,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(3454), 1, + anon_sym_delegate, + ACTIONS(6674), 1, + sym_predefined_type, + ACTIONS(6718), 1, + anon_sym_LBRACK, + STATE(2942), 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(7267), 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(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, + 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, + [52267] = 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(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6271), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6337), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, - anon_sym_PIPE, - ACTIONS(6349), 1, - anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6706), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, + ACTIONS(6714), 1, anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6411), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4103), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543234,7 +574066,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [34919] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543255,45 +574100,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6343), 1, - anon_sym_SLASH, - ACTIONS(6359), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6609), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6339), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + 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(4104), 9, + STATE(4335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543303,8 +574139,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_where, + ACTIONS(1221), 22, + anon_sym_SEMI, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -543312,18 +574150,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_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, - [35035] = 15, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [52499] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543344,11 +574183,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_and, - ACTIONS(6415), 1, - anon_sym_or, - STATE(4105), 9, + 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(6720), 1, + anon_sym_LBRACK, + STATE(3168), 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(7101), 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(4336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543358,49 +574227,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 29, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(2971), 22, + 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_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [35127] = 15, + [52614] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543421,63 +574271,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(5346), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4106), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(4890), 23, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(6706), 1, + anon_sym_DOT_DOT, + ACTIONS(6714), 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(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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35219] = 22, + 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, @@ -543498,36 +574369,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(3454), 1, + anon_sym_delegate, + ACTIONS(6674), 1, + sym_predefined_type, + ACTIONS(6722), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4107), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543537,31 +574413,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 23, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [35325] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543582,17 +574457,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(5340), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4108), 9, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(4919), 1, + anon_sym_LBRACE, + ACTIONS(4925), 1, + anon_sym_QMARK, + STATE(3095), 1, + sym_initializer_expression, + STATE(4339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543602,10 +574475,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4980), 11, + ACTIONS(4922), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -543614,10 +574486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4978), 23, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4916), 27, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -543638,7 +574511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [35417] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [52959] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543659,78 +574535,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(3454), 1, + anon_sym_delegate, + ACTIONS(6674), 1, + sym_predefined_type, + ACTIONS(6724), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, - anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, - anon_sym_PIPE, - ACTIONS(6431), 1, - anon_sym_AMP, - ACTIONS(6435), 1, - anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6433), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6437), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6439), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5766), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4109), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543740,7 +574579,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [35559] = 29, + 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, + [53074] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543761,49 +574623,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6343), 1, - anon_sym_SLASH, - ACTIONS(6353), 1, - anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6339), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6351), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4110), 9, + ACTIONS(6726), 1, + anon_sym_into, + STATE(4342), 1, + aux_sym__query_body_repeat2, + STATE(4341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -543813,25 +574637,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - anon_sym_where, + 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, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, anon_sym_as, anon_sym_is, - [35679] = 29, + anon_sym_DASH_GT, + anon_sym_with, + [53165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543852,49 +574699,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, - anon_sym_SLASH, - ACTIONS(6435), 1, - anon_sym_GT_GT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6433), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4111), 9, + 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, @@ -543904,25 +574713,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + 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), 28, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, - [35799] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [53256] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -543943,44 +574775,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, - anon_sym_SLASH, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4112), 9, + 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, @@ -543990,11 +574789,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, + 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), 28, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -544002,15 +574819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [35913] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [53347] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544031,40 +574851,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4113), 9, + ACTIONS(6728), 1, + anon_sym_into, + STATE(4344), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544074,11 +574863,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, + 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), 28, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -544088,15 +574894,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - [36023] = 35, + anon_sym_DASH_GT, + anon_sym_with, + [53436] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544117,61 +574926,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, - anon_sym_SLASH, - ACTIONS(6431), 1, - anon_sym_AMP, - ACTIONS(6435), 1, - anon_sym_GT_GT, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6433), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6437), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6439), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4114), 9, + ACTIONS(6726), 1, + anon_sym_into, + STATE(4344), 1, + aux_sym__query_body_repeat2, + STATE(4345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544181,19 +574940,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + 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), 28, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, - [36155] = 36, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [53527] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544214,63 +575002,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6427), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(6431), 1, + ACTIONS(6694), 1, + anon_sym_PIPE, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(6447), 1, + ACTIONS(6706), 1, + anon_sym_DOT_DOT, + ACTIONS(6708), 1, + anon_sym_AMP_AMP, + ACTIONS(6714), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6417), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4115), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544280,18 +575080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - [36289] = 34, + [53664] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544312,60 +575101,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6435), 1, + 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(6447), 1, + 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(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4116), 9, + ACTIONS(5660), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544375,19 +575181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [36419] = 27, + [53805] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544408,75 +575202,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6593), 1, anon_sym_SLASH, - STATE(2537), 1, + 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(6617), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6421), 2, + ACTIONS(6585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5656), 19, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + 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), 9, + 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, - [36535] = 33, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4348), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [53940] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544497,57 +575300,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6435), 1, + 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(6447), 1, + 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, - STATE(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6439), 2, + ACTIONS(6749), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4118), 9, + ACTIONS(5660), 5, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + STATE(4349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544557,21 +575379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [36663] = 15, + [54080] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544592,11 +575400,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_into, - STATE(4127), 1, - aux_sym__query_body_repeat2, - STATE(4119), 9, + ACTIONS(6765), 1, + sym_string_literal_encoding, + STATE(4350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544606,7 +575412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, + ACTIONS(4881), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -544618,10 +575424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5856), 29, + ACTIONS(4879), 28, + sym_interpolation_close_brace, 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, @@ -544635,20 +575443,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, - [36755] = 37, + [54168] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544669,85 +575474,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + STATE(4351), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4082), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, anon_sym_PIPE, - ACTIONS(6431), 1, anon_sym_AMP, - ACTIONS(6435), 1, anon_sym_GT_GT, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(4084), 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(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4120), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - [36891] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [54254] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544768,76 +575547,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, - anon_sym_PIPE, - ACTIONS(6431), 1, - anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(6777), 1, + anon_sym_DOT_DOT, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6439), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 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(4121), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544847,7 +575599,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37029] = 40, + ACTIONS(5660), 15, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [54372] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544868,78 +575636,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6425), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, - anon_sym_PIPE, - ACTIONS(6431), 1, - anon_sym_AMP, - ACTIONS(6435), 1, - anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(6777), 1, + anon_sym_DOT_DOT, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6769), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6433), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6437), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6439), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4122), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -544949,7 +575683,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [37171] = 22, + ACTIONS(5660), 17, + 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_into, + anon_sym_as, + anon_sym_is, + [54484] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -544970,36 +575722,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6409), 1, + 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(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(6767), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6769), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 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(4123), 9, + STATE(4354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545009,13 +575770,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 23, + ACTIONS(5660), 17, 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, @@ -545023,7 +575779,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_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -545032,8 +575788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [37277] = 13, + [54598] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545054,7 +575809,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4124), 9, + ACTIONS(6779), 1, + sym_string_literal_encoding, + STATE(4355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545064,255 +575821,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4035), 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(4894), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_EQ_GT, - ACTIONS(4033), 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, - [37365] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, anon_sym_PIPE, - ACTIONS(6431), 1, anon_sym_AMP, - ACTIONS(6435), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6433), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6437), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6439), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5706), 7, + anon_sym_DOT, + ACTIONS(4892), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4125), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [37507] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, - anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, - anon_sym_PIPE, - ACTIONS(6431), 1, - anon_sym_AMP, - ACTIONS(6435), 1, - anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4126), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [37649] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [54686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545333,9 +575883,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6451), 1, - anon_sym_into, - STATE(4127), 10, + STATE(4356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545345,8 +575893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(4104), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -545358,10 +575905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 29, + ACTIONS(4106), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -545375,20 +575925,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, - [37739] = 34, + [54772] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545409,60 +575956,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6377), 1, + 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(6387), 1, + 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(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6403), 1, + 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(6405), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, + ACTIONS(6817), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6369), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4128), 9, + STATE(7360), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545472,19 +576038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [37869] = 29, + [54918] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545505,49 +576059,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4129), 9, + anon_sym_GT_GT, + STATE(4358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545557,25 +576098,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5731), 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, - [37989] = 26, + anon_sym_with, + [55022] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545596,44 +576141,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(2979), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6343), 1, - anon_sym_SLASH, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6341), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4130), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545643,27 +576184,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, + ACTIONS(2971), 22, + 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_var, + anon_sym_yield, + anon_sym_when, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [38103] = 26, + [55136] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545684,44 +576228,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4131), 9, + STATE(4360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545731,12 +576238,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_SEMI, + ACTIONS(3994), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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_RBRACK, - 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, @@ -545744,14 +576268,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, - [38217] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [55222] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545772,88 +576301,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, + 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(6425), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, anon_sym_PIPE, - ACTIONS(6431), 1, anon_sym_AMP, - ACTIONS(6435), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(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, - [38359] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55308] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545874,15 +576374,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - ACTIONS(6454), 1, - anon_sym_LPAREN, - STATE(4172), 1, - sym_argument_list, - STATE(4671), 1, - sym_initializer_expression, - STATE(4133), 9, + ACTIONS(6821), 1, + anon_sym_and, + STATE(4362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -545892,7 +576386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4649), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -545904,11 +576398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4645), 27, - sym_interpolation_close_brace, + ACTIONS(6067), 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, @@ -545922,7 +576418,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, @@ -545932,7 +576427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38455] = 35, + [55396] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -545953,61 +576448,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6389), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6391), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4134), 9, + 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, + anon_sym_and, + anon_sym_or, + ACTIONS(3879), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546017,19 +576490,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [38587] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546050,88 +576534,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6371), 1, + 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, + ACTIONS(4112), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6377), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, anon_sym_PIPE, - ACTIONS(6383), 1, anon_sym_AMP, - ACTIONS(6387), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(4114), 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(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 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(4135), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [38729] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55594] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546152,88 +576607,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, + 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(6425), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6427), 1, - anon_sym_CARET, - ACTIONS(6429), 1, anon_sym_PIPE, - ACTIONS(6431), 1, anon_sym_AMP, - ACTIONS(6435), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6421), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6423), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_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(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, - [38871] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [55680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546254,9 +576680,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_and, - STATE(4137), 9, + STATE(4366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546266,7 +576690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 12, + ACTIONS(4120), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -546278,11 +576702,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - anon_sym_or, - ACTIONS(5941), 29, + ACTIONS(4122), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -546296,20 +576722,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, - [38961] = 22, + [55766] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546330,36 +576753,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 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(4138), 9, + STATE(4367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546369,8 +576763,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 23, - anon_sym_where, + ACTIONS(4124), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4126), 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, @@ -546381,19 +576794,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_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, - [39067] = 16, + [55852] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546414,13 +576826,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6456), 1, - anon_sym_LT, - ACTIONS(6459), 1, - anon_sym_COLON_COLON, - STATE(4393), 1, - sym_type_argument_list, - STATE(4139), 9, + STATE(4368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546430,8 +576836,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 11, - anon_sym_COLON, + ACTIONS(4108), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -546442,9 +576848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3602), 28, + ACTIONS(4110), 29, sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, @@ -546471,7 +576878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39161] = 29, + [55938] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546492,45 +576899,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(4745), 1, - anon_sym_var, - ACTIONS(6461), 1, - sym_predefined_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6282), 1, - sym__name, - STATE(6484), 1, - sym_tuple_type, - STATE(6780), 1, - sym_array_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(7353), 1, - sym_implicit_type, - STATE(7426), 1, - sym__ref_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6781), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4140), 9, + 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, @@ -546540,16 +576913,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 21, + 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, anon_sym_into, anon_sym_join, @@ -546562,7 +576952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39281] = 40, + sym__identifier_token, + [56028] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546583,88 +576974,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6371), 1, + ACTIONS(6821), 1, + anon_sym_and, + ACTIONS(6831), 1, + anon_sym_or, + STATE(4370), 9, + sym_preproc_region, + sym_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(6377), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, anon_sym_PIPE, - ACTIONS(6383), 1, anon_sym_AMP, - ACTIONS(6387), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5354), 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, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 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(4141), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [39423] = 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, + [56118] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546685,78 +577049,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6337), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6857), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6859), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6861), 1, anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6865), 1, anon_sym_is, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4142), 9, + ACTIONS(5899), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546766,7 +577128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39565] = 15, + [56258] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546787,26 +577149,110 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3395), 1, - anon_sym_EQ, - ACTIONS(3393), 7, - anon_sym_LBRACK, - anon_sym_RPAREN, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(6829), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(6867), 1, anon_sym_COLON_COLON, - ACTIONS(3562), 8, + 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_GT, + anon_sym_DOT, anon_sym_EQ_GT, - STATE(4143), 9, + STATE(4373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -546816,13 +577262,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3565), 26, + 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, @@ -546843,7 +577291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [39657] = 40, + [56464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546864,88 +577312,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, + STATE(4374), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4016), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6343), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, anon_sym_PIPE, - ACTIONS(6349), 1, anon_sym_AMP, - ACTIONS(6353), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(4018), 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(6335), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6339), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4144), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [39799] = 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, + [56550] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -546966,78 +577385,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6427), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6429), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6431), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, + ACTIONS(6891), 1, + anon_sym_DOT_DOT, + ACTIONS(6893), 1, anon_sym_is, - STATE(2537), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 7, + ACTIONS(5660), 8, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4145), 9, + STATE(4375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547047,7 +577461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [39941] = 36, + [56684] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547068,63 +577482,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6377), 1, + 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, anon_sym_SLASH, - ACTIONS(6379), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6383), 1, + ACTIONS(6845), 1, + anon_sym_PIPE, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6387), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6403), 1, + 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(6405), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6369), 2, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4146), 9, + ACTIONS(5745), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547134,18 +577561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [40075] = 38, + [56824] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547166,76 +577582,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6343), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6367), 1, + 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(2399), 1, + ACTIONS(6895), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4147), 9, + STATE(7714), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547245,7 +577664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40213] = 40, + [56970] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547266,67 +577685,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6427), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6429), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6431), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, - anon_sym_AMP_AMP, - ACTIONS(6443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, + ACTIONS(6891), 1, + anon_sym_DOT_DOT, + ACTIONS(6893), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(6897), 1, + anon_sym_AMP_AMP, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, ACTIONS(5660), 7, @@ -547334,10 +577749,10 @@ static const uint16_t ts_small_parse_table[] = { 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(4148), 9, + STATE(4378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547347,7 +577762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40355] = 40, + [57106] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547368,78 +577783,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(6409), 1, - anon_sym_DOT_DOT, - ACTIONS(6419), 1, - anon_sym_QMARK, - ACTIONS(6425), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6427), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6429), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6431), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, + ACTIONS(6753), 1, + anon_sym_DOT_DOT, + ACTIONS(6755), 1, anon_sym_AMP_AMP, - ACTIONS(6443), 1, + ACTIONS(6757), 1, anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, + ACTIONS(6759), 1, anon_sym_QMARK_QMARK, - ACTIONS(6447), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6763), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(6899), 1, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 7, + ACTIONS(5777), 5, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4149), 9, + STATE(4379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547449,7 +577862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40497] = 40, + [57246] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547470,78 +577883,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6337), 1, - anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6893), 1, + anon_sym_is, + ACTIONS(6897), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6901), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6903), 1, anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6463), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4150), 9, + ACTIONS(5660), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547551,7 +577962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [40639] = 15, + [57386] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547572,11 +577983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6413), 1, - anon_sym_and, - ACTIONS(6415), 1, - anon_sym_or, - STATE(4151), 9, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + STATE(4381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547586,7 +577995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(5431), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -547598,10 +578007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 29, + ACTIONS(3829), 28, + sym_interpolation_close_brace, 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, @@ -547615,20 +578026,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, - [40731] = 37, + [57474] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547649,85 +578057,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(6905), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, + 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, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6343), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, anon_sym_PIPE, - ACTIONS(6349), 1, anon_sym_AMP, - ACTIONS(6353), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(3977), 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(6335), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6339), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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(5656), 10, - anon_sym_where, + anon_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, - [40867] = 22, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [57562] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547741,43 +578124,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(13), 1, aux_sym_preproc_error_token1, ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 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(4153), 9, + aux_sym_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(4383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547787,12 +578141,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 23, - anon_sym_SEMI, + ACTIONS(3975), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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_RBRACK, - 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, @@ -547803,15 +578172,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, - [40973] = 35, + [57648] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547832,61 +578204,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6343), 1, + ACTIONS(6819), 1, + anon_sym_DOT_DOT, + ACTIONS(6835), 1, + anon_sym_QMARK, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(6349), 1, + ACTIONS(6843), 1, + anon_sym_CARET, + ACTIONS(6845), 1, + anon_sym_PIPE, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - ACTIONS(6367), 1, + 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(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6335), 2, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4154), 9, + ACTIONS(5767), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547896,19 +578283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [41105] = 24, + [57788] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -547929,40 +578304,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4155), 9, + STATE(4385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -547972,8 +578314,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 21, - anon_sym_where, + ACTIONS(4000), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + 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, anon_sym_PERCENT, anon_sym_CARET, @@ -547983,18 +578344,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_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, - [41215] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [57874] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548015,11 +578377,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_into, - STATE(4165), 1, - aux_sym__query_body_repeat2, - STATE(4156), 9, + STATE(4386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548029,7 +578387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(4004), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548041,10 +578399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 29, + ACTIONS(4006), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -548058,20 +578419,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, - [41307] = 40, + [57960] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548092,78 +578450,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6337), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(6907), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4157), 9, + STATE(7330), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548173,7 +578532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41449] = 40, + [58106] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548194,78 +578553,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6337), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6343), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6345), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6347), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6349), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6353), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6361), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(6909), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6465), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4158), 9, + STATE(7677), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548275,7 +578635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41591] = 40, + [58252] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548296,88 +578656,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6337), 1, + 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(3971), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6343), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6345), 1, - anon_sym_CARET, - ACTIONS(6347), 1, anon_sym_PIPE, - ACTIONS(6349), 1, anon_sym_AMP, - ACTIONS(6353), 1, anon_sym_GT_GT, - ACTIONS(6359), 1, - anon_sym_DOT_DOT, - ACTIONS(6361), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6365), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6367), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6339), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6341), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6355), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6357), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6467), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(4159), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [41733] = 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, + [58338] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548398,78 +578729,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(6680), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6389), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6391), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(6716), 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_and, - anon_sym_or, - STATE(4160), 9, + anon_sym_EQ_GT, + STATE(4390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548479,7 +578756,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [41875] = 38, + 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, + [58432] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548500,86 +578806,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + 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, - ACTIONS(6377), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, anon_sym_PIPE, - ACTIONS(6383), 1, anon_sym_AMP, - ACTIONS(6387), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - 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, - 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, - [42013] = 37, + 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, @@ -548600,64 +578881,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6377), 1, + 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(6379), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6387), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, + ACTIONS(6893), 1, anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, + 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(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6369), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4162), 9, + ACTIONS(5745), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548667,18 +578960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [42149] = 33, + [58662] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548699,57 +578981,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6405), 1, - anon_sym_is, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6391), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4163), 9, + ACTIONS(6913), 1, + anon_sym_and, + ACTIONS(6915), 1, + anon_sym_or, + STATE(4393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548759,21 +578995,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + 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_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_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [42277] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [58752] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548794,57 +579056,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6271), 1, - anon_sym_as, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6343), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6353), 1, + 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(6359), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6367), 1, + ACTIONS(6893), 1, anon_sym_is, - STATE(2399), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6335), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6339), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6341), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6351), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6357), 2, + ACTIONS(6887), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4164), 9, + ACTIONS(5767), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_into, + STATE(4394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548854,21 +579135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_where, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - [42405] = 15, + [58892] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548889,11 +579156,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_into, - STATE(4127), 1, - aux_sym__query_body_repeat2, - STATE(4165), 9, + 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, @@ -548903,8 +579172,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, + ACTIONS(3660), 11, + anon_sym_COLON, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -548915,10 +579184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 29, + ACTIONS(3662), 26, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -548935,17 +579207,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_from, - anon_sym_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, - [42497] = 15, + [58984] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -548966,11 +579232,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6449), 1, - anon_sym_into, - STATE(4119), 1, - aux_sym__query_body_repeat2, - STATE(4166), 9, + STATE(4396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -548980,7 +579242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(4872), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -548992,10 +579254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 29, + ACTIONS(4870), 29, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_where, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -549009,20 +579274,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, - [42589] = 27, + [59070] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549043,45 +579305,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6395), 1, - anon_sym_DOT_DOT, - ACTIONS(6407), 1, - anon_sym_with, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4167), 9, + ACTIONS(6921), 1, + aux_sym_raw_string_literal_token1, + STATE(4397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549091,12 +579317,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_SEMI, + ACTIONS(4904), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4902), 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -549104,108 +579346,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, - [42705] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, anon_sym_with, - ACTIONS(6475), 1, - anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6477), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - 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, - ACTIONS(5656), 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, - [42832] = 14, + [59158] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549226,9 +579379,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3393), 1, - anon_sym_COLON_COLON, - STATE(4169), 9, + STATE(4398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549238,8 +579389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3565), 12, - anon_sym_COLON, + ACTIONS(3949), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -549251,9 +579401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3562), 28, + ACTIONS(3951), 29, sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, @@ -549280,7 +579431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42921] = 40, + [59244] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549301,77 +579452,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6503), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6523), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6923), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4170), 9, + STATE(7395), 2, + sym_preproc_else_in_expression, + sym_preproc_elif_in_expression, + STATE(4399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549381,7 +579534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [43062] = 17, + [59390] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549402,64 +579555,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4776), 1, + 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(4783), 1, - anon_sym_LBRACE, - ACTIONS(4789), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6783), 1, anon_sym_QMARK, - STATE(3029), 1, - sym_initializer_expression, - STATE(4171), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4786), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4780), 27, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [43157] = 15, + 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, @@ -549480,11 +579658,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(4520), 1, - sym_initializer_expression, - STATE(4172), 9, + 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_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, @@ -549494,26 +579737,71 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4704), 11, + [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_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1223), 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(4702), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + 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_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -549524,18 +579812,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, - [43248] = 21, + [59780] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549556,34 +579840,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4673), 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(4173), 9, + STATE(4403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549593,10 +579850,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4669), 23, + ACTIONS(3660), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_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, 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, @@ -549616,8 +579890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [43351] = 13, + [59866] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549638,7 +579913,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4174), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(4404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549648,9 +579927,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4049), 13, + ACTIONS(4018), 10, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, @@ -549659,10 +579937,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, anon_sym_EQ_GT, - ACTIONS(4047), 28, + ACTIONS(4016), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -549691,7 +579967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [43438] = 22, + [59956] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549712,36 +579988,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(5131), 1, - anon_sym_ref, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6516), 1, - sym__name, - STATE(6832), 1, - sym_ref_type, - STATE(6833), 1, - sym__scoped_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3393), 8, + 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, - anon_sym_COMMA, + ACTIONS(5285), 1, + anon_sym_BANG, + 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(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4175), 9, + 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, @@ -549751,30 +580027,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - 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(5731), 21, + 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_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, - [43543] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [60060] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549795,87 +580070,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6503), 1, - anon_sym_CARET, - ACTIONS(6505), 1, - anon_sym_PIPE, - ACTIONS(6507), 1, - anon_sym_AMP, - ACTIONS(6511), 1, - anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6529), 1, - anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(5733), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4406), 9, + sym_preproc_region, + sym_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, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4176), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [43684] = 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [60164] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549896,7 +580152,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4177), 9, + ACTIONS(6821), 1, + anon_sym_and, + ACTIONS(6831), 1, + anon_sym_or, + STATE(4407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -549906,7 +580166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3596), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -549918,13 +580178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3598), 30, - sym_interpolation_close_brace, + ACTIONS(6205), 27, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -549936,11 +580196,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, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -549949,7 +580206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43771] = 27, + [60254] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -549970,41 +580227,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6533), 1, - anon_sym_LBRACK, - ACTIONS(6535), 1, - sym_predefined_type, - STATE(2858), 1, - sym_array_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(6934), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4178), 9, + STATE(4408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550014,30 +580237,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(3979), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3981), 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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [43886] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [60340] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550058,77 +580300,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, - anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6541), 1, - anon_sym_PIPE, - ACTIONS(6543), 1, - anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6477), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5766), 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(4179), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550138,7 +580339,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44027] = 27, + 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, @@ -550159,41 +580382,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - ACTIONS(6553), 1, - anon_sym_LBRACK, - STATE(2821), 1, - sym_array_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(6935), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4180), 9, + STATE(4410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550203,94 +580392,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [44142] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 9, + 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, - STATE(4181), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1139), 22, + anon_sym_DOT, + ACTIONS(3681), 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, @@ -550301,15 +580423,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, - [44247] = 26, + [60530] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550330,44 +580455,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6483), 1, + ACTIONS(6747), 1, + anon_sym_GT_GT, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6473), 2, + ACTIONS(6733), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(6745), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4182), 9, + STATE(4411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550377,11 +580507,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - anon_sym_SEMI, + 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, @@ -550393,10 +580523,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, - [44360] = 15, + [60648] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550417,11 +580544,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_into, - STATE(4188), 1, - aux_sym__query_body_repeat2, - STATE(4183), 9, + 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(6735), 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(4412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550431,29 +580591,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5856), 28, - anon_sym_LBRACK, + ACTIONS(5660), 17, + 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -550461,8 +580602,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, @@ -550470,9 +580609,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, - [44451] = 22, + [60760] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550493,26 +580630,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6483), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550522,7 +580663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4184), 9, + STATE(4413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550532,8 +580673,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 22, - anon_sym_SEMI, + ACTIONS(5660), 19, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -550543,7 +580686,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, @@ -550551,11 +580693,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44556] = 17, + [60868] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550576,15 +580714,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4776), 1, + 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(6559), 1, - anon_sym_LBRACE, - ACTIONS(6562), 1, + 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, - STATE(4698), 1, - sym_initializer_expression, - STATE(4185), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550594,26 +580762,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4786), 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(4780), 27, + ACTIONS(5660), 17, 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, @@ -550621,93 +580773,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, - [44651] = 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(4186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4031), 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(4029), 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, - [44738] = 40, + [60982] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550728,77 +580801,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6891), 1, + anon_sym_DOT_DOT, + ACTIONS(6893), 1, + anon_sym_is, + ACTIONS(6897), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(6901), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(6903), 1, anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 6, + ACTIONS(5858), 5, anon_sym_COLON, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4187), 9, + anon_sym_into, + STATE(4415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550808,7 +580880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [44879] = 14, + [61122] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550829,9 +580901,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6598), 1, - anon_sym_into, - STATE(4188), 10, + ACTIONS(6913), 1, + anon_sym_and, + STATE(4416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -550841,8 +580913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -550854,10 +580925,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 28, + ACTIONS(6067), 28, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, @@ -550874,7 +580946,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, @@ -550883,7 +580954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44968] = 40, + [61210] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -550904,87 +580975,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6491), 1, + STATE(4417), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4008), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6493), 1, anon_sym_BANG, - ACTIONS(6501), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6503), 1, - anon_sym_CARET, - ACTIONS(6505), 1, anon_sym_PIPE, - ACTIONS(6507), 1, anon_sym_AMP, - ACTIONS(6511), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6529), 1, - anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(4010), 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(6497), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6499), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 6, - 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(4189), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [45109] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [61296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551005,77 +581048,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, - anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6541), 1, - anon_sym_PIPE, - ACTIONS(6543), 1, - anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6477), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5706), 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(4190), 9, + STATE(4418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551085,108 +581058,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [45250] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4910), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6541), 1, anon_sym_PIPE, - ACTIONS(6543), 1, anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4908), 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(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4886), 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(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, - [45391] = 13, + 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, + [61382] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551207,7 +581121,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4192), 9, + ACTIONS(4271), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_or, + STATE(4419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551217,50 +581138,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4056), 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(5056), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_EQ_GT, - ACTIONS(4054), 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, - [45478] = 13, + anon_sym_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, + 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, + [61470] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551281,7 +581195,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4193), 9, + 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, @@ -551291,8 +581212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3596), 12, - anon_sym_COLON, + ACTIONS(5092), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -551304,12 +581224,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3598), 29, - sym_interpolation_close_brace, + ACTIONS(5090), 23, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -551321,20 +581239,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_COLON_COLON, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45565] = 40, + [61558] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551355,77 +581269,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6503), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6755), 1, anon_sym_AMP_AMP, - ACTIONS(6523), 1, + ACTIONS(6757), 1, anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, + ACTIONS(6759), 1, anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6763), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6899), 1, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6731), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 6, + ACTIONS(5858), 5, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4194), 9, + STATE(4421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551435,7 +581348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [45706] = 40, + [61698] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551456,87 +581369,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6541), 1, anon_sym_PIPE, - ACTIONS(6543), 1, anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5716), 6, - anon_sym_SEMI, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4195), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [45847] = 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, + [61784] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551557,71 +581442,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(6835), 1, + anon_sym_QMARK, + ACTIONS(6841), 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4196), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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(5777), 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, - [45956] = 15, + 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, + [61924] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551642,11 +581542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6456), 1, - anon_sym_LT, - STATE(4393), 1, - sym_type_argument_list, - STATE(4197), 9, + STATE(4424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551656,7 +581552,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 10, + ACTIONS(3671), 11, + anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, @@ -551667,7 +581564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3602), 29, + ACTIONS(3673), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -551697,7 +581594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46047] = 35, + [62010] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551718,61 +581615,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, - anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6543), 1, - anon_sym_AMP, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6469), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6477), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(4198), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551782,18 +581654,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_SEMI, + ACTIONS(5731), 21, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, 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_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, - [46178] = 13, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [62114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551814,7 +581697,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4199), 9, + STATE(4426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551824,7 +581707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3395), 11, + ACTIONS(3654), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -551836,7 +581719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3393), 30, + ACTIONS(3656), 29, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -551854,7 +581737,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, @@ -551867,7 +581749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46265] = 40, + [62200] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551888,77 +581770,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6501), 1, + 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(6503), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6893), 1, + anon_sym_is, + ACTIONS(6897), 1, anon_sym_AMP_AMP, - ACTIONS(6523), 1, + ACTIONS(6901), 1, anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, + ACTIONS(6903), 1, anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6529), 1, - anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6869), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 6, - sym_interpolation_close_brace, + ACTIONS(5864), 5, anon_sym_COLON, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4200), 9, + STATE(4427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -551968,7 +581849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46406] = 36, + [62340] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -551989,73 +581870,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6763), 1, anon_sym_is, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6543), 1, - anon_sym_AMP, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6469), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 9, - anon_sym_SEMI, + ACTIONS(6751), 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, 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(4201), 9, + STATE(4428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552065,7 +581944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46539] = 40, + [62470] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552086,87 +581965,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6927), 1, + anon_sym_into, + STATE(4495), 1, + aux_sym__query_body_repeat2, + STATE(4429), 9, + sym_preproc_region, + sym_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(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6475), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, - anon_sym_CARET, - ACTIONS(6541), 1, anon_sym_PIPE, - ACTIONS(6543), 1, anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6473), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5660), 6, - anon_sym_SEMI, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4202), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [46680] = 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, + [62560] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552187,77 +582040,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6503), 1, - anon_sym_CARET, - ACTIONS(6505), 1, - anon_sym_PIPE, - ACTIONS(6507), 1, - anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6763), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6731), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 6, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 9, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_CARET, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4203), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552267,7 +582113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46821] = 40, + [62688] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552288,77 +582134,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6501), 1, + 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(6503), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6879), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6893), 1, + anon_sym_is, + ACTIONS(6897), 1, anon_sym_AMP_AMP, - ACTIONS(6523), 1, + ACTIONS(6901), 1, anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, + ACTIONS(6903), 1, anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6529), 1, - anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6917), 1, + anon_sym_QMARK, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6869), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 6, - sym_interpolation_close_brace, + ACTIONS(5072), 5, anon_sym_COLON, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - STATE(4204), 9, + STATE(4431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552368,7 +582213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [46962] = 22, + [62828] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552389,146 +582234,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(5904), 1, - anon_sym_ref, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6516), 1, - sym__name, - STATE(6832), 1, - sym_ref_type, - STATE(6833), 1, - sym__scoped_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3393), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(4205), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [47067] = 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(1393), 1, - anon_sym_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - STATE(4676), 1, - sym_initializer_expression, - 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, - ACTIONS(4711), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4839), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4706), 27, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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(5882), 5, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47160] = 34, + STATE(4432), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [62968] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552549,60 +582334,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6763), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(6545), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4207), 9, + STATE(4433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552612,18 +582394,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_SEMI, + ACTIONS(5660), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [47289] = 21, + [63094] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552644,68 +582427,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - STATE(3122), 1, + 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, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4692), 9, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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, - ACTIONS(4690), 23, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5864), 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, - [47392] = 29, + 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, + [63234] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552726,131 +582527,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + 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(6483), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + 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, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6471), 2, + ACTIONS(6731), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - 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(5656), 16, - anon_sym_SEMI, - anon_sym_CARET, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6751), 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, - 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, - [47511] = 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - ACTIONS(6601), 1, - anon_sym_LBRACK, - STATE(3062), 1, - sym_array_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(7035), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4210), 9, + STATE(4435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552860,30 +582606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [47626] = 22, + [63374] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -552904,90 +582627,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6519), 1, + 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, - STATE(3122), 1, + 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, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4211), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1139), 22, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, + ACTIONS(5882), 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, - [47731] = 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(4212), 9, + STATE(4436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -552997,50 +582706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3395), 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(3393), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_COLON_COLON, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [47818] = 40, + [63514] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553061,77 +582727,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6578), 1, - anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, - anon_sym_AMP_AMP, - ACTIONS(6592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, + 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, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 6, + ACTIONS(5660), 9, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_CARET, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4213), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553141,7 +582801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [47959] = 35, + [63644] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553162,61 +582822,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6507), 1, - anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6527), 1, + ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6931), 1, + anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6939), 1, + anon_sym_CARET, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4214), 9, + ACTIONS(5660), 8, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553226,18 +582897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [48090] = 36, + [63776] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553258,73 +582918,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6503), 1, - anon_sym_CARET, - ACTIONS(6507), 1, - anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6527), 1, + ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6937), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - sym_interpolation_close_brace, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 9, anon_sym_COLON, - anon_sym_COMMA, + 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(4215), 9, + STATE(4439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553334,7 +582991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48223] = 27, + [63904] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553355,45 +583012,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6483), 1, + ACTIONS(6775), 1, + anon_sym_GT_GT, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6937), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6471), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(6773), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(6929), 2, 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, - anon_sym_GT_GT, - STATE(4216), 9, + STATE(4440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553403,26 +583072,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - anon_sym_SEMI, + ACTIONS(5660), 11, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [48338] = 40, + anon_sym_into, + [64030] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553443,77 +583105,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6931), 1, + anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_is, - ACTIONS(6537), 1, - anon_sym_QMARK, - ACTIONS(6539), 1, + ACTIONS(6939), 1, anon_sym_CARET, - ACTIONS(6541), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6543), 1, - anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5754), 6, - anon_sym_SEMI, + ACTIONS(6935), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5660), 8, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4217), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553523,7 +583181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48479] = 37, + [64164] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553544,74 +583202,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6931), 1, + anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_is, - ACTIONS(6539), 1, + ACTIONS(6939), 1, anon_sym_CARET, - ACTIONS(6541), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6543), 1, - anon_sym_AMP, - STATE(2738), 1, + ACTIONS(6943), 1, + anon_sym_AMP_AMP, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 9, - anon_sym_SEMI, + ACTIONS(6935), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5660), 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4218), 9, + anon_sym_into, + STATE(4442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553621,7 +583279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48614] = 38, + [64300] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553642,75 +583300,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6479), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6931), 1, + anon_sym_AMP, + ACTIONS(6937), 1, anon_sym_is, - ACTIONS(6539), 1, + ACTIONS(6939), 1, anon_sym_CARET, - ACTIONS(6541), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6543), 1, - anon_sym_AMP, - ACTIONS(6547), 1, + ACTIONS(6943), 1, anon_sym_AMP_AMP, - STATE(2738), 1, + ACTIONS(6945), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6947), 1, + anon_sym_QMARK_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 8, - anon_sym_SEMI, + 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_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4219), 9, + anon_sym_into, + STATE(4443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553720,7 +583379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [48751] = 34, + [64440] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553741,60 +583400,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6511), 1, - anon_sym_GT_GT, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6527), 1, + ACTIONS(6835), 1, + anon_sym_QMARK, + ACTIONS(6841), 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(6529), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4220), 9, + ACTIONS(5858), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553804,18 +583479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [48880] = 33, + [64580] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553836,57 +583500,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6511), 1, - anon_sym_GT_GT, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6527), 1, + ACTIONS(6841), 1, + anon_sym_SLASH, + ACTIONS(6847), 1, + anon_sym_AMP, + ACTIONS(6851), 1, + anon_sym_GT_GT, + ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + 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(6499), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6515), 2, + ACTIONS(6853), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4221), 9, + 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(4445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -553896,20 +583574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [49007] = 40, + [64710] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -553930,77 +583595,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6475), 1, - anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6483), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6485), 1, - anon_sym_is, - ACTIONS(6539), 1, + ACTIONS(6841), 1, + anon_sym_SLASH, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6541), 1, - anon_sym_PIPE, - ACTIONS(6543), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6547), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5656), 6, - anon_sym_SEMI, + 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_or, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4222), 9, + 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, @@ -554010,7 +583670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49148] = 22, + [64842] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554031,69 +583691,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6555), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(6841), 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - 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(5684), 22, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, + ACTIONS(5664), 3, + 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_as, - anon_sym_is, - anon_sym_with, - [49253] = 29, + anon_sym_into, + STATE(4447), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [64970] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554114,49 +583785,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(6584), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - STATE(2738), 1, + ACTIONS(6863), 1, + anon_sym_as, + ACTIONS(6865), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6570), 2, + ACTIONS(6833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_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(4224), 9, + STATE(4448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554166,24 +583845,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_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, - [49372] = 26, + anon_sym_into, + [65096] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554204,73 +583878,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6841), 1, anon_sym_SLASH, - STATE(2738), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6572), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(5656), 18, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + ACTIONS(6839), 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(5660), 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_as, - anon_sym_is, - [49485] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554291,77 +583975,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6491), 1, - anon_sym_QMARK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(5664), 1, + 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_SLASH, - ACTIONS(6503), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6857), 1, anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, + ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 7, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4226), 9, + STATE(4450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554371,7 +584052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49626] = 37, + [65366] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554392,74 +584073,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(5664), 1, + 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_SLASH, - ACTIONS(6503), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6527), 1, + 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(6529), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 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(4227), 9, + STATE(4451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554469,7 +584152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [49761] = 35, + [65506] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554490,61 +584173,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6835), 1, + anon_sym_QMARK, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(6580), 1, + ACTIONS(6843), 1, + anon_sym_CARET, + ACTIONS(6845), 1, + anon_sym_PIPE, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6596), 1, + 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(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6566), 2, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4228), 9, + ACTIONS(5864), 5, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554554,18 +584252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [49892] = 38, + [65646] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554586,75 +584273,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6501), 1, + 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, anon_sym_SLASH, - ACTIONS(6503), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6521), 1, + ACTIONS(6857), 1, anon_sym_AMP_AMP, - ACTIONS(6527), 1, + ACTIONS(6859), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6861), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6863), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6865), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6833), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5072), 5, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4229), 9, + STATE(4453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554664,7 +584352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50029] = 24, + [65786] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554685,40 +584373,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4230), 9, + STATE(4454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554728,8 +584383,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 20, - anon_sym_SEMI, + ACTIONS(4012), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4014), 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, @@ -554739,17 +584413,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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [50138] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [65872] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554770,62 +584446,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_into, - STATE(4183), 1, - aux_sym__query_body_repeat2, - STATE(4231), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, 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, - anon_sym_DOT, - ACTIONS(5839), 28, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5882), 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_DASH_GT, - anon_sym_with, - [50229] = 40, + anon_sym_into, + STATE(4455), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [66012] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554846,77 +584546,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6501), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6503), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6505), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6507), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6511), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, + ACTIONS(6753), 1, anon_sym_DOT_DOT, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6527), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(6529), 1, + ACTIONS(6763), 1, anon_sym_is, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6731), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6513), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6515), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5660), 8, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4232), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -554926,7 +584622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50370] = 40, + [66146] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -554947,77 +584643,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6753), 1, + anon_sym_DOT_DOT, + ACTIONS(6755), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6763), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 6, + ACTIONS(5660), 7, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4233), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555027,7 +584720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50511] = 40, + [66282] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555048,77 +584741,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6747), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6753), 1, + anon_sym_DOT_DOT, + ACTIONS(6755), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(6757), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(6759), 1, anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6763), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(6899), 1, + anon_sym_QMARK, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 6, + ACTIONS(5899), 5, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_or, - STATE(4234), 9, + STATE(4458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555128,7 +584820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50652] = 27, + [66422] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555149,41 +584841,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - ACTIONS(6603), 1, - anon_sym_LBRACK, - STATE(3558), 1, + ACTIONS(5603), 1, + anon_sym_ref, + STATE(2175), 1, sym__reserved_identifier, - STATE(3999), 1, + STATE(2181), 1, sym_generic_name, - STATE(4014), 1, + STATE(2317), 1, + sym_ref_type, + STATE(2340), 1, + sym__scoped_base_type, + STATE(4373), 1, sym_identifier, - STATE(4206), 1, - sym_array_type, - STATE(6483), 1, + STATE(5302), 1, sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(6996), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4235), 9, + ACTIONS(3445), 7, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(4459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555193,7 +584879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -555216,7 +584902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50767] = 36, + [66526] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555237,73 +584923,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6596), 1, + 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, - STATE(2738), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, + ACTIONS(5745), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4236), 9, + anon_sym_into, + STATE(4460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555313,7 +585002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [50900] = 40, + [66666] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555334,77 +585023,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, - anon_sym_QMARK, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + 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(6578), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6943), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(6945), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(6947), 1, anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(6949), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 6, + ACTIONS(5767), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4237), 9, + anon_sym_into, + STATE(4461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555414,7 +585102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [51041] = 27, + [66806] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555435,95 +585123,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - ACTIONS(6605), 1, - anon_sym_LBRACK, - STATE(3118), 1, - sym_array_type, - STATE(3558), 1, + ACTIONS(6073), 1, + anon_sym_ref, + STATE(2175), 1, sym__reserved_identifier, - STATE(3999), 1, + STATE(2181), 1, sym_generic_name, - STATE(4014), 1, + STATE(2317), 1, + sym_ref_type, + STATE(2340), 1, + sym__scoped_base_type, + STATE(4373), 1, sym_identifier, - STATE(6483), 1, + STATE(5302), 1, sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(7008), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - 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(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [51156] = 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(4239), 9, + 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, + STATE(4462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555533,36 +585161,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3990), 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(3988), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -555575,8 +585184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51243] = 21, + [66910] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555597,24 +585205,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - STATE(3122), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6777), 1, + anon_sym_DOT_DOT, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4725), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -555624,7 +585238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4240), 9, + STATE(4463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555634,10 +585248,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4723), 23, - sym_interpolation_close_brace, + ACTIONS(5660), 19, anon_sym_COLON, - anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -555647,8 +585259,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, @@ -555657,8 +585268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [51346] = 40, + [67018] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555679,87 +585289,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6568), 1, + 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, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6574), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6578), 1, anon_sym_PIPE, - ACTIONS(6580), 1, anon_sym_AMP, - ACTIONS(6584), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, - anon_sym_AMP_AMP, - ACTIONS(6592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(3710), 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(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6572), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - 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, - [51487] = 22, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555780,36 +585362,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6483), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6951), 1, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4242), 9, + STATE(4465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -555819,8 +585376,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 22, - anon_sym_SEMI, + 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_DOT, + ACTIONS(4018), 28, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -555831,18 +585405,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, - [51592] = 34, + [67194] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -555863,139 +585437,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6584), 1, + ACTIONS(6775), 1, anon_sym_GT_GT, - ACTIONS(6596), 1, + 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, - STATE(2738), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4243), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 10, + ACTIONS(5858), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [51721] = 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(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6499), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4244), 9, + anon_sym_into, + STATE(4466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556005,26 +585516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - [51834] = 15, + [67334] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556045,11 +585537,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(4582), 1, - sym_initializer_expression, - STATE(4245), 9, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4072), 1, + anon_sym_STAR, + STATE(4467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556059,7 +585551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4721), 11, + ACTIONS(4016), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -556071,15 +585563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4719), 28, + ACTIONS(4018), 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, @@ -556100,7 +585591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [51925] = 27, + [67424] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556121,137 +585612,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2671), 1, + aux_sym_preproc_else_token1, + ACTIONS(2673), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6574), 1, - anon_sym_SLASH, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6572), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, + 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, - STATE(4246), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 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, + 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, - [52040] = 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(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6511), 1, - anon_sym_GT_GT, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, + ACTIONS(6954), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6497), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6509), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4247), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556261,24 +585694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [52159] = 15, + [67570] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556299,11 +585715,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_into, - STATE(4188), 1, - aux_sym__query_body_repeat2, - STATE(4248), 9, + ACTIONS(4066), 1, + anon_sym_LBRACK, + ACTIONS(4072), 1, + anon_sym_STAR, + ACTIONS(6951), 1, + anon_sym_QMARK, + STATE(4469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556313,10 +585731,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(4016), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -556325,16 +585742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 28, - anon_sym_LBRACK, + ACTIONS(4018), 27, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -556350,11 +585765,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, - [52250] = 33, + [67662] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556375,57 +585791,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6777), 1, anon_sym_DOT_DOT, - ACTIONS(6574), 1, - anon_sym_SLASH, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6582), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6588), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4249), 9, + anon_sym_GT_GT, + STATE(4470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556435,20 +585830,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, + ACTIONS(1221), 21, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [52377] = 16, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [67766] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556469,13 +585873,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, + 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(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + 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, + ACTIONS(6851), 1, + anon_sym_GT_GT, + 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, - STATE(4250), 9, + anon_sym_PERCENT, + ACTIONS(6849), 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(4471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556485,47 +585925,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3950), 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, + 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, - ACTIONS(3948), 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, - [52470] = 22, + anon_sym_as, + anon_sym_is, + [67884] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556546,36 +585962,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6519), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + ACTIONS(6841), 1, + anon_sym_SLASH, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6839), 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_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4251), 9, + STATE(4472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556585,12 +586009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 22, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 17, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -556598,7 +586017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -556607,8 +586027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [52575] = 15, + [67996] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556629,41 +586048,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_into, - STATE(4248), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(5835), 11, + 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, + 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5833), 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(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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -556673,18 +586101,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, - [52666] = 37, + [68104] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556705,84 +586132,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, + ACTIONS(6819), 1, anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6578), 1, - anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + 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, + sym_preproc_region, + sym_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, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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(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, - [52801] = 27, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [68218] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556803,41 +586219,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - ACTIONS(6613), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - STATE(3522), 1, - sym_array_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(7049), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6957), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(4254), 9, + 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(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, + ACTIONS(6949), 1, + anon_sym_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(5777), 5, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556847,30 +586298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [52916] = 38, + [68358] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556891,75 +586319,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + 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(6578), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6943), 1, anon_sym_AMP_AMP, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(6945), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6947), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6949), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, + ACTIONS(5864), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4255), 9, + anon_sym_into, + STATE(4476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -556969,7 +586398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53053] = 15, + [68498] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -556990,11 +586419,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, + 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(6611), 1, + 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(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, + ACTIONS(6949), 1, + anon_sym_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, - STATE(4256), 9, + 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(5072), 5, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557004,48 +586498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3950), 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(3948), 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, - [53144] = 27, + [68638] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557066,45 +586519,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6531), 1, - anon_sym_with, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6499), 2, + ACTIONS(4072), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(6905), 1, + anon_sym_DOT, + ACTIONS(6951), 1, + anon_sym_QMARK, + ACTIONS(4016), 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, - STATE(4257), 9, + STATE(4478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557114,10 +586547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, + ACTIONS(4018), 27, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -557125,6 +586563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -557133,7 +586573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [53259] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [68732] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557154,71 +586596,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6519), 1, - anon_sym_DOT_DOT, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - STATE(3122), 1, + 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, + ACTIONS(6949), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4258), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 20, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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(5882), 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, - [53368] = 40, + 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, + [68872] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557239,77 +586696,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6555), 1, - anon_sym_DOT_DOT, - ACTIONS(6574), 1, + ACTIONS(6771), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + 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(6578), 1, + ACTIONS(6941), 1, anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(6943), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(6945), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(6947), 1, anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(6949), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(6767), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6769), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(6773), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(6929), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6933), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(6935), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5899), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4259), 9, + anon_sym_into, + STATE(4480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557319,7 +586775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [53509] = 14, + [69012] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557340,9 +586796,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_and, - STATE(4260), 9, + 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(6875), 1, + anon_sym_SLASH, + ACTIONS(6885), 1, + anon_sym_GT_GT, + 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(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(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557352,48 +586848,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 28, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5660), 15, + 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, - anon_sym_LT_LT, - anon_sym_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, - [53597] = 13, + [69130] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557414,7 +586885,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4261), 9, + 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(6875), 1, + anon_sym_SLASH, + 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(6873), 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(4482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557424,29 +586932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3936), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3938), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5660), 17, anon_sym_COLON, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -557454,19 +586944,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_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, - [53683] = 13, + [69242] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557487,37 +586971,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4262), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3932), 11, + 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(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(1223), 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(3934), 29, + 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_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, @@ -557528,18 +587024,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, - [53769] = 14, + [69346] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557560,38 +587053,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6617), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - 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(3932), 10, + 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(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(5664), 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(3934), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4484), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 19, 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, @@ -557601,19 +587110,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_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, - [53857] = 16, + [69454] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557634,23 +587137,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, + 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(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, + 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(6869), 2, anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 9, - anon_sym_SEMI, + 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(5660), 9, + 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, - STATE(4264), 9, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557660,36 +587211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 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, - [53949] = 40, + [69584] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557710,76 +587232,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6875), 1, anon_sym_SLASH, - ACTIONS(6633), 1, + ACTIONS(6877), 1, anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(6881), 1, anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(6885), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(6891), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(6893), 1, anon_sym_is, - STATE(2537), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(6873), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(6883), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(6887), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(6889), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5660), 8, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4265), 9, + STATE(4486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557789,7 +587307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54089] = 13, + [69716] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557810,59 +587328,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4266), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3948), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(6875), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6885), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3950), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 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, - [54175] = 13, + STATE(4487), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [69844] = 44, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557883,59 +587422,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4267), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3926), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6761), 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, 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, - anon_sym_DOT, - ACTIONS(3928), 29, + 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, + ACTIONS(6994), 1, sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + STATE(3173), 1, + sym_bracketed_argument_list, + STATE(4583), 1, + sym_argument_list, + STATE(6867), 1, + sym_interpolation_alignment_clause, + STATE(7345), 1, + sym_interpolation_format_clause, + ACTIONS(6627), 2, 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, - anon_sym_CARET, + 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, - anon_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, - [54261] = 15, + STATE(4488), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [69992] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -557956,11 +587526,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6615), 1, - anon_sym_and, - ACTIONS(6659), 1, - anon_sym_or, - STATE(4268), 9, + 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(6875), 1, + anon_sym_SLASH, + 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(6871), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6873), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -557970,30 +587574,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 27, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5660), 17, + 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, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -558001,103 +587586,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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [54351] = 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(5767), 1, - sym_nullable_type, - STATE(5770), 1, - sym_array_type, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(6957), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4269), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [54465] = 22, + anon_sym_as, + anon_sym_is, + [70106] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558118,36 +587613,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6661), 1, + 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, - STATE(2537), 1, + ACTIONS(6893), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6869), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6871), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + 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, - anon_sym_GT_GT, - STATE(4270), 9, + STATE(4490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558157,29 +587673,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, + ACTIONS(5660), 11, anon_sym_COLON, - 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, anon_sym_EQ_EQ, 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, - anon_sym_with, - [54569] = 43, + [70232] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558200,79 +587706,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4726), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6996), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6699), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7193), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4271), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558282,7 +587727,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54715] = 15, + aux_sym__class_declaration_initializer_repeat1, + 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_join, + anon_sym_on, + 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, + [70326] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558303,11 +587783,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6701), 1, + ACTIONS(6927), 1, anon_sym_into, - STATE(4276), 1, + STATE(4493), 1, aux_sym__query_body_repeat2, - STATE(4272), 9, + STATE(4492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558317,7 +587797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(6001), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558329,7 +587809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 27, + ACTIONS(5999), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -558357,7 +587837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [54805] = 40, + [70416] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558378,76 +587858,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_QMARK, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6723), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6725), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5610), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6927), 1, anon_sym_into, - STATE(4273), 9, + STATE(4495), 1, + aux_sym__query_body_repeat2, + STATE(4493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558457,110 +587872,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [54945] = 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(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6671), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6737), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 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(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7183), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - 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, - [55091] = 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [70506] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558581,86 +587933,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, + ACTIONS(6927), 1, + anon_sym_into, + STATE(4429), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6747), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6749), 1, - anon_sym_CARET, - ACTIONS(6751), 1, anon_sym_PIPE, - ACTIONS(6753), 1, anon_sym_AMP, - ACTIONS(6757), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(6003), 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(6739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6743), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6745), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_COLON, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4275), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [55231] = 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [70596] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558681,11 +588008,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6701), 1, + ACTIONS(7002), 1, anon_sym_into, - STATE(4298), 1, - aux_sym__query_body_repeat2, - STATE(4276), 9, + STATE(4495), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558695,7 +588020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + aux_sym__query_body_repeat2, + ACTIONS(5951), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -558707,7 +588033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 27, + ACTIONS(5949), 27, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -558735,7 +588061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [55321] = 40, + [70684] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558756,76 +588082,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6747), 1, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(6751), 1, - anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(6743), 1, anon_sym_AMP, - ACTIONS(6757), 1, + 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_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, anon_sym_is, - STATE(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(6731), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 5, + ACTIONS(5660), 8, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, + anon_sym_COMMA, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4277), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558835,7 +588157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [55461] = 29, + [70816] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558856,49 +588178,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4278), 9, + anon_sym_GT_GT, + STATE(4497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558908,23 +588226,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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_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, - [55579] = 22, + [70929] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -558945,35 +588264,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(6080), 1, - anon_sym_ref, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2264), 1, - sym_ref_type, - STATE(2265), 1, - sym__scoped_base_type, - STATE(4264), 1, - sym_identifier, - STATE(5124), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3393), 7, + 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, - anon_sym_RPAREN, - anon_sym_LT, + ACTIONS(5664), 1, anon_sym_QMARK, + 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, + 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_DOT, - anon_sym_COLON_COLON, - STATE(4279), 9, + 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(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(4498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -558983,30 +588339,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, - [55683] = 40, + [71062] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559027,76 +588360,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(6633), 1, + ACTIONS(7021), 1, anon_sym_CARET, - ACTIONS(6635), 1, + ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(7025), 1, anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(7039), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7041), 1, + anon_sym_AMP_AMP, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4280), 9, + ACTIONS(5660), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559106,7 +588436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [55823] = 13, + [71197] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559127,59 +588457,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(3940), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(3942), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + 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, + 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, - anon_sym_CARET, + 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, - anon_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, - [55909] = 40, + ACTIONS(5660), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4500), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [71336] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559200,76 +588556,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6747), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7021), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7023), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7025), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + 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(6765), 1, + ACTIONS(7043), 1, anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, + ACTIONS(7045), 1, anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7047), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 5, + ACTIONS(5072), 4, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4282), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559279,7 +588634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56049] = 24, + [71475] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559300,40 +588655,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6661), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4283), 9, + 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(5882), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559343,27 +588733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, - [56157] = 40, + [71614] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559384,76 +588754,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, + ACTIONS(7051), 1, anon_sym_QMARK, - ACTIONS(6711), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(6713), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(6715), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(6717), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(6729), 1, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(6731), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6703), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6707), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6709), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 5, + ACTIONS(5072), 4, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4284), 9, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559463,7 +588832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56297] = 40, + [71753] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559484,76 +588853,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6747), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, + ACTIONS(7111), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 5, - anon_sym_COLON, - anon_sym_when, + 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(4285), 9, + STATE(4504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559563,7 +588929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56437] = 40, + [71888] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559584,86 +588950,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, + 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, + ACTIONS(5462), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6747), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6749), 1, - anon_sym_CARET, - ACTIONS(6751), 1, anon_sym_PIPE, - ACTIONS(6753), 1, anon_sym_AMP, - ACTIONS(6757), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5460), 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(6739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6743), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6745), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_COLON, - 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(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, - [56577] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [71973] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559684,7 +589022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4287), 9, + STATE(4506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559694,7 +589032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4047), 11, + ACTIONS(5466), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559706,13 +589044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4049), 29, + ACTIONS(5464), 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, @@ -559736,7 +589073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [56663] = 40, + [72058] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559757,76 +589094,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6747), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, + ACTIONS(7111), 1, + anon_sym_is, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 5, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5660), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4288), 9, + STATE(4507), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [72197] = 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(4508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559836,7 +589203,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56803] = 40, + 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(5377), 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, + [72282] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559857,76 +589265,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, - anon_sym_QMARK, - ACTIONS(6747), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, + ACTIONS(7111), 1, + anon_sym_is, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7117), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 5, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5864), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4289), 9, + STATE(4509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559936,7 +589343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [56943] = 15, + [72421] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -559957,11 +589364,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_into, - STATE(4299), 1, - aux_sym__query_body_repeat2, - STATE(4290), 9, + STATE(4510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -559971,7 +589374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(5344), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -559983,7 +589386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 27, + ACTIONS(5342), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -560007,11 +589410,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, - [57033] = 27, + [72506] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560032,45 +589436,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6631), 1, - anon_sym_SLASH, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4291), 9, + STATE(4511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560080,7 +589446,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + 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, @@ -560088,8 +589475,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_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -560098,7 +589485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [57147] = 27, + anon_sym_DASH_GT, + anon_sym_with, + [72591] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560119,45 +589508,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6775), 1, - anon_sym_SLASH, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4292), 9, + STATE(4512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560167,10 +589518,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + ACTIONS(5348), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -560178,14 +589547,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, - [57261] = 24, + anon_sym_DASH_GT, + anon_sym_with, + [72676] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560206,40 +589580,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4293), 9, + STATE(4513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560249,7 +589590,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, + 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, + 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, @@ -560259,8 +589619,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_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -560269,7 +589629,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [57369] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [72761] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560290,72 +589652,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6647), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6629), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4294), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 17, - anon_sym_CARET, + 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(5072), 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, - [57481] = 29, + STATE(4514), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [72900] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560376,49 +589751,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6631), 1, - anon_sym_SLASH, - ACTIONS(6641), 1, - anon_sym_GT_GT, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6639), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4295), 9, + STATE(4515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560428,14 +589761,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, + 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_EQ_GT, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -560444,7 +589800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [57599] = 13, + anon_sym_DASH_GT, + anon_sym_with, + [72985] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560465,7 +589823,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4296), 9, + STATE(4516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560475,7 +589833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3922), 11, + ACTIONS(5389), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560487,13 +589845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3924), 29, + ACTIONS(5387), 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, @@ -560517,7 +589874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [57685] = 40, + [73070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560538,86 +589895,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6741), 1, + STATE(4517), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5409), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6747), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6749), 1, - anon_sym_CARET, - ACTIONS(6751), 1, anon_sym_PIPE, - ACTIONS(6753), 1, anon_sym_AMP, - ACTIONS(6757), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6765), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, - ACTIONS(6739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6743), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6745), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 5, - anon_sym_COLON, - 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(4297), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [57825] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [73155] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560638,9 +589967,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_into, - STATE(4298), 10, + STATE(4518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560650,8 +589977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(5417), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560663,7 +589989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 27, + ACTIONS(5415), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -560687,11 +590013,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, - [57913] = 15, + [73240] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560712,11 +590039,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6701), 1, - anon_sym_into, - STATE(4298), 1, - aux_sym__query_body_repeat2, - STATE(4299), 9, + STATE(4519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560726,7 +590049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, + ACTIONS(5425), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560738,7 +590061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5856), 27, + ACTIONS(5423), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -560762,11 +590085,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, - [58003] = 24, + [73325] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560787,40 +590111,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6781), 1, + ACTIONS(7123), 1, + anon_sym_SLASH, + ACTIONS(7127), 1, + anon_sym_GT_GT, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + 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(5664), 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(4300), 9, + STATE(4520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560830,15 +590163,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + 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, @@ -560848,9 +590174,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_on, anon_sym_as, anon_sym_is, - [58111] = 26, + [73442] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560871,35 +590199,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(6781), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6773), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -560908,7 +590236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4301), 9, + STATE(4521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560918,10 +590246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -560934,9 +590259,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_on, anon_sym_as, anon_sym_is, - [58223] = 17, + [73553] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -560957,24 +590284,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(3950), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(4302), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -560984,123 +590332,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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(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_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - 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, - [58317] = 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(2917), 1, - sym__identifier_token, - ACTIONS(2929), 1, - anon_sym_LPAREN, - ACTIONS(3402), 1, - anon_sym_delegate, - ACTIONS(6535), 1, - sym_predefined_type, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4014), 1, - sym_identifier, - STATE(5858), 1, - sym_nullable_type, - STATE(5863), 1, - sym_array_type, - STATE(6483), 1, - sym__name, - STATE(6749), 1, - sym_tuple_type, - STATE(6947), 1, - sym__array_base_type, - STATE(7350), 1, - sym__pointer_base_type, - STATE(6957), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - 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, - ACTIONS(2921), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - 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, - [58431] = 22, + anon_sym_as, + anon_sym_is, + [73666] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561121,26 +590370,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6647), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561150,7 +590399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4304), 9, + STATE(4523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561160,7 +590409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 21, + ACTIONS(5731), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -561170,19 +590419,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_on, anon_sym_as, anon_sym_is, anon_sym_with, - [58535] = 22, + [73769] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561203,35 +590451,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(5451), 1, - anon_sym_ref, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2264), 1, - sym_ref_type, - STATE(2265), 1, - sym__scoped_base_type, - STATE(4264), 1, - sym_identifier, - STATE(5124), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3393), 7, - anon_sym_LBRACK, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - anon_sym_LT, + 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(7091), 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, + 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_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_DOT, - anon_sym_COLON_COLON, - STATE(4305), 9, + 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(5882), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561241,30 +590529,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, - [58639] = 15, + [73908] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561285,11 +590550,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6615), 1, + ACTIONS(7131), 1, anon_sym_and, - ACTIONS(6659), 1, - anon_sym_or, - STATE(4306), 9, + STATE(4525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561299,7 +590562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561311,14 +590574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5296), 27, - anon_sym_SEMI, + ACTIONS(6067), 27, + 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_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -561332,14 +590593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [58729] = 40, + [73995] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561360,76 +590623,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6775), 1, - anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6790), 1, + ACTIONS(7051), 1, anon_sym_QMARK, - ACTIONS(6792), 1, + ACTIONS(7057), 1, + anon_sym_SLASH, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(6794), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(6796), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(6802), 1, + ACTIONS(7067), 1, + anon_sym_GT_GT, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(6804), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7083), 1, anon_sym_is, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 5, - sym_interpolation_close_brace, + ACTIONS(5882), 4, anon_sym_COLON, - anon_sym_COMMA, + anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4307), 9, + STATE(4526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561439,7 +590701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [58869] = 43, + [74134] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561460,79 +590722,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(7051), 1, anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(6673), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(6675), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(6691), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(7083), 1, anon_sym_is, - ACTIONS(6812), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7508), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4308), 9, + ACTIONS(5899), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561542,7 +590800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59015] = 15, + [74273] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561563,11 +590821,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6814), 1, + ACTIONS(7133), 1, anon_sym_and, - ACTIONS(6816), 1, - anon_sym_or, - STATE(4309), 9, + STATE(4528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561577,7 +590833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561589,13 +590845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 27, + ACTIONS(6067), 27, + anon_sym_SEMI, 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, @@ -561609,15 +590862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59105] = 22, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [74360] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561638,36 +590894,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, + STATE(4529), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, - STATE(4310), 9, + anon_sym_DOT, + ACTIONS(5054), 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, + [74445] = 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(4530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561677,10 +590976,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, + ACTIONS(4979), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4977), 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, @@ -561691,15 +591006,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, - [59209] = 13, + [74530] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561720,7 +591038,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4311), 9, + ACTIONS(7135), 1, + anon_sym_LPAREN, + STATE(4531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561730,7 +591050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3944), 11, + ACTIONS(1979), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -561742,13 +591062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3946), 29, + ACTIONS(1981), 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, @@ -561772,7 +591090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59295] = 43, + [74617] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561793,79 +591111,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6818), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7526), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4312), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561875,7 +591163,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [59441] = 13, + 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, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [74734] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561896,7 +591199,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4313), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -561906,29 +591246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4054), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4056), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -561936,8 +591254,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, @@ -561946,9 +591263,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, - [59527] = 13, + [74845] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -561969,39 +591284,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4314), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3631), 11, - anon_sym_LT, - anon_sym_GT, - anon_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(4075), 1, anon_sym_DOT, - ACTIONS(3642), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + 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(7087), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7089), 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(4534), 9, + sym_preproc_region, + sym_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_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -562009,8 +591340,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, @@ -562019,9 +591349,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, - [59613] = 15, + [74958] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562042,11 +591370,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3992), 1, + 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(6820), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + 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(5733), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - STATE(4315), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562056,25 +591409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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(3950), 28, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5731), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -562084,8 +591419,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, @@ -562094,9 +591429,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, - [59703] = 15, + [75061] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562117,11 +591451,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - STATE(4316), 9, + STATE(4536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562131,7 +591461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 11, + ACTIONS(5070), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562143,14 +591473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3950), 27, + ACTIONS(5068), 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, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -562171,7 +591502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59793] = 16, + [75146] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562192,13 +591523,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - ACTIONS(6820), 1, - anon_sym_QMARK, - STATE(4317), 9, + STATE(4537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562208,9 +591533,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 10, + ACTIONS(4983), 11, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -562219,14 +591545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3950), 27, + ACTIONS(4981), 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, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -562247,7 +591574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [59885] = 16, + [75231] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562268,62 +591595,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4740), 1, - anon_sym_LT, - ACTIONS(6823), 1, - anon_sym_COLON_COLON, - STATE(2946), 1, - sym_type_argument_list, - STATE(4318), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3600), 11, - anon_sym_COLON, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(3602), 26, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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, - anon_sym_CARET, + 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, - 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, - [59977] = 40, + ACTIONS(5072), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4538), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [75370] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562344,76 +591694,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6779), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6790), 1, - anon_sym_QMARK, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(3122), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 5, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 8, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4319), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562423,7 +591766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [60117] = 40, + [75497] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562444,76 +591787,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6790), 1, - anon_sym_QMARK, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6788), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(6798), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4886), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4320), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562523,7 +591835,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [60257] = 13, + ACTIONS(5660), 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, + [75610] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562544,7 +591873,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4321), 9, + STATE(4541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562554,7 +591883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4033), 11, + ACTIONS(4862), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562566,13 +591895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4035), 29, + ACTIONS(4860), 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, @@ -562596,7 +591924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [60343] = 40, + [75695] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562617,86 +591945,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + 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(4967), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6775), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6790), 1, - anon_sym_QMARK, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, anon_sym_PIPE, - ACTIONS(6796), 1, anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + 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, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4322), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [60483] = 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, + [75780] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562717,7 +592017,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4323), 9, + STATE(4543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562727,7 +592027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4755), 11, + ACTIONS(5092), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562739,13 +592039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4753), 29, + ACTIONS(5090), 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, @@ -562769,7 +592068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [60569] = 40, + [75865] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562790,86 +592089,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6625), 1, + ACTIONS(4271), 6, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4544), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5394), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6631), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, anon_sym_PIPE, - ACTIONS(6637), 1, anon_sym_AMP, - ACTIONS(6641), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5391), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - 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, - [60709] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562890,7 +592162,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4325), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562900,7 +592179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3952), 11, + ACTIONS(5400), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562912,13 +592191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3954), 29, - sym_interpolation_close_brace, + ACTIONS(5397), 22, 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, @@ -562932,17 +592207,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, - [60795] = 14, + [76039] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -562963,9 +592235,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6825), 1, - aux_sym_raw_string_literal_token1, - STATE(4326), 9, + STATE(4546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -562975,7 +592245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4749), 11, + ACTIONS(5194), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -562987,7 +592257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4747), 28, + ACTIONS(5192), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -563016,7 +592286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [60883] = 40, + [76124] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563037,76 +592307,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6775), 1, - anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6790), 1, - anon_sym_QMARK, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4327), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563116,7 +592349,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61023] = 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, + [76237] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563137,7 +592393,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4328), 9, + STATE(4548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563147,7 +592403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3861), 11, + ACTIONS(5096), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563159,13 +592415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3863), 29, + ACTIONS(5094), 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, @@ -563189,7 +592444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61109] = 35, + [76322] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563210,104 +592465,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_SLASH, - ACTIONS(6753), 1, - anon_sym_AMP, - ACTIONS(6757), 1, - anon_sym_GT_GT, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6739), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6761), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 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(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, - [61239] = 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(3617), 1, - anon_sym_EQ_GT, - STATE(4330), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563317,26 +592504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5286), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3743), 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(5731), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -563347,18 +592515,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, - [61327] = 13, + [76425] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563379,7 +592546,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4331), 9, + STATE(4550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563389,7 +592556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3610), 11, + ACTIONS(4991), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563401,13 +592568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3612), 29, + ACTIONS(4989), 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, @@ -563431,7 +592597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61413] = 36, + [76510] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563452,72 +592618,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6749), 1, - anon_sym_CARET, - ACTIONS(6753), 1, - anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6769), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6739), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4332), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563527,7 +592678,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [61545] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563548,7 +592710,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4333), 9, + STATE(4552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563558,7 +592720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3905), 11, + ACTIONS(4999), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -563570,13 +592732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3907), 29, + ACTIONS(4997), 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, @@ -563600,7 +592761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [61631] = 34, + [76720] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563621,80 +592782,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + 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, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6757), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(4961), 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(6739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6743), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6745), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 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(4334), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [61759] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [76805] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563715,57 +592854,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6661), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_SLASH, - ACTIONS(6757), 1, - anon_sym_GT_GT, - ACTIONS(6769), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6755), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6761), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4335), 9, + anon_sym_GT_GT, + STATE(4554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563775,19 +592893,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, - anon_sym_COLON, + 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_when, - anon_sym_and, - anon_sym_or, + 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, - [61885] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [76908] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563808,76 +592935,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6775), 1, - anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6790), 1, - anon_sym_QMARK, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5766), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(4336), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563887,7 +592971,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62025] = 37, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -563908,73 +593015,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6769), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, + 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, - anon_sym_into, - STATE(4337), 9, + STATE(4556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -563984,7 +593090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62159] = 15, + [77142] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564005,11 +593111,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, + 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(6813), 1, + anon_sym_as, + 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(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, - STATE(2114), 1, - sym_type_argument_list, - STATE(4338), 9, + 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), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564019,47 +593187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3602), 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(3600), 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, - [62249] = 13, + [77277] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564080,7 +593208,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4339), 9, + 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(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(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564090,49 +593260,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4766), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4764), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 14, + 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_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, - [62335] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [77394] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564153,7 +593296,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4340), 9, + ACTIONS(7133), 1, + anon_sym_and, + ACTIONS(7191), 1, + anon_sym_or, + STATE(4559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564163,7 +593310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3653), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -564175,13 +593322,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3660), 29, - sym_interpolation_close_brace, + ACTIONS(6205), 26, + anon_sym_SEMI, 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, @@ -564195,17 +593339,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, - [62421] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [77483] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564226,11 +593370,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_and, - ACTIONS(6816), 1, - anon_sym_or, - STATE(4341), 9, + 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(7181), 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(4560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564240,29 +593417,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 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(5660), 16, + anon_sym_SEMI, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -564270,17 +593426,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_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, - [62511] = 13, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [77594] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564301,37 +593455,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4005), 11, + 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(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(5664), 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(4007), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -564341,19 +593509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [62597] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [77701] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564374,76 +593538,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4343), 9, + ACTIONS(5660), 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(4562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564453,7 +593611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62737] = 40, + [77830] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564474,76 +593632,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, + anon_sym_CARET, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4344), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564553,7 +593706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [62877] = 40, + [77961] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564574,76 +593727,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4345), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 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(4564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564653,7 +593799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63017] = 43, + [78088] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564674,79 +593820,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6827), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(7478), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4346), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564756,7 +593868,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63163] = 40, + ACTIONS(5660), 16, + 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_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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564777,76 +593906,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6705), 1, - anon_sym_QMARK, - ACTIONS(6711), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6709), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6725), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4347), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564856,7 +593966,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63303] = 40, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564877,76 +593998,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6631), 1, - anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, - anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6627), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6639), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4348), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -564956,7 +594037,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63443] = 43, + ACTIONS(5731), 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, + [78429] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -564977,79 +594079,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6829), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, + anon_sym_CARET, + ACTIONS(7203), 1, + anon_sym_PIPE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7158), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4349), 9, + 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(4568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565059,7 +594154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63589] = 38, + [78562] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565080,74 +594175,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, + 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(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5660), 6, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4350), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565157,7 +594251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63725] = 37, + [78697] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565178,73 +594272,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + 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, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4351), 9, + ACTIONS(5660), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565254,7 +594350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [63859] = 33, + [78836] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565275,57 +594371,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6641), 1, - anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, + 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(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6645), 2, + ACTIONS(7225), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4352), 9, + ACTIONS(5864), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_into, + STATE(4571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565335,19 +594449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [63985] = 22, + [78975] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565368,36 +594470,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6727), 1, + 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(2358), 1, + 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(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4353), 9, + 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(5072), 4, + anon_sym_SEMI, + 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, @@ -565407,29 +594548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_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, - [64089] = 26, + [79114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565450,39 +594569,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3334), 1, - sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3823), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4354), 9, + STATE(4573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565492,61 +594579,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [64201] = 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(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - ACTIONS(6617), 1, - anon_sym_DOT, - ACTIONS(6820), 1, - anon_sym_QMARK, - ACTIONS(3948), 9, + ACTIONS(5018), 11, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -565554,24 +594590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4355), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3950), 27, + anon_sym_DOT, + ACTIONS(5016), 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, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -565592,7 +594620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [64295] = 27, + [79199] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565613,45 +594641,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_SLASH, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6743), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4356), 9, + STATE(4574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565661,94 +594651,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - 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_into, - anon_sym_as, - anon_sym_is, - [64409] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, - anon_sym_SLASH, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6745), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + 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, - STATE(4357), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 17, + 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, @@ -565756,7 +594680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -565765,7 +594690,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_into, anon_sym_as, anon_sym_is, - [64521] = 43, + anon_sym_DASH_GT, + anon_sym_with, + [79284] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565786,79 +594713,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2601), 1, - aux_sym_preproc_else_token1, - ACTIONS(2603), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, + 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(6691), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6837), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(7305), 2, - sym_preproc_else_in_expression, - sym_preproc_elif_in_expression, - STATE(4358), 9, + ACTIONS(5882), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -565868,7 +594791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64667] = 34, + [79423] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565889,80 +594812,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + STATE(4576), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5124), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6631), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6641), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5122), 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(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_CARET, - 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(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, - [64795] = 44, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [79508] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -565983,80 +594884,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6808), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6839), 1, - anon_sym_COLON, - ACTIONS(6841), 1, - anon_sym_COMMA, - ACTIONS(6845), 1, - anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6853), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6855), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6871), 1, + ACTIONS(7111), 1, + anon_sym_is, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, - anon_sym_is, - ACTIONS(6877), 1, - sym_interpolation_close_brace, - STATE(3122), 1, + ACTIONS(7117), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - STATE(6736), 1, - sym_interpolation_alignment_clause, - STATE(7258), 1, - sym_interpolation_format_clause, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4360), 9, + ACTIONS(5745), 4, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566066,7 +594962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [64943] = 36, + [79647] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566087,82 +594983,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + 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, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6631), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6637), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6641), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(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, - [65075] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [79732] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566183,36 +595055,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6781), 1, + 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, - STATE(3122), 1, + 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, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4362), 9, + 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(5072), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_into, + STATE(4579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566222,29 +595133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [65179] = 29, + [79871] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566265,49 +595154,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6757), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - STATE(2537), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6743), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4363), 9, + STATE(4580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566317,23 +595206,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_COLON, + ACTIONS(5660), 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_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, - [65297] = 35, + [79988] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566354,71 +595242,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6631), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4364), 9, + ACTIONS(5899), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566428,7 +595320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [65427] = 14, + [80127] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566449,9 +595341,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6814), 1, - anon_sym_and, - STATE(4365), 9, + STATE(4582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566461,7 +595351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(5214), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -566473,13 +595363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 28, + ACTIONS(5212), 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, @@ -566493,6 +595382,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, @@ -566502,7 +595392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [65515] = 40, + [80212] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566523,86 +595413,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, + 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(6711), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, anon_sym_PIPE, - ACTIONS(6717), 1, anon_sym_AMP, - ACTIONS(6721), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(5134), 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(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4366), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [65655] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [80297] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566623,86 +595485,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, + 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(6711), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, anon_sym_PIPE, - ACTIONS(6717), 1, anon_sym_AMP, - ACTIONS(6721), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(5138), 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(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4367), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [65795] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [80382] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566723,26 +595557,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6727), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -566752,7 +595586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4368), 9, + STATE(4585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566762,9 +595596,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 21, - anon_sym_COLON, + ACTIONS(1221), 20, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_STAR, @@ -566780,11 +595614,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, - [65899] = 40, + [80485] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -566805,76 +595638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, - anon_sym_QMARK, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6723), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6725), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4369), 9, + STATE(4586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -566884,107 +595648,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66039] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6705), 1, + ACTIONS(4951), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6711), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, anon_sym_PIPE, - ACTIONS(6717), 1, anon_sym_AMP, - ACTIONS(6721), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(4949), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4370), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [66179] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [80570] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567005,76 +595710,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6633), 1, - anon_sym_CARET, - ACTIONS(6635), 1, - anon_sym_PIPE, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6649), 1, - anon_sym_AMP_AMP, - ACTIONS(6651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6645), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5766), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4371), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567084,7 +595762,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66319] = 22, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567105,36 +595798,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6647), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7243), 1, + anon_sym_SLASH, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7241), 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_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4372), 9, + STATE(4588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567144,9 +595845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 21, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -567155,18 +595854,15 @@ 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_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, - [66423] = 38, + [80798] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567187,74 +595883,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6749), 1, - anon_sym_CARET, - ACTIONS(6751), 1, - anon_sym_PIPE, - ACTIONS(6753), 1, - anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, - anon_sym_AMP_AMP, - ACTIONS(6769), 1, + ACTIONS(7249), 1, + anon_sym_DOT_DOT, + ACTIONS(7253), 1, + anon_sym_AMP, + ACTIONS(7259), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_COLON, + 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, - anon_sym_into, - STATE(4373), 9, + STATE(4589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567264,7 +595956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [66559] = 13, + [80927] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567285,109 +595977,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4374), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4770), 11, - anon_sym_LT, - anon_sym_GT, - anon_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(4100), 1, anon_sym_DOT, - ACTIONS(4768), 29, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, 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, + 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, - anon_sym_and, - anon_sym_or, + 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [66645] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4375), 9, + 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(5858), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567397,29 +596055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 21, - 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_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, - [66749] = 13, + [81066] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567440,7 +596076,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4376), 9, + STATE(4591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567450,7 +596086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 11, + ACTIONS(4939), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567462,13 +596098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3602), 29, + ACTIONS(4937), 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, @@ -567492,7 +596127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66835] = 13, + [81151] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567513,7 +596148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4377), 9, + STATE(4592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567523,7 +596158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3606), 11, + ACTIONS(4947), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -567535,13 +596170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3608), 29, + ACTIONS(4945), 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, @@ -567565,7 +596199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [66921] = 40, + [81236] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567586,76 +596220,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6655), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6661), 1, - anon_sym_DOT_DOT, - ACTIONS(6747), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(6769), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4378), 9, + ACTIONS(5864), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567665,7 +596298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67061] = 40, + [81375] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567686,86 +596319,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(7261), 1, + anon_sym_into, + STATE(4599), 1, + aux_sym__query_body_repeat2, + STATE(4594), 9, + sym_preproc_region, + sym_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(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6711), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, anon_sym_PIPE, - ACTIONS(6717), 1, anon_sym_AMP, - ACTIONS(6721), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6733), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(6003), 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(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_into, - STATE(4379), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [67201] = 38, + 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, + [81464] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567786,84 +596393,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(7261), 1, + anon_sym_into, + STATE(4600), 1, + aux_sym__query_body_repeat2, + STATE(4595), 9, + sym_preproc_region, + sym_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(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6711), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, anon_sym_PIPE, - ACTIONS(6717), 1, anon_sym_AMP, - ACTIONS(6721), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6729), 1, - anon_sym_AMP_AMP, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(6003), 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(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4380), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [67337] = 37, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [81553] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567884,73 +596467,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6711), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6715), 1, - anon_sym_PIPE, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6735), 1, + ACTIONS(7253), 1, + anon_sym_AMP, + ACTIONS(7259), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(7263), 1, + anon_sym_CARET, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6709), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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(4381), 9, + STATE(4596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -567960,7 +596541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [67471] = 33, + [81684] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -567981,57 +596562,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6711), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6721), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6727), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6735), 1, + ACTIONS(7259), 1, anon_sym_is, - STATE(2358), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6709), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6725), 2, + 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(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4382), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568041,19 +596634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [67597] = 27, + [81811] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568074,45 +596655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4383), 9, + STATE(4598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568122,11 +596665,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + ACTIONS(4943), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_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_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, @@ -568134,13 +596694,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, - [67711] = 13, + anon_sym_DASH_GT, + anon_sym_with, + [81896] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568161,7 +596727,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4384), 9, + ACTIONS(7265), 1, + anon_sym_into, + STATE(4599), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568171,7 +596739,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4029), 11, + aux_sym__query_body_repeat2, + ACTIONS(5951), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -568183,13 +596752,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4031), 29, - sym_interpolation_close_brace, + ACTIONS(5949), 26, 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, @@ -568203,17 +596772,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, - [67797] = 40, + [81983] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568234,86 +596800,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(5658), 1, + ACTIONS(7261), 1, + anon_sym_into, + STATE(4599), 1, + aux_sym__query_body_repeat2, + STATE(4600), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6775), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, anon_sym_PIPE, - ACTIONS(6796), 1, anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_GT_GT, + anon_sym_DOT, + 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, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - 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, - [67937] = 38, + 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, + [82072] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568334,74 +596874,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, - anon_sym_is, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6788), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(6798), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4386), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568411,7 +596922,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68073] = 37, + 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, + [82185] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568432,73 +596960,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6781), 1, - anon_sym_DOT_DOT, - ACTIONS(6792), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6794), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6796), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, + 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(3122), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(5660), 4, anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4387), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568508,7 +597038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68207] = 33, + [82324] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568529,57 +597059,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6779), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7259), 1, anon_sym_is, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, + ACTIONS(7251), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6800), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4388), 9, + STATE(4603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568589,19 +597119,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 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, - [68333] = 34, + [82449] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568622,70 +597151,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6779), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7253), 1, + anon_sym_AMP, + ACTIONS(7259), 1, anon_sym_is, - STATE(3122), 1, + ACTIONS(7263), 1, + anon_sym_CARET, + ACTIONS(7268), 1, + anon_sym_PIPE, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, + ACTIONS(7251), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + 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(4389), 9, + STATE(4604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568695,7 +597226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68461] = 36, + [82582] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568716,72 +597247,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6779), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6781), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6796), 1, + ACTIONS(7253), 1, anon_sym_AMP, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7259), 1, anon_sym_is, - STATE(3122), 1, + ACTIONS(7263), 1, + anon_sym_CARET, + ACTIONS(7268), 1, + anon_sym_PIPE, + ACTIONS(7270), 1, + anon_sym_AMP_AMP, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, + ACTIONS(7251), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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(4390), 9, + STATE(4605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568791,7 +597323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68593] = 14, + [82717] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568812,60 +597344,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6879), 1, - sym_string_literal_encoding, - 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(4732), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7247), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4730), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - [68681] = 35, + STATE(4606), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [82856] = 43, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568886,71 +597443,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6775), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(6779), 1, + 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(6781), 1, + ACTIONS(6708), 1, + anon_sym_AMP_AMP, + ACTIONS(6710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6808), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6810), 1, + ACTIONS(7039), 1, anon_sym_is, - STATE(3122), 1, + 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, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + STATE(6942), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6771), 2, + ACTIONS(6682), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6773), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6777), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6800), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4392), 9, + STATE(4607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568960,7 +597524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [68811] = 13, + [83001] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -568981,7 +597545,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4393), 9, + STATE(4608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -568991,7 +597555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3625), 11, + ACTIONS(5066), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569003,13 +597567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3627), 29, + ACTIONS(5064), 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, @@ -569033,7 +597596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [68897] = 34, + [83086] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569054,261 +597617,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6659), 1, anon_sym_as, - ACTIONS(6711), 1, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6723), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6725), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, + 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(5656), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, + 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, - anon_sym_into, - STATE(4394), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [69025] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6713), 1, - anon_sym_CARET, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6735), 1, + ACTIONS(7235), 1, anon_sym_is, - STATE(2358), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6703), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6707), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6709), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6723), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6725), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(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, - [69157] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6717), 1, - anon_sym_AMP, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - ACTIONS(6735), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6703), 2, + ACTIONS(7211), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6719), 2, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6723), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6725), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 9, + ACTIONS(5899), 4, + sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - STATE(4396), 9, + STATE(4609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569318,7 +597695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [69287] = 24, + [83225] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569339,30 +597716,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4533), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6727), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569372,7 +597745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4397), 9, + STATE(4610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569382,11 +597755,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 19, + ACTIONS(1221), 20, + 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, @@ -569396,13 +597768,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_into, anon_sym_as, anon_sym_is, - [69395] = 26, + anon_sym_with, + [83328] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569423,44 +597797,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4398), 9, + STATE(4611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569470,11 +597807,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + ACTIONS(1959), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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_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, @@ -569482,13 +597836,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, - [69507] = 29, + anon_sym_DASH_GT, + anon_sym_with, + [83413] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569509,49 +597869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6711), 1, - anon_sym_SLASH, - ACTIONS(6721), 1, - anon_sym_GT_GT, - ACTIONS(6727), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6707), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6709), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6719), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4399), 9, + STATE(4612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569561,23 +597879,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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_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, 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, - [69625] = 14, + anon_sym_DASH_GT, + anon_sym_with, + [83498] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569598,14 +597941,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4400), 9, + STATE(4613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569615,7 +597951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4892), 11, + ACTIONS(5148), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569627,9 +597963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4890), 23, + ACTIONS(5146), 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, @@ -569644,14 +597982,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, - [69713] = 15, + [83583] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569672,11 +598013,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, anon_sym_QMARK, - STATE(4401), 9, + ACTIONS(4102), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4018), 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(4614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569686,26 +598041,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3950), 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(3948), 28, + ACTIONS(4016), 26, 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, @@ -569726,7 +598068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [69803] = 14, + [83676] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569747,14 +598089,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(4402), 9, + STATE(4615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569764,7 +598099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4980), 11, + ACTIONS(2955), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569776,9 +598111,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4978), 23, + ACTIONS(2957), 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, @@ -569793,14 +598130,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, - [69891] = 13, + [83761] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569821,7 +598161,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4403), 9, + 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(7009), 1, + anon_sym_SLASH, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7223), 1, + anon_sym_GT_GT, + 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(7221), 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(4616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569831,49 +598213,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - 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, + ACTIONS(5660), 14, 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, - [69977] = 13, + [83878] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569894,7 +598249,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4404), 9, + STATE(4617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -569904,7 +598259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3621), 11, + ACTIONS(5003), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -569916,13 +598271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3623), 29, + ACTIONS(5001), 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, @@ -569946,7 +598300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70063] = 40, + [83963] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -569967,76 +598321,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6625), 1, - anon_sym_QMARK, - ACTIONS(6631), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6633), 1, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7213), 1, + anon_sym_QMARK, + ACTIONS(7215), 1, anon_sym_CARET, - ACTIONS(6635), 1, + ACTIONS(7217), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(7219), 1, anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(6647), 1, - anon_sym_DOT_DOT, - ACTIONS(6649), 1, + ACTIONS(7229), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, + ACTIONS(7231), 1, anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, + ACTIONS(7233), 1, anon_sym_QMARK_QMARK, - ACTIONS(6655), 1, - anon_sym_as, - ACTIONS(6657), 1, + ACTIONS(7235), 1, anon_sym_is, - STATE(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 5, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, + ACTIONS(5767), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_into, - STATE(4405), 9, + STATE(4618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570046,7 +598399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [70203] = 14, + [84102] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570067,9 +598420,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6881), 1, - sym_string_literal_encoding, - STATE(4406), 9, + 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, + 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(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4619), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(4620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570079,7 +598518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4795), 11, + ACTIONS(5082), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570091,7 +598530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4793), 28, + ACTIONS(5080), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -570120,7 +598559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70291] = 22, + [84304] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570141,36 +598580,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6883), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + ACTIONS(7286), 1, + anon_sym_SLASH, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + 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_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4407), 9, + STATE(4621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570180,12 +598627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -570193,15 +598635,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, + anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_with, - [70394] = 13, + [84415] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570222,7 +598665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4408), 9, + STATE(4622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570232,7 +598675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5310), 11, + ACTIONS(2951), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570244,7 +598687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5308), 28, + ACTIONS(2953), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -570273,7 +598716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70479] = 22, + [84500] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570294,36 +598737,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6885), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + ACTIONS(7286), 1, + anon_sym_SLASH, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7282), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7284), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 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(4409), 9, + STATE(4623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570333,9 +598785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -570343,7 +598793,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, @@ -570353,8 +598802,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, + [84613] = 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(7131), 1, + anon_sym_and, + ACTIONS(7292), 1, + anon_sym_or, + STATE(4624), 9, + sym_preproc_region, + sym_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, + 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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, - [70582] = 13, + [84702] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570375,7 +598897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4410), 9, + STATE(4625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570385,7 +598907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4900), 11, + ACTIONS(4987), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570397,7 +598919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4898), 28, + ACTIONS(4985), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -570426,7 +598948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70667] = 14, + [84787] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570447,9 +598969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6887), 1, + ACTIONS(7131), 1, anon_sym_and, - STATE(4411), 9, + ACTIONS(7292), 1, + anon_sym_or, + STATE(4626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570459,7 +598983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570471,9 +598995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 27, - anon_sym_SEMI, + 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, @@ -570488,18 +599014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_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, - [70754] = 40, + [84876] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570520,75 +599043,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6891), 1, - anon_sym_QMARK, - ACTIONS(6897), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6899), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - ACTIONS(6915), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6917), 1, + ACTIONS(7111), 1, + anon_sym_is, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(7117), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5899), 4, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, - STATE(4412), 9, + anon_sym_into, + STATE(4627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570598,7 +599121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [70893] = 13, + [85015] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570619,7 +599142,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4413), 9, + STATE(4628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -570629,7 +599152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4934), 11, + ACTIONS(5112), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -570641,7 +599164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4932), 28, + ACTIONS(5110), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -570670,7 +599193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [70978] = 40, + [85100] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570691,85 +599214,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6927), 1, + STATE(4629), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5044), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6933), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, anon_sym_PIPE, - ACTIONS(6939), 1, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5042), 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(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 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(4414), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [71117] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85185] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570790,75 +599286,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6927), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(6933), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6935), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6937), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6939), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6943), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6953), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6929), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_on, - STATE(4415), 9, + 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, @@ -570868,7 +599364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71256] = 40, + [85324] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570889,85 +599385,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6927), 1, + STATE(4631), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5375), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6933), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, anon_sym_PIPE, - ACTIONS(6939), 1, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5373), 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(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 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(4416), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [71395] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85409] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -570988,75 +599457,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6891), 1, - anon_sym_QMARK, - ACTIONS(6897), 1, - anon_sym_SLASH, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, - anon_sym_AMP_AMP, - ACTIONS(6917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6895), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6911), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4417), 9, + STATE(4632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571066,7 +599467,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71534] = 40, + 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, + 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_into, + anon_sym_join, + anon_sym_on, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571087,75 +599529,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4759), 6, anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6891), 1, - anon_sym_QMARK, - ACTIONS(6897), 1, - anon_sym_SLASH, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, - anon_sym_AMP_AMP, - ACTIONS(6917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6895), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6911), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4418), 9, + 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, @@ -571165,7 +599546,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71673] = 40, + 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, @@ -571186,85 +599601,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6927), 1, + 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(3141), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6933), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, anon_sym_PIPE, - ACTIONS(6939), 1, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 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(4419), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [71812] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85664] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571285,75 +599673,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6933), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, - anon_sym_PIPE, - ACTIONS(6939), 1, - anon_sym_AMP, - ACTIONS(6943), 1, - anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, + ACTIONS(7007), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6929), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6941), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_on, - STATE(4420), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571363,7 +599720,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [71951] = 38, + 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, + anon_sym_into, + anon_sym_as, + anon_sym_is, + [85775] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571384,73 +599758,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, - anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, - anon_sym_PIPE, - ACTIONS(6939), 1, - anon_sym_AMP, - ACTIONS(6943), 1, - anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6941), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(4421), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571460,7 +599794,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72086] = 37, + 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, + [85876] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571481,72 +599838,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + STATE(4637), 9, + sym_preproc_region, + sym_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, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, anon_sym_PIPE, - ACTIONS(6939), 1, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + 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, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4422), 9, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [85961] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571556,7 +599927,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [72219] = 33, + 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, + [86046] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571577,57 +599982,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, - anon_sym_SLASH, - ACTIONS(6943), 1, - anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6941), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4423), 9, + STATE(4639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -571637,18 +599992,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, + ACTIONS(5162), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5160), 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, - [72344] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86131] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571669,79 +600054,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + STATE(4640), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4255), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6943), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(4253), 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(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 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(4424), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [72471] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86216] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571762,85 +600126,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6891), 1, + 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(5170), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6897), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, anon_sym_PIPE, - ACTIONS(6903), 1, anon_sym_AMP, - ACTIONS(6907), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, - anon_sym_AMP_AMP, - ACTIONS(6917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5168), 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(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6895), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_COLON, - anon_sym_when, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4425), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [72610] = 36, + 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, + [86301] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571861,81 +600198,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 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(5178), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6939), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5176), 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(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(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, - [72741] = 35, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86386] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -571956,80 +600270,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + STATE(4643), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5182), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6933), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6939), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5180), 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(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4427), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [72870] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86471] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572050,85 +600342,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6927), 1, + STATE(4644), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5088), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6933), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, anon_sym_PIPE, - ACTIONS(6939), 1, anon_sym_AMP, - ACTIONS(6943), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5086), 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(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 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(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, - [73009] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [86556] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572149,7 +600414,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4429), 9, + STATE(4645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572159,7 +600424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4912), 11, + ACTIONS(5186), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -572171,7 +600436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4910), 28, + ACTIONS(5184), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -572200,7 +600465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73094] = 13, + [86641] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572221,7 +600486,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4430), 9, + STATE(4646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572231,7 +600496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5064), 11, + ACTIONS(5190), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -572243,7 +600508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5062), 28, + ACTIONS(5188), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -572272,7 +600537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [73179] = 29, + [86726] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572293,49 +600558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6967), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4431), 9, + STATE(4647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572345,22 +600568,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5210), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5208), 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_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, - [73296] = 26, + anon_sym_DASH_GT, + anon_sym_with, + [86811] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572381,44 +600630,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6971), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6963), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + 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(4432), 9, + STATE(4648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572428,7 +600673,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, + ACTIONS(5660), 18, + 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, @@ -572436,16 +600686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - [73407] = 35, + [86918] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572466,80 +600713,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + STATE(4649), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5108), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - ACTIONS(6975), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5106), 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(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_CARET, - 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, - STATE(4433), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [73536] = 36, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87003] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572560,71 +600785,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + 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(6971), 1, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - STATE(2738), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6961), 2, + ACTIONS(7085), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(5777), 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, - STATE(4434), 9, + anon_sym_into, + STATE(4650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572634,7 +600863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [73667] = 34, + [87142] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572655,79 +600884,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + STATE(4651), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5120), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6969), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - ACTIONS(6981), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5118), 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(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, - 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, - 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, - [73794] = 27, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87227] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572748,45 +600956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4436), 9, + STATE(4652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572796,7 +600966,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, + ACTIONS(4971), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4969), 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, @@ -572804,16 +600995,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, - [73907] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [87312] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572834,57 +601028,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(6981), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6967), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6973), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6979), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4437), 9, + anon_sym_GT_GT, + STATE(4653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -572894,18 +601071,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, + 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_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, - [74032] = 37, + anon_sym_into, + anon_sym_by, + anon_sym_as, + anon_sym_is, + [87419] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -572926,82 +601111,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5312), 1, + anon_sym_LT, + ACTIONS(7294), 1, + anon_sym_COLON_COLON, + STATE(3247), 1, + sym_type_argument_list, + STATE(4654), 9, + sym_preproc_region, + sym_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), 10, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, anon_sym_PIPE, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(3662), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - 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, - 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, - [74165] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [87510] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573022,73 +601186,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + 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(6971), 1, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(7039), 1, anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, + ACTIONS(7041), 1, anon_sym_AMP_AMP, - STATE(2738), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7013), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4439), 9, + ACTIONS(5858), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573098,7 +601264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [74300] = 40, + [87649] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573119,75 +601285,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + 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(6971), 1, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(7039), 1, anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, + ACTIONS(7041), 1, anon_sym_AMP_AMP, - ACTIONS(6989), 1, + ACTIONS(7043), 1, anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, + ACTIONS(7045), 1, anon_sym_QMARK_QMARK, - STATE(2738), 1, + ACTIONS(7047), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7013), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4440), 9, + 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, @@ -573197,7 +601363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [74439] = 13, + [87788] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573218,7 +601384,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4441), 9, + STATE(4657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573228,7 +601394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4996), 11, + ACTIONS(5128), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -573240,7 +601406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4994), 28, + ACTIONS(5126), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -573269,7 +601435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [74524] = 13, + [87873] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573290,7 +601456,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4442), 9, + STATE(4658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573300,7 +601466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4732), 11, + ACTIONS(5166), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -573312,7 +601478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4730), 28, + ACTIONS(5164), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -573341,7 +601507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [74609] = 40, + [87958] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573362,75 +601528,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7290), 1, + anon_sym_GT_GT, + ACTIONS(7298), 1, + anon_sym_QMARK, + ACTIONS(7300), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7011), 1, - anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7310), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7312), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7314), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7316), 1, + anon_sym_as, + ACTIONS(7318), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4443), 9, + ACTIONS(5858), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_by, + STATE(4659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573440,7 +601606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [74748] = 24, + [88097] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573461,40 +601627,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, + ACTIONS(7051), 1, + anon_sym_QMARK, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4444), 9, + 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(5858), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573504,26 +601705,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, + [88236] = 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, + 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, - anon_sym_CARET, + 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [74855] = 22, + anon_sym_by, + 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, + [88375] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573544,36 +601825,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6913), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4445), 9, + 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(5072), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_by, + STATE(4662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573583,28 +601903,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_COLON, + [88514] = 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_when, + ACTIONS(5882), 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, - [74958] = 40, + anon_sym_into, + anon_sym_by, + STATE(4663), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [88653] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573625,75 +602023,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6891), 1, - anon_sym_QMARK, - ACTIONS(6897), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(6899), 1, + ACTIONS(7290), 1, + anon_sym_GT_GT, + ACTIONS(7298), 1, + anon_sym_QMARK, + ACTIONS(7300), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, + ACTIONS(7310), 1, anon_sym_AMP_AMP, - ACTIONS(6917), 1, + ACTIONS(7312), 1, anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, + ACTIONS(7314), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, + ACTIONS(7316), 1, anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7318), 1, anon_sym_is, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(5899), 4, anon_sym_and, anon_sym_or, - STATE(4446), 9, + anon_sym_into, + anon_sym_by, + STATE(4664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573703,7 +602101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75097] = 13, + [88792] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573724,7 +602122,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4447), 9, + STATE(4665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573734,7 +602132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2905), 11, + ACTIONS(4959), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -573746,7 +602144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2907), 28, + ACTIONS(4957), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -573775,7 +602173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75182] = 13, + [88877] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573796,7 +602194,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4448), 9, + ACTIONS(7320), 1, + anon_sym_and, + STATE(4666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573806,7 +602206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4908), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -573818,12 +602218,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4906), 28, - sym_interpolation_close_brace, + ACTIONS(6067), 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, @@ -573837,17 +602238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75267] = 17, + [88964] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573868,25 +602267,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(4021), 2, + ACTIONS(4100), 1, anon_sym_DOT, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(3950), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5264), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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(5858), 4, anon_sym_EQ_GT, - STATE(4449), 9, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573896,34 +602345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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, - [75360] = 13, + [89103] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -573944,7 +602366,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4450), 9, + STATE(4668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -573954,7 +602376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5272), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -573966,7 +602388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5270), 28, + ACTIONS(5354), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -573995,7 +602417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [75445] = 40, + [89188] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574016,75 +602438,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7219), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, - anon_sym_AMP_AMP, - ACTIONS(6917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7235), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, + ACTIONS(5660), 8, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(4451), 9, + anon_sym_COMMA, + anon_sym_CARET, + 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, @@ -574094,7 +602511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75584] = 38, + [89317] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574115,73 +602532,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6899), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6915), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7165), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4452), 9, + 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, @@ -574191,7 +602610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75719] = 37, + [89456] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574212,72 +602631,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + 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, - ACTIONS(6393), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4671), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5731), 20, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_switch, - ACTIONS(6407), 1, + 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, - ACTIONS(6897), 1, + [89559] = 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(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(6899), 1, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7215), 1, anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7219), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7235), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(5660), 7, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4453), 9, + anon_sym_into, + STATE(4672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574287,7 +602786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [75852] = 33, + [89690] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574308,57 +602807,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6897), 1, - anon_sym_SLASH, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6893), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6911), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4454), 9, + anon_sym_GT_GT, + STATE(4673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574368,18 +602846,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_COLON, + ACTIONS(1221), 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_when, - anon_sym_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [75977] = 27, + anon_sym_as, + anon_sym_is, + anon_sym_with, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [89793] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574400,45 +602888,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6913), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(7223), 1, + anon_sym_GT_GT, + ACTIONS(7235), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + 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, - anon_sym_GT_GT, - STATE(4455), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574448,24 +602960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [76090] = 34, + [89920] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574486,69 +602981,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7223), 1, + anon_sym_GT_GT, + ACTIONS(7235), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 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(4456), 9, + STATE(4675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574558,7 +603041,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76217] = 24, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574579,30 +603073,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6913), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -574612,7 +603102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4457), 9, + STATE(4676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574622,8 +603112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - anon_sym_COLON, + ACTIONS(5731), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -574633,6 +603122,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, @@ -574641,7 +603132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [76324] = 36, + anon_sym_with, + [90148] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574662,71 +603154,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6899), 1, + ACTIONS(7011), 1, + anon_sym_DOT_DOT, + ACTIONS(7215), 1, anon_sym_CARET, - ACTIONS(6903), 1, + ACTIONS(7217), 1, + anon_sym_PIPE, + ACTIONS(7219), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7235), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(5660), 7, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4458), 9, + anon_sym_into, + STATE(4677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574736,7 +603229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76455] = 35, + [90281] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574757,70 +603250,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6903), 1, + 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(6907), 1, + ACTIONS(7223), 1, anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7229), 1, + anon_sym_AMP_AMP, + ACTIONS(7235), 1, anon_sym_is, - STATE(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7211), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7221), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, + ACTIONS(5660), 6, + sym_interpolation_close_brace, anon_sym_COLON, - anon_sym_CARET, - anon_sym_when, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4459), 9, + anon_sym_into, + STATE(4678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574830,7 +603326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76584] = 26, + [90416] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574851,44 +603347,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6897), 1, - anon_sym_SLASH, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6895), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4460), 9, + STATE(4679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574898,8 +603357,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, + ACTIONS(5206), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5204), 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, @@ -574907,15 +603386,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, - [76695] = 29, + anon_sym_DASH_GT, + anon_sym_with, + [90501] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -574936,49 +603419,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6659), 1, + anon_sym_as, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6897), 1, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + 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(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6893), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(7211), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4461), 9, + 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, + anon_sym_into, + STATE(4680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -574988,22 +603497,106 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, - anon_sym_COLON, + [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, + 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(5864), 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_as, - anon_sym_is, - [76812] = 40, + 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, @@ -575024,75 +603617,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + 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(7039), 1, + ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7270), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, + ACTIONS(7272), 1, anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, + ACTIONS(7274), 1, anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7322), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 4, + ACTIONS(5777), 4, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4462), 9, + STATE(4682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575102,7 +603695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [76951] = 40, + [90918] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575123,75 +603716,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6927), 1, - anon_sym_QMARK, - ACTIONS(6933), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, - anon_sym_PIPE, - ACTIONS(6939), 1, - anon_sym_AMP, - ACTIONS(6943), 1, + ACTIONS(7247), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, + 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(6953), 1, + ACTIONS(7272), 1, anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, + ACTIONS(7274), 1, anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, - anon_sym_as, - ACTIONS(6959), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7322), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5072), 4, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_on, - STATE(4463), 9, + STATE(4683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575201,7 +603794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77090] = 40, + [91057] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575222,75 +603815,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + 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(7039), 1, + ACTIONS(7268), 1, anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7270), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, + ACTIONS(7272), 1, anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, + ACTIONS(7274), 1, anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7322), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 4, + ACTIONS(5882), 4, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4464), 9, + STATE(4684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575300,7 +603893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77229] = 22, + [91196] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575321,26 +603914,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6913), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575350,7 +603947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4465), 9, + STATE(4685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575360,8 +603957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, - anon_sym_COLON, + ACTIONS(5660), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -575371,7 +603967,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_EQ_GT, anon_sym_when, anon_sym_and, anon_sym_or, @@ -575380,8 +603976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [77332] = 40, + [91303] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575402,85 +603997,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, + STATE(4686), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5104), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7069), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7071), 1, - anon_sym_CARET, - ACTIONS(7073), 1, anon_sym_PIPE, - ACTIONS(7075), 1, anon_sym_AMP, - ACTIONS(7079), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, - anon_sym_AMP_AMP, - ACTIONS(7087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5102), 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(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - 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(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, - [77471] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [91388] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575501,7 +604069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4467), 9, + STATE(4687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575511,7 +604079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4686), 11, + ACTIONS(5198), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575523,7 +604091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4684), 28, + ACTIONS(5196), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -575552,7 +604120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [77556] = 22, + [91473] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575573,26 +604141,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6885), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + 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(5899), 4, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_and, + anon_sym_or, + 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, + [91612] = 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(7035), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, + sym_bracketed_argument_list, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575602,7 +604269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4468), 9, + STATE(4689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575612,7 +604279,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, + ACTIONS(5731), 20, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -575623,17 +604294,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_into, - anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_with, - [77659] = 24, + [91715] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575654,30 +604321,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6949), 1, + ACTIONS(7249), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -575687,7 +604350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4469), 9, + STATE(4690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575697,7 +604360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, + ACTIONS(1221), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -575707,16 +604370,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_on, anon_sym_as, anon_sym_is, - [77766] = 14, + anon_sym_with, + [91818] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575737,14 +604402,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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, + anon_sym_QMARK, + 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, + 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_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_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(5858), 4, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4470), 9, + anon_sym_equals, + STATE(4691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575754,42 +604480,101 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5343), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [91957] = 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(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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7332), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7338), 1, anon_sym_AMP, + ACTIONS(7342), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5340), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [77853] = 40, + anon_sym_into, + anon_sym_equals, + STATE(4692), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [92086] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575810,75 +604595,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7005), 1, - anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7348), 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, - STATE(2399), 1, + ACTIONS(7356), 1, + anon_sym_as, + ACTIONS(7358), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4471), 9, + 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_equals, + STATE(4693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575888,7 +604669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [77992] = 21, + [92217] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575909,33 +604690,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(5618), 1, - sym_attribute_target_specifier, - STATE(6279), 1, - sym__name, - STATE(6578), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1051), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4472), 9, + 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(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_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_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, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -575945,30 +604762,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, - [78093] = 29, + [92344] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -575989,49 +604783,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7097), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7103), 1, + ACTIONS(7348), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + ACTIONS(7356), 1, + anon_sym_as, + ACTIONS(7358), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7346), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4473), 9, + STATE(4695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576041,22 +604843,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 10, 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, anon_sym_into, - anon_sym_as, - anon_sym_is, - [78210] = 40, + anon_sym_equals, + [92469] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576077,75 +604875,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7117), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7356), 1, anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7358), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5610), 4, + 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(4474), 9, + anon_sym_equals, + STATE(4696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576155,7 +604950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78349] = 40, + [92602] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576176,75 +604971,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7039), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7350), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, + ACTIONS(7356), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7358), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5660), 6, anon_sym_and, anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_equals, - STATE(4475), 9, + STATE(4697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576254,7 +605047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78488] = 15, + [92737] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576275,60 +605068,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7139), 1, - anon_sym_into, - STATE(4478), 1, - aux_sym__query_body_repeat2, - STATE(4476), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5856), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - [78577] = 40, + anon_sym_into, + anon_sym_equals, + STATE(4698), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [92876] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576349,75 +605167,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, + ACTIONS(7326), 1, anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7117), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7350), 1, anon_sym_AMP_AMP, - ACTIONS(7131), 1, + ACTIONS(7352), 1, anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, + ACTIONS(7354), 1, anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, + ACTIONS(7356), 1, anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7358), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 4, + ACTIONS(5864), 4, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_by, - STATE(4477), 9, + anon_sym_equals, + STATE(4699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576427,7 +605245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [78716] = 14, + [93015] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576448,84 +605266,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7141), 1, - anon_sym_into, - STATE(4478), 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(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7326), 1, + anon_sym_QMARK, + 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, - anon_sym_DOT, - ACTIONS(5843), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5072), 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, - [78803] = 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(7139), 1, anon_sym_into, - STATE(4476), 1, - aux_sym__query_body_repeat2, - STATE(4479), 9, + anon_sym_equals, + STATE(4700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576535,46 +605344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 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, - 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, - [78892] = 26, + [93154] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576595,71 +605365,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7097), 1, + ACTIONS(7326), 1, + anon_sym_QMARK, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7103), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4480), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, + ACTIONS(5882), 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, - [79003] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576680,72 +605464,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7097), 1, + ACTIONS(7326), 1, + anon_sym_QMARK, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7103), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4481), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, + 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_as, - anon_sym_is, - [79116] = 22, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576766,36 +605563,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(6949), 1, - anon_sym_DOT_DOT, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4482), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576805,28 +605599,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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(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_as, - anon_sym_is, - anon_sym_with, - [79219] = 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, + [93533] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576847,60 +605643,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7139), 1, - anon_sym_into, - STATE(4478), 1, - aux_sym__query_body_repeat2, - 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(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(5839), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [79308] = 27, + ACTIONS(5858), 4, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_into, + STATE(4704), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [93672] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -576921,45 +605742,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6933), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6949), 1, + 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, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6929), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4484), 9, + 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(5858), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -576969,24 +605820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [79421] = 26, + [93811] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577007,44 +605841,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6933), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(6949), 1, + ACTIONS(7342), 1, + anon_sym_GT_GT, + ACTIONS(7348), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6931), 2, + ACTIONS(7328), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7340), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4485), 9, + STATE(4706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577054,10 +605893,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, + 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, @@ -577068,10 +605905,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_equals, anon_sym_as, anon_sym_is, - [79532] = 15, + [93928] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577092,11 +605929,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7139), 1, - anon_sym_into, - STATE(4483), 1, - aux_sym__query_body_repeat2, - STATE(4486), 9, + STATE(4707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577106,7 +605939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(5202), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577118,8 +605951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 26, + ACTIONS(5200), 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, @@ -577132,20 +605968,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_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, - [79621] = 40, + [94013] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577166,75 +606001,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7051), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4487), 9, + 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, @@ -577244,7 +606079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [79760] = 29, + [94152] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577265,49 +606100,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6933), 1, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(6943), 1, - anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7348), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4488), 9, + anon_sym_GT_GT, + STATE(4709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577317,8 +606147,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + 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, @@ -577329,10 +606161,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_equals, anon_sym_as, anon_sym_is, - [79877] = 15, + [94263] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577353,11 +606185,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_and, - ACTIONS(7146), 1, - anon_sym_or, - STATE(4489), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577367,28 +606233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 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(5660), 16, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -577396,17 +606241,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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [79966] = 13, + [94376] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577427,83 +606271,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4890), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5745), 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, - [80051] = 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(7148), 1, - anon_sym_and, - ACTIONS(7150), 1, - anon_sym_or, - STATE(4491), 9, + anon_sym_by, + STATE(4711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577513,46 +606349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 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, - [80140] = 22, + [94515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577573,67 +606370,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(7103), 1, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7326), 1, + anon_sym_QMARK, + 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, anon_sym_DOT_DOT, - STATE(2537), 1, + 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(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4492), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, + ACTIONS(5777), 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_with, - [80243] = 15, + 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, + [94654] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577654,60 +606469,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_and, - ACTIONS(7146), 1, - anon_sym_or, - STATE(4493), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 26, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5767), 4, + anon_sym_and, + anon_sym_or, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [80332] = 15, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577728,41 +606568,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7152), 1, - anon_sym_into, - STATE(4495), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(5858), 11, + 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5856), 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, + 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(5731), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -577773,15 +606618,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, - [80421] = 14, + [94896] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577802,9 +606649,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7154), 1, - anon_sym_into, - STATE(4495), 10, + STATE(4715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577814,8 +606659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(5154), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -577827,13 +606671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 26, + ACTIONS(5152), 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, @@ -577847,14 +606690,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, - [80508] = 40, + [94981] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577875,75 +606721,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 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(7017), 1, + ACTIONS(7348), 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, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + anon_sym_QMARK, 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(5656), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4496), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -577953,7 +606764,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80647] = 38, + 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_equals, + anon_sym_as, + anon_sym_is, + [95088] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -577974,73 +606804,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + 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(7005), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7011), 1, - anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4497), 9, + ACTIONS(5858), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578050,7 +606882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80782] = 37, + [95227] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578071,72 +606903,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 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, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_SEMI, + ACTIONS(5660), 8, + 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(4498), 9, + anon_sym_into, + anon_sym_on, + STATE(4718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578146,7 +606976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [80915] = 22, + [95356] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578167,90 +606997,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(7017), 1, + 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, - STATE(2399), 1, + ACTIONS(7364), 1, + anon_sym_CARET, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5664), 2, anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4499), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_SEMI, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(5660), 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, - anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [81018] = 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(7157), 1, - anon_sym_LPAREN, - STATE(4500), 9, + anon_sym_into, + anon_sym_on, + STATE(4719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578260,47 +607071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1969), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1971), 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, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [81105] = 33, + [95487] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578321,57 +607092,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(7380), 1, + anon_sym_as, + ACTIONS(7382), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7015), 2, + 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(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4501), 9, + 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_on, + STATE(4720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578381,18 +607164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [81230] = 27, + [95614] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578413,45 +607185,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7017), 1, + ACTIONS(7127), 1, + anon_sym_GT_GT, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(7380), 1, + anon_sym_as, + ACTIONS(7382), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + 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, - anon_sym_GT_GT, - STATE(4502), 9, + STATE(4721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578461,24 +607245,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_SEMI, + ACTIONS(5660), 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, - [81343] = 34, + anon_sym_into, + anon_sym_on, + [95739] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578499,69 +607277,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_SEMI, - anon_sym_CARET, + ACTIONS(5660), 7, + 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(4503), 9, + anon_sym_into, + anon_sym_on, + STATE(4722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578571,7 +607352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81470] = 13, + [95872] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578592,58 +607373,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4504), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5070), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + 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(7364), 1, + anon_sym_CARET, + ACTIONS(7366), 1, anon_sym_PIPE, + ACTIONS(7368), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5068), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 6, 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, - [81555] = 36, + 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, + [96007] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578664,71 +607470,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7003), 1, - anon_sym_CARET, - ACTIONS(7007), 1, - anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4505), 9, + ACTIONS(5660), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578738,7 +607548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81686] = 35, + [96146] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578759,70 +607569,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7007), 1, - anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4506), 9, + ACTIONS(5864), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578832,7 +607647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [81815] = 24, + [96285] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578853,40 +607668,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7017), 1, + ACTIONS(7123), 1, + anon_sym_SLASH, + ACTIONS(7127), 1, + anon_sym_GT_GT, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4507), 9, + 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(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_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578896,26 +607746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - 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_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, - [81922] = 26, + [96424] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -578936,44 +607767,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7001), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7017), 1, + ACTIONS(7127), 1, + anon_sym_GT_GT, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6999), 2, + ACTIONS(7119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7125), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7360), 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(4508), 9, + 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_and, + anon_sym_or, + anon_sym_into, + anon_sym_on, + STATE(4727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -578983,24 +607845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, - 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_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, - [82033] = 40, + [96563] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579021,75 +607866,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - ACTIONS(6983), 1, + ACTIONS(7362), 1, + anon_sym_QMARK, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(6985), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(6987), 1, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(6989), 1, + ACTIONS(7376), 1, anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, + ACTIONS(7378), 1, anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(7380), 1, + anon_sym_as, + ACTIONS(7382), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(5899), 4, anon_sym_and, anon_sym_or, - STATE(4509), 9, + anon_sym_into, + anon_sym_on, + STATE(4728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579099,7 +607944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82172] = 35, + [96702] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579120,70 +607965,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7051), 1, + anon_sym_QMARK, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7075), 1, + ACTIONS(7059), 1, + anon_sym_CARET, + ACTIONS(7061), 1, + anon_sym_PIPE, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7091), 1, + 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(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - sym_interpolation_close_brace, + ACTIONS(5864), 4, 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(4510), 9, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(4729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579193,7 +608043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82301] = 36, + [96841] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579214,81 +608064,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + STATE(4730), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5421), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7071), 1, - anon_sym_CARET, - ACTIONS(7075), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7079), 1, anon_sym_GT_GT, - ACTIONS(7091), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5419), 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(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4511), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [82432] = 34, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [96926] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579309,69 +608136,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6883), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7079), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(7091), 1, + ACTIONS(7304), 1, + anon_sym_AMP, + ACTIONS(7316), 1, + anon_sym_as, + ACTIONS(7318), 1, anon_sym_is, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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, - STATE(4512), 9, + anon_sym_by, + STATE(4731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579381,7 +608209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82559] = 33, + [97055] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579402,57 +608230,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6883), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7079), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(7091), 1, + ACTIONS(7300), 1, + anon_sym_CARET, + ACTIONS(7304), 1, + anon_sym_AMP, + ACTIONS(7316), 1, + anon_sym_as, + ACTIONS(7318), 1, anon_sym_is, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7083), 2, + 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(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4513), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579462,18 +608304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [82684] = 22, + [97186] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579494,26 +608325,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6971), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -579523,7 +608358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4514), 9, + STATE(4733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579533,7 +608368,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, + ACTIONS(5660), 18, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -579543,8 +608379,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_when, anon_sym_and, anon_sym_or, @@ -579553,8 +608387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_with, - [82787] = 37, + [97293] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579575,72 +608408,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7326), 1, + anon_sym_QMARK, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7073), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7091), 1, + 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(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5745), 4, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4515), 9, + anon_sym_equals, + STATE(4734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579650,7 +608486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [82920] = 38, + [97432] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579671,73 +608507,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + 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(7073), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(7368), 1, anon_sym_AMP, - ACTIONS(7079), 1, - anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(7091), 1, + 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(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(5777), 4, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4516), 9, + anon_sym_on, + STATE(4735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579747,7 +608585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83055] = 40, + [97571] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579768,75 +608606,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7326), 1, + anon_sym_QMARK, + ACTIONS(7332), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + ACTIONS(7334), 1, anon_sym_CARET, - ACTIONS(7073), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(7342), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(7348), 1, + anon_sym_DOT_DOT, + ACTIONS(7350), 1, anon_sym_AMP_AMP, - ACTIONS(7087), 1, + ACTIONS(7352), 1, anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, + ACTIONS(7354), 1, anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, + ACTIONS(7356), 1, + anon_sym_as, + ACTIONS(7358), 1, anon_sym_is, - STATE(3122), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(7324), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5767), 4, + anon_sym_and, + anon_sym_or, anon_sym_into, - STATE(4517), 9, + anon_sym_equals, + STATE(4736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -579846,7 +608684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83194] = 40, + [97710] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579867,85 +608705,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, - anon_sym_AMP_AMP, - ACTIONS(6989), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(1223), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + 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, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_EQ_GT, + anon_sym_switch, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4518), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [83333] = 40, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [97813] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -579966,85 +608786,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, - anon_sym_AMP_AMP, - ACTIONS(6989), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(1223), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4738), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_EQ_GT, - anon_sym_when, + anon_sym_switch, anon_sym_and, anon_sym_or, - STATE(4519), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [83472] = 13, + 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, + [97916] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580065,36 +608867,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4520), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4805), 11, + 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(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(5664), 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(4803), 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(4739), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580104,19 +608920,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, - [83557] = 40, + [98023] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580137,75 +608950,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7316), 1, + anon_sym_as, + ACTIONS(7318), 1, anon_sym_is, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, - anon_sym_AMP_AMP, - ACTIONS(6989), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, + ACTIONS(7296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 8, + anon_sym_CARET, anon_sym_and, anon_sym_or, - STATE(4521), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(4740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580215,7 +609022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83696] = 40, + [98150] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580236,75 +609043,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7101), 1, + anon_sym_GT_GT, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7111), 1, + anon_sym_is, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7117), 1, + anon_sym_QMARK, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7085), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, + ACTIONS(5858), 4, anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_into, - STATE(4522), 9, + STATE(4741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580314,7 +609121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [83835] = 14, + [98289] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580335,14 +609142,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7320), 1, anon_sym_and, + ACTIONS(7384), 1, anon_sym_or, - anon_sym_into, - STATE(4523), 9, + STATE(4742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580352,7 +609156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5349), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -580364,9 +609168,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5346), 22, + 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, @@ -580387,7 +609195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [83922] = 29, + [98378] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580408,49 +609216,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7001), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7011), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(7316), 1, + anon_sym_as, + ACTIONS(7318), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6997), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(7296), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7308), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4524), 9, + STATE(4743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580460,22 +609276,92 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, - anon_sym_SEMI, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(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, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_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, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [84039] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [98592] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580496,75 +609382,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6921), 1, - anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7129), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6981), 1, - anon_sym_is, - ACTIONS(6983), 1, + ACTIONS(7362), 1, + anon_sym_QMARK, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(6985), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(6987), 1, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(6989), 1, + ACTIONS(7376), 1, anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, + ACTIONS(7378), 1, anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(7380), 1, + anon_sym_as, + ACTIONS(7382), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_EQ_GT, - anon_sym_when, + ACTIONS(5745), 4, anon_sym_and, anon_sym_or, - STATE(4525), 9, + anon_sym_into, + anon_sym_on, + STATE(4745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580574,7 +609460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [84178] = 13, + [98731] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580595,58 +609481,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(4837), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7097), 1, anon_sym_AMP, + ACTIONS(7101), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4835), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7111), 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(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 8, + anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [84263] = 13, + 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, + [98860] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580667,58 +609575,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4527), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4916), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(7362), 1, + anon_sym_QMARK, + ACTIONS(7364), 1, + anon_sym_CARET, + ACTIONS(7366), 1, anon_sym_PIPE, + ACTIONS(7368), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4914), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7119), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, + ACTIONS(7360), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5767), 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, - [84348] = 13, + anon_sym_on, + STATE(4747), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [98999] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580739,36 +609674,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5040), 11, + 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(1223), 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(5038), 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(4748), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580779,18 +609724,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, - [84433] = 13, + [99102] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580811,36 +609755,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4529), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4920), 11, + 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(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(5664), 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(4918), 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(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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -580850,8 +609808,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, @@ -580860,9 +609817,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, - [84518] = 13, + [99209] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580883,7 +609838,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4530), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -580893,48 +609880,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5036), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5034), 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, - [84603] = 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, + [99322] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -580955,58 +609924,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4980), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4978), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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, - [84688] = 29, + ACTIONS(5899), 4, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4751), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99461] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581027,49 +610023,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4532), 9, + anon_sym_GT_GT, + STATE(4752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581079,22 +610062,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(1221), 20, + 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_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [84805] = 15, + anon_sym_with, + [99564] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581115,60 +610104,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7195), 1, - anon_sym_into, - STATE(4534), 1, - aux_sym__query_body_repeat2, - STATE(4533), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + 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(7300), 1, + anon_sym_CARET, + ACTIONS(7302), 1, anon_sym_PIPE, + ACTIONS(7304), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5833), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - anon_sym_DASH_GT, - anon_sym_with, - [84894] = 15, + anon_sym_into, + anon_sym_by, + STATE(4753), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99697] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581189,60 +610200,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7195), 1, - anon_sym_into, - STATE(4548), 1, - aux_sym__query_body_repeat2, - STATE(4534), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + 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(7300), 1, + anon_sym_CARET, + ACTIONS(7302), 1, anon_sym_PIPE, + ACTIONS(7304), 1, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(7310), 1, + anon_sym_AMP_AMP, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - [84983] = 40, + anon_sym_into, + anon_sym_by, + STATE(4754), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [99832] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581263,75 +610297,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6891), 1, - anon_sym_QMARK, - ACTIONS(6897), 1, + ACTIONS(7177), 1, + anon_sym_DOT_DOT, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(6899), 1, + ACTIONS(7290), 1, + anon_sym_GT_GT, + ACTIONS(7300), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6913), 1, - anon_sym_DOT_DOT, - ACTIONS(6915), 1, + ACTIONS(7310), 1, anon_sym_AMP_AMP, - ACTIONS(6917), 1, + ACTIONS(7312), 1, anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, + ACTIONS(7314), 1, anon_sym_QMARK_QMARK, - ACTIONS(6921), 1, + ACTIONS(7316), 1, anon_sym_as, - ACTIONS(6923), 1, + ACTIONS(7318), 1, anon_sym_is, - STATE(2738), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(7296), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(7308), 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(4535), 9, + anon_sym_into, + anon_sym_by, + STATE(4755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581341,7 +610375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [85122] = 15, + [99971] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581362,38 +610396,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7195), 1, - anon_sym_into, - STATE(4554), 1, - aux_sym__query_body_repeat2, - 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(5841), 11, + 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(1223), 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(5839), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -581404,18 +610446,17 @@ 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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [85211] = 26, + [100074] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581436,44 +610477,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4747), 6, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4537), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581483,24 +610494,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [85322] = 24, + 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, + anon_sym_into, + anon_sym_join, + anon_sym_on, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581521,30 +610549,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7193), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581554,7 +610578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4538), 9, + STATE(4758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581564,11 +610588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1221), 20, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -581578,12 +610598,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_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, - [85429] = 35, + anon_sym_with, + [100262] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581604,70 +610630,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6659), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(7009), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7011), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + 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(7205), 1, + 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(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7183), 2, + ACTIONS(7005), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7007), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7211), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7221), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7225), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, + ACTIONS(5882), 4, + sym_interpolation_close_brace, + 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(4759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581677,7 +610708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [85558] = 15, + [100401] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581698,11 +610729,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7133), 1, anon_sym_and, - ACTIONS(7150), 1, + ACTIONS(7191), 1, anon_sym_or, - STATE(4540), 9, + STATE(4760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581712,7 +610743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581724,13 +610755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 26, + ACTIONS(5354), 26, + anon_sym_SEMI, 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, @@ -581751,7 +610779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85647] = 15, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [100490] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581772,11 +610803,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7152), 1, - anon_sym_into, - STATE(4494), 1, - aux_sym__query_body_repeat2, - STATE(4541), 9, + STATE(4761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581786,7 +610813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(5429), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581798,13 +610825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 26, + ACTIONS(5427), 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, @@ -581818,14 +610844,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, - [85736] = 15, + [100575] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581846,11 +610875,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7152), 1, - anon_sym_into, - STATE(4495), 1, - aux_sym__query_body_repeat2, - STATE(4542), 9, + STATE(4762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -581860,7 +610885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(5435), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -581872,13 +610897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 26, + ACTIONS(5433), 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, @@ -581892,14 +610916,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, - [85825] = 13, + [100660] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581920,58 +610947,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(2091), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7187), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2089), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_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, - [85910] = 13, + ACTIONS(5864), 4, + anon_sym_SEMI, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4763), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [100799] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -581992,7 +611046,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4544), 9, + STATE(4764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582002,7 +611056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4825), 11, + ACTIONS(5431), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -582014,7 +611068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4823), 28, + ACTIONS(3829), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -582043,7 +611097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [85995] = 35, + [100884] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582064,70 +611118,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(7119), 1, + ACTIONS(7093), 1, + anon_sym_CARET, + ACTIONS(7095), 1, + anon_sym_PIPE, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, anon_sym_is, - STATE(2537), 1, + 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(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7105), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_CARET, + ACTIONS(5767), 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_by, - STATE(4545), 9, + STATE(4765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582137,7 +611196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [86124] = 36, + [101023] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582158,71 +611217,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, - anon_sym_GT_GT, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7105), 2, + ACTIONS(7143), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7121), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7125), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 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(4546), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582232,7 +611264,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [86255] = 34, + ACTIONS(5660), 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, + [101134] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582253,102 +611302,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7123), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 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(4547), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [86382] = 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(7207), 1, - anon_sym_into, - STATE(4548), 10, + STATE(4767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582358,37 +611354,14 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 26, - anon_sym_LBRACK, + ACTIONS(5660), 14, 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_and, anon_sym_or, anon_sym_AMP_AMP, @@ -582396,9 +611369,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, - [86469] = 33, + [101251] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582419,57 +611390,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7123), 1, - anon_sym_GT_GT, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(7055), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7121), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4549), 9, + anon_sym_GT_GT, + STATE(4768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582479,18 +611437,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, + 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_into, - anon_sym_by, - [86594] = 40, + anon_sym_as, + anon_sym_is, + [101362] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582511,75 +611475,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4550), 9, + ACTIONS(7261), 1, + anon_sym_into, + STATE(4594), 1, + aux_sym__query_body_repeat2, + STATE(4769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582589,103 +611489,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [86733] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(6001), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, anon_sym_PIPE, - ACTIONS(7119), 1, anon_sym_AMP, - ACTIONS(7123), 1, anon_sym_GT_GT, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, + anon_sym_DOT, + ACTIONS(5999), 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(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7111), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - 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_by, - STATE(4551), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [86866] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [101451] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582706,73 +611549,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7111), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5660), 7, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(4552), 9, + STATE(4770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582782,7 +611623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87001] = 40, + [101582] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582803,75 +611644,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7083), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, + ACTIONS(5660), 8, + anon_sym_COLON, + anon_sym_CARET, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4553), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582881,7 +611717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87140] = 15, + [101711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -582902,11 +611738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7195), 1, - anon_sym_into, - STATE(4548), 1, - aux_sym__query_body_repeat2, - STATE(4554), 9, + STATE(4772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -582916,7 +611748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, + ACTIONS(5014), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -582928,9 +611760,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5856), 26, + ACTIONS(5012), 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, @@ -582944,113 +611778,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, - [87229] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7212), 1, - anon_sym_CARET, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 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(4555), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [87360] = 40, + [101796] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583071,75 +611810,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6927), 1, - anon_sym_QMARK, - ACTIONS(6933), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(6935), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(6937), 1, - anon_sym_PIPE, - ACTIONS(6939), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(6943), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6959), 1, + ACTIONS(7083), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6929), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 4, + ACTIONS(5660), 7, + anon_sym_COLON, + anon_sym_when, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_on, - STATE(4556), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583149,7 +611884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87499] = 40, + [101927] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583170,168 +611905,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6927), 1, - anon_sym_QMARK, - ACTIONS(6933), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(6935), 1, - anon_sym_CARET, - ACTIONS(6937), 1, - anon_sym_PIPE, - ACTIONS(6939), 1, - anon_sym_AMP, - ACTIONS(6943), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(6949), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - ACTIONS(6951), 1, - anon_sym_AMP_AMP, - ACTIONS(6953), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6957), 1, + ACTIONS(7081), 1, anon_sym_as, - ACTIONS(6959), 1, + ACTIONS(7083), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6929), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6931), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6941), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6945), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6947), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5610), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_on, - STATE(4557), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [87638] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7205), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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(4558), 9, + STATE(4774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583341,7 +611977,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [87765] = 27, + [102054] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583362,45 +611998,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7187), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7193), 1, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4559), 9, + STATE(4775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583410,11 +612046,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5660), 16, + anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -583422,12 +612055,15 @@ 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_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [87878] = 22, + [102167] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583448,36 +612084,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7025), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7057), 1, + anon_sym_SLASH, + ACTIONS(7067), 1, + anon_sym_GT_GT, + ACTIONS(7073), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(7055), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7065), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7071), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, + anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(4560), 9, + STATE(4776), 9, + sym_preproc_region, + sym_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_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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(4777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583487,7 +612186,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, + ACTIONS(4935), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -583498,17 +612216,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, - [87981] = 24, + [102377] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583529,69 +612248,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7103), 1, + 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, - STATE(2537), 1, + ACTIONS(7081), 1, + anon_sym_as, + ACTIONS(7083), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7053), 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(5656), 18, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, + ACTIONS(5660), 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, - [88088] = 13, + STATE(4778), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [102510] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583612,7 +612344,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4562), 9, + STATE(4779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583622,7 +612354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4924), 11, + ACTIONS(5439), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -583634,7 +612366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4922), 28, + ACTIONS(5437), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -583663,7 +612395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88173] = 33, + [102595] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583684,57 +612416,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7205), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4563), 9, + STATE(4780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -583744,18 +612426,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, + ACTIONS(5447), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + 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_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, + anon_sym_LT_LT, + anon_sym_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, - [88298] = 22, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [102680] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583776,36 +612488,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4564), 9, + 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, @@ -583815,11 +612502,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -583829,14 +612528,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_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [88401] = 37, + [102769] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583857,82 +612562,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, + ACTIONS(7388), 1, + anon_sym_into, + STATE(4784), 1, + aux_sym__query_body_repeat2, + STATE(4782), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4565), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88534] = 38, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [102858] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -583953,83 +612636,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, + 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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - 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(4566), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88669] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [102947] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584050,85 +612710,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, + 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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5949), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4567), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [88808] = 13, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [103034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584149,7 +612783,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4568), 9, + 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, @@ -584159,7 +612797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4928), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -584171,11 +612809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4926), 28, - sym_interpolation_close_brace, + ACTIONS(5958), 26, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -584188,19 +612823,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, - [88893] = 13, + [103123] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584221,7 +612857,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4569), 9, + STATE(4786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584231,7 +612867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4849), 11, + ACTIONS(5447), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -584243,7 +612879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4847), 28, + ACTIONS(5445), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -584272,7 +612908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [88978] = 43, + [103208] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584293,78 +612929,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(6574), 1, + ACTIONS(7091), 1, anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6578), 1, - anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, - anon_sym_AMP_AMP, - ACTIONS(6592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7222), 1, - anon_sym_COLON, - ACTIONS(7224), 1, - anon_sym_COMMA, - ACTIONS(7226), 1, - anon_sym_RBRACE, - ACTIONS(7228), 1, - anon_sym_QMARK, - ACTIONS(7230), 1, + ACTIONS(7107), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7111), 1, anon_sym_is, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - STATE(6600), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4570), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 8, + anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584374,7 +613001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89123] = 40, + [103335] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584395,75 +613022,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 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, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7107), 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, - STATE(2399), 1, + ACTIONS(7111), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4571), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584473,7 +613082,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89262] = 13, + ACTIONS(5660), 10, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + [103460] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584494,58 +613114,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4960), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7091), 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, - anon_sym_DOT, - ACTIONS(4958), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7107), 1, + anon_sym_DOT_DOT, + ACTIONS(7111), 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(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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 7, + anon_sym_EQ_GT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [89347] = 13, + STATE(4789), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [103593] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584566,7 +613210,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4573), 9, + 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(7393), 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, + ACTIONS(5858), 3, + 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, @@ -584576,48 +613289,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5330), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [103734] = 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(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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5328), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7073), 1, + anon_sym_DOT_DOT, + ACTIONS(7075), 1, + anon_sym_AMP_AMP, + 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_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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - [89432] = 13, + STATE(4791), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [103869] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584638,7 +613407,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4574), 9, + 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(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, + 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_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_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_and, + anon_sym_or, + anon_sym_into, + STATE(4792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584648,37 +613486,86 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4956), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [104010] = 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(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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7413), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4954), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 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(7399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7411), 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(4793), 9, + sym_preproc_region, + sym_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_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, @@ -584687,9 +613574,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, - [89517] = 21, + [104127] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584710,33 +613595,45 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(5610), 1, - sym_attribute_target_specifier, - STATE(6279), 1, - sym__name, - STATE(6607), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1051), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4575), 9, + 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(7403), 1, + anon_sym_SLASH, + ACTIONS(7419), 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(7401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 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(4794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584746,30 +613643,23 @@ 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, - [89618] = 13, + 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_into, + anon_sym_as, + anon_sym_is, + [104238] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584790,7 +613680,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4576), 9, + 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(7419), 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, + STATE(4795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -584800,26 +613713,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5276), 11, + ACTIONS(5664), 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(5274), 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(5660), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -584829,8 +613734,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, @@ -584839,9 +613742,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, - [89703] = 13, + [104345] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584862,58 +613763,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4577), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4952), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7409), 1, anon_sym_AMP, + ACTIONS(7413), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4950), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7427), 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(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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [89788] = 13, + STATE(4796), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [104474] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -584934,58 +613857,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(4964), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7405), 1, + anon_sym_CARET, + ACTIONS(7409), 1, anon_sym_AMP, + ACTIONS(7413), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4962), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7427), 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(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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 3, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5660), 6, 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, - [89873] = 13, + STATE(4797), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [104605] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585006,58 +613952,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4579), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5280), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7413), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5278), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7427), 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(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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 4, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [89958] = 22, + STATE(4798), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [104732] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585078,36 +614045,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(7193), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, + anon_sym_SLASH, + ACTIONS(7419), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7399), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 7, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4580), 9, + STATE(4799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585117,13 +614094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -585131,14 +614102,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, - [90061] = 13, + [104845] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585159,58 +614131,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4581), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2909), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7413), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2911), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7427), 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(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, - anon_sym_CARET, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 4, + anon_sym_in, + 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_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, - [90146] = 13, + STATE(4800), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [104970] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585231,7 +614223,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4582), 9, + 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(7419), 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, + STATE(4801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585241,26 +614252,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4841), 11, + ACTIONS(5733), 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(4839), 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(5731), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -585271,7 +614274,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, @@ -585280,9 +614282,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, - [90231] = 13, + [105073] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585303,58 +614304,82 @@ 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(4968), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6147), 1, + anon_sym_switch, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, + anon_sym_with, + 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, - anon_sym_DOT, - ACTIONS(4966), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7427), 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(5664), 2, + anon_sym_in, + anon_sym_QMARK, + 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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 6, 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, - [90316] = 40, + STATE(4802), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105206] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585375,75 +614400,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7228), 1, - anon_sym_QMARK, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(7234), 1, - anon_sym_is, - ACTIONS(7242), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7246), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7248), 1, + ACTIONS(7409), 1, anon_sym_AMP, - ACTIONS(7252), 1, + ACTIONS(7413), 1, anon_sym_GT_GT, - ACTIONS(7258), 1, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7421), 1, anon_sym_AMP_AMP, - ACTIONS(7260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7427), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, + ACTIONS(5664), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4584), 9, + ACTIONS(5660), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(4803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585453,7 +614476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90455] = 40, + [105341] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585474,75 +614497,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7403), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7423), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7425), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7427), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5664), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(7395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4585), 9, + ACTIONS(5660), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585552,7 +614575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90594] = 13, + [105480] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585573,58 +614596,86 @@ 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(4988), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5866), 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, - anon_sym_DOT, - ACTIONS(4986), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5864), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [90679] = 40, + STATE(4805), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105621] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585645,75 +614696,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7397), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7403), 1, + anon_sym_SLASH, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7423), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7425), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7427), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4587), 9, + ACTIONS(5072), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585723,7 +614775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90818] = 13, + [105762] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585744,58 +614796,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4588), 9, - sym_preproc_region, - sym_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, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5884), 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, - anon_sym_DOT, - ACTIONS(5046), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + ACTIONS(7411), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5882), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [90903] = 22, + STATE(4807), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105903] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585816,36 +614896,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5901), 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, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7395), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4589), 9, + ACTIONS(7401), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7411), 2, + 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(5899), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585855,28 +614975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [91006] = 13, + [106044] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585897,7 +614996,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4590), 9, + STATE(4809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -585907,7 +615006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5284), 11, + ACTIONS(5022), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -585919,7 +615018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5282), 28, + ACTIONS(5020), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -585948,7 +615047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [91091] = 21, + [106129] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -585969,33 +615068,49 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(5617), 1, - sym_attribute_target_specifier, - STATE(6279), 1, - sym__name, - STATE(6688), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1051), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4591), 9, + 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(7029), 1, + anon_sym_GT_GT, + 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(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, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586005,30 +615120,22 @@ 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, - [91192] = 13, + ACTIONS(5660), 14, + 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_as, + anon_sym_is, + [106246] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586049,58 +615156,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4592), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5008), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(5006), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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(5745), 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, - [91277] = 13, + 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, + [106385] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586121,7 +615255,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4593), 9, + STATE(4812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586131,7 +615265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4972), 11, + ACTIONS(5074), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586143,7 +615277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4970), 28, + ACTIONS(5072), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -586162,116 +615296,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, - [91362] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - 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, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 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(5754), 4, - anon_sym_SEMI, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4594), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [91501] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586292,75 +615327,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, - anon_sym_QMARK, - ACTIONS(7069), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(7071), 1, - anon_sym_CARET, - ACTIONS(7073), 1, - anon_sym_PIPE, - ACTIONS(7075), 1, - anon_sym_AMP, - ACTIONS(7079), 1, - anon_sym_GT_GT, - ACTIONS(7085), 1, - anon_sym_AMP_AMP, - ACTIONS(7087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, - anon_sym_is, - STATE(3122), 1, + ACTIONS(7035), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(7017), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7077), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7081), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7083), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5610), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4595), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586370,7 +615374,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91640] = 15, + ACTIONS(5660), 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, + [106581] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586391,11 +615412,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_and, - ACTIONS(7264), 1, - anon_sym_or, - STATE(4596), 9, + STATE(4814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586405,7 +615422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(5048), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586417,9 +615434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 26, - anon_sym_SEMI, + 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, @@ -586434,17 +615453,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [91729] = 13, + [106666] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586465,7 +615484,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4597), 9, + STATE(4815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586475,7 +615494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4904), 11, + ACTIONS(5060), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586487,7 +615506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4902), 28, + ACTIONS(5058), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -586516,7 +615535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [91814] = 13, + [106751] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586537,7 +615556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4598), 9, + STATE(4816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586547,7 +615566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4944), 11, + ACTIONS(5078), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586559,7 +615578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4942), 28, + ACTIONS(5076), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -586588,7 +615607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [91899] = 13, + [106836] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586609,7 +615628,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4599), 9, + STATE(4817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586619,7 +615638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4940), 11, + ACTIONS(5116), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586631,7 +615650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4938), 28, + ACTIONS(5114), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -586660,7 +615679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [91984] = 13, + [106921] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586681,7 +615700,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4600), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586691,34 +615736,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3863), 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(3861), 28, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -586731,8 +615759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [92069] = 13, + [107022] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586753,36 +615780,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4888), 11, + 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, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4886), 28, + 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, 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, @@ -586793,18 +615833,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, - [92154] = 15, + [107125] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586825,11 +615861,87 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7152), 1, + 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, anon_sym_into, - STATE(4542), 1, - aux_sym__query_body_repeat2, - STATE(4602), 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, + [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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586839,7 +615951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(5052), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586851,13 +615963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 26, + ACTIONS(5050), 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, @@ -586871,14 +615982,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, - [92243] = 24, + [107311] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586899,30 +616013,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6885), 1, + ACTIONS(7035), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -586932,7 +616046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4603), 9, + STATE(4822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -586942,7 +616056,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, + ACTIONS(5660), 18, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -586952,16 +616070,12 @@ 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_by, anon_sym_as, anon_sym_is, - [92350] = 27, + [107418] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -586982,45 +616096,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7109), 2, + ACTIONS(7049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4604), 9, + 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, @@ -587030,24 +616174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [92463] = 26, + [107557] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587068,71 +616195,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7113), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7145), 1, anon_sym_SLASH, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4605), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 16, - anon_sym_CARET, + 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, - anon_sym_and, - anon_sym_or, + 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, - anon_sym_into, - anon_sym_by, - anon_sym_as, - anon_sym_is, - [92574] = 29, + STATE(4824), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [107686] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587153,49 +616289,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6885), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7113), 1, - anon_sym_SLASH, - ACTIONS(7123), 1, - anon_sym_GT_GT, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7121), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4606), 9, + anon_sym_GT_GT, + STATE(4825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587205,22 +616332,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 18, + 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_into, - anon_sym_by, anon_sym_as, anon_sym_is, - [92691] = 13, + [107793] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587241,7 +616372,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4607), 9, + ACTIONS(7429), 1, + anon_sym_into, + STATE(4827), 1, + aux_sym__query_body_repeat2, + STATE(4826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587251,7 +616386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4190), 11, + ACTIONS(6001), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587263,11 +616398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4188), 28, - sym_interpolation_close_brace, + ACTIONS(5999), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -587281,18 +616414,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, - [92776] = 13, + [107882] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587313,7 +616446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4608), 9, + ACTIONS(7429), 1, + anon_sym_into, + STATE(4829), 1, + aux_sym__query_body_repeat2, + STATE(4827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587323,7 +616460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4884), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587335,11 +616472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4882), 28, - sym_interpolation_close_brace, + ACTIONS(6003), 26, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -587353,18 +616488,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, - [92861] = 40, + [107971] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587385,85 +616520,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7228), 1, + ACTIONS(7429), 1, + anon_sym_into, + STATE(4830), 1, + aux_sym__query_body_repeat2, + STATE(4828), 9, + sym_preproc_region, + sym_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(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, - anon_sym_is, - ACTIONS(7242), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7244), 1, - anon_sym_CARET, - ACTIONS(7246), 1, anon_sym_PIPE, - ACTIONS(7248), 1, anon_sym_AMP, - ACTIONS(7252), 1, anon_sym_GT_GT, - ACTIONS(7258), 1, - anon_sym_AMP_AMP, - ACTIONS(7260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7240), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - 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, - [93000] = 40, + 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, + [108060] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587484,85 +616594,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7228), 1, + ACTIONS(7431), 1, + anon_sym_into, + STATE(4829), 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(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, - anon_sym_is, - ACTIONS(7242), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7244), 1, - anon_sym_CARET, - ACTIONS(7246), 1, anon_sym_PIPE, - ACTIONS(7248), 1, anon_sym_AMP, - ACTIONS(7252), 1, anon_sym_GT_GT, - ACTIONS(7258), 1, - anon_sym_AMP_AMP, - ACTIONS(7260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5949), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7240), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - 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, - [93139] = 40, + 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, + [108147] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587583,75 +616667,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, + ACTIONS(7429), 1, + anon_sym_into, + STATE(4829), 1, + aux_sym__query_body_repeat2, + STATE(4830), 9, + sym_preproc_region, + sym_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(7069), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7071), 1, - anon_sym_CARET, - ACTIONS(7073), 1, anon_sym_PIPE, - ACTIONS(7075), 1, anon_sym_AMP, - ACTIONS(7079), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, - anon_sym_AMP_AMP, - ACTIONS(7087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5958), 26, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7067), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4611), 9, + 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, + [108236] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587661,7 +616758,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93278] = 40, + 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, @@ -587682,75 +616813,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7039), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, - anon_sym_AMP_AMP, - ACTIONS(7053), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4612), 9, + 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(4832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587760,7 +616887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93417] = 13, + [108452] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587781,7 +616908,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4613), 9, + STATE(4833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587791,7 +616918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4845), 11, + ACTIONS(5174), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -587803,7 +616930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4843), 28, + ACTIONS(5172), 28, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -587832,7 +616959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [93502] = 40, + [108537] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587853,75 +616980,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, + ACTIONS(7019), 1, + anon_sym_SLASH, ACTIONS(7025), 1, - anon_sym_DOT_DOT, + anon_sym_AMP, ACTIONS(7029), 1, - anon_sym_QMARK, + anon_sym_GT_GT, ACTIONS(7035), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(7037), 1, - anon_sym_CARET, - ACTIONS(7039), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7051), 1, - anon_sym_AMP_AMP, - ACTIONS(7053), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7039), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4614), 9, + 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(4834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -587931,7 +617053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93641] = 40, + [108666] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -587952,75 +617074,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7029), 1, - anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(7019), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7021), 1, anon_sym_CARET, - ACTIONS(7039), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7025), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7029), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, - anon_sym_AMP_AMP, - ACTIONS(7053), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, + ACTIONS(7035), 1, + anon_sym_DOT_DOT, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7039), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7031), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4615), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588030,7 +617148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93780] = 13, + [108797] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588051,7 +617169,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4616), 9, + 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(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_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(5664), 3, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588061,28 +617241,80 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4992), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [108924] = 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(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(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(7015), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(7017), 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, - anon_sym_DOT, - ACTIONS(4990), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + STATE(4837), 9, + sym_preproc_region, + sym_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_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, @@ -588090,19 +617322,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, - [93865] = 40, + anon_sym_is, + [109037] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588123,106 +617348,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, + ACTIONS(7019), 1, + anon_sym_SLASH, ACTIONS(7029), 1, - anon_sym_QMARK, + anon_sym_GT_GT, ACTIONS(7035), 1, - anon_sym_SLASH, + anon_sym_DOT_DOT, ACTIONS(7037), 1, - anon_sym_CARET, - ACTIONS(7039), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7051), 1, - anon_sym_AMP_AMP, - ACTIONS(7053), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7039), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7013), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7015), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7017), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7027), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7033), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_equals, - 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, - [94004] = 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(4618), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588232,48 +617408,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5286), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3743), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5660), 10, 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, - [94089] = 40, + [109162] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588294,75 +617440,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(5751), 1, + anon_sym_in, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7397), 1, + anon_sym_QMARK, + ACTIONS(7403), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7039), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7409), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7413), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7421), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, + ACTIONS(7423), 1, anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, + ACTIONS(7425), 1, anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7427), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, + ACTIONS(5745), 3, anon_sym_and, anon_sym_or, anon_sym_into, - anon_sym_equals, - STATE(4619), 9, + STATE(4839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588372,7 +617519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94228] = 38, + [109303] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588393,73 +617540,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(5779), 1, + anon_sym_in, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6157), 1, + anon_sym_as, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7397), 1, + anon_sym_QMARK, + ACTIONS(7403), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7039), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7409), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7413), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7419), 1, + anon_sym_DOT_DOT, + ACTIONS(7421), 1, anon_sym_AMP_AMP, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7423), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7425), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7427), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5777), 3, anon_sym_and, anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, - STATE(4620), 9, + STATE(4840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588469,7 +617619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94363] = 41, + [109444] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588490,76 +617640,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5285), 1, + anon_sym_BANG, + ACTIONS(5769), 1, + anon_sym_in, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6157), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(6161), 1, + anon_sym_with, + ACTIONS(7397), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7403), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7409), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7413), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7419), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7421), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7423), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7425), 1, anon_sym_QMARK_QMARK, - ACTIONS(7266), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7427), 1, + anon_sym_is, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7395), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4621), 9, + ACTIONS(5767), 3, + anon_sym_and, + anon_sym_or, + anon_sym_into, + STATE(4841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588569,7 +617719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94504] = 37, + [109585] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588590,82 +617740,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(7025), 1, + ACTIONS(7419), 1, anon_sym_DOT_DOT, - ACTIONS(7035), 1, - anon_sym_SLASH, - ACTIONS(7037), 1, - anon_sym_CARET, - ACTIONS(7039), 1, - anon_sym_PIPE, - ACTIONS(7041), 1, - anon_sym_AMP, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7057), 1, - anon_sym_as, - ACTIONS(7059), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + STATE(4842), 9, + sym_preproc_region, + sym_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, - ACTIONS(7031), 2, + anon_sym_in, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1221), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + 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_equals, - STATE(4622), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [94637] = 33, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [109688] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588686,57 +617821,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6147), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6161), 1, anon_sym_with, - ACTIONS(7025), 1, + ACTIONS(7177), 1, anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7045), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(7057), 1, + 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(7059), 1, + ACTIONS(7318), 1, anon_sym_is, - STATE(2537), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7049), 2, + 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(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4623), 9, + ACTIONS(5777), 4, + anon_sym_and, + anon_sym_or, + anon_sym_into, + anon_sym_by, + STATE(4843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588746,18 +617899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_equals, - [94762] = 13, + [109827] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588778,7 +617920,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4624), 9, + ACTIONS(7434), 1, + anon_sym_into, + STATE(5112), 1, + aux_sym__query_body_repeat2, + STATE(4844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588788,9 +617934,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4866), 11, + ACTIONS(6005), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -588800,11 +617947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4864), 28, - sym_interpolation_close_brace, + ACTIONS(6003), 24, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -588824,12 +617968,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, - [94847] = 34, + [109915] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588850,69 +617993,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, - anon_sym_SLASH, - ACTIONS(7045), 1, - anon_sym_GT_GT, - ACTIONS(7057), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7442), 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, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, - anon_sym_and, - anon_sym_or, + ACTIONS(5660), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(4625), 9, + STATE(4845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -588922,7 +618067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94974] = 36, + [110047] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -588943,71 +618088,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7462), 1, + anon_sym_QMARK, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(7041), 1, + ACTIONS(7472), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(7057), 1, + 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(7059), 1, + ACTIONS(7494), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7027), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(5882), 3, 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(4626), 9, + anon_sym_on, + STATE(4846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589017,7 +618165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95105] = 13, + [110185] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589038,36 +618186,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4627), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4896), 11, + 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(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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4894), 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(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, @@ -589078,18 +618237,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, - [95190] = 40, + [110287] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589110,75 +618266,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7500), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7512), 1, + anon_sym_AMP, + ACTIONS(7516), 1, + anon_sym_GT_GT, + ACTIONS(7522), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7524), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7526), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7528), 1, + anon_sym_as, + ACTIONS(7530), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4628), 9, + ACTIONS(5864), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589188,7 +618343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95329] = 35, + [110425] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589209,70 +618364,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7500), 1, + anon_sym_QMARK, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7041), 1, + ACTIONS(7508), 1, + anon_sym_CARET, + ACTIONS(7510), 1, + anon_sym_PIPE, + ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7057), 1, + 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(7059), 1, + ACTIONS(7530), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7027), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_CARET, + ACTIONS(5072), 3, + anon_sym_in, 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(4629), 9, + STATE(4849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589282,7 +618441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95458] = 13, + [110563] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589303,7 +618462,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4630), 9, + 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(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, @@ -589313,48 +618514,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4801), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4799), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5660), 13, 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, - [95543] = 40, + [110679] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589375,75 +618549,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7029), 1, + ACTIONS(7500), 1, anon_sym_QMARK, - ACTIONS(7035), 1, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7039), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7522), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, + ACTIONS(7524), 1, anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, + ACTIONS(7526), 1, anon_sym_QMARK_QMARK, - ACTIONS(7057), 1, + ACTIONS(7528), 1, anon_sym_as, - ACTIONS(7059), 1, + ACTIONS(7530), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, + ACTIONS(5882), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_equals, - STATE(4631), 9, + STATE(4851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589453,7 +618626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95682] = 13, + [110817] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589474,7 +618647,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4632), 9, + 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(7536), 1, + anon_sym_SLASH, + 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(7534), 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(4852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589484,28 +618694,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5290), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5288), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5660), 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_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -589513,19 +618703,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, - [95767] = 13, + [110927] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589546,79 +618731,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5338), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7496), 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, - anon_sym_DOT, - ACTIONS(5336), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5899), 3, + anon_sym_in, 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, - [95852] = 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, + STATE(4853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589628,48 +618808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5334), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5332), 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, - [95937] = 13, + [111065] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589690,79 +618829,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4635), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5000), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4998), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_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, - [96022] = 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(4636), 9, + ACTIONS(7544), 3, + 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, @@ -589772,48 +618906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3081), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3083), 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, - [96107] = 13, + [111203] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589834,58 +618927,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4637), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5060), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5058), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + 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, + ACTIONS(7546), 1, anon_sym_COMMA, - anon_sym_LPAREN, + 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(5899), 2, + anon_sym_COLON, + anon_sym_RPAREN, + 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, - anon_sym_CARET, + 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, - anon_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, - [96192] = 40, + STATE(4855), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [111343] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -589906,75 +619026,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, + ACTIONS(7462), 1, anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(7117), 1, + ACTIONS(7472), 1, anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7484), 1, + anon_sym_DOT_DOT, + ACTIONS(7486), 1, anon_sym_AMP_AMP, - ACTIONS(7131), 1, + ACTIONS(7488), 1, anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, + ACTIONS(7490), 1, anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, + ACTIONS(7492), 1, anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7494), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, + ACTIONS(5899), 3, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4638), 9, + anon_sym_on, + STATE(4856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -589984,7 +619103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96331] = 40, + [111481] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590005,75 +619124,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6962), 1, anon_sym_QMARK, - ACTIONS(7069), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7073), 1, + ACTIONS(6972), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(6974), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(6984), 1, + anon_sym_DOT_DOT, + ACTIONS(6986), 1, anon_sym_AMP_AMP, - ACTIONS(7087), 1, + ACTIONS(6988), 1, anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, + ACTIONS(6990), 1, anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, + ACTIONS(6992), 1, anon_sym_is, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(6960), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, + ACTIONS(5899), 3, sym_interpolation_close_brace, anon_sym_COLON, anon_sym_COMMA, - anon_sym_into, - STATE(4639), 9, + STATE(4857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590083,7 +619201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96470] = 22, + [111619] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590104,88 +619222,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6971), 1, + 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, - STATE(2738), 1, + ACTIONS(7550), 1, + anon_sym_AMP, + ACTIONS(7556), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5664), 2, anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4640), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1139), 20, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, + ACTIONS(5660), 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_as, - anon_sym_is, - anon_sym_with, - [96573] = 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, + STATE(4858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590195,48 +619294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4984), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4982), 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, - [96658] = 22, + [111747] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590257,67 +619315,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6949), 1, + 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, - STATE(2537), 1, + ACTIONS(7550), 1, + anon_sym_AMP, + ACTIONS(7556), 1, + anon_sym_is, + ACTIONS(7558), 1, + anon_sym_CARET, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5664), 2, anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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(1139), 20, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, + ACTIONS(5660), 6, + anon_sym_COLON, 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, - [96761] = 40, + 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, + [111877] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590338,75 +619409,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7542), 1, + anon_sym_DOT_DOT, + ACTIONS(7556), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 7, + anon_sym_COLON, + anon_sym_CARET, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4643), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590416,7 +619480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96900] = 13, + [112003] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590437,7 +619501,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4644), 9, + 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(7536), 1, + anon_sym_SLASH, + 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(5664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590447,28 +619549,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4948), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4946), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, + ACTIONS(5660), 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_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -590476,19 +619558,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, - [96985] = 22, + [112115] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590509,88 +619586,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6883), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7564), 1, + anon_sym_SLASH, + ACTIONS(7568), 1, + anon_sym_GT_GT, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4645), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 20, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [97088] = 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(4646), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590600,48 +619638,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5326), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5324), 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(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_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, - [97173] = 40, + [112231] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590662,75 +619673,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7542), 1, + anon_sym_DOT_DOT, + ACTIONS(7556), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, + ACTIONS(5664), 3, + anon_sym_QMARK, + 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_into, - anon_sym_by, - STATE(4647), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590740,7 +619743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97312] = 40, + [112355] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590761,75 +619764,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, + ACTIONS(7542), 1, + anon_sym_DOT_DOT, + ACTIONS(7550), 1, + anon_sym_AMP, + ACTIONS(7556), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7558), 1, + anon_sym_CARET, + ACTIONS(7572), 1, + anon_sym_PIPE, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, + ACTIONS(5660), 6, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4648), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590839,7 +619838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97451] = 40, + [112487] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590860,75 +619859,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6527), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, - anon_sym_QMARK, - ACTIONS(7069), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + 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(7073), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7075), 1, - anon_sym_AMP, - ACTIONS(7079), 1, - anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(7574), 1, anon_sym_AMP_AMP, - ACTIONS(7087), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, - anon_sym_is, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - sym_interpolation_close_brace, + ACTIONS(5660), 5, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4649), 9, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -590938,7 +619934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97590] = 40, + [112621] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -590959,75 +619955,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + 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(7117), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7574), 1, anon_sym_AMP_AMP, - ACTIONS(7131), 1, + ACTIONS(7576), 1, anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, + ACTIONS(7578), 1, anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, + ACTIONS(5660), 3, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4650), 9, + STATE(4866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591037,7 +620032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97729] = 40, + [112759] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591058,75 +620053,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7580), 1, + anon_sym_COMMA, + ACTIONS(7582), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + STATE(6886), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5564), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4651), 9, + STATE(4867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591136,7 +620132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97868] = 40, + [112901] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591157,106 +620153,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7069), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7073), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(7087), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, anon_sym_is, - STATE(3122), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - 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, - [98007] = 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(4653), 9, + ACTIONS(7584), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591266,48 +620230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5322), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5320), 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, - [98092] = 40, + [113039] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591328,75 +620251,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6527), 1, - anon_sym_as, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7063), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7069), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7071), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7073), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7075), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7079), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7085), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7087), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7089), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7091), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(3122), 1, + ACTIONS(7580), 1, + anon_sym_COMMA, + ACTIONS(7586), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + STATE(6888), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7061), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7065), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7081), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7083), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_into, - STATE(4654), 9, + STATE(4869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591406,7 +620330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98231] = 21, + [113181] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591427,33 +620351,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + 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(2107), 1, - sym_generic_name, - STATE(4264), 1, + 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(5616), 1, - sym_attribute_target_specifier, - STATE(6279), 1, - sym__name, - STATE(6806), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1051), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4655), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + ACTIONS(3883), 2, + anon_sym_and, + anon_sym_or, + STATE(4870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591463,7 +620392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -591477,198 +620406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_into, anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [98332] = 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(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7175), 1, - anon_sym_AMP_AMP, - ACTIONS(7177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7173), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5610), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - 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, - [98471] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6971), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(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(5656), 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_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, - [98578] = 13, + anon_sym_on, + 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, @@ -591689,58 +620436,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5032), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5030), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_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, - [98663] = 29, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591761,49 +620534,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7597), 1, anon_sym_SLASH, - ACTIONS(7079), 1, + ACTIONS(7601), 1, anon_sym_GT_GT, - STATE(3122), 1, + ACTIONS(7603), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7077), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4659), 9, + STATE(4872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591813,22 +620586,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 13, 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, - anon_sym_into, anon_sym_as, anon_sym_is, - [98780] = 13, + [113547] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591849,58 +620621,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4660), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4870), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4868), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + 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, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + 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, - anon_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, - [98865] = 26, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -591921,35 +620721,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7597), 1, anon_sym_SLASH, - STATE(3122), 1, + ACTIONS(7603), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7067), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -591958,7 +620758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4661), 9, + STATE(4874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -591968,10 +620768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -591979,13 +620776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_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, - [98976] = 13, + [113799] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592006,58 +620805,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(2913), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2915), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7603), 1, + anon_sym_DOT_DOT, + ACTIONS(7611), 1, + 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_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, - anon_sym_CARET, + ACTIONS(7599), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [99061] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592078,45 +620898,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - ACTIONS(7069), 1, + ACTIONS(7597), 1, anon_sym_SLASH, - STATE(3122), 1, + 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, + anon_sym_CARET, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7065), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7067), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(7599), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4663), 9, + 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_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, @@ -592126,24 +620971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [99174] = 13, + [114057] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592164,58 +620992,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4976), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4974), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7599), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 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, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [99259] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592236,58 +621084,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(5044), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5042), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_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, - [99344] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592308,75 +621182,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6885), 1, - anon_sym_DOT_DOT, - ACTIONS(7107), 1, - anon_sym_QMARK, - ACTIONS(7113), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7115), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7117), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7119), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7123), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7129), 1, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(7131), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7135), 1, - anon_sym_as, - ACTIONS(7137), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7105), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7109), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7111), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7121), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7125), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7127), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_and, - anon_sym_or, - anon_sym_into, - anon_sym_by, - STATE(4666), 9, + ACTIONS(5660), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592386,7 +621259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99483] = 40, + [114459] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592407,75 +621280,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7228), 1, - anon_sym_QMARK, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7234), 1, - anon_sym_is, - ACTIONS(7242), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7246), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7248), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7252), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7258), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7260), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7627), 1, + anon_sym_COMMA, + ACTIONS(7629), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6864), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4667), 9, + STATE(4880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592485,7 +621359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99622] = 16, + [114601] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592506,13 +621380,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5199), 1, + 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, - ACTIONS(7268), 1, - anon_sym_COLON_COLON, - STATE(3220), 1, - sym_type_argument_list, - STATE(4668), 9, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592522,26 +621428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 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(3602), 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, + ACTIONS(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -592549,8 +621436,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, @@ -592558,9 +621444,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, - [99713] = 14, + [114713] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592581,59 +621465,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7148), 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(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [99800] = 13, + STATE(4882), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [114837] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592654,58 +621556,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(4856), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4854), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7603), 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, + 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, - anon_sym_CARET, + ACTIONS(7599), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [99885] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592726,58 +621651,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4671), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4813), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(4811), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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, - [99970] = 15, + ACTIONS(7633), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4884), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [115107] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592798,60 +621749,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_and, - ACTIONS(7264), 1, - anon_sym_or, - 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, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 26, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7603), 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, + 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, - anon_sym_CARET, + ACTIONS(7599), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5660), 5, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, 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, - [100059] = 40, + STATE(4885), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [115241] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592872,75 +621845,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(6921), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(6965), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - ACTIONS(6969), 1, + ACTIONS(7601), 1, anon_sym_GT_GT, - ACTIONS(6971), 1, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(6975), 1, + ACTIONS(7611), 1, anon_sym_AMP, - ACTIONS(6981), 1, + ACTIONS(7617), 1, anon_sym_is, - ACTIONS(6983), 1, + ACTIONS(7619), 1, anon_sym_CARET, - ACTIONS(6985), 1, + ACTIONS(7631), 1, anon_sym_PIPE, - ACTIONS(6987), 1, + ACTIONS(7635), 1, anon_sym_AMP_AMP, - ACTIONS(6989), 1, + ACTIONS(7637), 1, anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, + ACTIONS(7639), 1, anon_sym_QMARK_QMARK, - ACTIONS(7159), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6961), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6963), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6967), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6973), 2, + ACTIONS(7609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6977), 2, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6979), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, + ACTIONS(5660), 3, anon_sym_EQ_GT, - anon_sym_when, anon_sym_and, anon_sym_or, - STATE(4673), 9, + STATE(4886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -592950,7 +621922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100198] = 29, + [115379] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -592971,49 +621943,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7045), 1, - anon_sym_GT_GT, - STATE(2537), 1, + ACTIONS(7570), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7031), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4674), 9, + anon_sym_GT_GT, + STATE(4887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593023,8 +621990,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + 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, @@ -593034,11 +622003,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_equals, + anon_sym_by, anon_sym_as, anon_sym_is, - [100315] = 40, + [115489] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593059,75 +622027,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7228), 1, - anon_sym_QMARK, - ACTIONS(7230), 1, + ACTIONS(7564), 1, + anon_sym_SLASH, + ACTIONS(7568), 1, + anon_sym_GT_GT, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(7643), 1, + anon_sym_AMP, + ACTIONS(7649), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7244), 1, - anon_sym_CARET, - ACTIONS(7246), 1, - anon_sym_PIPE, - ACTIONS(7248), 1, - anon_sym_AMP, - ACTIONS(7252), 1, - anon_sym_GT_GT, - ACTIONS(7258), 1, - anon_sym_AMP_AMP, - ACTIONS(7260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4675), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593137,7 +622099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100454] = 13, + [115617] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593158,112 +622120,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4676), 9, - sym_preproc_region, - sym_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(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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6962), 1, + anon_sym_QMARK, + ACTIONS(6968), 1, 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, - anon_sym_DOT, - ACTIONS(4860), 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, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + ACTIONS(6986), 1, anon_sym_AMP_AMP, + ACTIONS(6988), 1, anon_sym_PIPE_PIPE, + ACTIONS(6990), 1, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, + ACTIONS(6992), 1, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [100539] = 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(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6883), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(6960), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4677), 9, + 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(5882), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(4889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593273,26 +622197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 18, - 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_into, - anon_sym_as, - anon_sym_is, - [100646] = 26, + [115755] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593313,44 +622218,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7597), 1, anon_sym_SLASH, - STATE(2537), 1, + 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, + 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, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7033), 2, + ACTIONS(7593), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7599), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7609), 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(4678), 9, + ACTIONS(7613), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7615), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5858), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593360,24 +622295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [100757] = 22, + [115893] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593398,26 +622316,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7103), 1, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -593427,7 +622345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4679), 9, + STATE(4891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593437,7 +622355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 20, + ACTIONS(5731), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -593454,11 +622372,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, - [100860] = 13, + [115995] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593479,58 +622396,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4680), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5318), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7601), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5316), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7603), 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, + 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, - anon_sym_CARET, + ACTIONS(7599), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5864), 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [100945] = 40, + 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, + [116133] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593551,75 +622494,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(7597), 1, + anon_sym_SLASH, + ACTIONS(7601), 1, + anon_sym_GT_GT, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7611), 1, + anon_sym_AMP, + ACTIONS(7617), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7619), 1, anon_sym_CARET, - ACTIONS(7246), 1, + ACTIONS(7631), 1, anon_sym_PIPE, - ACTIONS(7248), 1, - anon_sym_AMP, - ACTIONS(7252), 1, - anon_sym_GT_GT, - ACTIONS(7258), 1, + ACTIONS(7635), 1, anon_sym_AMP_AMP, - ACTIONS(7260), 1, + ACTIONS(7637), 1, anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, + ACTIONS(7639), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7653), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4681), 9, + ACTIONS(5072), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593629,7 +622571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101084] = 38, + [116271] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593650,73 +622592,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(7597), 1, + anon_sym_SLASH, + ACTIONS(7601), 1, + anon_sym_GT_GT, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7611), 1, + anon_sym_AMP, + ACTIONS(7617), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7619), 1, anon_sym_CARET, - ACTIONS(7246), 1, + ACTIONS(7631), 1, anon_sym_PIPE, - ACTIONS(7248), 1, - anon_sym_AMP, - ACTIONS(7252), 1, - anon_sym_GT_GT, - ACTIONS(7258), 1, + ACTIONS(7635), 1, anon_sym_AMP_AMP, - STATE(2399), 1, + ACTIONS(7637), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7639), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7653), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4682), 9, + ACTIONS(5882), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593726,7 +622669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101219] = 37, + [116409] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593747,72 +622690,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(7597), 1, + anon_sym_SLASH, + ACTIONS(7601), 1, + anon_sym_GT_GT, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7611), 1, + anon_sym_AMP, + ACTIONS(7617), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7619), 1, anon_sym_CARET, - ACTIONS(7246), 1, + ACTIONS(7631), 1, anon_sym_PIPE, - ACTIONS(7248), 1, - anon_sym_AMP, - ACTIONS(7252), 1, - anon_sym_GT_GT, - STATE(2399), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4683), 9, + ACTIONS(5899), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(4895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593822,7 +622767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101352] = 22, + [116547] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593843,36 +622788,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(7230), 1, + 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, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4684), 9, + 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(7633), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593882,28 +622865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [101455] = 33, + [116685] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -593924,57 +622886,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(7564), 1, + anon_sym_SLASH, + ACTIONS(7568), 1, + anon_sym_GT_GT, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(7643), 1, + anon_sym_AMP, + ACTIONS(7649), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7252), 1, - anon_sym_GT_GT, - STATE(2399), 1, + ACTIONS(7655), 1, + anon_sym_CARET, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7256), 2, + 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(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4685), 9, + 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(4897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -593984,18 +622959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [101580] = 27, + [116815] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594016,45 +622980,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7242), 1, - anon_sym_SLASH, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7238), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7240), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4686), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594064,24 +623021,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [101693] = 34, + 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, @@ -594102,69 +623065,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(7564), 1, + anon_sym_SLASH, + ACTIONS(7568), 1, + anon_sym_GT_GT, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(7649), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7252), 1, - anon_sym_GT_GT, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5660), 7, anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4687), 9, + anon_sym_by, + STATE(4899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594174,7 +623136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101820] = 36, + [117053] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594195,71 +623157,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7242), 1, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7244), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7248), 1, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7252), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7236), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_COLON, + ACTIONS(5858), 3, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4688), 9, + STATE(4900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594269,7 +623234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101951] = 35, + [117191] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594290,70 +623255,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7242), 1, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7248), 1, + ACTIONS(7444), 1, + anon_sym_CARET, + ACTIONS(7446), 1, + anon_sym_PIPE, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7252), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7236), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7238), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7240), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_COLON, + ACTIONS(5864), 3, + anon_sym_SEMI, 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(4689), 9, + STATE(4901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594363,7 +623332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102080] = 24, + [117329] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594384,40 +623353,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7230), 1, + 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, - STATE(2399), 1, + 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(7661), 1, + anon_sym_COMMA, + ACTIONS(7663), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6846), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4690), 9, + 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(4902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594427,26 +623432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [102187] = 27, + [117471] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594467,45 +623453,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7025), 1, - anon_sym_DOT_DOT, - ACTIONS(7035), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7031), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(7538), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7548), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4691), 9, + ACTIONS(7552), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7554), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5858), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + STATE(4903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594515,24 +623530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [102300] = 26, + [117609] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594553,44 +623551,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7242), 1, - anon_sym_SLASH, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7240), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4692), 9, + ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7667), 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(4904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594600,24 +623592,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [102411] = 29, + 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, + [117721] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594638,49 +623636,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7230), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(7542), 1, anon_sym_DOT_DOT, - ACTIONS(7242), 1, - anon_sym_SLASH, - ACTIONS(7252), 1, - anon_sym_GT_GT, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7238), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7240), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7250), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4693), 9, + anon_sym_GT_GT, + STATE(4905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594690,22 +623675,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5731), 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_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, - [102528] = 13, + anon_sym_with, + [117823] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594726,7 +623716,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4694), 9, + 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(7669), 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(4906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594736,48 +623757,130 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, + [117935] = 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5296), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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, - [102613] = 36, + STATE(4907), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [118077] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594798,71 +623901,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7103), 1, + ACTIONS(7542), 1, anon_sym_DOT_DOT, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7169), 1, + ACTIONS(7550), 1, anon_sym_AMP, - ACTIONS(7181), 1, + ACTIONS(7556), 1, anon_sym_is, - STATE(2537), 1, + 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(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7093), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, + ACTIONS(7548), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_EQ_GT, + ACTIONS(5864), 3, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4695), 9, + STATE(4908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -594872,7 +623978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102744] = 13, + [118215] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594893,58 +623999,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(4829), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7536), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7540), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4827), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5072), 3, + anon_sym_COLON, 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, - [102829] = 22, + STATE(4909), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [118353] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -594965,36 +624097,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(7017), 1, + 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, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4697), 9, + 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(7673), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595004,28 +624174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [102932] = 13, + [118491] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595046,7 +624195,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4698), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595056,48 +624236,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4809), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4807), 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(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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [103017] = 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, + [118603] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595118,7 +624280,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4699), 9, + ACTIONS(7677), 1, + anon_sym_and, + STATE(4912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595128,7 +624292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5306), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -595140,7 +624304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5304), 28, + ACTIONS(6067), 26, sym_interpolation_close_brace, anon_sym_LBRACK, anon_sym_COLON, @@ -595159,17 +624323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [103102] = 13, + [118689] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595190,58 +624352,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4700), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4833), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6485), 1, + anon_sym_as, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7536), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7540), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4831), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5882), 3, + anon_sym_COLON, 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, - [103187] = 14, + STATE(4913), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [118827] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595262,9 +624450,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7144), 1, - anon_sym_and, - STATE(4701), 9, + ACTIONS(4912), 1, + anon_sym_LBRACK, + ACTIONS(5453), 1, + anon_sym_LBRACE, + ACTIONS(5456), 1, + anon_sym_QMARK, + STATE(3378), 1, + sym_initializer_expression, + STATE(4914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595274,10 +624468,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(4922), 10, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -595286,12 +624479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 27, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(4916), 24, anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -595305,16 +624495,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, - [103274] = 40, + [118919] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595335,75 +624525,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7103), 1, + ACTIONS(7542), 1, anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7550), 1, + anon_sym_AMP, + ACTIONS(7556), 1, + anon_sym_is, + ACTIONS(7558), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7574), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7576), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7578), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7665), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, + ACTIONS(7548), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 4, - anon_sym_EQ_GT, + ACTIONS(5899), 3, + anon_sym_COLON, anon_sym_and, anon_sym_or, - anon_sym_into, - STATE(4702), 9, + STATE(4915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595413,7 +624602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103413] = 40, + [119057] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595434,75 +624623,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7452), 1, + anon_sym_GT_GT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4703), 9, + ACTIONS(5660), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595512,7 +624698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103552] = 40, + [119191] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595533,75 +624719,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7679), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + STATE(6844), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4704), 9, + STATE(4917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595611,7 +624798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103691] = 13, + [119333] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595632,58 +624819,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4705), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2909), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5899), 1, + anon_sym_RPAREN, + 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, - anon_sym_DOT, - ACTIONS(2911), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - anon_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, - [103776] = 13, + ACTIONS(7546), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4918), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [119473] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595704,7 +624918,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4706), 9, + 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(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, + anon_sym_and, + anon_sym_or, + STATE(4919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595714,48 +624959,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4821), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4819), 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(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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [103861] = 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, + [119585] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595776,75 +625003,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7165), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4707), 9, + ACTIONS(7546), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595854,7 +625080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104000] = 13, + [119723] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -595875,105 +625101,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5056), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5054), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + 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, - anon_sym_LPAREN, + ACTIONS(7683), 1, + anon_sym_RPAREN, + STATE(2485), 1, + sym_bracketed_argument_list, + STATE(3487), 1, + sym_argument_list, + STATE(6866), 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, - anon_sym_CARET, + 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, - anon_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, - [104085] = 21, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(5613), 1, - sym_attribute_target_specifier, - STATE(6279), 1, - sym__name, - STATE(6625), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(1051), 7, - anon_sym_field, - anon_sym_event, - anon_sym_method, - anon_sym_param, - anon_sym_property, - anon_sym_return, - anon_sym_type, - STATE(4709), 9, + STATE(4921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -595983,30 +625180,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, - [104186] = 40, + [119865] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596027,75 +625201,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(4710), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596105,7 +625249,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104325] = 13, + 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_by, + anon_sym_as, + anon_sym_is, + [119977] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596126,7 +625286,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4711), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596136,48 +625327,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5310), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5308), 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(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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [104410] = 35, + anon_sym_join, + anon_sym_on, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596198,70 +625371,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7173), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 8, - anon_sym_CARET, - anon_sym_EQ_GT, + 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, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4712), 9, + STATE(4924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596271,7 +625412,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104539] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596292,75 +625456,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7278), 1, + anon_sym_COMMA, + ACTIONS(7280), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + STATE(6942), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4713), 9, + STATE(4925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596370,7 +625535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104678] = 38, + [120343] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596391,73 +625556,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + 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(7103), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, + ACTIONS(7163), 1, + anon_sym_AMP_AMP, ACTIONS(7165), 1, - anon_sym_CARET, + anon_sym_PIPE_PIPE, ACTIONS(7167), 1, - anon_sym_PIPE, + anon_sym_QMARK_QMARK, ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7175), 1, - anon_sym_AMP_AMP, - ACTIONS(7181), 1, anon_sym_is, - STATE(2537), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4714), 9, + ACTIONS(7689), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(4926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596467,7 +625633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104813] = 13, + [120481] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596488,58 +625654,86 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4715), 9, - sym_preproc_region, - sym_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, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5072), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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(7691), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_bracketed_argument_list, + STATE(3487), 1, + sym_argument_list, + STATE(6946), 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, - anon_sym_CARET, + 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, - anon_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, - [104898] = 13, + STATE(4927), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [120623] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596560,36 +625754,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4716), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4817), 11, + 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(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(1223), 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(4815), 28, + STATE(4928), 9, + sym_preproc_region, + sym_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, 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, @@ -596600,18 +625807,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, - [104983] = 22, + [120725] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596632,36 +625834,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7025), 1, + 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, anon_sym_DOT_DOT, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(7693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7695), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(7699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(5664), 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(4717), 9, + STATE(4929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596671,28 +625886,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 20, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(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_switch, 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, - [105086] = 40, + [120841] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596713,75 +625921,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(5827), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7165), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7167), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7175), 1, + ACTIONS(7452), 1, + anon_sym_GT_GT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(7177), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 4, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(4718), 9, + ACTIONS(5899), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596791,7 +625998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105225] = 13, + [120979] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596812,79 +626019,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5294), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5292), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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(7705), 1, + anon_sym_RBRACK, + STATE(2485), 1, + sym_bracketed_argument_list, + STATE(3487), 1, + sym_argument_list, + STATE(7013), 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, - anon_sym_CARET, + 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, - anon_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, - [105310] = 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(4720), 9, + STATE(4931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596894,48 +626098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5052), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5050), 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, - [105395] = 13, + [121121] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -596956,7 +626119,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4721), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -596966,28 +626166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5302), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5300), 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(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -596995,19 +626174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [105480] = 13, + [121231] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597028,36 +626203,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5314), 11, + 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(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(1223), 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(5312), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + STATE(4933), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(1221), 19, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -597068,18 +626256,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, - [105565] = 13, + [121333] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597100,58 +626283,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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, - ACTIONS(5294), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7697), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7701), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5292), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(7703), 1, + anon_sym_DOT_DOT, + ACTIONS(7709), 1, + anon_sym_AMP, + ACTIONS(7715), 1, + anon_sym_as, + ACTIONS(7717), 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(7693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7699), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + 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_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [105650] = 37, + anon_sym_equals, + 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, + [121461] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597172,72 +626376,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(7103), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, + ACTIONS(7709), 1, anon_sym_AMP, - ACTIONS(7181), 1, + ACTIONS(7715), 1, + anon_sym_as, + ACTIONS(7717), 1, anon_sym_is, - STATE(2537), 1, + ACTIONS(7719), 1, + anon_sym_CARET, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, + ACTIONS(7707), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_EQ_GT, + ACTIONS(5660), 6, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(4724), 9, + anon_sym_equals, + STATE(4935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597247,7 +626449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105783] = 13, + [121591] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597268,7 +626470,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(4725), 9, + 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, + anon_sym_and, + anon_sym_or, + STATE(4936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597278,48 +626511,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5354), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5352), 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(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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [105868] = 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, + [121703] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597340,57 +626555,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, - anon_sym_LBRACK, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_switch, - ACTIONS(5793), 1, - anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7103), 1, - anon_sym_DOT_DOT, - ACTIONS(7181), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7173), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4726), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597400,18 +626596,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 10, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + 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, - [105993] = 34, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [121815] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597432,69 +626640,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5169), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(5793), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(5827), 1, - anon_sym_as, - ACTIONS(7097), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7101), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(7103), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7181), 1, + ACTIONS(7715), 1, + anon_sym_as, + ACTIONS(7717), 1, anon_sym_is, - STATE(2537), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7093), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7095), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7099), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7161), 2, + ACTIONS(7707), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7171), 2, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7173), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 8, + ACTIONS(5660), 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, - anon_sym_into, - STATE(4727), 9, + anon_sym_equals, + STATE(4938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597504,7 +626711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106120] = 40, + [121941] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597525,105 +626732,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_and, - anon_sym_or, - 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, - [106258] = 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(4729), 9, + ACTIONS(5664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597633,25 +626780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5286), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3743), 27, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -597659,21 +626788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [106342] = 42, + [122053] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597694,76 +626817,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7715), 1, + anon_sym_as, + ACTIONS(7717), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7306), 1, - anon_sym_RBRACK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6739), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7707), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4730), 9, + 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_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(4940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597773,7 +626887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106484] = 15, + [122177] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597794,59 +626908,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7308), 1, - anon_sym_into, - STATE(4782), 1, - aux_sym__query_body_repeat2, - STATE(4731), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7697), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7701), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5833), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(7703), 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, + 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(7693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7699), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - anon_sym_DASH_GT, - anon_sym_with, - [106572] = 29, + STATE(4941), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [122309] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597867,49 +627003,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7314), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(7707), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4732), 9, + ACTIONS(7711), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7713), 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_equals, + STATE(4942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -597919,21 +627078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [106688] = 37, + [122443] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -597954,71 +627099,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(6673), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(6675), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + 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, + ACTIONS(7729), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(5858), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4733), 9, + STATE(4943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598028,7 +627177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106820] = 37, + [122583] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598049,71 +627198,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4734), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(4944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598123,7 +627250,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106952] = 26, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598144,35 +627285,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -598181,7 +627322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4735), 9, + STATE(4945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598191,10 +627332,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_SEMI, + ACTIONS(5660), 15, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598207,7 +627348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [107062] = 24, + [122809] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598228,30 +627369,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -598261,7 +627402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4736), 9, + STATE(4946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598271,10 +627412,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - anon_sym_SEMI, + ACTIONS(5660), 17, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -598289,7 +627430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [107168] = 35, + [122915] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598310,69 +627451,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(6974), 1, + anon_sym_AMP, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7310), 2, + ACTIONS(6627), 2, + 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(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_SEMI, + ACTIONS(5660), 7, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4737), 9, + STATE(4947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598382,7 +627523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107296] = 36, + [123043] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598403,70 +627544,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(6970), 1, + anon_sym_CARET, + ACTIONS(6974), 1, + anon_sym_AMP, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7310), 2, + ACTIONS(6627), 2, + 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(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_SEMI, + ACTIONS(5660), 6, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4738), 9, + STATE(4948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598476,7 +627617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107426] = 34, + [123173] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598497,68 +627638,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_SEMI, + ACTIONS(5660), 7, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4739), 9, + STATE(4949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598568,7 +627709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107552] = 27, + [123299] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598589,45 +627730,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4740), 9, + STATE(4950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598637,10 +627778,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_SEMI, + ACTIONS(5660), 15, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -598653,7 +627794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [107664] = 33, + [123411] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598674,67 +627815,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_SEMI, + ACTIONS(5660), 9, + sym_interpolation_close_brace, + anon_sym_COLON, 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, - STATE(4741), 9, + STATE(4951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598744,7 +627885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107788] = 42, + [123535] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598765,76 +627906,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, + ACTIONS(7709), 1, anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(7715), 1, + anon_sym_as, + ACTIONS(7717), 1, + anon_sym_is, + ACTIONS(7719), 1, anon_sym_CARET, - ACTIONS(7332), 1, - anon_sym_SEMI, - ACTIONS(7334), 1, - anon_sym_COMMA, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, + ACTIONS(7725), 1, anon_sym_PIPE, - ACTIONS(7340), 1, + ACTIONS(7727), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6613), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, + ACTIONS(7707), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4742), 9, + ACTIONS(5660), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598844,7 +627983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107930] = 22, + [123673] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598865,36 +628004,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4743), 9, + ACTIONS(7735), 1, + anon_sym_and, + STATE(4953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -598904,10 +628016,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, + 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_COLON, + anon_sym_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -598918,13 +628044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [108032] = 37, + [123759] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -598945,71 +628076,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7338), 1, + ACTIONS(6972), 1, anon_sym_PIPE, - STATE(2399), 1, + ACTIONS(6974), 1, + anon_sym_AMP, + ACTIONS(6978), 1, + anon_sym_GT_GT, + ACTIONS(6984), 1, + anon_sym_DOT_DOT, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_SEMI, + ACTIONS(5660), 6, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4744), 9, + STATE(4954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599019,7 +628150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108164] = 38, + [123891] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599040,72 +628171,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 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(5656), 5, - anon_sym_SEMI, + ACTIONS(7588), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4745), 9, + ACTIONS(7737), 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(4955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599115,7 +628212,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108298] = 40, + 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, + [124003] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599136,74 +628256,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 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(5656), 3, - anon_sym_SEMI, + ACTIONS(7588), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4746), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599213,7 +628297,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108436] = 29, + 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, + [124115] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599234,49 +628341,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6851), 1, + ACTIONS(7496), 1, + anon_sym_DOT_DOT, + ACTIONS(7500), 1, + anon_sym_QMARK, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(6861), 1, + 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(6867), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, + 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, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6847), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4747), 9, + ACTIONS(7518), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7520), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5777), 3, + anon_sym_in, + anon_sym_and, + anon_sym_or, + STATE(4957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599286,21 +628418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [108552] = 40, + [124253] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599321,74 +628439,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, + ACTIONS(6972), 1, anon_sym_PIPE, - ACTIONS(7340), 1, + 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(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_SEMI, + ACTIONS(5660), 5, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4748), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(4958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599398,7 +628514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108690] = 40, + [124387] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599419,74 +628535,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7348), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7354), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7374), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7741), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(7019), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_and, - anon_sym_or, - anon_sym_equals, - STATE(4749), 9, + STATE(4959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599496,7 +628614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108828] = 27, + [124529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599517,38 +628635,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + 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(7382), 1, + 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(6968), 1, + 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_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_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(5660), 3, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7385), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4750), 9, + STATE(4960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599558,30 +628712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [108940] = 22, + [124667] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599602,66 +628733,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7387), 1, + 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, anon_sym_DOT_DOT, - STATE(2738), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4751), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7699), 2, 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, - anon_sym_EQ_GT, - anon_sym_switch, + ACTIONS(5858), 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, - anon_sym_with, - [109042] = 40, + anon_sym_equals, + 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, + [124805] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599682,74 +628831,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6808), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6845), 1, - anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(6853), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(6855), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(6871), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + ACTIONS(7745), 1, + anon_sym_SEMI, + ACTIONS(7747), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + STATE(6807), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4752), 9, + STATE(4962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599759,7 +628910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109180] = 40, + [124947] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599780,74 +628931,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 2, + ACTIONS(5733), 9, 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(4886), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4753), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599857,7 +628970,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109318] = 38, + 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_equals, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [125049] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599878,72 +629011,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6695), 1, + ACTIONS(7709), 1, + anon_sym_AMP, + ACTIONS(7715), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(7717), 1, anon_sym_is, - STATE(2399), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7707), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4754), 9, + ACTIONS(5864), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -599953,7 +629088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109452] = 27, + [125187] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -599974,38 +629109,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7389), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4755), 9, + ACTIONS(7749), 1, + anon_sym_into, + STATE(5057), 1, + aux_sym__query_body_repeat2, + STATE(4965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600015,126 +629123,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [109564] = 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(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(5658), 1, + ACTIONS(6001), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6855), 1, anon_sym_PIPE, - ACTIONS(6857), 1, anon_sym_AMP, - ACTIONS(6861), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_AMP_AMP, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5999), 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(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [109698] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [125275] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600155,74 +629182,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, + 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(6691), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(7743), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7707), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4757), 9, + ACTIONS(5072), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600232,7 +629259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109836] = 40, + [125413] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600253,74 +629280,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7701), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + 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(6871), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, + ACTIONS(7743), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7707), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4758), 9, + ACTIONS(5882), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(4967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600330,7 +629357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109974] = 40, + [125551] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600351,74 +629378,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7354), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(7374), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_and, - anon_sym_or, - anon_sym_equals, - STATE(4759), 9, + ACTIONS(5882), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600428,7 +629455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110112] = 40, + [125689] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600449,74 +629476,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7393), 1, - anon_sym_QMARK, - ACTIONS(7399), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7401), 1, + ACTIONS(7701), 1, + anon_sym_GT_GT, + ACTIONS(7703), 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(7403), 1, + ACTIONS(7725), 1, anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, - anon_sym_GT_GT, - ACTIONS(7415), 1, + ACTIONS(7727), 1, anon_sym_AMP_AMP, - ACTIONS(7417), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(7743), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7707), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_EQ_GT, + ACTIONS(5899), 3, anon_sym_and, anon_sym_or, - STATE(4760), 9, + anon_sym_equals, + STATE(4969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600526,7 +629553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110250] = 24, + [125827] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600547,40 +629574,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7294), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4761), 9, + ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7751), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600590,25 +629615,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [110356] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600629,74 +629659,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7540), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7542), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7550), 1, anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7556), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7558), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7574), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7576), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7578), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7665), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7548), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7423), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4762), 9, + ACTIONS(5777), 3, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + STATE(4971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600706,7 +629736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110494] = 22, + [126077] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600727,26 +629757,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7294), 1, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7542), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -600756,7 +629790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4763), 9, + STATE(4972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600766,7 +629800,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, + ACTIONS(5660), 17, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -600776,17 +629811,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_on, anon_sym_as, anon_sym_is, - anon_sym_with, - [110596] = 27, + [126183] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600807,45 +629839,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6687), 1, + ACTIONS(6799), 1, + anon_sym_GT_GT, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6667), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(6797), 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, - anon_sym_GT_GT, - STATE(4764), 9, + STATE(4973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600855,10 +629891,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, @@ -600871,7 +629905,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [110708] = 40, + [126299] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600892,74 +629926,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(6789), 1, + anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7425), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4765), 9, + ACTIONS(5864), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(4974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -600969,7 +630003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110846] = 40, + [126437] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -600990,74 +630024,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(6962), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(6968), 1, + anon_sym_SLASH, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(6972), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(6988), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(6990), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7423), 3, + ACTIONS(5858), 3, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4766), 9, + STATE(4975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601067,7 +630101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110984] = 27, + [126575] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601088,38 +630122,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7427), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4767), 9, + ACTIONS(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 1, + anon_sym_BANG, + 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(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(4976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601129,30 +630161,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [111096] = 14, + ACTIONS(1221), 19, + anon_sym_COLON, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + 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, @@ -601173,9 +630202,11 @@ 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(4768), 10, + ACTIONS(7735), 1, + anon_sym_and, + ACTIONS(7753), 1, + anon_sym_or, + STATE(4977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601185,8 +630216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -601198,8 +630228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 25, + ACTIONS(6205), 25, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -601213,18 +630244,17 @@ 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_by, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [111182] = 15, + [126765] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601245,59 +630275,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7432), 1, - anon_sym_into, - STATE(4770), 1, - aux_sym__query_body_repeat2, - STATE(4769), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7564), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7568), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5856), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7560), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, + 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_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, - [111270] = 14, + anon_sym_by, + STATE(4978), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [126889] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601318,58 +630366,81 @@ 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(4770), 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(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7564), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7568), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, + anon_sym_CARET, + ACTIONS(7755), 1, + anon_sym_PIPE, + 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(7560), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 6, 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, - [111356] = 40, + anon_sym_by, + STATE(4979), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [127021] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601390,74 +630461,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7643), 1, anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7649), 1, + anon_sym_as, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7655), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7437), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4771), 9, + ACTIONS(5660), 5, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(4980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601467,7 +630536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111494] = 40, + [127155] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601488,74 +630557,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4981), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 15, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7439), 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, + [127265] = 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, - anon_sym_RBRACK, + ACTIONS(7759), 1, anon_sym_RPAREN, - STATE(4772), 9, + 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(4982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601565,7 +630682,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111632] = 40, + 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, + [127377] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601586,74 +630726,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, + ACTIONS(7643), 1, anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(7649), 1, + anon_sym_as, + ACTIONS(7651), 1, + anon_sym_is, + ACTIONS(7655), 1, anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7340), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7342), 1, + ACTIONS(7761), 1, + anon_sym_QMARK, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4773), 9, + ACTIONS(5777), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(4983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601663,7 +630803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111770] = 40, + [127515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601684,74 +630824,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7643), 1, anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7649), 1, + anon_sym_as, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7655), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7761), 1, + anon_sym_QMARK, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7441), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4774), 9, + ACTIONS(5858), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(4984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601761,7 +630901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111908] = 14, + [127653] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601782,38 +630922,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7443), 1, - anon_sym_and, - STATE(4775), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, + 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(7570), 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 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(4985), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -601823,17 +630975,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, - [111994] = 14, + [127759] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601854,36 +631004,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_and, - STATE(4776), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, + 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(7570), 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4986), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -601894,18 +631054,16 @@ 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_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [112080] = 27, + [127861] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -601926,38 +631084,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7447), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4777), 9, + 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(6805), 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(4987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -601967,30 +631127,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [112192] = 33, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602011,67 +631166,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 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(4778), 9, + anon_sym_GT_GT, + STATE(4988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602081,7 +631205,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112316] = 29, + ACTIONS(1221), 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, + [128069] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602102,73 +631246,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6681), 1, + ACTIONS(6795), 1, + anon_sym_AMP, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6667), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4779), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_CARET, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(6803), 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, - anon_sym_as, - anon_sym_is, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [112432] = 40, + STATE(4989), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [128197] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602189,74 +631339,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(6791), 1, + anon_sym_CARET, + ACTIONS(6795), 1, + anon_sym_AMP, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4780), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602266,7 +631412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112570] = 40, + [128327] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602287,74 +631433,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7304), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_and, - anon_sym_or, - anon_sym_on, - STATE(4781), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + 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(4991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602364,7 +631504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112708] = 15, + [128453] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602385,11 +631525,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7308), 1, - anon_sym_into, - STATE(4800), 1, - aux_sym__query_body_repeat2, - STATE(4782), 9, + 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(6805), 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(6785), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6787), 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(4992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602399,25 +631573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 15, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -602425,19 +631581,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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [112796] = 22, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [128565] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602458,36 +631610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4783), 9, + ACTIONS(7767), 1, + anon_sym_and, + ACTIONS(7769), 1, + anon_sym_or, + STATE(4993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602497,7 +631624,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, + 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_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -602507,17 +631650,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_and, - anon_sym_or, + anon_sym_when, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_into, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [112898] = 15, + [128653] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602538,11 +631683,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_into, - STATE(4968), 1, - aux_sym__query_body_repeat2, - STATE(4784), 9, + ACTIONS(7767), 1, + anon_sym_and, + STATE(4994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602552,7 +631695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -602564,7 +631707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5856), 25, + ACTIONS(6067), 26, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -602580,17 +631723,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, + anon_sym_when, anon_sym_DOT_DOT, - anon_sym_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, - [112986] = 29, + [128739] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602611,49 +631755,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6803), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(4785), 9, + ACTIONS(5660), 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(4995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602663,21 +631825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [113102] = 27, + [128863] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602698,38 +631846,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7463), 1, + ACTIONS(7771), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4786), 9, + STATE(4996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602739,7 +631887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -602762,7 +631910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [113214] = 40, + [128975] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602783,84 +631931,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(4997), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 3, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(4787), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113352] = 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + [129081] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602881,11 +632013,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7308), 1, - anon_sym_into, - STATE(4944), 1, - aux_sym__query_body_repeat2, - STATE(4788), 9, + 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(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(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(4998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -602895,23 +632052,87 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(1221), 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_equals, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [129183] = 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(6805), 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(4999), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -602922,18 +632143,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, - [113440] = 40, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [129285] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -602954,74 +632173,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7280), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7282), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7284), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7304), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_and, - anon_sym_or, - anon_sym_on, - STATE(4789), 9, + 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(5000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603031,7 +632247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113578] = 27, + [129417] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603052,38 +632268,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7465), 1, + ACTIONS(7773), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4790), 9, + STATE(5001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603093,7 +632309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -603116,7 +632332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [113690] = 26, + [129529] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603137,44 +632353,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7461), 1, + ACTIONS(7701), 1, + anon_sym_GT_GT, + ACTIONS(7703), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7453), 2, + ACTIONS(7693), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7699), 2, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + ACTIONS(7707), 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(4791), 9, + ACTIONS(7711), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7713), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5777), 3, + anon_sym_and, + anon_sym_or, + anon_sym_equals, + STATE(5002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603184,23 +632430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [113800] = 15, + [129667] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603221,37 +632451,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7432), 1, - anon_sym_into, - STATE(4769), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(5841), 11, + 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(7484), 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5003), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -603261,8 +632504,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, @@ -603271,9 +632512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [113888] = 15, + [129773] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603294,59 +632533,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_into, - STATE(4768), 1, - aux_sym__query_body_repeat2, - STATE(4793), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(5856), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6807), 1, + anon_sym_AMP_AMP, + 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, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, + ACTIONS(5660), 5, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [113976] = 35, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5004), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [129907] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603367,79 +632629,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(1223), 9, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7451), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5005), 9, + sym_preproc_region, + sym_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_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_in, - anon_sym_CARET, + anon_sym_switch, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4794), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114104] = 36, + anon_sym_on, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [130009] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603460,70 +632709,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + 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(7461), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + 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(7479), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7451), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_in, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4795), 9, + ACTIONS(5660), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603533,7 +632786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114234] = 27, + [130147] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603554,38 +632807,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7483), 1, + ACTIONS(7775), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4796), 9, + STATE(5007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603595,7 +632848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -603618,7 +632871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [114346] = 22, + [130259] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603639,26 +632892,128 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7294), 1, + 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, anon_sym_DOT_DOT, - STATE(2738), 1, + 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(5777), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(5008), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [130397] = 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(5302), 1, + anon_sym_LBRACK, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7603), 1, + anon_sym_DOT_DOT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -603668,7 +633023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4797), 9, + STATE(5009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603678,7 +633033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + ACTIONS(5660), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -603688,17 +633043,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_EQ_GT, 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, - [114448] = 40, + [130503] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603719,74 +633072,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 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(1221), 19, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, + anon_sym_EQ_GT, + anon_sym_switch, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(4798), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [130605] = 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(6805), 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(5011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603796,7 +633191,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114586] = 42, + ACTIONS(1221), 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_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, + [130707] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603817,109 +633232,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6485), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7597), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7601), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7603), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7611), 1, anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7617), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7619), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7631), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7635), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7637), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7639), 1, anon_sym_QMARK_QMARK, - ACTIONS(7485), 1, - anon_sym_RBRACK, - STATE(2399), 1, + ACTIONS(7653), 1, + anon_sym_QMARK, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6679), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4799), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114728] = 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(7487), 1, - anon_sym_into, - STATE(4800), 10, + ACTIONS(5777), 3, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_or, + STATE(5012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -603929,46 +633309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 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, - [114814] = 27, + [130845] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -603989,38 +633330,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7490), 1, + ACTIONS(7777), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4801), 9, + STATE(5013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604030,7 +633371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -604053,7 +633394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [114926] = 40, + [130957] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604074,74 +633415,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7272), 1, - anon_sym_QMARK, - ACTIONS(7278), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, + ACTIONS(7643), 1, + anon_sym_AMP, + ACTIONS(7649), 1, + anon_sym_as, + ACTIONS(7651), 1, + anon_sym_is, + ACTIONS(7655), 1, + anon_sym_CARET, + ACTIONS(7755), 1, + anon_sym_PIPE, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7298), 1, + ACTIONS(7761), 1, + anon_sym_QMARK, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5864), 3, anon_sym_and, anon_sym_or, - anon_sym_on, - STATE(4802), 9, + anon_sym_by, + STATE(5014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604151,7 +633492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115064] = 24, + [131095] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604172,40 +633513,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7387), 1, + 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, - STATE(2738), 1, + 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(7779), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6899), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4803), 9, + 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(5015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604215,25 +633592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [115170] = 40, + [131237] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604254,74 +633613,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7393), 1, - anon_sym_QMARK, - ACTIONS(7399), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7401), 1, + 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, anon_sym_CARET, - ACTIONS(7403), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, - anon_sym_GT_GT, - ACTIONS(7415), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7417), 1, + ACTIONS(7761), 1, + anon_sym_QMARK, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_EQ_GT, + ACTIONS(5072), 3, anon_sym_and, anon_sym_or, - STATE(4804), 9, + anon_sym_by, + STATE(5016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604331,7 +633690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115308] = 42, + [131375] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604352,76 +633711,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7643), 1, anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7649), 1, + anon_sym_as, + ACTIONS(7651), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7655), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7761), 1, + anon_sym_QMARK, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - ACTIONS(7492), 1, - anon_sym_RBRACK, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6647), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4805), 9, + ACTIONS(5882), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(5017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604431,7 +633788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115450] = 22, + [131513] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604452,36 +633809,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4806), 9, + ACTIONS(7677), 1, + anon_sym_and, + ACTIONS(7781), 1, + anon_sym_or, + STATE(5018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604491,171 +633823,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 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_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, - [115552] = 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(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6851), 1, - anon_sym_SLASH, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + 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, - STATE(4807), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 15, + anon_sym_DOT, + ACTIONS(6205), 25, sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [115662] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 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(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(1139), 19, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -604665,17 +633852,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, - [115764] = 34, + [131601] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604696,68 +633882,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + 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(7461), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, + 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(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 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(4809), 9, + ACTIONS(7783), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604767,7 +633959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115890] = 24, + [131739] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604788,40 +633980,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7370), 1, + 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, - STATE(2738), 1, + 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(7785), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6929), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4810), 9, + 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(5020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604831,25 +634059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_equals, - anon_sym_as, - anon_sym_is, - [115996] = 40, + [131881] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604870,74 +634080,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7496), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7502), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7508), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7520), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7522), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7787), 1, + anon_sym_COMMA, + ACTIONS(7789), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6797), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4811), 9, + STATE(5021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -604947,7 +634159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116134] = 29, + [132023] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -604968,49 +634180,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7530), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7534), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4812), 9, + ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7791), 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(5022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605020,21 +634221,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [116250] = 26, + anon_sym_select, + [132135] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605055,44 +634265,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7530), 2, + ACTIONS(4072), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5009), 1, + anon_sym_QMARK, + ACTIONS(7793), 1, + anon_sym_DOT, + ACTIONS(4016), 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, - STATE(4813), 9, + STATE(5023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605102,7 +634293,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + ACTIONS(4018), 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, anon_sym_GT_GT_GT, @@ -605110,15 +634310,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_by, anon_sym_as, anon_sym_is, - [116360] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [132227] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605139,11 +634340,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7540), 1, - anon_sym_and, - ACTIONS(7542), 1, - anon_sym_or, - STATE(4814), 9, + ACTIONS(7793), 1, + anon_sym_DOT, + STATE(5024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605153,7 +634352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(3975), 10, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -605164,10 +634363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 25, + ACTIONS(3977), 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, @@ -605179,19 +634382,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_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, - [116448] = 35, + [132313] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605212,69 +634412,154 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + 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(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(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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, + [132415] = 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(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7532), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7536), 1, + 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(7538), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, + 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(7554), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7528), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4815), 9, + ACTIONS(5072), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605284,7 +634569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116576] = 36, + [132553] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605305,70 +634590,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7532), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7536), 1, + 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(7538), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, - anon_sym_as, - ACTIONS(7554), 1, + 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(7556), 1, - anon_sym_CARET, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7528), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4816), 9, + ACTIONS(7795), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605378,7 +634667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116706] = 34, + [132691] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605399,68 +634688,199 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, - anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(5664), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5028), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5660), 17, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - 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, + [132797] = 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(7797), 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(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, - STATE(4817), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605470,7 +634890,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116832] = 27, + aux_sym_conversion_operator_declaration_repeat1, + ACTIONS(7802), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [133011] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605491,45 +634935,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7461), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + ACTIONS(7516), 1, + anon_sym_GT_GT, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(7514), 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, - anon_sym_GT_GT, - STATE(4818), 9, + STATE(5031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605539,11 +634987,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, @@ -605555,7 +635001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [116944] = 27, + [133127] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605576,45 +635022,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7538), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + 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(4819), 9, + STATE(5032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605624,7 +635069,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + ACTIONS(5660), 15, + anon_sym_in, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -605637,10 +635083,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, anon_sym_as, anon_sym_is, - [117056] = 33, + [133237] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605661,67 +635106,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7536), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7552), 1, + ACTIONS(7643), 1, + anon_sym_AMP, + ACTIONS(7649), 1, anon_sym_as, - ACTIONS(7554), 1, + ACTIONS(7651), 1, anon_sym_is, - STATE(2738), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7550), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_CARET, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7647), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5899), 3, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, anon_sym_by, - STATE(4820), 9, + STATE(5033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605731,7 +635183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117180] = 37, + [133375] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605752,71 +635204,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(7516), 1, + anon_sym_GT_GT, + ACTIONS(7528), 1, anon_sym_as, - ACTIONS(7554), 1, + ACTIONS(7530), 1, anon_sym_is, - ACTIONS(7556), 1, - anon_sym_CARET, - ACTIONS(7558), 1, - anon_sym_PIPE, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5660), 7, + anon_sym_in, + anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4821), 9, + STATE(5034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605826,7 +635276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117312] = 38, + [133503] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605847,72 +635297,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + ACTIONS(7508), 1, + anon_sym_CARET, + ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(7516), 1, + anon_sym_GT_GT, + ACTIONS(7528), 1, anon_sym_as, - ACTIONS(7554), 1, + ACTIONS(7530), 1, anon_sym_is, - ACTIONS(7556), 1, - anon_sym_CARET, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_AMP_AMP, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + ACTIONS(5660), 6, + anon_sym_in, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(4822), 9, + STATE(5035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -605922,7 +635370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117446] = 40, + [133633] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -605943,174 +635391,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7387), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7393), 1, - anon_sym_QMARK, - ACTIONS(7399), 1, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7403), 1, - anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7415), 1, - anon_sym_AMP_AMP, - ACTIONS(7417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, + ACTIONS(7528), 1, + anon_sym_as, + ACTIONS(7530), 1, anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_EQ_GT, - 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, - [117584] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(5664), 3, anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + anon_sym_AMP, + ACTIONS(5660), 7, + anon_sym_in, + anon_sym_CARET, + anon_sym_and, + anon_sym_or, anon_sym_AMP_AMP, - ACTIONS(7218), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, anon_sym_QMARK_QMARK, - ACTIONS(7562), 1, - anon_sym_COMMA, - ACTIONS(7564), 1, - anon_sym_RBRACE, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6709), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4824), 9, + STATE(5036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606120,7 +635462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117726] = 33, + [133759] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606141,67 +635483,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(7506), 1, + anon_sym_SLASH, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7469), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7475), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 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(4825), 9, + anon_sym_GT_GT, + STATE(5037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606211,102 +635531,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117850] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, - anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - ACTIONS(7481), 1, + ACTIONS(5660), 15, + anon_sym_in, anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7453), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7457), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_in, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [117982] = 38, + anon_sym_as, + anon_sym_is, + [133871] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606327,82 +635568,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(1223), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 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(1221), 19, + anon_sym_in, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_in, + anon_sym_switch, anon_sym_and, anon_sym_or, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4827), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [118116] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [133973] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606423,74 +635648,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, + ACTIONS(7496), 1, + anon_sym_DOT_DOT, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7536), 1, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(7528), 1, anon_sym_as, - ACTIONS(7554), 1, + ACTIONS(7530), 1, anon_sym_is, - ACTIONS(7556), 1, - anon_sym_CARET, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_AMP_AMP, - ACTIONS(7570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, + 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, anon_sym_and, anon_sym_or, - anon_sym_by, - STATE(4828), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606500,7 +635718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118254] = 40, + [134097] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606521,74 +635739,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7280), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7282), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7284), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7298), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7812), 1, + anon_sym_COMMA, + ACTIONS(7814), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(7026), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_and, - anon_sym_or, - anon_sym_on, - STATE(4829), 9, + STATE(5040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606598,7 +635818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118392] = 40, + [134239] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606619,74 +635839,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, + 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(7477), 1, + ACTIONS(7516), 1, + anon_sym_GT_GT, + ACTIONS(7528), 1, anon_sym_as, - ACTIONS(7479), 1, + ACTIONS(7530), 1, anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, - anon_sym_QMARK_QMARK, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, + ACTIONS(5660), 6, anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4830), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606696,7 +635913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118530] = 40, + [134371] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606717,136 +635934,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, ACTIONS(7496), 1, - anon_sym_QMARK, - ACTIONS(7502), 1, + anon_sym_DOT_DOT, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7508), 1, - anon_sym_AMP, ACTIONS(7512), 1, + anon_sym_AMP, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7520), 1, - anon_sym_AMP_AMP, ACTIONS(7522), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, + anon_sym_AMP_AMP, + ACTIONS(7528), 1, + anon_sym_as, + ACTIONS(7530), 1, anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - 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, - [118668] = 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(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7578), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(5660), 5, + anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4832), 9, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606856,30 +636009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [118780] = 40, + [134505] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606900,74 +636030,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, ACTIONS(7496), 1, - anon_sym_QMARK, - ACTIONS(7502), 1, + anon_sym_DOT_DOT, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7508), 1, - anon_sym_AMP, ACTIONS(7512), 1, + anon_sym_AMP, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7520), 1, - anon_sym_AMP_AMP, ACTIONS(7522), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(7524), 1, - anon_sym_QMARK_QMARK, + anon_sym_PIPE_PIPE, ACTIONS(7526), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7528), 1, + anon_sym_as, + ACTIONS(7530), 1, anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 3, - anon_sym_COLON, + ACTIONS(5660), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - STATE(4833), 9, + STATE(5043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -606977,7 +636107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118918] = 40, + [134643] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -606998,74 +636128,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7496), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7502), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7508), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7520), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7522), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7816), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6765), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4834), 9, + STATE(5044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607075,7 +636207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119056] = 42, + [134785] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607096,76 +636228,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7442), 1, + anon_sym_SLASH, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7580), 1, - anon_sym_COMMA, - ACTIONS(7582), 1, - anon_sym_RBRACE, - STATE(2399), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6605), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4835), 9, + ACTIONS(5072), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607175,7 +636305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119198] = 42, + [134923] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607196,76 +636326,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7584), 1, - anon_sym_RBRACK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6692), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4836), 9, + 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, + anon_sym_and, + anon_sym_or, + STATE(5046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607275,7 +636367,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119340] = 38, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607296,72 +636411,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7280), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7282), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7284), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7296), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, + ACTIONS(7165), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7580), 1, + anon_sym_COMMA, + ACTIONS(7820), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6773), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(4837), 9, + STATE(5047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607371,7 +636490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119474] = 40, + [135177] = 42, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607392,74 +636511,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6808), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6845), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6853), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6855), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6871), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(3122), 1, + ACTIONS(7580), 1, + anon_sym_COMMA, + ACTIONS(7822), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + STATE(6776), 1, + aux_sym__for_statement_conditions_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4838), 9, + STATE(5048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607469,7 +636590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119612] = 37, + [135319] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607490,162 +636611,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7570), 1, anon_sym_DOT_DOT, - ACTIONS(7302), 1, + ACTIONS(7643), 1, + anon_sym_AMP, + ACTIONS(7649), 1, anon_sym_as, - ACTIONS(7304), 1, + ACTIONS(7651), 1, anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_and, - anon_sym_or, + 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, - anon_sym_on, - STATE(4839), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [119744] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, - anon_sym_DOT_DOT, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_CARET, + ACTIONS(7641), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7645), 2, 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(4840), 9, + ACTIONS(7647), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(5660), 3, + anon_sym_and, + anon_sym_or, + anon_sym_by, + STATE(5049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607655,7 +636688,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119868] = 22, + [135457] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607676,36 +636709,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4841), 9, + ACTIONS(7824), 1, + anon_sym_into, + STATE(5050), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607715,8 +636721,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + 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, + 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, @@ -607727,15 +636752,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, - [119970] = 27, + [135543] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607756,45 +636781,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7294), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7274), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4842), 9, + ACTIONS(7749), 1, + anon_sym_into, + STATE(5050), 1, + aux_sym__query_body_repeat2, + STATE(5051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -607804,7 +636795,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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), 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, @@ -607812,15 +636824,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_on, anon_sym_as, anon_sym_is, - [120082] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [135631] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607841,84 +636854,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5658), 1, + 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, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7403), 1, anon_sym_PIPE, - ACTIONS(7405), 1, anon_sym_AMP, - ACTIONS(7409), 1, anon_sym_GT_GT, - ACTIONS(7415), 1, - anon_sym_AMP_AMP, - ACTIONS(7417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(3829), 27, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_when, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - STATE(4843), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [120220] = 34, + 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, + [135715] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -607939,68 +636925,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, - anon_sym_DOT_DOT, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_CARET, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(4844), 9, + STATE(5053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608010,7 +636966,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120346] = 40, + 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, @@ -608031,74 +637010,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, - anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(6761), 1, anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - ACTIONS(7481), 1, + ACTIONS(6962), 1, + anon_sym_QMARK, + ACTIONS(6968), 1, + anon_sym_SLASH, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7566), 1, + ACTIONS(6972), 1, anon_sym_PIPE, - ACTIONS(7568), 1, + 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(7574), 1, + ACTIONS(6988), 1, anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, + ACTIONS(6990), 1, anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(6992), 1, + anon_sym_is, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(6960), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4845), 9, + ACTIONS(5864), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608108,7 +637087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120484] = 36, + [135965] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608129,70 +637108,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6649), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6663), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6962), 1, + anon_sym_QMARK, + ACTIONS(6968), 1, anon_sym_SLASH, - ACTIONS(7280), 1, + ACTIONS(6970), 1, anon_sym_CARET, - ACTIONS(7284), 1, + ACTIONS(6972), 1, + anon_sym_PIPE, + ACTIONS(6974), 1, anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(6978), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(6984), 1, anon_sym_DOT_DOT, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, + 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(2738), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7270), 2, + ACTIONS(6960), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(6966), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(6976), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(6980), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, + ACTIONS(6982), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(4846), 9, + ACTIONS(5072), 3, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, + STATE(5055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608202,7 +637185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120614] = 35, + [136103] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608223,79 +637206,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(7302), 1, - anon_sym_as, - ACTIONS(7304), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7270), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7290), 2, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + 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(5660), 13, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7292), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_CARET, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_on, - 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, - [120742] = 40, + anon_sym_as, + anon_sym_is, + [136219] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608316,84 +637293,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7496), 1, + 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, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7502), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7504), 1, - anon_sym_CARET, - ACTIONS(7506), 1, anon_sym_PIPE, - ACTIONS(7508), 1, anon_sym_AMP, - ACTIONS(7512), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7520), 1, - anon_sym_AMP_AMP, - ACTIONS(7522), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4848), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [120880] = 15, + 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, + [136307] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608414,11 +637366,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(7749), 1, anon_sym_into, - STATE(4770), 1, + STATE(5051), 1, aux_sym__query_body_repeat2, - STATE(4849), 9, + STATE(5058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608428,7 +637380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -608440,8 +637392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 25, + 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, @@ -608456,17 +637411,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, - [120968] = 26, + [136395] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608487,44 +637439,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7294), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4850), 9, + ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7829), 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(5059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608534,23 +637480,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [121078] = 29, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [136507] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608571,49 +637524,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7278), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7294), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7274), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7276), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PIPE, anon_sym_AMP, - STATE(4851), 9, + anon_sym_GT_GT, + STATE(5060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608623,8 +637571,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + 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, @@ -608637,7 +637587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_as, anon_sym_is, - [121194] = 38, + [136617] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608658,72 +637608,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7401), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7403), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7405), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7415), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7421), 1, + ACTIONS(7165), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4852), 9, + ACTIONS(7831), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608733,7 +637685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121328] = 27, + [136755] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608754,38 +637706,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, ACTIONS(7588), 1, + anon_sym_COMMA, + ACTIONS(7833), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4853), 9, + STATE(5062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608795,7 +637747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -608818,7 +637770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [121440] = 34, + [136867] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608839,68 +637791,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(6681), 1, + ACTIONS(7474), 1, + anon_sym_AMP, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(7492), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(7494), 1, anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, + ACTIONS(5660), 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(4854), 9, + anon_sym_on, + STATE(5063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -608910,7 +637863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121566] = 40, + [136995] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -608931,74 +637884,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6845), 1, - anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(6853), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_AMP_AMP, - ACTIONS(6871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, + ACTIONS(7492), 1, + anon_sym_as, + ACTIONS(7494), 1, anon_sym_is, - STATE(3122), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4855), 9, + ACTIONS(5660), 6, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609008,7 +637957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121704] = 40, + [137125] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609029,74 +637978,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7393), 1, - anon_sym_QMARK, - ACTIONS(7399), 1, - anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7403), 1, - anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, - anon_sym_GT_GT, - ACTIONS(7415), 1, - anon_sym_AMP_AMP, - ACTIONS(7417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7411), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7413), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4886), 3, - anon_sym_EQ_GT, + 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, anon_sym_and, anon_sym_or, - STATE(4856), 9, + STATE(5065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609106,7 +638018,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121842] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609127,38 +638062,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7590), 1, + ACTIONS(7835), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4857), 9, + STATE(5066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609168,7 +638103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -609191,7 +638126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [121954] = 41, + [137347] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609212,75 +638147,351 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7205), 1, + 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(7314), 1, + 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(7837), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + 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, + [137485] = 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, + anon_sym_BANG, + ACTIONS(6475), 1, + anon_sym_switch, + ACTIONS(6489), 1, + anon_sym_with, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, + 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(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(5660), 7, anon_sym_CARET, - ACTIONS(7336), 1, + anon_sym_and, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5068), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [137611] = 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(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(7468), 1, + anon_sym_SLASH, + ACTIONS(7484), 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(7464), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7466), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7338), 1, anon_sym_PIPE, - ACTIONS(7340), 1, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5069), 9, + sym_preproc_region, + sym_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, + anon_sym_CARET, + anon_sym_LT_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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(7342), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7592), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7839), 1, + anon_sym_RBRACK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + STATE(6775), 1, + aux_sym_array_rank_specifier_repeat1, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5766), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7310), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4858), 9, + STATE(5070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609290,7 +638501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122094] = 40, + [137865] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609311,74 +638522,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5716), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4859), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609388,7 +638574,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122232] = 37, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609409,71 +638609,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7403), 1, - anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(7421), 1, + ACTIONS(7484), 1, + anon_sym_DOT_DOT, + ACTIONS(7492), 1, + anon_sym_as, + ACTIONS(7494), 1, anon_sym_is, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_EQ_GT, + 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_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4860), 9, + anon_sym_on, + STATE(5072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609483,7 +638679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122364] = 22, + [138105] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609504,36 +638700,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7461), 1, + 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(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + 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_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4861), 9, + STATE(5073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609543,10 +638747,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, - anon_sym_in, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 15, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -609554,16 +638758,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_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, - [122466] = 14, + [138215] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609584,58 +638784,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(4100), 1, anon_sym_DOT, - STATE(4862), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3932), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(3934), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 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, - [122552] = 22, + anon_sym_on, + 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, + [138347] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609656,26 +638879,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7538), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -609685,7 +638912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4863), 9, + STATE(5075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609695,7 +638922,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, + ACTIONS(5660), 17, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -609705,17 +638935,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_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, - [122654] = 36, + [138453] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609736,70 +638961,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6671), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(6673), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(6677), 1, + ACTIONS(7472), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(7486), 1, + anon_sym_AMP_AMP, + ACTIONS(7492), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(7494), 1, anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6663), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_AMP_AMP, + ACTIONS(5660), 5, + anon_sym_and, + anon_sym_or, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4864), 9, + anon_sym_on, + STATE(5076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609809,7 +639036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122784] = 40, + [138587] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609830,74 +639057,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(6673), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(6675), 1, + ACTIONS(7472), 1, anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, + ACTIONS(7486), 1, anon_sym_AMP_AMP, - ACTIONS(6691), 1, + ACTIONS(7488), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, + ACTIONS(7490), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, + ACTIONS(7492), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(7494), 1, anon_sym_is, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7596), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4865), 9, + ACTIONS(5660), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(5077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -609907,7 +639134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122922] = 40, + [138725] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -609928,74 +639155,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4866), 9, + ACTIONS(5660), 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(5078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610005,7 +639227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123060] = 24, + [138853] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610026,40 +639248,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4867), 9, + ACTIONS(7841), 1, + anon_sym_into, + STATE(5080), 1, + aux_sym__query_body_repeat2, + STATE(5079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610069,10 +639262,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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, anon_sym_CARET, @@ -610082,12 +639288,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_by, anon_sym_as, anon_sym_is, - [123166] = 22, + anon_sym_DASH_GT, + anon_sym_with, + [138941] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610108,36 +639321,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 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(4868), 9, + ACTIONS(7841), 1, + anon_sym_into, + STATE(5082), 1, + aux_sym__query_body_repeat2, + STATE(5080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610147,7 +639335,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, + 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, @@ -610158,16 +639362,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_by, 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, - [123268] = 33, + [139029] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610188,77 +639394,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7841), 1, + anon_sym_into, + STATE(5083), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7409), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7413), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_EQ_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [123392] = 17, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139117] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610279,25 +639467,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - ACTIONS(4851), 1, - anon_sym_QMARK, - ACTIONS(7594), 1, - anon_sym_DOT, - ACTIONS(3948), 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(4870), 9, + ACTIONS(7843), 1, + anon_sym_into, + STATE(5082), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610307,15 +639479,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3950), 25, - anon_sym_COLON, - anon_sym_COMMA, + 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_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, @@ -610326,14 +639508,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, - [123484] = 40, + [139203] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610354,84 +639539,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(7841), 1, + anon_sym_into, + STATE(5082), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6671), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5958), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7598), 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, - [123622] = 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_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139291] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610452,36 +639612,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(7461), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 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(4872), 9, + 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, @@ -610491,8 +639626,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, - anon_sym_in, + 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, anon_sym_CARET, @@ -610503,15 +639653,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_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [123724] = 27, + [139379] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610532,45 +639685,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, - anon_sym_SLASH, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4873), 9, + ACTIONS(7846), 1, + anon_sym_into, + STATE(5087), 1, + aux_sym__query_body_repeat2, + STATE(5085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610580,7 +639699,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, @@ -610588,15 +639725,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_equals, anon_sym_as, anon_sym_is, - [123836] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [139467] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610617,11 +639758,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7449), 1, + ACTIONS(7846), 1, anon_sym_into, - STATE(4784), 1, + STATE(5088), 1, aux_sym__query_body_repeat2, - STATE(4874), 9, + STATE(5086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610631,7 +639772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -610643,7 +639784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 25, + ACTIONS(6003), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -610657,7 +639798,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, @@ -610665,11 +639805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [123924] = 34, + [139555] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610690,78 +639831,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7409), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5949), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 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, - [124050] = 36, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139641] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610782,80 +639903,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7846), 1, + anon_sym_into, + STATE(5087), 1, + aux_sym__query_body_repeat2, + STATE(5088), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5960), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7405), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7409), 1, anon_sym_GT_GT, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5958), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7391), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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, - [124180] = 40, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139729] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610876,74 +639976,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7444), 1, + anon_sym_CARET, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7600), 3, + ACTIONS(5660), 6, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4877), 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -610953,7 +640049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124318] = 41, + [139859] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -610974,85 +640070,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7228), 1, + ACTIONS(7851), 1, + anon_sym_into, + STATE(5091), 1, + aux_sym__query_body_repeat2, + 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, + ACTIONS(6001), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7234), 1, - anon_sym_is, - ACTIONS(7242), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7244), 1, - anon_sym_CARET, - ACTIONS(7246), 1, anon_sym_PIPE, - ACTIONS(7248), 1, anon_sym_AMP, - ACTIONS(7252), 1, anon_sym_GT_GT, - ACTIONS(7258), 1, - anon_sym_AMP_AMP, - ACTIONS(7260), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7262), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7602), 1, - anon_sym_COMMA, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5999), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_COLON, - anon_sym_RPAREN, - ACTIONS(7236), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7238), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7240), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7250), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7254), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7256), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [124458] = 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [139947] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611073,84 +640143,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(7851), 1, + anon_sym_into, + STATE(5093), 1, + aux_sym__query_body_repeat2, + STATE(5091), 9, + sym_preproc_region, + sym_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(6671), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, anon_sym_PIPE, - ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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, - [124596] = 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [140035] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611171,38 +640216,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7604), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4880), 9, + 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, @@ -611212,30 +640230,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [124708] = 40, + 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, + anon_sym_on, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [140123] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611256,84 +640289,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7348), 1, + ACTIONS(7853), 1, + anon_sym_into, + STATE(5093), 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(7354), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7356), 1, - anon_sym_CARET, - ACTIONS(7358), 1, anon_sym_PIPE, - ACTIONS(7360), 1, anon_sym_AMP, - ACTIONS(7364), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7374), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5949), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7352), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, - anon_sym_equals, - 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, - [124846] = 24, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611354,40 +640361,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4882), 9, + 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, @@ -611397,7 +640375,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, + 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, @@ -611407,15 +640401,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_by, + anon_sym_on, anon_sym_as, anon_sym_is, - [124952] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [140297] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611436,74 +640434,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7606), 3, + ACTIONS(7856), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4883), 9, + STATE(5095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611513,7 +640511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125090] = 35, + [140435] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611534,69 +640532,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7421), 1, - anon_sym_is, - STATE(2738), 1, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7391), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, 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(4884), 9, + STATE(5096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611606,7 +640603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125218] = 27, + [140561] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611627,38 +640624,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7608), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4885), 9, + ACTIONS(7858), 1, + anon_sym_into, + STATE(5098), 1, + aux_sym__query_body_repeat2, + STATE(5097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -611668,30 +640638,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [125330] = 42, + 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, + anon_sym_CARET, + anon_sym_LT_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, + [140649] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611712,86 +640697,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7610), 1, - anon_sym_COMMA, - ACTIONS(7612), 1, - anon_sym_RBRACE, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6748), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + 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(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4886), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [125472] = 24, + 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, + [140737] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611812,40 +640770,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7461), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(4887), 9, + 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, @@ -611855,8 +640784,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 17, - anon_sym_in, + 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, @@ -611866,6 +640810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_and, anon_sym_or, anon_sym_AMP_AMP, @@ -611873,7 +640820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - [125578] = 42, + anon_sym_DASH_GT, + anon_sym_with, + [140825] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611894,86 +640843,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7224), 1, - anon_sym_COMMA, - ACTIONS(7226), 1, - anon_sym_RBRACE, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6600), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + 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, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [125720] = 15, + 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, + [140911] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -611994,11 +640915,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7432), 1, + ACTIONS(7858), 1, anon_sym_into, - STATE(4849), 1, + STATE(5100), 1, aux_sym__query_body_repeat2, - STATE(4889), 9, + STATE(5101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612008,7 +640929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(5960), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -612020,7 +640941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 25, + ACTIONS(5958), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -612034,6 +640955,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, @@ -612041,12 +640963,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, - [125808] = 40, + [140999] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612067,74 +640988,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, + 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(7438), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7440), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6677), 1, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, + STATE(5102), 9, + sym_preproc_region, + sym_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, + 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, - ACTIONS(6691), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, anon_sym_as, - ACTIONS(6697), 1, anon_sym_is, - STATE(2399), 1, + [141111] = 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(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, + anon_sym_SLASH, + ACTIONS(7452), 1, + anon_sym_GT_GT, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4890), 9, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612144,7 +641143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125946] = 42, + [141235] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612165,76 +641164,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(6789), 1, + anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7616), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6677), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4891), 9, + ACTIONS(5882), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612244,7 +641241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126088] = 24, + [141373] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612265,40 +641262,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7518), 1, + 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, - STATE(2738), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4892), 9, + 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(7863), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(5105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612308,25 +641339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [126194] = 26, + [141511] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612347,44 +641360,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7399), 1, + ACTIONS(7462), 1, + anon_sym_QMARK, + ACTIONS(7468), 1, anon_sym_SLASH, - STATE(2738), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7397), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4893), 9, + 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(5858), 3, + anon_sym_and, + anon_sym_or, + anon_sym_on, + STATE(5106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612394,23 +641437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [126304] = 27, + [141649] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612431,38 +641458,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, + ACTIONS(3881), 1, anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, + ACTIONS(7588), 1, anon_sym_COMMA, - ACTIONS(7618), 1, + ACTIONS(7865), 1, anon_sym_RPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, + STATE(3463), 1, sym_parenthesized_variable_designation, - STATE(5126), 1, + STATE(3492), 1, + sym__variable_designation, + STATE(5279), 1, sym_positional_pattern_clause, - STATE(5485), 1, + STATE(5682), 1, sym_property_pattern_clause, - STATE(6208), 1, + STATE(6412), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(3883), 2, anon_sym_and, anon_sym_or, - STATE(4894), 9, + STATE(5107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612472,7 +641499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -612495,105 +641522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [126416] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7354), 1, - anon_sym_SLASH, - ACTIONS(7356), 1, - anon_sym_CARET, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_AMP, - ACTIONS(7364), 1, - anon_sym_GT_GT, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7374), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7346), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4886), 3, - anon_sym_and, - anon_sym_or, - 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, - [126554] = 15, + [141761] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612614,11 +641543,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7443), 1, - anon_sym_and, - ACTIONS(7620), 1, - anon_sym_or, - STATE(4896), 9, + 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, @@ -612628,9 +641557,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(6001), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -612640,11 +641570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 25, - sym_interpolation_close_brace, + ACTIONS(5999), 24, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -612659,6 +641586,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, @@ -612666,7 +641595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [126642] = 29, + [141849] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612687,49 +641616,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7387), 1, + ACTIONS(7484), 1, anon_sym_DOT_DOT, - ACTIONS(7399), 1, - anon_sym_SLASH, - ACTIONS(7409), 1, - anon_sym_GT_GT, - STATE(2738), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4897), 9, + anon_sym_GT_GT, + STATE(5109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612739,21 +641655,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + 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_on, anon_sym_as, anon_sym_is, - [126758] = 42, + anon_sym_with, + [141951] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612774,86 +641696,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7622), 1, - anon_sym_COMMA, - ACTIONS(7624), 1, - anon_sym_RBRACE, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6788), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + 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(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4898), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126900] = 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [142039] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612874,71 +641769,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7626), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, + 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(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, + 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(5864), 3, anon_sym_and, anon_sym_or, - STATE(4899), 9, + anon_sym_on, + STATE(5111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, sym_preproc_pragma, sym_preproc_nullable, sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [127012] = 15, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [142177] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -612959,11 +641867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7628), 1, + ACTIONS(7867), 1, anon_sym_into, - STATE(4963), 1, - aux_sym__query_body_repeat2, - STATE(4900), 9, + STATE(5112), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -612973,9 +641879,11 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + aux_sym__query_body_repeat2, + ACTIONS(5951), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -612985,11 +641893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 25, - sym_interpolation_close_brace, + ACTIONS(5949), 24, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -613004,6 +641909,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, @@ -613011,7 +641918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [127100] = 26, + [142263] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613032,44 +641939,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4901), 9, + ACTIONS(7434), 1, + anon_sym_into, + STATE(5112), 1, + aux_sym__query_body_repeat2, + STATE(5113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613079,7 +641953,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + 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, @@ -613087,15 +641980,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_as, anon_sym_is, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [127210] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [142351] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613116,74 +642012,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6475), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6489), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7496), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, - anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - ACTIONS(7556), 1, + ACTIONS(7500), 1, + anon_sym_QMARK, + ACTIONS(7506), 1, + anon_sym_SLASH, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7558), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(7512), 1, + anon_sym_AMP, + ACTIONS(7516), 1, + anon_sym_GT_GT, + ACTIONS(7522), 1, anon_sym_AMP_AMP, - ACTIONS(7570), 1, + ACTIONS(7524), 1, anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, + ACTIONS(7526), 1, anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(7528), 1, + anon_sym_as, + ACTIONS(7530), 1, + anon_sym_is, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(7498), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5660), 3, + ACTIONS(5858), 3, + anon_sym_in, anon_sym_and, anon_sym_or, - anon_sym_by, - STATE(4902), 9, + STATE(5114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613193,7 +642089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127348] = 27, + [142489] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613214,38 +642110,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7632), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, + 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(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, + 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(5072), 3, anon_sym_and, anon_sym_or, - STATE(4903), 9, + anon_sym_on, + STATE(5115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613255,30 +642187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [127460] = 42, + [142627] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613299,76 +642208,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7458), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7634), 1, - anon_sym_RBRACK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6732), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4904), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613378,7 +642247,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127602] = 27, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613399,38 +642288,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7636), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, + ACTIONS(7677), 1, anon_sym_and, + ACTIONS(7781), 1, anon_sym_or, - STATE(4905), 9, + STATE(5117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613440,30 +642302,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [127714] = 35, + 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), 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, + [142817] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613484,69 +642361,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(6857), 1, + ACTIONS(7878), 1, + anon_sym_CARET, + ACTIONS(7880), 1, + anon_sym_PIPE, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(6875), 1, + ACTIONS(7894), 1, + anon_sym_AMP_AMP, + ACTIONS(7896), 1, + anon_sym_as, + ACTIONS(7898), 1, anon_sym_is, - STATE(3122), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_AMP_AMP, + ACTIONS(5660), 4, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4906), 9, + anon_sym_into, + anon_sym_equals, + STATE(5118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613556,7 +642435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127842] = 40, + [142950] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613577,135 +642456,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - ACTIONS(7556), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7558), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + 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(7570), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4907), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [127980] = 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(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6352), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3823), 2, + ACTIONS(7900), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(4908), 9, + STATE(5119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613715,30 +642532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [128090] = 29, + [143087] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613759,49 +642553,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7354), 1, - anon_sym_SLASH, - ACTIONS(7364), 1, - anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + 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, - STATE(4909), 9, + anon_sym_GT_GT, + STATE(5120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613811,21 +642592,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + 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_and, - anon_sym_or, + anon_sym_switch, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, + anon_sym_into, + anon_sym_on, anon_sym_as, anon_sym_is, - [128206] = 27, + anon_sym_with, + [143188] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613846,38 +642632,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7638), 1, - anon_sym_RPAREN, - STATE(2525), 1, + 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(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, + STATE(6553), 1, + sym__preproc_expression, + ACTIONS(7912), 2, + anon_sym_true, + anon_sym_false, + STATE(6542), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4910), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -613887,7 +642666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -613910,7 +642689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [128318] = 40, + [143287] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -613931,74 +642710,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4271), 4, + anon_sym_COLON, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5122), 9, + sym_preproc_region, + sym_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, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(5090), 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, + [143372] = 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(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7348), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7920), 1, anon_sym_QMARK, - ACTIONS(7354), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, + ACTIONS(7944), 1, anon_sym_AMP_AMP, - ACTIONS(7374), 1, + ACTIONS(7946), 1, anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, + ACTIONS(7948), 1, anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(7950), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(5864), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_and, - anon_sym_or, - anon_sym_equals, - STATE(4911), 9, + STATE(5123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614008,7 +642857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128456] = 42, + [143509] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614029,76 +642878,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7640), 1, - anon_sym_RBRACK, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6637), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4912), 9, + STATE(5124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614108,7 +642955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128598] = 27, + [143648] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614129,38 +642976,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7642), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4913), 9, + 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, + 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(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_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, @@ -614170,30 +643052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [128710] = 27, + [143785] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614214,38 +643073,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7644), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4914), 9, + 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, + 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(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_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, @@ -614255,30 +643149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [128822] = 22, + [143922] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614299,36 +643170,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4915), 9, + ACTIONS(5391), 1, + anon_sym_COLON, + ACTIONS(4271), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614338,7 +643186,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 19, + 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, @@ -614349,16 +643213,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_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [128924] = 42, + [144009] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614379,76 +643242,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7646), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6603), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4916), 9, + ACTIONS(7990), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614458,7 +643318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129066] = 35, + [144146] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614479,69 +643339,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5397), 1, + anon_sym_COLON, + ACTIONS(4271), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5129), 9, + sym_preproc_region, + sym_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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6671), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6677), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5090), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 7, - anon_sym_CARET, + 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, + [144233] = 25, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(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(4917), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614551,7 +643449,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129194] = 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, + [144340] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614572,36 +643493,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(7998), 1, anon_sym_BANG, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4918), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614611,27 +643527,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 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, - [129296] = 27, + 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, + [144439] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614652,38 +643571,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7648), 1, - anon_sym_RPAREN, - STATE(2525), 1, + 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(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, + 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, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4919), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614693,7 +643605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -614716,7 +643628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [129408] = 40, + [144538] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614737,74 +643649,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7393), 1, + ACTIONS(7956), 1, anon_sym_QMARK, - ACTIONS(7399), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7401), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7403), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7405), 1, + ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7415), 1, + ACTIONS(7978), 1, + anon_sym_DOT_DOT, + ACTIONS(7980), 1, anon_sym_AMP_AMP, - ACTIONS(7417), 1, + ACTIONS(7982), 1, anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, + ACTIONS(7984), 1, anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, + ACTIONS(7986), 1, + anon_sym_as, + ACTIONS(7988), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(5767), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7954), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - STATE(4920), 9, + STATE(5133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614814,7 +643725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129546] = 40, + [144675] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614835,74 +643746,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6845), 1, - anon_sym_QMARK, - ACTIONS(6851), 1, - anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_AMP, - ACTIONS(6861), 1, - anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_AMP_AMP, - ACTIONS(6871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6859), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5766), 3, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - STATE(4921), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614912,7 +643789,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129684] = 27, + ACTIONS(5660), 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, + [144780] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -614933,38 +643827,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7650), 1, - anon_sym_RPAREN, - STATE(2525), 1, + 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(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, + 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, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4922), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -614974,7 +643861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -614997,89 +643884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [129796] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(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, - ACTIONS(5656), 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, - [129902] = 40, + [144879] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615100,74 +643905,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7496), 1, - anon_sym_QMARK, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7504), 1, - anon_sym_CARET, - ACTIONS(7506), 1, - anon_sym_PIPE, - ACTIONS(7508), 1, - anon_sym_AMP, - ACTIONS(7512), 1, - anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7520), 1, - anon_sym_AMP_AMP, - ACTIONS(7522), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7516), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5660), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4924), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615177,7 +643939,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130040] = 26, + 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, + [144978] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615198,44 +643983,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7354), 1, - anon_sym_SLASH, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(4925), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 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, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615245,23 +644017,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [130150] = 40, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [145077] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615282,74 +644061,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7652), 3, + ACTIONS(8002), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, - STATE(4926), 9, + STATE(5138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615359,7 +644137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130288] = 40, + [145214] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615380,74 +644158,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6808), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6845), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6853), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6855), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6857), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6871), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(3122), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - sym_interpolation_close_brace, - anon_sym_COLON, + ACTIONS(8004), 2, anon_sym_COMMA, - STATE(4927), 9, + anon_sym_RPAREN, + STATE(5139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615457,7 +644234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130426] = 40, + [145351] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615478,74 +644255,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7354), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7374), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_and, - anon_sym_or, + ACTIONS(5660), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_equals, - STATE(4928), 9, + STATE(5140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615555,7 +644328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130564] = 15, + [145482] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615576,11 +644349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_into, - STATE(4793), 1, - aux_sym__query_body_repeat2, - STATE(4929), 9, + ACTIONS(8006), 1, + anon_sym_and, + STATE(5141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615590,7 +644361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -615602,7 +644373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 25, + ACTIONS(6067), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -615618,17 +644389,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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [130652] = 40, + [145567] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615649,74 +644420,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7554), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7556), 1, + ACTIONS(7442), 1, + anon_sym_SLASH, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7558), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + 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(7570), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, + ACTIONS(7659), 1, anon_sym_QMARK, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4930), 9, + ACTIONS(8002), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615726,7 +644496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130790] = 40, + [145704] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615747,74 +644517,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7502), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7920), 1, + anon_sym_QMARK, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7508), 1, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7520), 1, + ACTIONS(7944), 1, anon_sym_AMP_AMP, - ACTIONS(7522), 1, + ACTIONS(7946), 1, anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, + ACTIONS(7948), 1, anon_sym_QMARK_QMARK, - ACTIONS(7526), 1, + ACTIONS(7950), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(5882), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - STATE(4931), 9, + STATE(5143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615824,7 +644593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130928] = 38, + [145841] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615845,72 +644614,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7502), 1, + ACTIONS(7956), 1, + anon_sym_QMARK, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7506), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7508), 1, + ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7520), 1, + ACTIONS(7980), 1, anon_sym_AMP_AMP, - ACTIONS(7526), 1, + 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(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(5899), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7954), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4932), 9, + STATE(5144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -615920,7 +644690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131062] = 37, + [145978] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -615941,71 +644711,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7504), 1, - anon_sym_CARET, - ACTIONS(7506), 1, - anon_sym_PIPE, - ACTIONS(7508), 1, - anon_sym_AMP, - ACTIONS(7512), 1, - anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7526), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7516), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4933), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616015,7 +644745,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131194] = 33, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616036,77 +644789,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(8006), 1, + anon_sym_and, + ACTIONS(8008), 1, + anon_sym_or, + STATE(5146), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5356), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7502), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7512), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - ACTIONS(7526), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5354), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7516), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_COLON, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [131318] = 27, + anon_sym_into, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [146164] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616127,45 +644861,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7518), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + 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(4935), 9, + STATE(5147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616175,8 +644900,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_COLON, + ACTIONS(1221), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -616184,112 +644910,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, anon_sym_as, anon_sym_is, - [131430] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7654), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - 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, - [131568] = 34, + [146265] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616309,69 +644939,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, aux_sym_preproc_undef_token1, ACTIONS(21), 1, - sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7512), 1, - anon_sym_GT_GT, - ACTIONS(7518), 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(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7526), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7494), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7516), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 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(4937), 9, + anon_sym_GT_GT, + STATE(5148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616381,7 +644979,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131694] = 15, + 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_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, + [146366] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616402,11 +645019,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7628), 1, - anon_sym_into, - STATE(4958), 1, - aux_sym__query_body_repeat2, - STATE(4938), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616416,45 +645053,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 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, - [131782] = 36, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616475,70 +645097,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7502), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7504), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7508), 1, + ACTIONS(7149), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7526), 1, + 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(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7494), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_COLON, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(4939), 9, + ACTIONS(8010), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616548,7 +645173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131912] = 35, + [146602] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616569,69 +645194,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7502), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7508), 1, + ACTIONS(7147), 1, + anon_sym_CARET, + ACTIONS(7149), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7512), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7518), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7526), 1, + 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(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7494), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7498), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7500), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7510), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7514), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7516), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4940), 9, + ACTIONS(8012), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616641,7 +645270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132040] = 26, + [146739] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616662,44 +645291,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7502), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7518), 1, + 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, - STATE(2738), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4941), 9, + 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(7544), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616709,23 +645367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - 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_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [132150] = 40, + [146876] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616746,74 +645388,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6403), 1, - anon_sym_as, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7387), 1, - anon_sym_DOT_DOT, - ACTIONS(7393), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7399), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7401), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7403), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7405), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7409), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7415), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7417), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7421), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + ACTIONS(7831), 1, + anon_sym_COMMA, + ACTIONS(8014), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7395), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7397), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7407), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7411), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7413), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_or, - STATE(4942), 9, + STATE(5153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616823,7 +645465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132288] = 29, + [147015] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616844,49 +645486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7512), 1, - anon_sym_GT_GT, - ACTIONS(7518), 1, - anon_sym_DOT_DOT, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(4943), 9, + ACTIONS(8016), 1, + anon_sym_and, + ACTIONS(8018), 1, + anon_sym_or, + STATE(5154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616896,21 +645500,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, - anon_sym_COLON, + 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, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_and, - anon_sym_or, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - [132404] = 15, + anon_sym_DASH_GT, + anon_sym_with, + [147102] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -616931,11 +645558,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7308), 1, - anon_sym_into, - STATE(4800), 1, - aux_sym__query_body_repeat2, - STATE(4944), 9, + ACTIONS(8020), 1, + anon_sym_and, + STATE(5155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -616945,7 +645570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -616957,7 +645582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5856), 25, + ACTIONS(6067), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -616971,19 +645596,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_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, - [132492] = 35, + [147187] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617004,69 +645629,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(7360), 1, + ACTIONS(6461), 1, + anon_sym_CARET, + ACTIONS(6463), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(6469), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - ACTIONS(7378), 1, + 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(7380), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7346), 2, + ACTIONS(6451), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(6471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(6473), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 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(4945), 9, + ACTIONS(7831), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617076,7 +645705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132620] = 15, + [147324] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617097,11 +645726,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_into, - STATE(4968), 1, - aux_sym__query_body_repeat2, - STATE(4946), 9, + ACTIONS(8022), 1, + anon_sym_and, + ACTIONS(8024), 1, + anon_sym_or, + STATE(5157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617111,7 +645740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -617123,7 +645752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 25, + ACTIONS(5354), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -617137,19 +645766,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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [132708] = 33, + [147411] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617170,67 +645798,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(8026), 1, + anon_sym_SEMI, + STATE(5158), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5056), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6861), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5054), 25, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - 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_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4947), 9, + 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, + [147496] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617240,7 +645903,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132832] = 15, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617261,11 +645947,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_into, - STATE(4768), 1, - aux_sym__query_body_repeat2, - STATE(4948), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617275,45 +645974,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 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, + 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_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, - anon_sym_DASH_GT, - anon_sym_with, - [132920] = 42, + anon_sym_select, + sym__identifier_token, + [147688] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617334,76 +646022,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7656), 1, - anon_sym_COMMA, - ACTIONS(7658), 1, - anon_sym_RBRACE, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - STATE(6558), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4949), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617413,7 +646070,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133062] = 42, + 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_by, + anon_sym_as, + anon_sym_is, + [147799] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617434,76 +646106,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + 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, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7660), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6798), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4950), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617513,7 +646146,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133204] = 40, + 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, @@ -617534,74 +646189,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, - anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - ACTIONS(7556), 1, - anon_sym_CARET, - ACTIONS(7558), 1, - anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_AMP_AMP, - ACTIONS(7570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7530), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7534), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7544), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7548), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7550), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4886), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4951), 9, + anon_sym_QMARK, + 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, @@ -617611,7 +646232,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133342] = 42, + ACTIONS(5660), 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_equals, + anon_sym_as, + anon_sym_is, + [148013] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617632,76 +646270,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5858), 1, + anon_sym_into, + ACTIONS(5860), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8034), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8040), 1, + anon_sym_SLASH, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8060), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8062), 1, anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7662), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8064), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - STATE(6801), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4952), 9, + STATE(5164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617711,7 +646347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133484] = 15, + [148152] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617732,11 +646368,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_into, - STATE(4948), 1, - aux_sym__query_body_repeat2, - STATE(4953), 9, + 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(5165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617746,23 +646397,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(5733), 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(5833), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5731), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -617773,18 +646419,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_by, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [133572] = 40, + [148253] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617805,74 +646447,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5864), 1, + anon_sym_into, + ACTIONS(5866), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7532), 1, - anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - ACTIONS(7556), 1, + ACTIONS(8034), 1, + anon_sym_QMARK, + ACTIONS(8040), 1, + anon_sym_SLASH, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7558), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + 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(7570), 1, + ACTIONS(8060), 1, anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, + ACTIONS(8062), 1, anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(2738), 1, + ACTIONS(8064), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(8032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_and, - anon_sym_or, - anon_sym_by, - STATE(4954), 9, + STATE(5166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -617882,7 +646524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133710] = 15, + [148392] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617903,59 +646545,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_into, - STATE(4946), 1, - aux_sym__query_body_repeat2, - 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(5835), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, + anon_sym_CARET, + ACTIONS(7930), 1, anon_sym_PIPE, + ACTIONS(7932), 1, anon_sym_AMP, + ACTIONS(7936), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5833), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - 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, - [133798] = 42, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -617976,76 +646642,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7664), 1, - anon_sym_RBRACK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7831), 1, + anon_sym_COMMA, + ACTIONS(8066), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6808), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4956), 9, + STATE(5168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618055,7 +646719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133940] = 17, + [148668] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618076,61 +646740,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4776), 1, + 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(5231), 1, - anon_sym_LBRACE, - ACTIONS(5234), 1, - anon_sym_QMARK, - STATE(3281), 1, - sym_initializer_expression, - STATE(4957), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4786), 10, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4839), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5072), 1, + anon_sym_into, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8034), 1, + anon_sym_QMARK, + 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, - anon_sym_DOT, - ACTIONS(4780), 24, - anon_sym_LPAREN, - anon_sym_in, + 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(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, - anon_sym_CARET, + 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, - anon_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, - [134032] = 15, + STATE(5169), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [148807] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618151,59 +646838,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7628), 1, - anon_sym_into, - STATE(4963), 1, - aux_sym__query_body_repeat2, - STATE(4958), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7902), 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, - anon_sym_DOT, - ACTIONS(5856), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, + sym_bracketed_argument_list, + STATE(3035), 1, + sym_argument_list, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5864), 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, - anon_sym_CARET, + 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, - 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, - [134120] = 36, + STATE(5170), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [148944] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618224,70 +646935,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + ACTIONS(8070), 1, + anon_sym_QMARK, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(8078), 1, anon_sym_CARET, - ACTIONS(7360), 1, + ACTIONS(8080), 1, + anon_sym_PIPE, + ACTIONS(8082), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - ACTIONS(7378), 1, + 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(7380), 1, + ACTIONS(8100), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7346), 2, + ACTIONS(5072), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4959), 9, + STATE(5171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618297,7 +647011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134250] = 41, + [149081] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618318,75 +647032,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_RPAREN, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5882), 1, + anon_sym_into, + ACTIONS(5884), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8034), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8040), 1, + anon_sym_SLASH, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8060), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8062), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(8064), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8032), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7602), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4960), 9, + STATE(5172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618396,7 +647109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134390] = 34, + [149220] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618417,68 +647130,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(7998), 1, anon_sym_BANG, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7354), 1, - anon_sym_SLASH, - ACTIONS(7364), 1, - anon_sym_GT_GT, - ACTIONS(7370), 1, - anon_sym_DOT_DOT, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7346), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 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, + ACTIONS(8000), 1, + sym_integer_literal, + STATE(2175), 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, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618488,7 +647164,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134516] = 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, + [149319] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618509,74 +647208,111 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 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(5754), 3, - anon_sym_SEMI, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6594), 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(5174), 9, + sym_preproc_region, + sym_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, + [149418] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(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, + anon_sym_and, + anon_sym_or, + ACTIONS(3905), 4, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(4962), 9, + STATE(5175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618586,7 +647322,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134654] = 14, + 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, + [149521] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618607,9 +647366,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7666), 1, + ACTIONS(3879), 1, + anon_sym_COLON, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(6827), 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(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_region, + sym_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), 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, - STATE(4963), 10, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [149630] = 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(8104), 1, + anon_sym_and, + ACTIONS(8106), 1, + anon_sym_or, + STATE(5177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618619,8 +647463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -618632,11 +647475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5843), 25, - sym_interpolation_close_brace, + ACTIONS(6205), 24, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -618649,16 +647489,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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [134740] = 22, + [149717] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618679,36 +647521,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7518), 1, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(8040), 1, + anon_sym_SLASH, + ACTIONS(8050), 1, + anon_sym_GT_GT, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + 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(5664), 6, 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(4964), 9, + STATE(5178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618718,27 +647574,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 19, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 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_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, - [134842] = 42, + [149832] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618759,76 +647607,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7669), 1, - anon_sym_RBRACK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - STATE(6523), 1, - aux_sym_array_rank_specifier_repeat1, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4965), 9, + anon_sym_in, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618838,7 +647655,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134984] = 40, + 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_into, + anon_sym_as, + anon_sym_is, + [149941] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -618859,107 +647690,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7602), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(4966), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [135122] = 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(7540), 1, - anon_sym_and, - STATE(4967), 9, + STATE(5180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -618969,23 +647723,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(5664), 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(5941), 26, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5660), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -618995,20 +647744,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_when, - anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [135208] = 14, + [150046] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619029,58 +647771,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7671), 1, - anon_sym_into, - STATE(4968), 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(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8040), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8046), 1, anon_sym_AMP, + ACTIONS(8050), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8056), 1, + anon_sym_DOT_DOT, + 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(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, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [135294] = 15, + anon_sym_into, + STATE(5181), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [150173] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619101,59 +647863,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_and, - ACTIONS(7674), 1, - anon_sym_or, - 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, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8040), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8042), 1, + anon_sym_CARET, + ACTIONS(8046), 1, anon_sym_AMP, + ACTIONS(8050), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 25, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(8056), 1, + anon_sym_DOT_DOT, + 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(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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [135382] = 15, + STATE(5182), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [150302] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619174,59 +647956,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7628), 1, - anon_sym_into, - STATE(4900), 1, - aux_sym__query_body_repeat2, - STATE(4970), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8040), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8050), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5833), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8056), 1, + anon_sym_DOT_DOT, + 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(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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5664), 4, + anon_sym_in, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [135470] = 22, + anon_sym_into, + STATE(5183), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [150427] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619247,51 +648047,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(7320), 1, + ACTIONS(4839), 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, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(8036), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8038), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 7, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(4971), 9, + 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, - ACTIONS(1139), 19, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_STAR, - anon_sym_PERCENT, + 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, @@ -619299,14 +648104,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, anon_sym_as, anon_sym_is, - anon_sym_with, - [135572] = 40, + [150538] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619327,74 +648131,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(8050), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(8064), 1, anon_sym_is, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(8032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(4972), 9, + ACTIONS(5664), 4, + anon_sym_in, + 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_into, + STATE(5185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619404,7 +648200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135710] = 15, + [150661] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619425,59 +648221,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7443), 1, - anon_sym_and, - ACTIONS(7620), 1, - anon_sym_or, - STATE(4973), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5296), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(8056), 1, + anon_sym_DOT_DOT, + 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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 4, 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, - [135798] = 27, + anon_sym_into, + STATE(5186), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [150792] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619498,38 +648315,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7676), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4974), 9, + 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(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(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, + ACTIONS(5660), 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619539,30 +648389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [135910] = 40, + [150925] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619583,74 +648410,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5660), 1, + anon_sym_into, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(8046), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(8050), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, + ACTIONS(8058), 1, anon_sym_AMP_AMP, - ACTIONS(7374), 1, + ACTIONS(8060), 1, anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, + ACTIONS(8062), 1, anon_sym_QMARK_QMARK, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(8064), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(5664), 2, + anon_sym_in, + anon_sym_QMARK, + ACTIONS(8032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_and, - anon_sym_or, - anon_sym_equals, - STATE(4975), 9, + STATE(5188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619660,7 +648486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136048] = 42, + [151062] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619681,76 +648507,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7442), 1, + anon_sym_SLASH, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7678), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - STATE(6716), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4976), 9, + ACTIONS(8004), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619760,7 +648583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136190] = 38, + [151199] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619781,72 +648604,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7358), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7360), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7364), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7372), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(7165), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7169), 1, anon_sym_is, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7366), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_and, - anon_sym_or, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(4977), 9, + ACTIONS(8108), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619856,7 +648680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136324] = 22, + [151336] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619877,32 +648701,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7680), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7686), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - STATE(2106), 1, + 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(2107), 1, - sym_generic_name, - STATE(4264), 1, + 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, - STATE(5724), 1, - sym_explicit_interface_specifier, - STATE(7169), 1, - sym__name, - ACTIONS(7690), 2, - anon_sym_operator, - anon_sym_checked, - ACTIONS(7688), 3, - anon_sym_ref, - anon_sym_delegate, - sym_predefined_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(4978), 10, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -619912,8 +648735,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(7683), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -619936,7 +648758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [136426] = 40, + [151435] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -619957,74 +648779,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7986), 1, anon_sym_as, - ACTIONS(7479), 1, + ACTIONS(7988), 1, anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7954), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4979), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 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(5192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620034,7 +648848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136564] = 27, + [151558] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620055,38 +648869,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7693), 1, - anon_sym_RPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4980), 9, + 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, + 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, + sym_bracketed_argument_list, + STATE(3035), 1, + sym_argument_list, + ACTIONS(4841), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5882), 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(5193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620096,30 +648945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [136676] = 27, + [151695] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620140,45 +648966,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7370), 1, + 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, - STATE(2738), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7350), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4981), 9, + 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(7584), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620188,23 +649042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [136788] = 33, + [151832] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620225,67 +649063,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7364), 1, + ACTIONS(7964), 1, + anon_sym_CARET, + ACTIONS(7968), 1, + anon_sym_AMP, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7378), 1, + ACTIONS(7986), 1, anon_sym_as, - ACTIONS(7380), 1, + ACTIONS(7988), 1, anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7954), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7362), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 9, - anon_sym_CARET, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_and, - anon_sym_or, + ACTIONS(7976), 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_equals, - STATE(4982), 9, + anon_sym_into, + anon_sym_by, + STATE(5195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620295,7 +649135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136912] = 27, + [151961] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620316,38 +649156,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7382), 1, - anon_sym_COMMA, - ACTIONS(7695), 1, - anon_sym_RPAREN, - STATE(2525), 1, + 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(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6208), 1, + STATE(6574), 1, + sym__preproc_expression, + ACTIONS(7912), 2, + anon_sym_true, + anon_sym_false, + STATE(6542), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(4983), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620357,7 +649190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -620380,7 +649213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [137024] = 42, + [152060] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620401,76 +649234,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7614), 1, - anon_sym_COMMA, - ACTIONS(7697), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - STATE(6715), 1, - aux_sym__for_statement_conditions_repeat1, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4984), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6502), 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(5197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620480,7 +649268,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137166] = 22, + 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, + [152159] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620501,36 +649312,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(6574), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(6619), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(6625), 1, anon_sym_BANG, - ACTIONS(7538), 1, + ACTIONS(6649), 1, + anon_sym_switch, + ACTIONS(6663), 1, + anon_sym_with, + ACTIONS(6761), 1, + anon_sym_as, + ACTIONS(6962), 1, + anon_sym_QMARK, + ACTIONS(6968), 1, + 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, - STATE(2738), 1, + 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(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6960), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6964), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4985), 9, + 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(8110), 2, + sym_interpolation_close_brace, + anon_sym_COLON, + STATE(5198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620540,27 +649388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 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, - [137268] = 22, + [152296] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620581,36 +649409,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6867), 1, + 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, - STATE(3122), 1, + 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(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(5745), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4986), 9, + 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(5199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620620,27 +649485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [137370] = 36, + [152433] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620661,70 +649506,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6857), 1, - anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(6875), 1, + ACTIONS(7986), 1, + anon_sym_as, + ACTIONS(7988), 1, anon_sym_is, - STATE(3122), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, + ACTIONS(7954), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, + 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, - STATE(4987), 9, + anon_sym_into, + anon_sym_by, + STATE(5200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620734,7 +649576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137500] = 40, + [152558] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620755,84 +649597,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(8104), 1, + anon_sym_and, + STATE(5201), 9, + sym_preproc_region, + sym_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, - ACTIONS(6393), 1, - anon_sym_switch, - ACTIONS(6407), 1, - anon_sym_with, - ACTIONS(7532), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7538), 1, - anon_sym_DOT_DOT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7552), 1, - anon_sym_as, - ACTIONS(7554), 1, - anon_sym_is, - ACTIONS(7556), 1, - anon_sym_CARET, - ACTIONS(7558), 1, anon_sym_PIPE, - ACTIONS(7560), 1, - anon_sym_AMP_AMP, - ACTIONS(7570), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7630), 1, - anon_sym_QMARK, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7528), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7530), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5766), 3, - anon_sym_and, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_or, - anon_sym_by, - 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, - [137638] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620853,45 +649668,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6851), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6867), 1, + 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, - STATE(3122), 1, + 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(4578), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6847), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(4989), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -620901,23 +649744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [137750] = 37, + [152780] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -620938,81 +649765,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7354), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7356), 1, - anon_sym_CARET, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_AMP, - ACTIONS(7364), 1, - anon_sym_GT_GT, - ACTIONS(7370), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7378), 1, - anon_sym_as, - ACTIONS(7380), 1, - anon_sym_is, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7346), 2, + ACTIONS(7874), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7350), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7362), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5203), 9, + sym_preproc_region, + sym_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, - ACTIONS(7366), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7368), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - 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(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, - [137882] = 40, + anon_sym_as, + anon_sym_is, + [152889] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621033,74 +649848,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, - anon_sym_as, - ACTIONS(7479), 1, - anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7475), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5754), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4991), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621110,7 +649900,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138020] = 34, + 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_by, + anon_sym_as, + anon_sym_is, + [153004] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621131,78 +649934,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6493), 1, + 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, anon_sym_BANG, - ACTIONS(6517), 1, - anon_sym_switch, - ACTIONS(6531), 1, - anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6851), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(6861), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(6867), 1, - anon_sym_DOT_DOT, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, + anon_sym_DOT, + ACTIONS(5354), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6865), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_CARET, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(4992), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [138146] = 40, + anon_sym_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [153091] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621223,74 +650006,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + 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(7461), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7894), 1, + anon_sym_AMP_AMP, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7479), 1, + ACTIONS(7898), 1, anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, + ACTIONS(8112), 1, + anon_sym_QMARK, + ACTIONS(8114), 1, anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, + ACTIONS(8116), 1, anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(5767), 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(7453), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5716), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4993), 9, + STATE(5206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621300,7 +650082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138284] = 40, + [153228] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621321,74 +650103,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7455), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7459), 1, + ACTIONS(7878), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_AMP, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7461), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7479), 1, + ACTIONS(7898), 1, anon_sym_is, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(2738), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4886), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4994), 9, + ACTIONS(5660), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, + STATE(5207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621398,7 +650175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138422] = 40, + [153357] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621419,74 +650196,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6393), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6407), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7461), 1, - anon_sym_DOT_DOT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7477), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7479), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7481), 1, + ACTIONS(7442), 1, + anon_sym_SLASH, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7566), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7568), 1, + 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(7574), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7586), 1, + ACTIONS(7659), 1, anon_sym_QMARK, - STATE(2738), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7451), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7453), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7457), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7475), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5706), 3, - anon_sym_in, - anon_sym_and, - anon_sym_or, - STATE(4995), 9, + ACTIONS(8120), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621496,7 +650272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138560] = 40, + [153494] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621517,73 +650293,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7709), 1, - anon_sym_CARET, - ACTIONS(7711), 1, - anon_sym_PIPE, - ACTIONS(7713), 1, - anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_DOT_DOT, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4886), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(4996), 9, + ACTIONS(5664), 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, @@ -621593,7 +650345,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138697] = 41, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621614,84 +650379,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8122), 1, + anon_sym_and, + STATE(5210), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6069), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7652), 1, - anon_sym_COMMA, - ACTIONS(7735), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(4997), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [138836] = 21, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621712,31 +650450,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7737), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7739), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7741), 1, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, sym_integer_literal, - STATE(2106), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6322), 1, + STATE(6547), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6344), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(4998), 9, + STATE(5211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621746,7 +650484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -621769,7 +650507,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [138935] = 21, + [153793] = 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(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, + anon_sym_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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, + [153880] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621794,27 +650604,27 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(141), 1, anon_sym_SQUOTE, - ACTIONS(7737), 1, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(7739), 1, + ACTIONS(7998), 1, anon_sym_BANG, - ACTIONS(7741), 1, + ACTIONS(8000), 1, sym_integer_literal, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6342), 1, + STATE(6471), 1, sym__preproc_expression, ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6344), 6, + STATE(6543), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(4999), 9, + STATE(5213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621847,7 +650657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [139034] = 22, + [153979] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621868,36 +650678,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5000), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 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, + sym_identifier, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -621907,26 +650712,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + 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_as, - anon_sym_is, - anon_sym_with, - [139135] = 40, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [154078] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -621947,73 +650756,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(7894), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5564), 2, + ACTIONS(5899), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5001), 9, + STATE(5215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622023,7 +650832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139272] = 15, + [154215] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622044,11 +650853,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, - anon_sym_and, - ACTIONS(7747), 1, - anon_sym_or, - STATE(5002), 9, + 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(6564), 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(5216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622058,23 +650887,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, + 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, + [154314] = 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(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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5217), 9, + sym_preproc_region, + sym_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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -622085,17 +650981,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_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [139359] = 21, + [154415] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622116,31 +651010,73 @@ 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(7737), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7739), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7741), 1, - sym_integer_literal, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6318), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6344), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5003), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622150,30 +651086,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, - [139458] = 41, + [154552] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622194,74 +651107,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7652), 1, - anon_sym_COMMA, - ACTIONS(7749), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8076), 1, + anon_sym_SLASH, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5004), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622271,7 +651154,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139597] = 21, + 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, + [154661] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622292,31 +651190,40 @@ 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(7737), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7739), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7741), 1, - sym_integer_literal, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6280), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6344), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5005), 9, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7942), 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(5220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622326,30 +651233,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, + ACTIONS(5660), 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, + 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, - [139696] = 21, + anon_sym_as, + anon_sym_is, + [154766] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622370,31 +651271,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6286), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5006), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622404,30 +651314,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(5660), 16, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_join, anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [139795] = 21, + anon_sym_as, + anon_sym_is, + [154871] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622448,31 +651352,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3879), 1, + anon_sym_COMMA, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(141), 1, - anon_sym_SQUOTE, - ACTIONS(7737), 1, + ACTIONS(6827), 1, anon_sym_LPAREN, - ACTIONS(7739), 1, - anon_sym_BANG, - ACTIONS(7741), 1, - sym_integer_literal, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6312), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6344), 6, - sym_character_literal, - sym_boolean_literal, + 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, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5007), 9, + 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_region, sym_preproc_endregion, sym_preproc_line, @@ -622482,7 +651391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -622505,7 +651414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [139894] = 14, + [154980] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622526,9 +651435,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(8022), 1, anon_sym_and, - STATE(5008), 9, + ACTIONS(8024), 1, + anon_sym_or, + STATE(5223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622538,7 +651449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -622550,7 +651461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 25, + ACTIONS(6205), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -622566,17 +651477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [139979] = 27, + [155067] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622597,45 +651507,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + 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(5009), 9, + STATE(5224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622645,7 +651546,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5731), 18, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -622653,14 +651556,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_by, anon_sym_as, anon_sym_is, - [140090] = 24, + anon_sym_with, + [155168] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622681,67 +651586,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7771), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(8076), 1, + anon_sym_SLASH, + ACTIONS(8082), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - 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(5656), 16, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, + ACTIONS(5660), 6, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_as, - anon_sym_is, - [140195] = 40, + anon_sym_on, + STATE(5225), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [155295] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622762,73 +651678,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7956), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7962), 1, + anon_sym_SLASH, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7982), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7984), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7986), 1, + anon_sym_as, + ACTIONS(7988), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5864), 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(7185), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7598), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5011), 9, + STATE(5226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -622838,7 +651754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140332] = 15, + [155432] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -622859,145 +651775,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7773), 1, - anon_sym_and, - ACTIONS(7775), 1, - anon_sym_or, - 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, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_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(4100), 1, anon_sym_DOT, - ACTIONS(5296), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_as, - anon_sym_is, + ACTIONS(4102), 1, anon_sym_DASH_GT, - anon_sym_with, - [140419] = 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(4647), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7781), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7783), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7785), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7797), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5564), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5013), 9, + ACTIONS(8126), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623007,7 +651851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140556] = 14, + [155569] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623028,9 +651872,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7803), 1, - anon_sym_SEMI, - STATE(5014), 9, + ACTIONS(8022), 1, + anon_sym_and, + STATE(5228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623040,7 +651884,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4892), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -623052,7 +651896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4890), 25, + ACTIONS(6067), 25, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -623068,95 +651912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, 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, - [140641] = 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(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, - anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6306), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5015), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [140740] = 26, + [155654] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623177,44 +651943,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7769), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7771), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7767), 2, + ACTIONS(7872), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 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(5016), 9, + STATE(5229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623224,7 +651991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -623232,14 +651999,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, - [140849] = 29, + [155765] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623260,49 +652027,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7789), 1, - anon_sym_GT_GT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7787), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5017), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623312,20 +652061,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [140964] = 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, + [155864] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623346,36 +652105,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4066), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(4072), 1, + anon_sym_STAR, + ACTIONS(5358), 1, + anon_sym_QMARK, + ACTIONS(8128), 1, + anon_sym_DOT, + ACTIONS(4016), 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, - STATE(5018), 9, + STATE(5231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623385,8 +652133,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 18, - anon_sym_STAR, + ACTIONS(4018), 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, @@ -623396,15 +652148,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, - [141065] = 40, + [155955] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623425,73 +652179,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(8128), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, - anon_sym_SLASH, - ACTIONS(7815), 1, - anon_sym_CARET, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_AMP, - ACTIONS(7823), 1, - anon_sym_GT_GT, - ACTIONS(7829), 1, - anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5019), 9, + STATE(5232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623501,38 +652191,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141202] = 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(3992), 1, - anon_sym_LBRACK, - ACTIONS(3998), 1, - anon_sym_STAR, - ACTIONS(5228), 1, - anon_sym_QMARK, - ACTIONS(7839), 1, - anon_sym_DOT, - ACTIONS(3948), 9, + ACTIONS(3975), 10, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, @@ -623540,22 +652202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5020), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3950), 24, + 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, @@ -623575,7 +652229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [141293] = 14, + [156040] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623596,9 +652250,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7839), 1, - anon_sym_DOT, - STATE(5021), 9, + ACTIONS(8020), 1, + anon_sym_and, + ACTIONS(8130), 1, + anon_sym_or, + STATE(5233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623608,7 +652264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3932), 10, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -623619,11 +652275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3934), 26, + anon_sym_DOT, + ACTIONS(6205), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -623635,10 +652290,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_when, anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -623646,7 +652301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [141378] = 21, + [156127] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623667,31 +652322,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6350), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5022), 9, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + 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(6708), 1, + anon_sym_AMP_AMP, + ACTIONS(6710), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6712), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7035), 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(7831), 1, + anon_sym_COMMA, + 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(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_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(5234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623701,30 +652399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [141477] = 14, + [156266] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623745,57 +652420,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_and, - STATE(5023), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + 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, - anon_sym_DOT, - ACTIONS(5941), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7958), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_when, - anon_sym_DOT_DOT, - anon_sym_or, + ACTIONS(5660), 5, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [141562] = 40, + anon_sym_into, + anon_sym_by, + STATE(5235), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [156397] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623816,73 +652514,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7779), 1, + ACTIONS(8070), 1, anon_sym_QMARK, - ACTIONS(7781), 1, + ACTIONS(8076), 1, + anon_sym_SLASH, + ACTIONS(8078), 1, anon_sym_CARET, - ACTIONS(7783), 1, + ACTIONS(8080), 1, anon_sym_PIPE, - ACTIONS(7785), 1, + ACTIONS(8082), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, + ACTIONS(8092), 1, anon_sym_AMP_AMP, - ACTIONS(7797), 1, + ACTIONS(8094), 1, anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, + ACTIONS(8096), 1, anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, + ACTIONS(8098), 1, + anon_sym_as, + ACTIONS(8100), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5716), 2, - anon_sym_EQ_GT, + ACTIONS(5745), 2, anon_sym_into, - ACTIONS(7765), 2, + anon_sym_on, + ACTIONS(8068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5024), 9, + STATE(5236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -623892,7 +652590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141699] = 21, + [156534] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623913,31 +652611,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6296), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5025), 9, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7962), 1, + anon_sym_SLASH, + ACTIONS(7968), 1, + 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_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_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, @@ -623947,30 +652682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [141798] = 41, + [156661] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -623991,74 +652703,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6574), 1, + ACTIONS(7956), 1, + anon_sym_QMARK, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(7978), 1, + anon_sym_DOT_DOT, + ACTIONS(7980), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(7982), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(7984), 1, anon_sym_QMARK_QMARK, - ACTIONS(7222), 1, - anon_sym_COLON, - ACTIONS(7228), 1, - anon_sym_QMARK, - ACTIONS(7230), 1, - anon_sym_DOT_DOT, - ACTIONS(7232), 1, + ACTIONS(7986), 1, anon_sym_as, - ACTIONS(7234), 1, + ACTIONS(7988), 1, anon_sym_is, - ACTIONS(7652), 1, - anon_sym_COMMA, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(5072), 2, + anon_sym_into, + anon_sym_by, + ACTIONS(7954), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5026), 9, + STATE(5238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624068,7 +652779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141937] = 21, + [156798] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624089,31 +652800,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6304), 1, + STATE(6540), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5027), 9, + STATE(5239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624123,7 +652834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -624146,7 +652857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [142036] = 40, + [156897] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624167,73 +652878,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, - anon_sym_QMARK, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, - anon_sym_PIPE, - ACTIONS(7785), 1, - anon_sym_AMP, - ACTIONS(7789), 1, - anon_sym_GT_GT, - ACTIONS(7795), 1, - anon_sym_AMP_AMP, - ACTIONS(7797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4886), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5028), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624243,7 +652912,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142173] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624264,170 +652956,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7843), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [142310] = 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(4647), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7815), 1, - anon_sym_CARET, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, - anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5610), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7827), 2, + anon_sym_GT_GT_GT, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5030), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 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(5241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624437,7 +653025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142447] = 40, + [157119] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624458,73 +653046,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, - anon_sym_QMARK, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, - anon_sym_PIPE, - ACTIONS(7785), 1, - anon_sym_AMP, - ACTIONS(7789), 1, - anon_sym_GT_GT, - ACTIONS(7795), 1, - anon_sym_AMP_AMP, - ACTIONS(7797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5706), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5031), 9, + 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, @@ -624534,7 +653080,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142584] = 21, + 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, + [157218] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624555,31 +653124,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6309), 1, + STATE(6551), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5032), 9, + STATE(5243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624589,7 +653158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -624612,7 +653181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [142683] = 40, + [157317] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624633,73 +653202,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, - anon_sym_SLASH, - ACTIONS(7815), 1, - anon_sym_CARET, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_AMP, - ACTIONS(7823), 1, - anon_sym_GT_GT, - ACTIONS(7829), 1, - anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5766), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5033), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624709,7 +653236,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142820] = 21, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624730,31 +653280,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(7996), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7998), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(8000), 1, sym_integer_literal, - STATE(6254), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6347), 1, + STATE(6530), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(77), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6543), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5034), 9, + STATE(5245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624764,7 +653314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -624787,7 +653337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [142919] = 40, + [157515] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624808,73 +653358,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + ACTIONS(8070), 1, + anon_sym_QMARK, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(8078), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(8080), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(8082), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(8092), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, + ACTIONS(8094), 1, anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, + ACTIONS(8096), 1, anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, + ACTIONS(8098), 1, anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(8100), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5656), 2, + ACTIONS(5767), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, + anon_sym_on, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5035), 9, + STATE(5246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624884,7 +653434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143056] = 40, + [157652] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -624905,73 +653455,144 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + 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, + anon_sym_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, - ACTIONS(4655), 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_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(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + ACTIONS(7894), 1, anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5706), 2, + ACTIONS(5858), 2, anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5036), 9, + STATE(5248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -624981,7 +653602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143193] = 40, + [157874] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625002,73 +653623,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7743), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, - anon_sym_SLASH, - ACTIONS(7815), 1, - anon_sym_CARET, - ACTIONS(7817), 1, - anon_sym_PIPE, - ACTIONS(7819), 1, - anon_sym_AMP, - ACTIONS(7823), 1, - anon_sym_GT_GT, - ACTIONS(7829), 1, - anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4886), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5037), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625078,7 +653662,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143330] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625099,73 +653702,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, - anon_sym_QMARK, - ACTIONS(7813), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + ACTIONS(7894), 1, anon_sym_AMP_AMP, - ACTIONS(7831), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5716), 2, + ACTIONS(5864), 2, anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5038), 9, + STATE(5250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625175,7 +653778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143467] = 21, + [158112] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625196,31 +653799,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6337), 1, + STATE(6576), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5039), 9, + STATE(5251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625230,7 +653833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -625253,7 +653856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [143566] = 40, + [158211] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625274,73 +653877,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 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(7600), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5040), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6577), 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(5252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625350,7 +653911,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143703] = 15, + 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, + [158310] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625371,81 +653955,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7845), 1, - anon_sym_and, - ACTIONS(7847), 1, - anon_sym_or, - 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, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5296), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - 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, - [143790] = 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(7845), 1, - anon_sym_and, - STATE(5042), 9, + ACTIONS(7546), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625455,45 +654031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [143875] = 26, + [158447] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625514,37 +654052,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3823), 1, - anon_sym_COLON, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - STATE(2525), 1, + 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(3306), 1, - sym__variable_designation, - STATE(3334), 1, + STATE(6580), 1, + sym__preproc_expression, + ACTIONS(7912), 2, + anon_sym_true, + anon_sym_false, + STATE(6542), 6, + sym_character_literal, + sym_boolean_literal, sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5517), 1, - sym_positional_pattern_clause, - STATE(5561), 1, - sym_property_pattern_clause, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5043), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625554,7 +654086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -625564,6 +654096,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, @@ -625576,7 +654109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [143984] = 40, + [158546] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625597,73 +654130,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7986), 1, + anon_sym_as, + ACTIONS(7988), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7954), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7958), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7849), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5044), 9, + ACTIONS(5660), 4, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_by, + STATE(5255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625673,7 +654204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144121] = 40, + [158679] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625694,73 +654225,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + 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(7193), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7894), 1, + anon_sym_AMP_AMP, + ACTIONS(7896), 1, + anon_sym_as, + ACTIONS(7898), 1, anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8112), 1, anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8114), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8116), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5072), 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(7185), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5045), 9, + STATE(5256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625770,7 +654301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144258] = 21, + [158816] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625791,31 +654322,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6301), 1, + STATE(6571), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5046), 9, + STATE(5257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625825,7 +654356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -625848,7 +654379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [144357] = 26, + [158915] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625869,37 +654400,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3823), 1, - anon_sym_EQ_GT, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7853), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(4729), 1, - sym_identifier, - STATE(5517), 1, - sym_positional_pattern_clause, - STATE(5561), 1, - sym_property_pattern_clause, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 3, - anon_sym_when, + ACTIONS(8006), 1, anon_sym_and, + ACTIONS(8008), 1, anon_sym_or, - STATE(5047), 9, + STATE(5258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625909,29 +654414,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 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, + 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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, - [144466] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [159002] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -625952,12 +654472,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4205), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(8016), 1, anon_sym_and, + ACTIONS(8018), 1, anon_sym_or, - STATE(5048), 9, + STATE(5259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -625967,7 +654486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4980), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -625979,7 +654498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4978), 22, + ACTIONS(5354), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -625998,11 +654517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [144551] = 40, + [159089] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626023,251 +654544,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7855), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5049), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [144688] = 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(4647), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7701), 1, + ACTIONS(7956), 1, anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(7968), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(7972), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(7980), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, + ACTIONS(7982), 1, anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, + ACTIONS(7984), 1, anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, + ACTIONS(7986), 1, anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(7988), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5610), 2, + ACTIONS(5882), 2, anon_sym_into, anon_sym_by, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7703), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7705), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, - [144825] = 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(4205), 4, - anon_sym_COLON, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5051), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4890), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + 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, - anon_sym_CARET, + 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, - 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, - [144910] = 40, + STATE(5260), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [159226] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626288,73 +654641,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(7896), 1, + anon_sym_as, + ACTIONS(7898), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7596), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5052), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626364,7 +654711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145047] = 40, + [159351] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626385,73 +654732,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8070), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8076), 1, + anon_sym_SLASH, + ACTIONS(8078), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8080), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8082), 1, + anon_sym_AMP, + ACTIONS(8086), 1, + anon_sym_GT_GT, + ACTIONS(8092), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8094), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8096), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(8098), 1, + anon_sym_as, + ACTIONS(8100), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5899), 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(7185), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7857), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5053), 9, + STATE(5262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626461,7 +654808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145184] = 21, + [159488] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626482,31 +654829,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6285), 1, + STATE(6598), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5054), 9, + STATE(5263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626516,7 +654863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626539,7 +654886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [145283] = 21, + [159587] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626560,31 +654907,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6315), 1, + STATE(6599), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5055), 9, + STATE(5264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626594,7 +654941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626617,7 +654964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [145382] = 22, + [159686] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626638,36 +654985,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5056), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626677,26 +655019,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + 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_as, - anon_sym_is, - anon_sym_with, - [145483] = 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, + [159785] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626717,108 +655063,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, - anon_sym_PIPE, - ACTIONS(7785), 1, - anon_sym_AMP, - ACTIONS(7789), 1, - anon_sym_GT_GT, - ACTIONS(7795), 1, - anon_sym_AMP_AMP, - ACTIONS(7797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5656), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7777), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7787), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, - [145620] = 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(7773), 1, - anon_sym_and, - ACTIONS(7775), 1, - anon_sym_or, - STATE(5058), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626828,23 +655102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1221), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -626854,18 +655112,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [145707] = 21, + [159886] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626886,31 +655142,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7761), 1, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7763), 1, + ACTIONS(7916), 1, sym_integer_literal, - STATE(6254), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6333), 1, + STATE(6552), 1, sym__preproc_expression, - ACTIONS(7759), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6300), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5059), 9, + STATE(5267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -626920,7 +655176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -626943,7 +655199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [145806] = 15, + [159985] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -626964,144 +655220,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7841), 1, - anon_sym_and, - ACTIONS(7859), 1, - anon_sym_or, - STATE(5060), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 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_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, + ACTIONS(4755), 1, anon_sym_DASH_GT, - anon_sym_with, - [145893] = 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(4647), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7823), 1, + ACTIONS(8078), 1, + anon_sym_CARET, + ACTIONS(8082), 1, + anon_sym_AMP, + ACTIONS(8086), 1, anon_sym_GT_GT, - STATE(2358), 1, + ACTIONS(8098), 1, + anon_sym_as, + ACTIONS(8100), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7809), 2, + 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(7811), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - 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(5656), 12, - anon_sym_CARET, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - anon_sym_as, - anon_sym_is, - [146008] = 26, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627122,44 +655313,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - STATE(2358), 1, + 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(8132), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5062), 9, + 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(5269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627169,22 +655390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [146117] = 40, + [160253] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627205,73 +655411,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7861), 2, + ACTIONS(8134), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5063), 9, + anon_sym_RBRACE, + STATE(5270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627281,7 +655487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146254] = 24, + [160390] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627302,40 +655508,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + 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, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5858), 2, + anon_sym_into, + anon_sym_on, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5064), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627345,24 +655584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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_on, - anon_sym_as, - anon_sym_is, - [146359] = 35, + [160527] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627383,68 +655605,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, - anon_sym_SLASH, - ACTIONS(7819), 1, - anon_sym_AMP, - ACTIONS(7823), 1, - anon_sym_GT_GT, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7805), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7821), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7825), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5065), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627454,7 +655639,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146486] = 36, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627475,69 +655683,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7819), 1, + ACTIONS(7880), 1, + anon_sym_PIPE, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7835), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + ACTIONS(7894), 1, + anon_sym_AMP_AMP, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + 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(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7805), 2, + ACTIONS(5882), 2, + anon_sym_into, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5066), 9, + STATE(5273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627547,7 +655759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146615] = 40, + [160763] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627568,73 +655780,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7863), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5067), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627644,7 +655828,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146752] = 23, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627665,33 +655864,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(7908), 1, anon_sym_LPAREN, - STATE(2525), 1, + 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(3286), 1, + 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, - STATE(3335), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5529), 1, - sym_property_pattern_clause, - ACTIONS(3851), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3849), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5068), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627701,7 +655898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -627724,7 +655921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [146855] = 40, + [160973] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627745,73 +655942,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7602), 2, + ACTIONS(8136), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5069), 9, + anon_sym_RBRACE, + STATE(5276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627821,7 +656018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146992] = 40, + [161110] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627842,73 +656039,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8098), 1, + anon_sym_as, + ACTIONS(8100), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8068), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7867), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5070), 9, + 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_on, + STATE(5277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -627918,7 +656109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147129] = 34, + [161235] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -627939,67 +656130,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7823), 1, + ACTIONS(7882), 1, + anon_sym_AMP, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7835), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7805), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 6, + 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(5071), 9, + anon_sym_equals, + STATE(5278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628009,7 +656201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147254] = 21, + [161362] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628030,31 +656222,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6290), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5072), 9, + 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_region, sym_preproc_endregion, sym_preproc_line, @@ -628064,7 +656258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -628087,7 +656281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [147353] = 40, + [161465] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628108,142 +656302,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6454), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6493), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6517), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6531), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6808), 1, - anon_sym_as, - ACTIONS(6845), 1, - anon_sym_QMARK, - ACTIONS(6851), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(6853), 1, - anon_sym_CARET, - ACTIONS(6855), 1, - anon_sym_PIPE, - ACTIONS(6857), 1, - anon_sym_AMP, - ACTIONS(6861), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(6867), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_AMP_AMP, - ACTIONS(6871), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6873), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6875), 1, - anon_sym_is, - STATE(3122), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(4578), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(6495), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6843), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6847), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6849), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6859), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6863), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6865), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(7869), 2, - sym_interpolation_close_brace, - anon_sym_COLON, - STATE(5073), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [147490] = 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(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, - anon_sym_SLASH, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7809), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7811), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(5074), 9, + STATE(5280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628253,22 +656354,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 12, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_on, anon_sym_as, anon_sym_is, - [147601] = 40, + [161580] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628289,83 +656388,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + 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, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, - anon_sym_QMARK, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, anon_sym_PIPE, - ACTIONS(7785), 1, anon_sym_AMP, - ACTIONS(7789), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, - anon_sym_AMP_AMP, - ACTIONS(7797), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, + anon_sym_DOT, + ACTIONS(6067), 25, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5610), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7767), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5075), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [147738] = 22, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628386,36 +656459,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7771), 1, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(8076), 1, + anon_sym_SLASH, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(8072), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8074), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 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(5076), 9, + STATE(5282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628425,9 +656507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 18, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -628435,16 +656515,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_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, - [147839] = 40, + [161776] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628465,73 +656543,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(7920), 1, + anon_sym_QMARK, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, + ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7340), 1, + 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(7342), 1, + ACTIONS(7946), 1, anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, + ACTIONS(7948), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7950), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(5899), 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(7312), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7857), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5077), 9, + STATE(5283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628541,7 +656619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147976] = 21, + [161913] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628562,31 +656640,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6291), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5078), 9, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + ACTIONS(8076), 1, + anon_sym_SLASH, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + 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(8090), 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_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + anon_sym_on, + STATE(5284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628596,30 +656709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [148075] = 41, + [162036] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628640,74 +656730,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7964), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7966), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7982), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7984), 1, anon_sym_QMARK_QMARK, - ACTIONS(7652), 1, - anon_sym_COMMA, - ACTIONS(7871), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7986), 1, + anon_sym_as, + ACTIONS(7988), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5660), 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(7185), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7970), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7974), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7976), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5079), 9, + STATE(5285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628717,7 +656806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148214] = 40, + [162173] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628738,73 +656827,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7709), 1, - anon_sym_CARET, - ACTIONS(7711), 1, - anon_sym_PIPE, - ACTIONS(7713), 1, - anon_sym_AMP, - ACTIONS(7717), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, - anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, + ACTIONS(7924), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5080), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628814,7 +656874,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148351] = 22, + 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, + [162282] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628835,26 +656910,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7723), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -628864,7 +656939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5081), 9, + STATE(5287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628874,7 +656949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 18, + ACTIONS(1221), 18, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -628884,16 +656959,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_by, anon_sym_as, anon_sym_is, anon_sym_with, - [148452] = 33, + [162383] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -628914,66 +656989,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7823), 1, + 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(7835), 1, + ACTIONS(8098), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(8100), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7805), 2, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7827), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(5082), 9, + STATE(5288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -628983,7 +657062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148575] = 37, + [162514] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629004,70 +657083,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, + ACTIONS(7902), 1, anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(8076), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(8078), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(8080), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(8082), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(8086), 1, anon_sym_GT_GT, - ACTIONS(7835), 1, + ACTIONS(8092), 1, + anon_sym_AMP_AMP, + ACTIONS(8098), 1, anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(8100), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7805), 2, + ACTIONS(8068), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(8072), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(8074), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(8084), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(8088), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(8090), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_AMP_AMP, + ACTIONS(5660), 4, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, anon_sym_on, - STATE(5083), 9, + STATE(5289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629077,7 +657157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148706] = 38, + [162647] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629098,71 +657178,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7920), 1, + anon_sym_QMARK, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, + ACTIONS(7942), 1, + anon_sym_DOT_DOT, + ACTIONS(7944), 1, anon_sym_AMP_AMP, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, + ACTIONS(7946), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7948), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7950), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7805), 2, + ACTIONS(5858), 2, + anon_sym_EQ_GT, + anon_sym_into, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_on, - STATE(5084), 9, + STATE(5290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629172,7 +657254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148839] = 40, + [162784] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629193,73 +657275,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7813), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(7444), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(7446), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(7452), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, + ACTIONS(7458), 1, + anon_sym_DOT_DOT, + ACTIONS(7621), 1, anon_sym_AMP_AMP, - ACTIONS(7831), 1, + ACTIONS(7623), 1, anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, + ACTIONS(7625), 1, anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(7659), 1, + anon_sym_QMARK, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5656), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + ACTIONS(7436), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(7454), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(7456), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5085), 9, + ACTIONS(7783), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629269,7 +657351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148976] = 21, + [162921] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629290,31 +657372,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4755), 1, + anon_sym_DASH_GT, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6270), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5086), 9, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, + anon_sym_switch, + ACTIONS(6307), 1, + anon_sym_with, + ACTIONS(7902), 1, + anon_sym_DOT_DOT, + 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, + 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_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(5292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629324,30 +657448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [149075] = 38, + [163058] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629368,71 +657469,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, - anon_sym_PIPE, - ACTIONS(7785), 1, - anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, - anon_sym_AMP_AMP, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(7892), 1, + anon_sym_DOT_DOT, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7765), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5087), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629442,7 +657521,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149208] = 37, + 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_equals, + anon_sym_as, + anon_sym_is, + [163173] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629463,70 +657555,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_CARET, - ACTIONS(7783), 1, - anon_sym_PIPE, - ACTIONS(7785), 1, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7801), 1, + ACTIONS(7942), 1, + anon_sym_DOT_DOT, + ACTIONS(7950), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7765), 2, + 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(7767), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + 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(5088), 9, + STATE(5294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629536,7 +657626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149339] = 15, + [163300] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629557,13 +657647,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(7873), 1, - anon_sym_LBRACK, - STATE(5525), 1, - sym_attribute_list, - STATE(5089), 10, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629573,26 +657681,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(4757), 33, + ACTIONS(7906), 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, @@ -629607,8 +657704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [149426] = 40, + [163399] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629629,73 +657725,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, - anon_sym_SLASH, - ACTIONS(7318), 1, - anon_sym_GT_GT, - ACTIONS(7320), 1, - anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7310), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7312), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7316), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7322), 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(7863), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5090), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 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, + 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, @@ -629705,7 +657759,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149563] = 40, + 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, + [163498] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629726,73 +657803,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7928), 1, + anon_sym_CARET, + ACTIONS(7932), 1, + anon_sym_AMP, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7950), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + 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(7312), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7867), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5091), 9, + ACTIONS(5660), 5, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_into, + STATE(5297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629802,7 +657875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149700] = 15, + [163627] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629823,143 +657896,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5346), 1, - anon_sym_COLON, - ACTIONS(4205), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - 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(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4890), 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, + ACTIONS(4755), 1, anon_sym_DASH_GT, - anon_sym_with, - [149787] = 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(4647), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(5745), 1, + anon_sym_into, + ACTIONS(5751), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8034), 1, + anon_sym_QMARK, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(8046), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8050), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(8058), 1, anon_sym_AMP_AMP, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(8060), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8062), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8064), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7699), 2, + ACTIONS(8032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5093), 9, + STATE(5298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -629969,7 +657973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149920] = 37, + [163766] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -629990,70 +657994,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(5767), 1, + anon_sym_into, + ACTIONS(5769), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8034), 1, + anon_sym_QMARK, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(8042), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(8046), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8050), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + 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(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7699), 2, + ACTIONS(8032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5094), 9, + STATE(5299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630063,7 +658071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150051] = 15, + [163905] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630084,138 +658092,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7876), 1, - anon_sym_and, - ACTIONS(7878), 1, - anon_sym_or, - STATE(5095), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_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(4100), 1, anon_sym_DOT, - ACTIONS(5296), 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, + ACTIONS(4102), 1, anon_sym_DASH_GT, - anon_sym_with, - [150138] = 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(4647), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7717), 1, + 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(7723), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + 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(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7699), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7721), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5096), 9, + ACTIONS(7159), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(8140), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630225,7 +658168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150261] = 40, + [164042] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630246,73 +658189,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(4839), 1, + anon_sym_BANG, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6393), 1, anon_sym_as, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7314), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7318), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7320), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7324), 1, - anon_sym_AMP, - ACTIONS(7330), 1, - anon_sym_CARET, - ACTIONS(7336), 1, - anon_sym_QMARK, - ACTIONS(7338), 1, - anon_sym_PIPE, - ACTIONS(7340), 1, - anon_sym_AMP_AMP, - ACTIONS(7342), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7344), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7950), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7310), 2, + ACTIONS(7918), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7312), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7316), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7322), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7326), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7328), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7855), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(5097), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630322,7 +658259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150398] = 27, + [164167] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630343,45 +658280,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7707), 1, - anon_sym_SLASH, - ACTIONS(7723), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7703), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7705), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5098), 9, + ACTIONS(3977), 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(5302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630391,22 +658301,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, + ACTIONS(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, anon_sym_into, + anon_sym_join, + anon_sym_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, - [150509] = 34, + anon_sym_select, + sym__identifier_token, + [164252] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630427,67 +658351,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7717), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(7950), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7699), 2, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 6, + 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, - anon_sym_by, - STATE(5099), 9, + STATE(5303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630497,7 +658420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150634] = 36, + [164375] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630518,69 +658441,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7713), 1, + ACTIONS(7930), 1, + anon_sym_PIPE, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(7950), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7699), 2, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + ACTIONS(5660), 5, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_by, - STATE(5100), 9, + STATE(5304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630590,7 +658514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150763] = 35, + [164506] = 41, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630611,68 +658535,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5899), 1, + anon_sym_into, + ACTIONS(5901), 1, + anon_sym_in, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(8034), 1, + anon_sym_QMARK, + ACTIONS(8040), 1, anon_sym_SLASH, - ACTIONS(7713), 1, + ACTIONS(8042), 1, + anon_sym_CARET, + ACTIONS(8044), 1, + anon_sym_PIPE, + ACTIONS(8046), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8050), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(8056), 1, anon_sym_DOT_DOT, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, + 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(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7699), 2, + ACTIONS(8032), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8036), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8038), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8048), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(8052), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(8054), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - STATE(5101), 9, + STATE(5305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630682,7 +658612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150890] = 15, + [164645] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630703,11 +658633,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7876), 1, - anon_sym_and, - ACTIONS(7878), 1, - anon_sym_or, - STATE(5102), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630717,23 +658662,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(1223), 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(6041), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(1221), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -630744,17 +658684,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_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [150977] = 22, + [164746] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630775,65 +658712,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(7880), 1, + 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(7926), 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, + anon_sym_GT_GT, + ACTIONS(7942), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(7944), 1, + anon_sym_AMP_AMP, + ACTIONS(7950), 1, + anon_sym_is, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5103), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(1139), 18, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_AMP_AMP, + ACTIONS(5660), 4, + anon_sym_EQ_GT, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_into, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [151078] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630854,73 +658807,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, + ACTIONS(6393), 1, + anon_sym_as, + ACTIONS(7920), 1, anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(7926), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7928), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(7930), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(7932), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(7936), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7942), 1, + anon_sym_DOT_DOT, + ACTIONS(7944), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7946), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7948), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + ACTIONS(7950), 1, anon_sym_is, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, + ACTIONS(5745), 2, + anon_sym_EQ_GT, anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(7918), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7922), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7924), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7934), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7938), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7940), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5104), 9, + STATE(5308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630930,7 +658883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151215] = 24, + [165016] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -630951,40 +658904,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7723), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(5105), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6508), 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(5309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -630994,24 +658938,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, + 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_as, - anon_sym_is, - [151320] = 15, + anon_sym_select, + [165115] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631032,58 +658982,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7845), 1, - anon_sym_and, - ACTIONS(7847), 1, - anon_sym_or, - 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, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(7926), 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, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(5660), 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, - anon_sym_CARET, + 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, - 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, - [151407] = 26, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631104,35 +659079,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7707), 1, + ACTIONS(7962), 1, anon_sym_SLASH, - ACTIONS(7723), 1, + ACTIONS(7978), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7705), 2, + ACTIONS(7960), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631141,7 +659116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5107), 9, + STATE(5311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631151,7 +659126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 14, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -631166,7 +659141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_as, anon_sym_is, - [151516] = 40, + [165361] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631187,73 +659162,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + 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, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + STATE(5312), 9, + sym_preproc_region, + sym_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, + [165454] = 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(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5610), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5108), 9, + ACTIONS(8120), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631263,7 +659313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151653] = 29, + [165591] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631284,49 +659334,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(7904), 1, + sym__identifier_token, + ACTIONS(7908), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7707), 1, - anon_sym_SLASH, - ACTIONS(7717), 1, - anon_sym_GT_GT, - ACTIONS(7723), 1, - anon_sym_DOT_DOT, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7703), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7705), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7715), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5109), 9, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6593), 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(5314), 9, + sym_preproc_region, + sym_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, + [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, @@ -631336,20 +659426,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, + 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_by, anon_sym_as, anon_sym_is, - [151768] = 33, + anon_sym_DASH_GT, + anon_sym_with, + [165777] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631370,66 +659484,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(7442), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7789), 1, + 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(7801), 1, - anon_sym_is, - STATE(2358), 1, + 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(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7765), 2, + ACTIONS(7436), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7438), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7440), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7450), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7793), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, + ACTIONS(7454), 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, - anon_sym_into, - STATE(5110), 9, + ACTIONS(7456), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(7990), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(5316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631439,7 +659560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151891] = 15, + [165914] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631460,11 +659581,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(4271), 4, + anon_sym_COLON, + anon_sym_when, anon_sym_and, - ACTIONS(7747), 1, anon_sym_or, - STATE(5111), 9, + STATE(5317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631474,7 +659596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(5056), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -631486,7 +659608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 24, + ACTIONS(5054), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -631505,13 +659627,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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [151978] = 21, + [165999] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631532,31 +659652,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7904), 1, sym__identifier_token, - ACTIONS(141), 1, + ACTIONS(7908), 1, + anon_sym_LPAREN, + ACTIONS(7910), 1, + anon_sym_BANG, + ACTIONS(7914), 1, anon_sym_SQUOTE, - ACTIONS(7737), 1, + ACTIONS(7916), 1, + sym_integer_literal, + STATE(6452), 1, + sym__reserved_identifier, + STATE(6559), 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(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, + 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, + [166098] = 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(7739), 1, + ACTIONS(7910), 1, anon_sym_BANG, - ACTIONS(7741), 1, + ACTIONS(7914), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, sym_integer_literal, - STATE(2106), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(6283), 1, + STATE(6567), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(7912), 2, anon_sym_true, anon_sym_false, - STATE(6344), 6, + STATE(6542), 6, sym_character_literal, sym_boolean_literal, sym_identifier, sym_preproc_parenthesized_expression, sym_preproc_unary_expression, sym_preproc_binary_expression, - STATE(5112), 9, + STATE(5319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631566,7 +659764,85 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + 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, + [166197] = 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(6573), 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(5320), 9, + sym_preproc_region, + sym_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, @@ -631589,7 +659865,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [152077] = 40, + [166296] = 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(8138), 1, + anon_sym_and, + ACTIONS(8146), 1, + anon_sym_or, + STATE(5321), 9, + sym_preproc_region, + sym_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, + anon_sym_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_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, + [166383] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631610,73 +659958,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4804), 1, + anon_sym_LPAREN, + ACTIONS(4808), 1, anon_sym_DOT, - ACTIONS(4671), 1, + ACTIONS(4835), 1, anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6293), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6307), 1, anon_sym_with, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(7876), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(7878), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(7880), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(7886), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7892), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(7894), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, + ACTIONS(7896), 1, anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(7898), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(8114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8116), 1, + anon_sym_QMARK_QMARK, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5716), 2, + ACTIONS(5660), 2, anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, + anon_sym_equals, + ACTIONS(7870), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7872), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7874), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7884), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(7888), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(7890), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5113), 9, + STATE(5322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631686,7 +660034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152214] = 40, + [166520] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631707,73 +660055,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7701), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7709), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7711), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7713), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7727), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, + ACTIONS(8180), 1, + anon_sym_by, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(7733), 1, + ACTIONS(8184), 1, anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5706), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5114), 9, + STATE(5323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631783,7 +660130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152351] = 40, + [166656] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631804,73 +660151,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, - anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + 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(7894), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7896), 1, - anon_sym_AMP, - ACTIONS(7900), 1, - anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8186), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5766), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5115), 9, + STATE(5324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631880,7 +660226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152488] = 22, + [166792] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631901,36 +660247,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7880), 1, + 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(2358), 1, + 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(8188), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5116), 9, + 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(5325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -631940,26 +660322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [152589] = 40, + [166928] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -631980,73 +660343,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6377), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6379), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6381), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6383), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6387), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6397), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6399), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7205), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - STATE(2399), 1, + ACTIONS(8190), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6369), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6373), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6375), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6385), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6389), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6391), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7652), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5117), 9, + STATE(5326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632056,7 +660418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152726] = 40, + [167064] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632077,73 +660439,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(8192), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5706), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5118), 9, + STATE(5327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632153,7 +660514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152863] = 40, + [167200] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632174,73 +660535,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(8194), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4886), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5119), 9, + STATE(5328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632250,7 +660610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153000] = 34, + [167336] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632271,67 +660631,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7789), 1, + 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(7801), 1, + 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(2358), 1, + ACTIONS(8196), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7765), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 6, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5120), 9, + STATE(5329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632341,7 +660706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153125] = 40, + [167472] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632362,73 +660727,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_in, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8200), 1, anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(8210), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(8216), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(8222), 1, + anon_sym_DOT_DOT, + ACTIONS(8224), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(8226), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(8228), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + ACTIONS(8230), 1, anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5716), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5121), 9, + STATE(5330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632438,7 +660802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153262] = 22, + [167608] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632459,36 +660823,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7723), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + 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(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, anon_sym_DOT_DOT, - STATE(2358), 1, + ACTIONS(8238), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5122), 9, + 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(5331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632498,26 +660898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 18, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [153363] = 40, + [167744] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632538,73 +660919,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7781), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8240), 1, + anon_sym_COLON, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7783), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7785), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7797), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5754), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5123), 9, + STATE(5332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632614,7 +660994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153500] = 14, + [167880] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632635,18 +661015,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(3934), 8, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(8270), 1, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5124), 9, + STATE(5333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632656,36 +661027,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3932), 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, - [153585] = 40, + 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, + [167964] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632706,73 +661085,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7707), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7709), 1, - anon_sym_CARET, - ACTIONS(7711), 1, - anon_sym_PIPE, - ACTIONS(7713), 1, - anon_sym_AMP, - ACTIONS(7717), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7723), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7725), 1, + 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(7727), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7729), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7731), 1, - anon_sym_as, - ACTIONS(7733), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8272), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5766), 2, - anon_sym_into, - anon_sym_by, - ACTIONS(7699), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7703), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7705), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7715), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7719), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7721), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5125), 9, + STATE(5334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632782,7 +661160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153722] = 23, + [168100] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632803,33 +661181,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3294), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5498), 1, - sym_property_pattern_clause, - ACTIONS(3847), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3845), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5126), 9, + 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, + 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(8274), 1, + anon_sym_COLON, + 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, + STATE(5335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632839,30 +661256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [153825] = 36, + [168236] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632883,69 +661277,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5858), 1, + anon_sym_equals, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, - anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(8278), 1, + anon_sym_QMARK, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(7785), 1, + ACTIONS(8288), 1, + anon_sym_PIPE, + ACTIONS(8290), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(8294), 1, anon_sym_GT_GT, - ACTIONS(7801), 1, + 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(8310), 1, anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7765), 2, + ACTIONS(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5127), 9, + STATE(5336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -632955,7 +661352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153954] = 35, + [168372] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -632976,68 +661373,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7769), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7785), 1, + ACTIONS(7147), 1, + anon_sym_CARET, + ACTIONS(7149), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7801), 1, + 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(2358), 1, + ACTIONS(8312), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7765), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - STATE(5128), 9, + STATE(5337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633047,7 +661448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154081] = 21, + [168508] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633068,31 +661469,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6351), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5129), 9, + 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(8314), 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(5338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633102,30 +661544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [154180] = 40, + [168644] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633146,73 +661565,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6190), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7769), 1, - anon_sym_SLASH, - ACTIONS(7771), 1, - anon_sym_DOT_DOT, - ACTIONS(7779), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7781), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7783), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7785), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7789), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7795), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7797), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7799), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7801), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2358), 1, + ACTIONS(8316), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5766), 2, - anon_sym_EQ_GT, - anon_sym_into, - ACTIONS(7765), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7767), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7777), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7787), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7791), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7793), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5130), 9, + STATE(5339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633222,7 +661640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154317] = 40, + [168780] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633243,73 +661661,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7884), 1, - anon_sym_QMARK, - ACTIONS(7890), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + 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(7894), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7896), 1, - anon_sym_AMP, - ACTIONS(7900), 1, - anon_sym_GT_GT, - ACTIONS(7906), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7908), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8318), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5564), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5131), 9, + STATE(5340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633319,7 +661736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154454] = 29, + [168916] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633340,49 +661757,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5132), 9, + STATE(5341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633392,7 +661809,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 12, + ACTIONS(5660), 11, + anon_sym_COLON, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -633401,11 +661819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [154569] = 26, + [169030] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633426,35 +661842,131 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, + 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(4675), 1, + 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(8320), 1, + anon_sym_COLON, + 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, + STATE(5342), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [169166] = 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(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(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8248), 1, anon_sym_SLASH, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633463,7 +661975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5133), 9, + STATE(5343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633473,7 +661985,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 13, + anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -633484,11 +661997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [154678] = 24, + [169274] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633509,30 +662020,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -633542,7 +662053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5134), 9, + STATE(5344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633552,7 +662063,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 16, + ACTIONS(5660), 15, + anon_sym_COLON, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -633565,11 +662077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [154783] = 35, + [169378] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633590,68 +662100,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7896), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7882), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 6, + ACTIONS(5660), 5, + anon_sym_COLON, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5135), 9, + STATE(5345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633661,7 +662170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154910] = 36, + [169504] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633682,69 +662191,138 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(8322), 1, + anon_sym_and, + STATE(5346), 9, + sym_preproc_region, + sym_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), 24, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(4655), 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_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, - ACTIONS(4659), 1, + anon_sym_with, + [169588] = 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(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7896), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7882), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + ACTIONS(5660), 4, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5136), 9, + STATE(5347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633754,7 +662332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155039] = 34, + [169716] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633775,67 +662353,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7882), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 6, + ACTIONS(5660), 5, + anon_sym_COLON, anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5137), 9, + STATE(5348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633845,7 +662422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155164] = 27, + [169840] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633866,45 +662443,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8248), 1, anon_sym_SLASH, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5138), 9, + STATE(5349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -633914,7 +662491,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 14, + ACTIONS(5660), 13, + anon_sym_COLON, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -633925,11 +662503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, anon_sym_as, anon_sym_is, - [155275] = 33, + [169950] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -633950,66 +662526,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, - anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7900), 1, + 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(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, + 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(2358), 1, + ACTIONS(8324), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7882), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7904), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 8, - anon_sym_CARET, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5139), 9, + ACTIONS(7159), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634019,7 +662601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155398] = 37, + [170086] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634040,70 +662622,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7892), 1, - anon_sym_CARET, - ACTIONS(7894), 1, - anon_sym_PIPE, - ACTIONS(7896), 1, - anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7882), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + 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, - anon_sym_into, - anon_sym_equals, - STATE(5140), 9, + STATE(5351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634113,7 +662690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155529] = 38, + [170208] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634134,81 +662711,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6118), 1, - anon_sym_switch, - ACTIONS(6122), 1, - anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, - anon_sym_SLASH, - ACTIONS(7892), 1, - anon_sym_CARET, - ACTIONS(7894), 1, - anon_sym_PIPE, - ACTIONS(7896), 1, - anon_sym_AMP, - ACTIONS(7900), 1, - anon_sym_GT_GT, - ACTIONS(7906), 1, - anon_sym_AMP_AMP, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7882), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5352), 9, + sym_preproc_region, + sym_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_COLON, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, + anon_sym_switch, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_into, - anon_sym_equals, - STATE(5141), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [155662] = 40, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [170308] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634229,73 +662789,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5658), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6118), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7880), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7890), 1, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7892), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7894), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7896), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7900), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7906), 1, - anon_sym_AMP_AMP, - ACTIONS(7908), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7910), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7912), 1, - anon_sym_as, - ACTIONS(7914), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5656), 2, - anon_sym_into, - anon_sym_equals, - ACTIONS(7882), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7886), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7888), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7898), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7902), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7904), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5142), 9, + ACTIONS(5660), 4, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634305,7 +662861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155799] = 40, + [170438] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634326,73 +662882,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7918), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5143), 9, + ACTIONS(5660), 3, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634402,7 +662955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155936] = 40, + [170570] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634423,73 +662976,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5660), 1, + anon_sym_COLON, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7920), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5144), 9, + STATE(5355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634499,7 +663051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156073] = 21, + [170706] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634520,173 +663072,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6311), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - 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, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - 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(5573), 1, + anon_sym_LBRACK, + ACTIONS(5864), 1, anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [156172] = 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(7876), 1, - anon_sym_and, - STATE(5146), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(8278), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5941), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [156257] = 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(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(7922), 1, - anon_sym_DOT, - ACTIONS(3950), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - STATE(5147), 9, + STATE(5356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634696,34 +663147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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, - [156350] = 14, + [170842] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634744,57 +663168,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7924), 1, - anon_sym_and, - STATE(5148), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(5941), 25, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(8222), 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, + sym_bracketed_argument_list, + STATE(3487), 1, + sym_argument_list, + ACTIONS(5306), 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, - anon_sym_CARET, + 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, - 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, - [156435] = 40, + STATE(5357), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [170978] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634815,73 +663264,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(4675), 1, + 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(6118), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6122), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7743), 1, - anon_sym_DOT_DOT, - ACTIONS(7807), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7813), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7815), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7817), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7819), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7823), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7829), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7831), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7833), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7835), 1, - anon_sym_as, - ACTIONS(7837), 1, - anon_sym_is, - STATE(2358), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(2936), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(4677), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5564), 2, - anon_sym_into, - anon_sym_on, - ACTIONS(7805), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7809), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7811), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7821), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7825), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7827), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5149), 9, + STATE(5358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634891,7 +663339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156572] = 40, + [171114] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -634912,73 +663360,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8328), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7926), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5150), 9, + STATE(5359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -634988,7 +663435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156709] = 40, + [171250] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635009,73 +663456,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8330), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7928), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5151), 9, + STATE(5360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635085,7 +663531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156846] = 15, + [171386] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635106,58 +663552,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7924), 1, - anon_sym_and, - ACTIONS(7930), 1, - anon_sym_or, - STATE(5152), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(6041), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + 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, - 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, - [156933] = 14, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635178,95 +663648,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7773), 1, - anon_sym_and, - STATE(5153), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5941), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - 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, - [157018] = 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(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(7932), 1, - anon_sym_DOT, - ACTIONS(3950), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5154), 9, + STATE(5362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635276,34 +663723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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, - [157111] = 21, + [171658] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635324,31 +663744,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, - anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, + ACTIONS(8338), 1, + anon_sym_operator, + ACTIONS(8340), 1, + anon_sym_this, + STATE(2175), 1, sym__reserved_identifier, - STATE(6349), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, + STATE(2181), 1, + sym_generic_name, + STATE(5961), 1, + sym_explicit_interface_specifier, + STATE(6252), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5155), 9, + 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_region, sym_preproc_endregion, sym_preproc_line, @@ -635358,7 +663780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -635381,7 +663803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [157210] = 21, + [171762] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635402,31 +663824,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6363), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5156), 9, + 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(8342), 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(5364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635436,30 +663899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [157309] = 26, + [171898] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635480,36 +663920,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3823), 1, - anon_sym_COMMA, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(6835), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3306), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5126), 1, - sym_positional_pattern_clause, - STATE(5485), 1, - sym_property_pattern_clause, - STATE(6229), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3821), 2, - anon_sym_and, - anon_sym_or, - STATE(5157), 9, + 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(8344), 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(5365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635519,30 +663995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [157418] = 21, + [172034] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635563,31 +664016,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6360), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5158), 9, + 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, + 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, + 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, + STATE(5366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635597,30 +664091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [157517] = 21, + [172170] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635641,31 +664112,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(7755), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(7757), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7763), 1, - sym_integer_literal, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6274), 1, - sym__preproc_expression, - ACTIONS(7759), 2, - anon_sym_true, - anon_sym_false, - STATE(6300), 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(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(8346), 1, + anon_sym_COMMA, + 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(5367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635675,30 +664187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [157616] = 40, + [172306] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635719,73 +664208,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8348), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(7934), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5160), 9, + STATE(5368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635795,7 +664283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157753] = 15, + [172442] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635816,13 +664304,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_COLON, - ACTIONS(4205), 3, - anon_sym_when, + ACTIONS(8350), 1, anon_sym_and, - anon_sym_or, - STATE(5161), 9, + STATE(5369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635832,7 +664316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4980), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -635844,7 +664328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4978), 22, + ACTIONS(6067), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -635860,14 +664344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [157840] = 41, + [172526] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635888,74 +664374,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7652), 1, - anon_sym_COMMA, - ACTIONS(7936), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8352), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5162), 9, + STATE(5370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -635965,7 +664449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157979] = 29, + [172662] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -635986,49 +664470,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7942), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + 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(7948), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8354), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5163), 9, + ACTIONS(7157), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7159), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636038,19 +664545,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + [172798] = 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(5858), 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, + 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, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [158093] = 40, + STATE(5372), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [172934] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636071,72 +664662,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5864), 1, + anon_sym_by, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7950), 1, - anon_sym_COLON, - ACTIONS(7954), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8166), 1, + anon_sym_GT_GT, + ACTIONS(8172), 1, + anon_sym_DOT_DOT, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5164), 9, + STATE(5373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636146,7 +664737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158229] = 40, + [173070] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636167,72 +664758,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(7974), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8356), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5165), 9, + STATE(5374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636242,7 +664833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158365] = 15, + [173206] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636263,11 +664854,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_into, - STATE(5181), 1, - aux_sym__query_body_repeat2, - STATE(5166), 9, + 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(8358), 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(5375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636277,43 +664929,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + [173342] = 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7187), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(7729), 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, - anon_sym_CARET, + 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, - 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, - [158451] = 40, + STATE(5376), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [173478] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636334,72 +665046,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5858), 1, + anon_sym_in, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8200), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8210), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8216), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(8224), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(8226), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(8228), 1, anon_sym_QMARK_QMARK, - ACTIONS(8010), 1, - anon_sym_on, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, + ACTIONS(8230), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5167), 9, + STATE(5377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636409,7 +665121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158587] = 15, + [173614] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636430,57 +665142,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_into, - STATE(5181), 1, - aux_sym__query_body_repeat2, - STATE(5168), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, + 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, - anon_sym_DOT, - ACTIONS(5856), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(8266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8268), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8360), 1, + anon_sym_COLON, + 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, - anon_sym_CARET, + 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, - 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, - [158673] = 15, + STATE(5378), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [173750] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636501,57 +665238,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_into, - STATE(5168), 1, - aux_sym__query_body_repeat2, - STATE(5169), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5864), 1, + anon_sym_in, + 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, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8222), 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, + sym_bracketed_argument_list, + STATE(3487), 1, + sym_argument_list, + ACTIONS(5306), 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, - anon_sym_CARET, + 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, - 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, - [158759] = 40, + STATE(5379), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [173886] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636572,72 +665334,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7183), 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, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + 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(7021), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8016), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8362), 1, anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5170), 9, + STATE(5380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636647,7 +665409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158895] = 40, + [174022] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636668,72 +665430,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8020), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8050), 1, - anon_sym_equals, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8364), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5171), 9, + STATE(5381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636743,7 +665505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159031] = 40, + [174158] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636764,72 +665526,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6574), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7222), 1, - anon_sym_COLON, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8366), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5172), 9, + STATE(5382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636839,7 +665601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159167] = 40, + [174294] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636860,72 +665622,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8056), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8368), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5173), 9, + STATE(5383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -636935,7 +665697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159303] = 18, + [174430] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -636956,60 +665718,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, + 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(6611), 1, + ACTIONS(8370), 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, - ACTIONS(8058), 1, - anon_sym_DOT, - ACTIONS(3950), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5174), 9, + 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(5384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3948), 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, - [159395] = 40, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [174566] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637030,72 +665814,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(6700), 1, + anon_sym_GT_GT, + ACTIONS(6708), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(6710), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(6712), 1, anon_sym_QMARK_QMARK, - ACTIONS(8060), 1, - anon_sym_RPAREN, - STATE(2399), 1, + 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, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(6682), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5175), 9, + STATE(5385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637105,7 +665889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159531] = 40, + [174702] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637126,72 +665910,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_SEMI, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7183), 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, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + 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(7021), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8372), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5176), 9, + STATE(5386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637201,7 +665985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159667] = 14, + [174838] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637222,9 +666006,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8062), 1, - anon_sym_RPAREN, - STATE(5177), 9, + ACTIONS(8374), 1, + anon_sym_and, + STATE(5387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637234,7 +666018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4686), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -637246,10 +666030,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4684), 24, + ACTIONS(6067), 24, anon_sym_LBRACK, anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -637264,6 +666047,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, @@ -637271,7 +666055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [159751] = 40, + [174922] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637292,72 +666076,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8064), 1, - anon_sym_COMMA, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8376), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5178), 9, + STATE(5388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637367,7 +666151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159887] = 40, + [175058] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637388,72 +666172,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, - anon_sym_PIPE, - ACTIONS(8080), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8294), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8300), 1, anon_sym_DOT_DOT, - 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_by, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8088), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5179), 9, + ACTIONS(5664), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637463,7 +666224,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160023] = 40, + 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_equals, + anon_sym_as, + anon_sym_is, + [175172] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637484,72 +666257,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8104), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8378), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5180), 9, + STATE(5390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637559,7 +666332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160159] = 14, + [175308] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637580,9 +666353,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8106), 1, - anon_sym_into, - STATE(5181), 10, + 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(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, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637592,26 +666400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -637619,17 +666408,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, - [160243] = 14, + [175416] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637650,36 +666435,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8109), 1, - anon_sym_and, - STATE(5182), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, + 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, + 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5392), 9, + sym_preproc_region, + sym_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, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -637689,17 +666488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, anon_sym_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, - [160327] = 15, + [175520] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637720,57 +666515,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_into, - STATE(5187), 1, - aux_sym__query_body_repeat2, - STATE(5183), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(8284), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8290), 1, anon_sym_AMP, + ACTIONS(8294), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8300), 1, + anon_sym_DOT_DOT, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 5, + anon_sym_CARET, 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, - [160413] = 15, + anon_sym_equals, + STATE(5393), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [175646] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637791,57 +666606,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_into, - STATE(5201), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(5841), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(8284), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8286), 1, + anon_sym_CARET, + ACTIONS(8290), 1, anon_sym_AMP, + ACTIONS(8294), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8300), 1, + anon_sym_DOT_DOT, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, + ACTIONS(5660), 4, 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, - [160499] = 40, + anon_sym_equals, + 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, + [175774] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637862,72 +666698,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8294), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8300), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 1, anon_sym_is, - ACTIONS(8113), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5185), 9, + 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_equals, + STATE(5395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -637937,7 +666767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160635] = 40, + [175898] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -637958,72 +666788,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8300), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8115), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5186), 9, + 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, @@ -638033,7 +666836,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160771] = 14, + 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_equals, + anon_sym_as, + anon_sym_is, + [176008] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638054,9 +666871,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8117), 1, - anon_sym_into, - STATE(5187), 10, + 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, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + 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(8298), 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_equals, + STATE(5397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638066,24 +666939,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(5845), 11, + [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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5398), 9, + sym_preproc_region, + sym_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, @@ -638094,16 +667010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, + anon_sym_equals, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [160855] = 40, + [176230] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638124,72 +667038,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8288), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8290), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8294), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(8300), 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(8120), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8276), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5188), 9, + ACTIONS(5660), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + STATE(5399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638199,7 +667110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160991] = 24, + [176360] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638220,33 +667131,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(8122), 1, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(8124), 1, - anon_sym_operator, - ACTIONS(8126), 1, - anon_sym_this, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(5792), 1, - sym_explicit_interface_specifier, - STATE(6057), 1, - sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5189), 9, + 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, + 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(8380), 1, + anon_sym_COLON, + 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, + STATE(5400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638256,30 +667206,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, - [161095] = 14, + [176496] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638300,56 +667227,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8128), 1, - anon_sym_SEMI, - STATE(5190), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(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, - anon_sym_DOT, - ACTIONS(4890), 24, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RBRACE, + ACTIONS(8300), 1, + anon_sym_DOT_DOT, + ACTIONS(8302), 1, + anon_sym_AMP_AMP, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5660), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [161179] = 40, + anon_sym_equals, + 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, + [176628] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638370,72 +667321,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5660), 1, + anon_sym_equals, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8288), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8304), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8306), 1, anon_sym_QMARK_QMARK, - ACTIONS(8130), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5191), 9, + STATE(5402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638445,7 +667396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161315] = 22, + [176764] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638466,36 +667417,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(7948), 1, + 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, - STATE(2399), 1, + 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(8382), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5192), 9, + 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(5403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638505,25 +667492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [161415] = 40, + [176900] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638544,72 +667513,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1965), 1, - anon_sym_SEMI, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8384), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5193), 9, + STATE(5404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638619,7 +667588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161551] = 40, + [177036] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638640,72 +667609,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5072), 1, + anon_sym_equals, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8284), 1, + anon_sym_SLASH, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8288), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8290), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8294), 1, + anon_sym_GT_GT, + ACTIONS(8300), 1, + anon_sym_DOT_DOT, + ACTIONS(8302), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8304), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8306), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 1, anon_sym_is, - ACTIONS(8132), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5194), 9, + STATE(5405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638715,7 +667684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161687] = 15, + [177172] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638736,57 +667705,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8134), 1, - anon_sym_and, - ACTIONS(8136), 1, - anon_sym_or, - 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, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_DOT, - ACTIONS(5296), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(8386), 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, - anon_sym_CARET, + 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, - 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, - [161773] = 40, + STATE(5406), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [177308] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638807,72 +667801,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8138), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8388), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5196), 9, + STATE(5407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -638882,7 +667876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161909] = 15, + [177444] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638903,57 +667897,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8134), 1, - anon_sym_and, - ACTIONS(8136), 1, - anon_sym_or, - STATE(5197), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_equals, + 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, - anon_sym_DOT, - ACTIONS(6041), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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(8310), 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(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [161995] = 40, + STATE(5408), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [177580] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -638974,72 +667993,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8284), 1, + anon_sym_SLASH, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8288), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8304), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8306), 1, anon_sym_QMARK_QMARK, - ACTIONS(8140), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8308), 1, + anon_sym_as, + ACTIONS(8310), 1, + anon_sym_is, + ACTIONS(8390), 1, + anon_sym_equals, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8276), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5198), 9, + STATE(5409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639049,7 +668068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162131] = 40, + [177716] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639070,72 +668089,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8400), 1, + anon_sym_SLASH, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8410), 1, + anon_sym_GT_GT, + ACTIONS(8416), 1, + anon_sym_DOT_DOT, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8424), 1, + anon_sym_on, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8142), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5199), 9, + STATE(5410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639145,7 +668164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162267] = 40, + [177852] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639166,72 +668185,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8144), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8430), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5200), 9, + STATE(5411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639241,7 +668260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162403] = 15, + [177988] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639262,57 +668281,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_into, - STATE(5187), 1, - aux_sym__query_body_repeat2, - STATE(5201), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5858), 1, + anon_sym_on, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(8394), 1, + anon_sym_QMARK, + ACTIONS(8400), 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, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5856), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + ACTIONS(8408), 2, 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, - 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, - [162489] = 40, + STATE(5412), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [178124] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639333,72 +668377,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8146), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8432), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5202), 9, + STATE(5413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639408,7 +668452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162625] = 40, + [178260] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639429,72 +668473,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_by, - ACTIONS(6265), 1, + ACTIONS(5864), 1, + anon_sym_on, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(8426), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8428), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8392), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5203), 9, + STATE(5414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639504,7 +668548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162761] = 40, + [178396] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639525,72 +668569,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8148), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8434), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5204), 9, + STATE(5415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639600,7 +668644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162897] = 22, + [178532] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639621,36 +668665,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(8090), 1, + 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, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8436), 1, + anon_sym_in, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5205), 9, + 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(5416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639660,25 +668740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [162997] = 14, + [178668] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639699,19 +668761,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3562), 4, - anon_sym_COMMA, + ACTIONS(4100), 1, + anon_sym_DOT, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - ACTIONS(3393), 6, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(5573), 1, anon_sym_LBRACK, - anon_sym_LT, + 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(8438), 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_DOT, - anon_sym_COLON_COLON, - STATE(5206), 9, + 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(5417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639721,34 +668836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3565), 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, - [163081] = 40, + [178804] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639769,72 +668857,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8150), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8440), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5207), 9, + STATE(5418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639844,7 +668932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163217] = 40, + [178940] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639865,72 +668953,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_COLON, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8442), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5208), 9, + STATE(5419), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [179076] = 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(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, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639940,7 +669072,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163353] = 14, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -639961,9 +669122,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8134), 1, + ACTIONS(8444), 1, anon_sym_and, - STATE(5209), 9, + ACTIONS(8446), 1, + anon_sym_or, + STATE(5421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -639973,7 +669136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -639985,7 +669148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 24, + ACTIONS(5354), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -639999,18 +669162,90 @@ 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, - [163437] = 40, + [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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640031,72 +669266,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8152), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8450), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5210), 9, + STATE(5423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640106,7 +669341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163573] = 40, + [179478] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640127,72 +669362,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6574), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(6576), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(6578), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(6580), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(6584), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(6590), 1, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(6592), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8154), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8452), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6566), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6570), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6582), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6586), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6588), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5211), 9, + STATE(5424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640202,7 +669437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163709] = 40, + [179614] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640223,72 +669458,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_in, - ACTIONS(6265), 1, + ACTIONS(5864), 1, + anon_sym_COLON, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(8158), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8184), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5212), 9, + STATE(5425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640298,7 +669533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163845] = 40, + [179750] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640319,72 +669554,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_COLON, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8454), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5213), 9, + STATE(5426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640394,7 +669629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163981] = 40, + [179886] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640415,72 +669650,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8190), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8456), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5214), 9, + STATE(5427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640490,7 +669725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164117] = 15, + [180022] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640511,11 +669746,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_into, - STATE(5303), 1, - aux_sym__query_body_repeat2, - STATE(5215), 9, + ACTIONS(8458), 1, + anon_sym_and, + ACTIONS(8460), 1, + anon_sym_or, + STATE(5428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640525,7 +669760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640537,9 +669772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 23, + ACTIONS(5354), 23, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -640556,12 +669792,11 @@ 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, - [164203] = 40, + [180108] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640582,72 +669817,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8194), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8462), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5216), 9, + STATE(5429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640657,7 +669892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164339] = 40, + [180244] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640678,168 +669913,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8196), 1, - anon_sym_COMMA, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5217), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [164475] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7151), 1, + anon_sym_AMP, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8198), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8464), 1, anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5218), 9, + STATE(5430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640849,7 +669988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164611] = 15, + [180380] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -640870,11 +670009,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_into, - STATE(5279), 1, - aux_sym__query_body_repeat2, - STATE(5219), 9, + ACTIONS(8458), 1, + anon_sym_and, + ACTIONS(8460), 1, + anon_sym_or, + STATE(5431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -640884,7 +670023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -640896,9 +670035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 23, + ACTIONS(6205), 23, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -640910,182 +670050,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, - [164697] = 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(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(3598), 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(3596), 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, - [164779] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8202), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - 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, - [164915] = 40, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [180466] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641106,72 +670080,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(3784), 3, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8204), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5222), 9, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641181,7 +670094,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165051] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641202,72 +670149,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8206), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8466), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5223), 9, + STATE(5433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641277,7 +670224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165187] = 13, + [180684] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641298,7 +670245,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5224), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641308,18 +670281,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3393), 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(3395), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -641330,9 +670292,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, @@ -641345,8 +670304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [165269] = 40, + [180788] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641367,72 +670325,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8208), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5225), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641442,7 +670377,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165405] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641463,72 +670410,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8210), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8472), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5226), 9, + STATE(5436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641538,7 +670485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165541] = 40, + [181038] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641559,72 +670506,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8400), 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, + ACTIONS(8416), 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(8212), 1, - anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8398), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + anon_sym_QMARK, 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, - STATE(5227), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641634,7 +670553,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165677] = 40, + 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, + [181146] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641655,72 +670588,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8214), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5228), 9, + anon_sym_QMARK, + 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, @@ -641730,7 +670631,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165813] = 40, + 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_on, + anon_sym_as, + anon_sym_is, + [181250] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641751,129 +670668,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(8406), 1, + anon_sym_AMP, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8216), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5229), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [165949] = 24, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - ACTIONS(8218), 1, - anon_sym_operator, - ACTIONS(8220), 1, - anon_sym_this, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(5852), 1, - sym_explicit_interface_specifier, - STATE(6058), 1, - sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5230), 9, + ACTIONS(5660), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -641883,30 +670738,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, - [166053] = 40, + [181376] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -641927,72 +670759,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(8402), 1, + anon_sym_CARET, + ACTIONS(8406), 1, + anon_sym_AMP, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8222), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5231), 9, + ACTIONS(5660), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_on, + STATE(5440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642002,7 +670830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166189] = 40, + [181504] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642023,72 +670851,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8224), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5232), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642098,7 +670920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166325] = 15, + [181628] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642119,11 +670941,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_into, - STATE(5237), 1, - aux_sym__query_body_repeat2, - STATE(5233), 9, + 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(8400), 1, + anon_sym_SLASH, + 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(8396), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8398), 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(5442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642133,25 +670989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5856), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -642159,17 +670997,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_by, + anon_sym_on, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [166411] = 40, + [181738] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642190,72 +671024,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8226), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5234), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642265,7 +671092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166547] = 40, + [181860] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642286,72 +671113,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8228), 1, - anon_sym_COMMA, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5235), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642361,7 +671152,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166683] = 40, + 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_on, + anon_sym_as, + anon_sym_is, + anon_sym_with, + [181960] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642382,72 +671191,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + 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(7193), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8230), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5236), 9, + ACTIONS(5660), 4, + 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, @@ -642457,7 +671263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166819] = 14, + [182090] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642478,56 +671284,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8232), 1, - anon_sym_into, - STATE(5237), 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(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(8400), 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, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5843), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(8416), 1, + anon_sym_DOT_DOT, + ACTIONS(8418), 1, + anon_sym_AMP_AMP, + 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, - anon_sym_CARET, + ACTIONS(8408), 2, 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, + ACTIONS(5660), 3, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [166903] = 40, + anon_sym_on, + STATE(5446), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [182222] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642548,107 +671378,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5660), 1, + anon_sym_on, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 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, - [167039] = 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(8237), 1, - anon_sym_and, - ACTIONS(8239), 1, - anon_sym_or, - STATE(5239), 9, + STATE(5447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642658,43 +671453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 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, - [167125] = 40, + [182358] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642715,72 +671474,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5072), 1, + anon_sym_on, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8400), 1, + anon_sym_SLASH, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(8241), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5240), 9, + STATE(5448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642790,7 +671549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167261] = 40, + [182494] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642811,72 +671570,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_COLON, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5882), 1, + anon_sym_on, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8400), 1, + anon_sym_SLASH, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8410), 1, + anon_sym_GT_GT, + ACTIONS(8416), 1, + anon_sym_DOT_DOT, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8392), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5241), 9, + STATE(5449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642886,7 +671645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167397] = 40, + [182630] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -642907,72 +671666,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_equals, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8020), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8474), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5242), 9, + STATE(5450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -642982,7 +671741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167533] = 40, + [182766] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643003,72 +671762,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5858), 1, + anon_sym_EQ_GT, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8478), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8502), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8504), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8506), 1, anon_sym_QMARK_QMARK, - ACTIONS(8243), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8508), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5243), 9, + STATE(5451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643078,7 +671837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167669] = 40, + [182902] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643099,72 +671858,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8245), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8510), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5244), 9, + STATE(5452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643174,7 +671933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167805] = 40, + [183038] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643195,72 +671954,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_in, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8158), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8184), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8512), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5245), 9, + STATE(5453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643270,7 +672029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167941] = 40, + [183174] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643291,72 +672050,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_COLON, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7956), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8514), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5246), 9, + STATE(5454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643366,7 +672125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168077] = 38, + [183310] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643387,70 +672146,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2063), 1, + anon_sym_SEMI, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7956), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5247), 9, + STATE(5455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643460,7 +672221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168209] = 37, + [183446] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643481,69 +672242,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5248), 9, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + STATE(5456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643553,7 +672294,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168339] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643574,72 +672327,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8247), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8516), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5249), 9, + STATE(5457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643649,7 +672402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168475] = 40, + [183696] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643670,72 +672423,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8158), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8166), 1, - anon_sym_CARET, - ACTIONS(8168), 1, - anon_sym_PIPE, - ACTIONS(8170), 1, - anon_sym_AMP, - ACTIONS(8174), 1, - anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, - anon_sym_AMP_AMP, - ACTIONS(8184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, - anon_sym_is, - ACTIONS(8249), 1, - anon_sym_in, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8154), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8172), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8176), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8178), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5250), 9, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643745,7 +672470,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168611] = 22, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643766,26 +672505,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(7948), 1, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -643795,7 +672538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5251), 9, + STATE(5459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643805,8 +672548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_COLON, + ACTIONS(5660), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -643816,14 +672558,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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_with, - [168711] = 33, + [183908] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643844,65 +672585,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8162), 1, + anon_sym_AMP, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7972), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7964), 2, + ACTIONS(8168), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_COLON, + ACTIONS(5660), 5, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5252), 9, + anon_sym_by, + STATE(5460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -643912,7 +672655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168833] = 40, + [184034] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -643933,72 +672676,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_EQ_GT, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8253), 1, - anon_sym_QMARK, - ACTIONS(8259), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8263), 1, - anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8277), 1, - anon_sym_AMP_AMP, - ACTIONS(8279), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5253), 9, + ACTIONS(5660), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644008,7 +672747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168969] = 27, + [184162] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644029,45 +672768,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7942), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7948), 1, + ACTIONS(8166), 1, + anon_sym_GT_GT, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, + 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, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT_GT, - STATE(5254), 9, + ACTIONS(5660), 5, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644077,21 +672837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [169079] = 34, + [184286] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644112,66 +672858,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7972), 1, + ACTIONS(8238), 1, anon_sym_is, - STATE(2399), 1, + 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(8518), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 5, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5255), 9, + STATE(5463), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [184422] = 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(8374), 1, + anon_sym_and, + ACTIONS(8520), 1, + anon_sym_or, + STATE(5464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644181,7 +672968,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169203] = 40, + 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, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_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, + [184508] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644202,72 +673025,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8285), 1, + ACTIONS(8522), 1, anon_sym_by, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5256), 9, + STATE(5465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644277,7 +673100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169339] = 36, + [184644] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644298,68 +673121,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7960), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_COLON, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5257), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644369,7 +673206,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169467] = 35, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644390,67 +673263,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7960), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + 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(8526), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_COLON, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5258), 9, + STATE(5468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644460,7 +673338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169593] = 24, + [184952] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644481,40 +673359,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7948), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(8152), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8154), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 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(5259), 9, + STATE(5469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644524,10 +673407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_COLON, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -644538,9 +673418,10 @@ 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, - [169697] = 40, + [185062] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644561,72 +673442,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8158), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8156), 1, anon_sym_SLASH, ACTIONS(8166), 1, - anon_sym_CARET, - ACTIONS(8168), 1, - anon_sym_PIPE, - ACTIONS(8170), 1, - anon_sym_AMP, - ACTIONS(8174), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, ACTIONS(8182), 1, - anon_sym_AMP_AMP, + anon_sym_as, ACTIONS(8184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, anon_sym_is, - ACTIONS(8287), 1, - anon_sym_in, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5260), 9, + 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_by, + STATE(5470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644636,7 +673510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169833] = 40, + [185184] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644657,72 +673531,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_in, - ACTIONS(5658), 1, + 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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8164), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8166), 1, - anon_sym_CARET, - ACTIONS(8168), 1, anon_sym_PIPE, - ACTIONS(8170), 1, anon_sym_AMP, - ACTIONS(8174), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + anon_sym_DOT, + ACTIONS(6205), 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, - ACTIONS(8182), 1, anon_sym_AMP_AMP, - ACTIONS(8184), 1, anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, + anon_sym_as, anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8156), 2, + anon_sym_DASH_GT, + anon_sym_with, + [185270] = 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(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, - ACTIONS(8160), 2, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + 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, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5261), 9, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185354] = 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(5472), 1, + aux_sym__query_body_repeat2, + STATE(5473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644732,7 +673686,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169969] = 38, + 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_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [185440] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644753,70 +673743,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8164), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8188), 1, + ACTIONS(7165), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7167), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8531), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_in, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5262), 9, + STATE(5474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644826,7 +673818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170101] = 40, + [185576] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644847,72 +673839,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8289), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8533), 1, anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5263), 9, + STATE(5475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -644922,7 +673914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170237] = 37, + [185712] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -644943,69 +673935,147 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, + ACTIONS(8172), 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, - ACTIONS(6265), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + 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(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, anon_sym_as, - ACTIONS(8164), 1, + 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(8166), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8188), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_in, + ACTIONS(5660), 4, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5264), 9, + anon_sym_by, + STATE(5477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645015,7 +674085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170367] = 40, + [185942] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645036,72 +674106,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8291), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5265), 9, + ACTIONS(5660), 3, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + STATE(5478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645111,7 +674179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170503] = 40, + [186074] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645132,72 +674200,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5660), 1, + anon_sym_by, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8293), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5266), 9, + STATE(5479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645207,7 +674275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170639] = 26, + [186210] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645228,44 +674296,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(5267), 9, + ACTIONS(8458), 1, + anon_sym_and, + STATE(5480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645275,110 +674308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [170747] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(6069), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8164), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8174), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - ACTIONS(8188), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6067), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8160), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8162), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8178), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_in, - 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_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [170869] = 29, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [186294] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645399,49 +674366,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(5664), 5, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - STATE(5269), 9, + STATE(5481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645451,19 +674418,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + 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_by, anon_sym_as, anon_sym_is, - [170983] = 40, + [186408] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645484,72 +674451,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8295), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8535), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5270), 9, + STATE(5482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645559,7 +674526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171119] = 40, + [186544] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645580,72 +674547,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8297), 1, + ACTIONS(8537), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5271), 9, + STATE(5483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645655,7 +674622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171255] = 26, + [186680] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645676,35 +674643,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645713,7 +674680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5272), 9, + STATE(5484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645723,7 +674690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + ACTIONS(5660), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -645731,13 +674698,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, - [171363] = 24, + [186788] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645758,30 +674725,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -645791,7 +674758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5273), 9, + STATE(5485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645801,7 +674768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, + ACTIONS(5660), 15, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -645811,13 +674778,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, - [171467] = 35, + [186892] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645838,67 +674805,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8080), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, + ACTIONS(5660), 5, anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5274), 9, + STATE(5486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -645908,7 +674875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171593] = 36, + [187018] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -645929,68 +674896,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(8080), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5664), 2, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, + ACTIONS(5660), 4, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5275), 9, + STATE(5487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646000,7 +674967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171721] = 34, + [187146] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646021,66 +674988,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 5, + ACTIONS(5660), 5, anon_sym_CARET, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5276), 9, + STATE(5488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646090,7 +675057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171845] = 27, + [187270] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646111,45 +675078,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, + ACTIONS(5664), 6, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5277), 9, + STATE(5489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646159,7 +675126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + ACTIONS(5660), 13, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -646167,13 +675134,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, - [171955] = 33, + [187380] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646194,65 +675161,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, + ACTIONS(5664), 3, anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 7, + ACTIONS(5660), 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, - anon_sym_by, - STATE(5278), 9, + STATE(5490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646262,7 +675229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172077] = 15, + [187502] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646283,37 +675250,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_into, - STATE(5299), 1, - aux_sym__query_body_repeat2, - 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, - ACTIONS(5841), 11, + 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5491), 9, + sym_preproc_region, + sym_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, @@ -646325,15 +675301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_GT, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [172163] = 22, + [187602] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646354,64 +675328,79 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(8090), 1, + 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(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, - STATE(2399), 1, + ACTIONS(8508), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5280), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5684), 17, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - anon_sym_switch, + ACTIONS(5660), 4, + 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_with, - [172263] = 37, + STATE(5492), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [187732] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646432,69 +675421,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8502), 1, + anon_sym_AMP_AMP, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_AMP_AMP, + ACTIONS(5660), 3, + anon_sym_EQ_GT, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5281), 9, + STATE(5493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646504,7 +675494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172393] = 38, + [187864] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646525,70 +675515,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, + ACTIONS(5660), 1, + anon_sym_EQ_GT, + ACTIONS(5664), 1, anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8502), 1, anon_sym_AMP_AMP, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8504), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8506), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_by, - STATE(5282), 9, + STATE(5494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646598,7 +675590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172525] = 40, + [188000] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646619,72 +675611,132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_by, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(5899), 1, + anon_sym_COLON, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8074), 1, + 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(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5283), 9, + STATE(5495), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [188136] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646694,7 +675746,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172661] = 34, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646715,66 +675785,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5072), 1, + anon_sym_EQ_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8164), 1, + ACTIONS(8478), 1, + anon_sym_QMARK, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8174), 1, + 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(8180), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8188), 1, + 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(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 5, - anon_sym_in, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5284), 9, + STATE(5497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646784,7 +675860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172785] = 40, + [188372] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646805,72 +675881,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5864), 1, + anon_sym_EQ_GT, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8478), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8484), 1, + anon_sym_SLASH, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8504), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8506), 1, anon_sym_QMARK_QMARK, - ACTIONS(8299), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8508), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8476), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5285), 9, + STATE(5498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646880,7 +675956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172921] = 40, + [188508] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646901,72 +675977,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8301), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8539), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5286), 9, + STATE(5499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -646976,7 +676052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173057] = 36, + [188644] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -646997,78 +676073,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8164), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8166), 1, - anon_sym_CARET, - ACTIONS(8170), 1, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8174), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - ACTIONS(8188), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5354), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8156), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8160), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8162), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_in, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - 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, - [173185] = 40, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [188730] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647089,72 +676144,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8303), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8543), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5288), 9, + STATE(5501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647164,7 +676219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173321] = 40, + [188866] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647185,72 +676240,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, + ACTIONS(5882), 1, anon_sym_EQ_GT, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8253), 1, + ACTIONS(8478), 1, anon_sym_QMARK, - ACTIONS(8259), 1, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8502), 1, anon_sym_AMP_AMP, - ACTIONS(8279), 1, + ACTIONS(8504), 1, anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, + ACTIONS(8506), 1, anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5289), 9, + STATE(5502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647260,7 +676315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173457] = 40, + [189002] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647281,72 +676336,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_by, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, - anon_sym_PIPE, - ACTIONS(8080), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + 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(8094), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8545), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5290), 9, + STATE(5503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647356,7 +676411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173593] = 35, + [189138] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647377,67 +676432,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5072), 1, + anon_sym_by, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8164), 1, + ACTIONS(8150), 1, + anon_sym_QMARK, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8170), 1, + ACTIONS(8158), 1, + anon_sym_CARET, + ACTIONS(8160), 1, + anon_sym_PIPE, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8188), 1, + 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, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8156), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_in, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5291), 9, + STATE(5504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647447,7 +676507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173719] = 40, + [189274] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647468,72 +676528,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8305), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8547), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5292), 9, + STATE(5505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647543,7 +676603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173855] = 40, + [189410] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647564,82 +676624,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8307), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [173991] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [189496] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647660,72 +676695,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8309), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8549), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5294), 9, + STATE(5507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647735,7 +676770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174127] = 40, + [189632] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647756,72 +676791,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8311), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8551), 1, anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5295), 9, + STATE(5508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647831,7 +676866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174263] = 40, + [189768] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647852,72 +676887,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8313), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8553), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5296), 9, + STATE(5509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647927,7 +676962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174399] = 22, + [189904] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -647948,36 +676983,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(8042), 1, + 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, - STATE(2399), 1, + 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(8555), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5297), 9, + 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(5510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -647987,25 +677058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [174499] = 15, + [190040] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648026,11 +677079,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_into, - STATE(5301), 1, - aux_sym__query_body_repeat2, - STATE(5298), 9, + ACTIONS(8444), 1, + anon_sym_and, + ACTIONS(8446), 1, + anon_sym_or, + STATE(5511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648040,7 +677093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -648052,7 +677105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 23, + ACTIONS(6205), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -648076,7 +677129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [174585] = 14, + [190126] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648097,56 +677150,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8315), 1, - anon_sym_into, - STATE(5299), 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(5845), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5882), 1, + anon_sym_by, + 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, - anon_sym_DOT, - ACTIONS(5843), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, + 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(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [174669] = 40, + STATE(5512), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [190262] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648167,72 +677246,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_equals, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8020), 1, - anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(8028), 1, - anon_sym_CARET, - ACTIONS(8030), 1, - anon_sym_PIPE, - ACTIONS(8032), 1, - anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(8044), 1, + 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(8046), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5300), 9, + STATE(5513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648242,7 +677321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174805] = 15, + [190398] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648263,57 +677342,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8200), 1, - anon_sym_into, - STATE(5299), 1, - aux_sym__query_body_repeat2, - STATE(5301), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5858), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5899), 1, + anon_sym_by, + 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, - anon_sym_DOT, - ACTIONS(5856), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, + 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(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [174891] = 15, + STATE(5514), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [190534] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648334,37 +677438,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_into, - STATE(5233), 1, - aux_sym__query_body_repeat2, - STATE(5302), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5841), 11, + 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(8172), 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5839), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5515), 9, + sym_preproc_region, + sym_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), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -648375,16 +677488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_by, anon_sym_as, anon_sym_is, - anon_sym_DASH_GT, anon_sym_with, - [174977] = 15, + [190634] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648405,11 +677516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8192), 1, - anon_sym_into, - STATE(5237), 1, - aux_sym__query_body_repeat2, - STATE(5303), 9, + ACTIONS(8559), 1, + anon_sym_and, + STATE(5516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648419,7 +677528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5841), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -648431,7 +677540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5839), 23, + ACTIONS(6067), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -648447,15 +677556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_by, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [175063] = 40, + [190718] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648476,72 +677586,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_COLON, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8561), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5304), 9, + STATE(5517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648551,7 +677661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175199] = 40, + [190854] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648572,72 +677682,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8318), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8563), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5305), 9, + STATE(5518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648647,7 +677757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175335] = 15, + [190990] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648668,11 +677778,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8320), 1, - anon_sym_and, - ACTIONS(8322), 1, - anon_sym_or, - STATE(5306), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648682,43 +677814,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 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, - [175421] = 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, + [191094] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648739,72 +677858,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(7592), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8569), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5307), 9, + STATE(5520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648814,7 +677933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175557] = 15, + [191230] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648835,107 +677954,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8320), 1, - anon_sym_and, - ACTIONS(8322), 1, - anon_sym_or, - STATE(5308), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_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(4100), 1, anon_sym_DOT, - ACTIONS(6041), 23, - anon_sym_LBRACK, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(5264), 1, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [175643] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8571), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5309), 9, + 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(5521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -648945,25 +678029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_in, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [175743] = 27, + [191366] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -648984,45 +678050,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8164), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8180), 1, + 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, - STATE(2399), 1, + 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(8573), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8160), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5310), 9, + 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(5522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649032,21 +678125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [175853] = 40, + [191502] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649067,72 +678146,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_in, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(8158), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8184), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8575), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5311), 9, + STATE(5523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649142,7 +678221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175989] = 15, + [191638] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649163,11 +678242,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_into, - STATE(5166), 1, - aux_sym__query_body_repeat2, - STATE(5312), 9, + ACTIONS(8444), 1, + anon_sym_and, + STATE(5524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649177,7 +678254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5835), 11, + ACTIONS(6069), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -649189,7 +678266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5833), 23, + ACTIONS(6067), 24, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -649203,17 +678280,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [176075] = 40, + [191722] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649234,72 +678312,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7067), 1, + anon_sym_GT_GT, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(8324), 1, + ACTIONS(8577), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7049), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5313), 9, + STATE(5525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649309,7 +678387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176211] = 40, + [191858] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649330,72 +678408,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8326), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8579), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5314), 9, + STATE(5526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649405,7 +678483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176347] = 40, + [191994] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649426,72 +678504,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8328), 1, + ACTIONS(8581), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5315), 9, + STATE(5527), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [192130] = 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(8559), 1, + anon_sym_and, + ACTIONS(8583), 1, + anon_sym_or, + STATE(5528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649501,7 +678614,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176483] = 40, + 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_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, + [192216] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649522,72 +678671,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8330), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8585), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5316), 9, + STATE(5529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649597,7 +678746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176619] = 15, + [192352] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649618,11 +678767,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8237), 1, + ACTIONS(8559), 1, anon_sym_and, - ACTIONS(8239), 1, + ACTIONS(8583), 1, anon_sym_or, - STATE(5317), 9, + STATE(5530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649632,7 +678781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, + ACTIONS(6207), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -649644,9 +678793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5296), 23, + ACTIONS(6205), 23, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -649664,11 +678812,81 @@ 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, - [176705] = 40, + [192438] = 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(4955), 3, + anon_sym_LBRACK, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5531), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649689,72 +678907,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8332), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8587), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5318), 9, + STATE(5532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649764,7 +678982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176841] = 40, + [192656] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649785,72 +679003,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_by, - ACTIONS(6265), 1, + ACTIONS(5899), 1, + anon_sym_equals, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(8278), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8284), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8286), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8288), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8290), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8294), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8300), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8302), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8304), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8306), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(8308), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8310), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8276), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8280), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8282), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8292), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8298), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5319), 9, + STATE(5533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649860,7 +679078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176977] = 40, + [192792] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649881,72 +679099,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8300), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8334), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5320), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -649956,7 +679138,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177113] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -649977,72 +679177,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8336), 1, - anon_sym_COMMA, - STATE(2399), 1, + ACTIONS(8589), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5321), 9, + STATE(5535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650052,7 +679252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177249] = 14, + [193028] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650073,9 +679273,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8322), 1, anon_sym_and, - STATE(5322), 9, + ACTIONS(8591), 1, + anon_sym_or, + STATE(5536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650085,7 +679287,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(5356), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -650097,7 +679299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 24, + ACTIONS(5354), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -650113,16 +679315,15 @@ 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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [177333] = 40, + [193114] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650143,72 +679344,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_in, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8158), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8164), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8166), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8168), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8170), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8174), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8184), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8593), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8176), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8178), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5323), 9, + STATE(5537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650218,7 +679419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177469] = 40, + [193250] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650239,82 +679440,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8340), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 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, - [177605] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650335,72 +679511,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8342), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8595), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5325), 9, + STATE(5539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650410,7 +679586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177741] = 40, + [193472] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650431,72 +679607,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8344), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8597), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5326), 9, + STATE(5540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650506,7 +679682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177877] = 40, + [193608] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650527,72 +679703,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5899), 1, + anon_sym_on, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(8426), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8346), 1, - anon_sym_by, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8392), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5327), 9, + STATE(5541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650602,7 +679778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178013] = 24, + [193744] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650623,30 +679799,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8180), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -650656,7 +679828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - STATE(5328), 9, + STATE(5542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650666,8 +679838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_in, + ACTIONS(1221), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -650677,12 +679848,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_as, anon_sym_is, - [178117] = 26, + anon_sym_with, + [193844] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650703,44 +679877,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8164), 1, - anon_sym_SLASH, - ACTIONS(8180), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8599), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8162), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5329), 9, + 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(5543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650750,21 +679952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [178225] = 29, + [193980] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650785,49 +679973,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8164), 1, + ACTIONS(8150), 1, + anon_sym_QMARK, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8174), 1, + 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(8180), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8601), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8160), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8172), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5330), 9, + ACTIONS(8168), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8170), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650837,19 +680048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [178339] = 40, + [194116] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650870,72 +680069,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5899), 1, + anon_sym_EQ_GT, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8478), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8484), 1, + anon_sym_SLASH, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8494), 1, + anon_sym_GT_GT, + ACTIONS(8500), 1, + anon_sym_DOT_DOT, + ACTIONS(8502), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8504), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8506), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8508), 1, anon_sym_is, - ACTIONS(8348), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8476), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5331), 9, + STATE(5545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -650945,7 +680144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178475] = 15, + [194252] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -650966,37 +680165,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_and, - ACTIONS(8350), 1, - anon_sym_or, - STATE(5332), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5298), 11, + 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_BANG, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + STATE(5546), 9, + sym_preproc_region, + sym_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), 17, anon_sym_STAR, anon_sym_PERCENT, anon_sym_CARET, @@ -651006,17 +680214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, - anon_sym_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, - [178561] = 40, + [194352] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651037,72 +680243,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8352), 1, - anon_sym_COMMA, - STATE(2399), 1, + ACTIONS(8603), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5333), 9, + STATE(5547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651112,7 +680318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178697] = 40, + [194488] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651133,72 +680339,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_EQ_GT, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8253), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8259), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8279), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8605), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5334), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651208,7 +680449,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178833] = 29, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651229,49 +680504,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2005), 1, + anon_sym_SEMI, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7996), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7982), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5335), 9, + ACTIONS(7197), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7199), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651281,19 +680579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [178947] = 40, + [194842] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651314,72 +680600,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8354), 1, + ACTIONS(8607), 1, anon_sym_by, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5336), 9, + STATE(5551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651389,7 +680675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179083] = 40, + [194978] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651410,72 +680696,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8356), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8609), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5337), 9, + STATE(5552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651485,7 +680771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179219] = 40, + [195114] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651506,72 +680792,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(6671), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(6673), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(6675), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(6677), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(6687), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(6689), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(6691), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8358), 1, - aux_sym_preproc_if_token3, - STATE(2399), 1, + ACTIONS(8611), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6667), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6669), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6679), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6683), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6685), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5338), 9, + STATE(5553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651581,7 +680867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179355] = 40, + [195250] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651602,72 +680888,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8360), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8613), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5339), 9, + STATE(5554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651677,7 +680963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179491] = 40, + [195386] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651698,72 +680984,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8166), 1, + anon_sym_GT_GT, + ACTIONS(8172), 1, + anon_sym_DOT_DOT, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - ACTIONS(8362), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8615), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5340), 9, + STATE(5555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651773,7 +681059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179627] = 40, + [195522] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651794,72 +681080,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8364), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8617), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5341), 9, + STATE(5556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -651869,7 +681155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [179763] = 14, + [195658] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651890,56 +681176,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8366), 1, - anon_sym_RPAREN, - STATE(5342), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4686), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 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, - anon_sym_DOT, - ACTIONS(4684), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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(8619), 1, + anon_sym_by, + 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(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [179847] = 26, + STATE(5557), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [195794] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -651960,68 +681272,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(8150), 1, + anon_sym_QMARK, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8002), 1, + 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, - STATE(2399), 1, + 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(8621), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7984), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - 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, - ACTIONS(5656), 13, - anon_sym_CARET, + 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - [179955] = 40, + STATE(5558), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [195930] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652042,72 +681368,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7195), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8368), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8623), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5344), 9, + STATE(5559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652117,7 +681443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180091] = 14, + [196066] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652138,9 +681464,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8370), 1, + ACTIONS(8625), 1, anon_sym_RPAREN, - STATE(5345), 9, + STATE(5560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652150,7 +681476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4686), 11, + ACTIONS(4862), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -652162,7 +681488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4684), 24, + ACTIONS(4860), 24, anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, @@ -652187,7 +681513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [180175] = 40, + [196150] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652208,72 +681534,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7195), 1, + anon_sym_AMP, + ACTIONS(7201), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7203), 1, anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7205), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8372), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8627), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7193), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5346), 9, + STATE(5561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652283,7 +681609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180311] = 24, + [196286] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652304,40 +681630,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5899), 1, + anon_sym_in, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8002), 1, + 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, anon_sym_DOT_DOT, - STATE(2399), 1, + 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, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5347), 9, + 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(5562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652347,23 +681705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [180415] = 40, + [196422] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652384,72 +681726,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8156), 1, + anon_sym_SLASH, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8374), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, + anon_sym_is, + ACTIONS(8629), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8148), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5348), 9, + STATE(5563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652459,7 +681801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180551] = 40, + [196558] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652480,72 +681822,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8376), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8631), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5349), 9, + STATE(5564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652555,7 +681897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180687] = 35, + [196694] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652576,67 +681918,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7986), 1, - anon_sym_SLASH, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7996), 1, - anon_sym_GT_GT, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7978), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7982), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7984), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8000), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5350), 9, + STATE(5565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652646,7 +681928,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180813] = 40, + ACTIONS(3445), 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(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, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652667,72 +681987,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7183), 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, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + 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(7021), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8378), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8633), 1, anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5351), 9, + STATE(5566), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [196912] = 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(5567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652742,7 +682093,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [180949] = 16, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652763,20 +682152,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3837), 1, + ACTIONS(3899), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(6311), 1, anon_sym_LT, - STATE(4028), 1, + STATE(4063), 1, sym_type_argument_list, - ACTIONS(3602), 6, + ACTIONS(3662), 6, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5352), 9, + STATE(5568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652786,7 +682175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 27, + ACTIONS(3660), 27, anon_sym_alias, anon_sym_global, anon_sym_COLON, @@ -652814,7 +682203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [181037] = 36, + [197082] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652835,68 +682224,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7992), 1, + ACTIONS(7149), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, + 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(2399), 1, + ACTIONS(8635), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(7978), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5353), 9, + STATE(5569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652906,7 +682299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181165] = 15, + [197218] = 29, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652927,11 +682320,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_and, - ACTIONS(8350), 1, - anon_sym_or, - STATE(5354), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -652941,43 +682372,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6041), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5660), 11, + 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_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, - [181251] = 34, + [197332] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -652998,66 +682405,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7996), 1, - anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8204), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(5664), 8, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8000), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(5656), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5355), 9, + anon_sym_GT_GT, + STATE(5571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653067,7 +682452,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181375] = 27, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653088,45 +682487,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, - anon_sym_SLASH, - ACTIONS(8002), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7982), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7984), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, + 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(5356), 9, + STATE(5572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653136,7 +682530,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + ACTIONS(5660), 15, + anon_sym_in, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, @@ -653147,10 +682544,9 @@ 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, - [181485] = 40, + [197544] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653171,72 +682567,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2079), 1, - anon_sym_SEMI, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8206), 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, + ACTIONS(8222), 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, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8204), 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, - STATE(5357), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653246,7 +682615,21 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181621] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653267,72 +682650,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_in, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8158), 1, - anon_sym_QMARK, - ACTIONS(8164), 1, - anon_sym_SLASH, - ACTIONS(8166), 1, - anon_sym_CARET, - ACTIONS(8168), 1, - anon_sym_PIPE, - ACTIONS(8170), 1, - anon_sym_AMP, - ACTIONS(8174), 1, - anon_sym_GT_GT, - ACTIONS(8180), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(8182), 1, - anon_sym_AMP_AMP, - ACTIONS(8184), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8186), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8188), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8156), 2, + ACTIONS(5733), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(8160), 2, + anon_sym_QMARK, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8162), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8172), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8176), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8178), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5358), 9, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653342,7 +682689,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181757] = 40, + ACTIONS(5731), 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, + [197754] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653363,72 +682728,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6897), 1, + 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(6899), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(6901), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(6903), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(6907), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(6915), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(6917), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8380), 1, + ACTIONS(8637), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6889), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6893), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6895), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6905), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6909), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6911), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5359), 9, + STATE(5575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653438,7 +682803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [181893] = 40, + [197890] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653459,72 +682824,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_EQ_GT, - ACTIONS(5186), 1, + ACTIONS(4701), 3, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + aux_sym_preproc_if_token1, + 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, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(5007), 3, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8253), 1, - anon_sym_QMARK, - ACTIONS(8259), 1, - anon_sym_SLASH, - ACTIONS(8261), 1, - anon_sym_CARET, - ACTIONS(8263), 1, - anon_sym_PIPE, - ACTIONS(8265), 1, - anon_sym_AMP, - ACTIONS(8269), 1, - anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8277), 1, - anon_sym_AMP_AMP, - ACTIONS(8279), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8257), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8271), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8273), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5360), 9, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653534,7 +682907,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182029] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653555,72 +682962,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_EQ_GT, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(8259), 1, + 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(8261), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8279), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8639), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5361), 9, + STATE(5578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653630,7 +683037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182165] = 40, + [198190] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653651,72 +683058,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(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + ACTIONS(8641), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5362), 9, + STATE(5579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653726,7 +683133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182301] = 40, + [198326] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653747,72 +683154,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4018), 1, + anon_sym_LBRACE, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8382), 1, - anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6680), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5363), 9, + 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(8643), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653822,7 +683183,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182437] = 40, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653843,72 +683231,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8384), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8649), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5364), 9, + STATE(5581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -653918,7 +683306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182573] = 40, + [198560] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -653939,72 +683327,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8386), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8651), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5365), 9, + STATE(5582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654014,7 +683402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182709] = 40, + [198696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654035,72 +683423,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3616), 4, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + ACTIONS(3445), 6, anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_on, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7980), 1, - anon_sym_QMARK, - ACTIONS(7986), 1, - anon_sym_SLASH, - ACTIONS(7988), 1, - anon_sym_CARET, - ACTIONS(7990), 1, - anon_sym_PIPE, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7996), 1, - anon_sym_GT_GT, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - ACTIONS(8004), 1, - anon_sym_AMP_AMP, - ACTIONS(8006), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7978), 2, anon_sym_LT, - anon_sym_GT, - ACTIONS(7982), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7984), 2, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7994), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7998), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8000), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5366), 9, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654110,7 +683445,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182845] = 40, + ACTIONS(3619), 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, + [198780] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654131,72 +683493,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, - anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8388), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8653), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5367), 9, + STATE(5584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654206,7 +683568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [182981] = 40, + [198916] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654227,72 +683589,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8390), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8655), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5368), 9, + STATE(5585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654302,7 +683664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183117] = 38, + [199052] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654323,70 +683685,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(8259), 1, + 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(8261), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8268), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8657), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5369), 9, + STATE(5586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654396,7 +683760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183249] = 33, + [199188] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654417,65 +683781,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(2003), 1, + anon_sym_SEMI, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(7996), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8000), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_CARET, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5370), 9, + ACTIONS(7199), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654485,7 +683856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183371] = 22, + [199324] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654506,36 +683877,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(8002), 1, + 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, - STATE(2399), 1, + 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(8659), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5686), 9, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5371), 9, + 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(5588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654545,25 +683952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_with, - [183471] = 37, + [199460] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654584,69 +683973,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(8150), 1, + anon_sym_QMARK, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8012), 1, + 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(8014), 1, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8661), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5372), 9, + STATE(5589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654656,7 +684048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183601] = 38, + [199596] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654677,70 +684069,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8454), 1, + anon_sym_EQ_GT, + ACTIONS(8478), 1, + anon_sym_QMARK, + ACTIONS(8484), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(8486), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8488), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8490), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8494), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(8500), 1, anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(8502), 1, anon_sym_AMP_AMP, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, + ACTIONS(8504), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8506), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8508), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8476), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8480), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8482), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8492), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8496), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8498), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_on, - STATE(5373), 9, + STATE(5590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654750,7 +684144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183733] = 14, + [199732] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654771,56 +684165,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8392), 1, - anon_sym_RPAREN, - STATE(5374), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4686), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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, + 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, - anon_sym_DOT, - ACTIONS(4684), 24, - anon_sym_LBRACK, + 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_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + 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, - anon_sym_CARET, + 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, - 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, - [183817] = 40, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654841,72 +684261,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_on, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7986), 1, + 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(7988), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8665), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5375), 9, + STATE(5592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -654916,7 +684336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [183953] = 40, + [200004] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -654937,72 +684357,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8394), 1, + ACTIONS(8667), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5376), 9, + STATE(5593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655012,7 +684432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184089] = 37, + [200140] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655033,69 +684453,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(8259), 1, + 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(8261), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8264), 1, + anon_sym_AMP_AMP, + ACTIONS(8266), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8268), 1, + anon_sym_QMARK_QMARK, + ACTIONS(8669), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5377), 9, + STATE(5594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655105,7 +684528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184219] = 40, + [200276] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655126,72 +684549,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8396), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8671), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5378), 9, + STATE(5595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655201,7 +684624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184355] = 40, + [200412] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655222,72 +684645,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_on, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, + ACTIONS(8673), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5379), 9, + STATE(5596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655297,7 +684720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184491] = 40, + [200548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655318,82 +684741,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8675), 1, + anon_sym_RPAREN, + STATE(5597), 9, + sym_preproc_region, + sym_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(7001), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, 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(8398), 1, - anon_sym_SEMI, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - 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_CARET, 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(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, - [184627] = 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, + [200632] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655414,72 +684811,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, - anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8400), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(8677), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5381), 9, + STATE(5598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655489,7 +684886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [184763] = 14, + [200768] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655510,9 +684907,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8402), 1, - anon_sym_RPAREN, - STATE(5382), 9, + ACTIONS(8679), 1, + anon_sym_into, + STATE(5601), 1, + aux_sym__query_body_repeat2, + STATE(5599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655522,7 +684921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4686), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -655534,10 +684933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4684), 24, + ACTIONS(6003), 23, anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -655555,11 +684952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [184847] = 22, + [200854] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655580,36 +684978,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5383), 9, + 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, @@ -655619,7 +684992,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, + 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, @@ -655629,15 +685018,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_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [184947] = 22, + [200940] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655658,36 +685049,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8180), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 9, + 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, anon_sym_LT, anon_sym_GT, anon_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(5384), 9, + 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, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655697,8 +685133,23 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 17, - anon_sym_in, + 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, @@ -655709,13 +685160,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_equals, anon_sym_as, anon_sym_is, + anon_sym_DASH_GT, anon_sym_with, - [185047] = 40, + [201110] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655736,72 +685190,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_on, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, + ACTIONS(8182), 1, anon_sym_as, - ACTIONS(8014), 1, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8684), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5385), 9, + STATE(5603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655811,7 +685265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185183] = 40, + [201246] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655832,72 +685286,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8404), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8686), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5386), 9, + STATE(5604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -655907,7 +685361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185319] = 40, + [201382] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -655928,72 +685382,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(8236), 1, + anon_sym_DOT_DOT, + ACTIONS(8238), 1, + anon_sym_is, + ACTIONS(8248), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(8258), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8406), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8688), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(8242), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5387), 9, + STATE(5605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656003,7 +685457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185455] = 33, + [201518] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656024,65 +685478,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8259), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8269), 1, + 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(8275), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8283), 1, + 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(2399), 1, + ACTIONS(8690), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8273), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_CARET, + ACTIONS(7157), 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(5388), 9, + ACTIONS(7159), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656092,7 +685553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185577] = 40, + [201654] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656113,72 +685574,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8408), 1, + ACTIONS(8692), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5389), 9, + STATE(5607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656188,7 +685649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185713] = 27, + [201790] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656209,45 +685670,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8259), 1, - anon_sym_SLASH, - ACTIONS(8275), 1, + ACTIONS(7037), 1, + anon_sym_as, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8694), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8255), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5390), 9, + 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(5608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656257,21 +685745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [185823] = 40, + [201926] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656292,72 +685766,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_equals, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8020), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8696), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5391), 9, + STATE(5609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656367,7 +685841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [185959] = 40, + [202062] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656388,82 +685862,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8698), 1, + anon_sym_into, + STATE(5612), 1, + aux_sym__query_body_repeat2, + STATE(5610), 9, + sym_preproc_region, + sym_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, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8410), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5392), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [186095] = 40, + 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, + [202148] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656484,82 +685933,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8698), 1, + anon_sym_into, + STATE(5613), 1, + aux_sym__query_body_repeat2, + STATE(5611), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8412), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6003), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5393), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [186231] = 40, + 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, + [202234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656580,82 +686004,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, + 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(8074), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, anon_sym_PIPE, - ACTIONS(8080), 1, anon_sym_AMP, - ACTIONS(8084), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8414), 1, - anon_sym_by, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5949), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8072), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [186367] = 40, + 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, + [202318] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656676,82 +686074,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8416), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5395), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [186503] = 40, + 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, @@ -656772,82 +686145,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8524), 1, + anon_sym_into, + STATE(5466), 1, + aux_sym__query_body_repeat2, + STATE(5614), 9, + sym_preproc_region, + sym_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, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8418), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5999), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - 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, - [186639] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_by, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [202490] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656868,72 +686216,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8420), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(8703), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5397), 9, + STATE(5615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -656943,7 +686291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186775] = 40, + [202626] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -656964,72 +686312,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8422), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8705), 1, anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5398), 9, + STATE(5616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657039,7 +686387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [186911] = 40, + [202762] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657060,72 +686408,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7183), 1, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, - anon_sym_PIPE, - ACTIONS(8080), 1, - anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + 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(8094), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8424), 1, - anon_sym_by, - STATE(2399), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8707), 1, + anon_sym_SEMI, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5399), 9, + STATE(5617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657135,7 +686483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187047] = 40, + [202898] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657156,72 +686504,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8426), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8709), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5400), 9, + STATE(5618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657231,7 +686579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187183] = 21, + [203034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657252,26 +686600,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LBRACE, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(7932), 1, - anon_sym_DOT, - ACTIONS(8431), 1, - anon_sym_LPAREN, - STATE(6929), 1, - sym_attribute_argument_list, - ACTIONS(8428), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5401), 9, + 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, @@ -657281,124 +686614,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 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, - [187281] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(6005), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8259), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8269), 1, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8257), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 5, - anon_sym_CARET, anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - STATE(5402), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [187405] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [203120] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657419,11 +686671,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_and, - ACTIONS(8436), 1, - anon_sym_or, - STATE(5403), 9, + 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, @@ -657433,7 +686685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5298), 11, + ACTIONS(6005), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -657445,7 +686697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5296), 23, + ACTIONS(6003), 23, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -657459,17 +686711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_EQ_GT, anon_sym_switch, anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [187491] = 40, + [203206] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657490,72 +686742,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5766), 1, - anon_sym_by, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, - anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, - anon_sym_PIPE, - ACTIONS(8080), 1, - anon_sym_AMP, - ACTIONS(8084), 1, - anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8072), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8082), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8086), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8088), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5404), 9, + ACTIONS(8713), 1, + anon_sym_into, + STATE(5621), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657565,103 +686754,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [187627] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, + aux_sym__query_body_repeat2, + ACTIONS(5951), 11, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(8074), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, anon_sym_PIPE, - ACTIONS(8080), 1, anon_sym_AMP, - ACTIONS(8084), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8438), 1, - anon_sym_by, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5949), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8072), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5405), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [187763] = 29, + 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, @@ -657682,49 +686812,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8036), 1, - anon_sym_GT_GT, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8024), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8034), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5406), 9, + ACTIONS(8711), 1, + anon_sym_into, + STATE(5621), 1, + aux_sym__query_body_repeat2, + STATE(5622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657734,19 +686826,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 11, + 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_equals, anon_sym_as, anon_sym_is, - [187877] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [203376] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657767,82 +686883,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, + 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(8074), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, anon_sym_PIPE, - ACTIONS(8080), 1, anon_sym_AMP, - ACTIONS(8084), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8440), 1, - anon_sym_by, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(5999), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8072), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5407), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [188013] = 40, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [203462] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657863,72 +686954,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8442), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8716), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5408), 9, + STATE(5624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -657938,7 +687029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188149] = 40, + [203598] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -657959,72 +687050,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5132), 3, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8444), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5409), 9, + anon_sym_LPAREN, + aux_sym_preproc_if_token1, + STATE(5625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658034,7 +687064,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188285] = 40, + ACTIONS(5130), 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, + [203680] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658055,72 +687119,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8446), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8718), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5410), 9, + STATE(5626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658130,7 +687194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188421] = 40, + [203816] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658151,82 +687215,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8698), 1, + anon_sym_into, + STATE(5610), 1, + aux_sym__query_body_repeat2, + STATE(5627), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(6001), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_COLON, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5999), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5411), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [188557] = 40, + 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, + [203902] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658247,72 +687286,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + 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(7218), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8448), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7169), 1, + anon_sym_is, + ACTIONS(8720), 1, + anon_sym_COMMA, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5412), 9, + STATE(5628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658322,7 +687361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188693] = 40, + [204038] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658343,72 +687382,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7007), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(7011), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(8450), 1, - anon_sym_SEMI, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(8722), 1, + aux_sym_preproc_if_token3, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5413), 9, + STATE(5629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658418,7 +687457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [188829] = 40, + [204174] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658439,82 +687478,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8711), 1, + anon_sym_into, + STATE(5619), 1, + aux_sym__query_body_repeat2, + STATE(5630), 9, + sym_preproc_region, + sym_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, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8452), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5999), 23, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5414), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [188965] = 40, + anon_sym_EQ_GT, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [204260] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658535,72 +687549,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7183), 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, + ACTIONS(7187), 1, anon_sym_GT_GT, - ACTIONS(7017), 1, + ACTIONS(7189), 1, anon_sym_DOT_DOT, - ACTIONS(7019), 1, + 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(7021), 1, + ACTIONS(7207), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7209), 1, anon_sym_QMARK_QMARK, - ACTIONS(8454), 1, + ACTIONS(7237), 1, + anon_sym_QMARK, + ACTIONS(8724), 1, anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7179), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7185), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7193), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7197), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7199), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5415), 9, + STATE(5631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658610,7 +687624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189101] = 40, + [204396] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658631,72 +687645,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8253), 1, + ACTIONS(8394), 1, anon_sym_QMARK, - ACTIONS(8259), 1, + ACTIONS(8400), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(8402), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8404), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8406), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8410), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(8416), 1, anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8418), 1, anon_sym_AMP_AMP, - ACTIONS(8279), 1, + ACTIONS(8420), 1, anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, + ACTIONS(8422), 1, anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, + ACTIONS(8426), 1, + anon_sym_as, + ACTIONS(8428), 1, anon_sym_is, - ACTIONS(8418), 1, - anon_sym_EQ_GT, - STATE(2399), 1, + ACTIONS(8726), 1, + anon_sym_on, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8392), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8396), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8398), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8408), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8412), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8414), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5416), 9, + STATE(5632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658706,7 +687720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189237] = 40, + [204532] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658727,72 +687741,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_on, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8728), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5417), 9, + STATE(5633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658802,7 +687816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189373] = 24, + [204668] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658823,33 +687837,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8122), 1, + 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(8730), 1, + anon_sym_DOT, + ACTIONS(4018), 5, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8456), 1, - anon_sym_operator, - ACTIONS(8458), 1, - anon_sym_this, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(5775), 1, - sym_explicit_interface_specifier, - STATE(6056), 1, - sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5418), 9, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + STATE(5634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -658859,7 +687863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -658870,6 +687874,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, @@ -658882,7 +687889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [189477] = 40, + sym__identifier_token, + [204760] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658903,82 +687911,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(8732), 1, + anon_sym_SEMI, + STATE(5635), 9, + sym_preproc_region, + sym_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, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8460), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5419), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [189613] = 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, + [204844] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -658999,82 +687981,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, + 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(8074), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(8076), 1, - anon_sym_CARET, - ACTIONS(8078), 1, anon_sym_PIPE, - ACTIONS(8080), 1, anon_sym_AMP, - ACTIONS(8084), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, - anon_sym_AMP_AMP, - ACTIONS(8094), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - ACTIONS(8462), 1, - anon_sym_by, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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, - ACTIONS(8066), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8070), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8072), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5420), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [189749] = 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, + [204928] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659095,72 +688051,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8464), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(1223), 9, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5421), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT_GT, + STATE(5637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659170,7 +688090,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [189885] = 40, + ACTIONS(1221), 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, + [205028] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659191,72 +688129,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(8234), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + 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(7958), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8254), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8466), 1, + ACTIONS(8736), 1, anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5422), 9, + STATE(5638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659266,7 +688204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190021] = 22, + [205164] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659287,36 +688225,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(8275), 1, + 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, anon_sym_DOT_DOT, - STATE(2399), 1, + 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(8738), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1153), 9, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5423), 9, + 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(5639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659326,25 +688300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, - [190121] = 40, + [205300] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659365,72 +688321,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_EQ_GT, - ACTIONS(6265), 1, + ACTIONS(5858), 1, + anon_sym_by, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8253), 1, + ACTIONS(8150), 1, anon_sym_QMARK, - ACTIONS(8259), 1, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(8158), 1, anon_sym_CARET, - ACTIONS(8263), 1, + ACTIONS(8160), 1, anon_sym_PIPE, - ACTIONS(8265), 1, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8277), 1, + ACTIONS(8174), 1, anon_sym_AMP_AMP, - ACTIONS(8279), 1, + ACTIONS(8176), 1, anon_sym_PIPE_PIPE, - ACTIONS(8281), 1, + ACTIONS(8178), 1, anon_sym_QMARK_QMARK, - ACTIONS(8283), 1, + ACTIONS(8182), 1, + anon_sym_as, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8251), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5424), 9, + STATE(5640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659440,7 +688396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190257] = 40, + [205436] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659461,82 +688417,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6995), 1, + 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(7001), 1, + anon_sym_BANG, + anon_sym_PLUS, + anon_sym_DASH, 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(8468), 1, - anon_sym_SEMI, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + anon_sym_DOT, + ACTIONS(6003), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, 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_CARET, 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(5425), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [190393] = 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, + [205522] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659557,72 +688488,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, + 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, + anon_sym_LT, + anon_sym_GT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7960), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8470), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, + 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(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5426), 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, + [205608] = 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(8742), 1, + anon_sym_into, + STATE(5643), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659632,7 +688571,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190529] = 26, + aux_sym__query_body_repeat2, + ACTIONS(5951), 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(5949), 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, + [205692] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659653,44 +688629,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8024), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 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(5427), 9, + ACTIONS(8740), 1, + anon_sym_into, + STATE(5643), 1, + aux_sym__query_body_repeat2, + STATE(5644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659700,7 +688643,26 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 13, + 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, @@ -659708,13 +688670,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_equals, anon_sym_as, anon_sym_is, - [190637] = 40, + anon_sym_DASH_GT, + anon_sym_with, + [205778] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659735,72 +688700,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(7037), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + ACTIONS(8236), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(8238), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(8248), 1, + anon_sym_SLASH, + ACTIONS(8250), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(8252), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(8254), 1, + anon_sym_AMP, + ACTIONS(8258), 1, + anon_sym_GT_GT, + ACTIONS(8264), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(8266), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(8268), 1, anon_sym_QMARK_QMARK, - ACTIONS(8472), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(8745), 1, + anon_sym_COLON, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(8242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8244), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(8246), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(8256), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(8260), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(8262), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5428), 9, + STATE(5645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659810,7 +688775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190773] = 40, + [205914] = 35, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659831,72 +688796,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8212), 1, + anon_sym_AMP, + ACTIONS(8216), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8230), 1, anon_sym_is, - ACTIONS(8474), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8198), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5429), 9, + ACTIONS(5660), 5, + anon_sym_in, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -659906,7 +688866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [190909] = 24, + [206040] = 36, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -659927,66 +688887,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8042), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8206), 1, + anon_sym_SLASH, + ACTIONS(8208), 1, + anon_sym_CARET, + ACTIONS(8212), 1, + anon_sym_AMP, + ACTIONS(8216), 1, + anon_sym_GT_GT, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(8230), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 9, + ACTIONS(5664), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5430), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5656), 15, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, + ACTIONS(5660), 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, - [191013] = 14, + STATE(5647), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [206168] = 34, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660007,56 +688979,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8237), 1, - anon_sym_and, - 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(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, - anon_sym_PLUS, - anon_sym_DASH, + 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(8206), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8216), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 24, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(8222), 1, + anon_sym_DOT_DOT, + ACTIONS(8230), 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(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, - anon_sym_CARET, + 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, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, + 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, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [191097] = 40, + STATE(5648), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [206292] = 33, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660077,72 +689069,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(8216), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8230), 1, anon_sym_is, - ACTIONS(8476), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8198), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5432), 9, + ACTIONS(5664), 3, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(5660), 7, + anon_sym_in, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660152,7 +689137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191233] = 40, + [206414] = 37, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660173,72 +689158,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8210), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8216), 1, + anon_sym_GT_GT, + ACTIONS(8222), 1, + anon_sym_DOT_DOT, + ACTIONS(8230), 1, anon_sym_is, - ACTIONS(8478), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8198), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5433), 9, + ACTIONS(5660), 4, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660248,7 +689230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191369] = 40, + [206544] = 38, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660269,72 +689251,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8210), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8216), 1, + anon_sym_GT_GT, + ACTIONS(8222), 1, + anon_sym_DOT_DOT, + ACTIONS(8224), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8230), 1, anon_sym_is, - ACTIONS(8480), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8198), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5434), 9, + ACTIONS(5660), 3, + anon_sym_in, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + STATE(5651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660344,7 +689324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191505] = 40, + [206676] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660365,72 +689345,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5660), 1, + anon_sym_in, + ACTIONS(5664), 1, + anon_sym_QMARK, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(8210), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(8216), 1, + anon_sym_GT_GT, + ACTIONS(8222), 1, + anon_sym_DOT_DOT, + ACTIONS(8224), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(8226), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(8228), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(8230), 1, anon_sym_is, - ACTIONS(8482), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(8198), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5435), 9, + STATE(5652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660440,7 +689420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191641] = 14, + [206812] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660461,56 +689441,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_and, - STATE(5436), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5943), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + 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, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + 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, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(7187), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5941), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7179), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7181), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_CARET, + 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, - 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, - [191725] = 36, + STATE(5653), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [206948] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660531,68 +689537,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8259), 1, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8261), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8265), 1, + ACTIONS(7149), 1, + anon_sym_PIPE, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8269), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8275), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8283), 1, + 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(2399), 1, + ACTIONS(8747), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8251), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8255), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8271), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8273), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5437), 9, + STATE(5654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660602,7 +689612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191853] = 35, + [207084] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660623,67 +689633,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, + ACTIONS(8150), 1, + anon_sym_QMARK, + ACTIONS(8156), 1, anon_sym_SLASH, - ACTIONS(8032), 1, + ACTIONS(8158), 1, + anon_sym_CARET, + ACTIONS(8160), 1, + anon_sym_PIPE, + ACTIONS(8162), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(8166), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(8172), 1, anon_sym_DOT_DOT, - ACTIONS(8052), 1, + 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(8054), 1, + ACTIONS(8184), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8749), 1, + anon_sym_by, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8018), 2, + ACTIONS(8148), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(8152), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(8154), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(8164), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(8168), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(8170), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5438), 9, + STATE(5655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660693,7 +689708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [191979] = 36, + [207220] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660714,68 +689729,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5072), 1, + anon_sym_in, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(8200), 1, + anon_sym_QMARK, + ACTIONS(8206), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(8208), 1, anon_sym_CARET, - ACTIONS(8032), 1, + ACTIONS(8210), 1, + anon_sym_PIPE, + ACTIONS(8212), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(8216), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(8222), 1, anon_sym_DOT_DOT, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, + 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(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8018), 2, + ACTIONS(8198), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(8202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(8204), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(8214), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(8218), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(8220), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5439), 9, + STATE(5656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660785,7 +689804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192107] = 34, + [207356] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660806,66 +689825,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, + anon_sym_QMARK, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8036), 1, + 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(8042), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, + 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(2399), 1, + ACTIONS(8751), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 5, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5440), 9, + STATE(5657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660875,7 +689900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192231] = 40, + [207492] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660896,72 +689921,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, - anon_sym_equals, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8020), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(7145), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(7155), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(7161), 1, anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(7169), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(8753), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(7137), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5441), 9, + STATE(5658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -660971,7 +689996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192367] = 40, + [207628] = 40, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -660992,72 +690017,72 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(7139), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7145), 1, + anon_sym_SLASH, + ACTIONS(7147), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7149), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7151), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7155), 1, + anon_sym_GT_GT, + ACTIONS(7161), 1, + anon_sym_DOT_DOT, + ACTIONS(7163), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7165), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7167), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(7169), 1, anon_sym_is, - ACTIONS(8484), 1, - anon_sym_COLON, - STATE(2399), 1, + ACTIONS(8755), 1, + anon_sym_RPAREN, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7137), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7141), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7143), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7153), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7157), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5442), 9, + STATE(5659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661067,7 +690092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [192503] = 15, + [207764] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661088,11 +690113,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8109), 1, - anon_sym_and, - ACTIONS(8486), 1, - anon_sym_or, - STATE(5443), 9, + ACTIONS(8740), 1, + anon_sym_into, + STATE(5641), 1, + aux_sym__query_body_repeat2, + STATE(5660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661102,9 +690127,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(6001), 12, anon_sym_LT, anon_sym_GT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_PLUS, @@ -661114,10 +690140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 23, + ACTIONS(5999), 22, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_in, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_STAR, @@ -661138,7 +690163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [192589] = 15, + [207850] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661159,11 +690184,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8434), 1, - anon_sym_and, - ACTIONS(8436), 1, - anon_sym_or, - STATE(5444), 9, + ACTIONS(8757), 1, + anon_sym_RPAREN, + STATE(5661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661173,7 +690196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 11, + ACTIONS(4862), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -661185,8 +690208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6041), 23, + ACTIONS(4860), 24, anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -661204,12 +690229,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, - [192675] = 27, + [207934] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661230,340 +690254,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8024), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(6619), 1, + anon_sym_LBRACK, + 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, - 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, - ACTIONS(5656), 13, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - anon_sym_as, - anon_sym_is, - [192785] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8036), 1, - anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8018), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8024), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8034), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8040), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5658), 3, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(5656), 7, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6807), 1, anon_sym_AMP_AMP, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5446), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [192907] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8488), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(3173), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5447), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [193043] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8490), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5448), 9, + STATE(5662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661573,7 +690327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193179] = 14, + [208067] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661594,9 +690348,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8320), 1, - anon_sym_and, - STATE(5449), 9, + ACTIONS(2953), 2, + anon_sym_while, + anon_sym_else, + STATE(5663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661606,7 +690361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5943), 11, + ACTIONS(2955), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -661618,7 +690373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5941), 24, + ACTIONS(2957), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -661632,10 +690387,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_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, @@ -661643,7 +690396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [193263] = 35, + [208150] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661664,67 +690417,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + 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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(8259), 1, - anon_sym_SLASH, - ACTIONS(8265), 1, - anon_sym_AMP, - ACTIONS(8269), 1, - anon_sym_GT_GT, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - ACTIONS(8283), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 2, + anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(8251), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8255), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8257), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8271), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8273), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 5, - anon_sym_CARET, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - STATE(5450), 9, + anon_sym_DOT, + STATE(5664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661734,7 +690446,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193389] = 40, + 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, + [208243] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661755,72 +690491,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, anon_sym_QMARK, - ACTIONS(7212), 1, - anon_sym_CARET, - ACTIONS(7214), 1, - anon_sym_PIPE, - ACTIONS(7216), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, - anon_sym_QMARK_QMARK, - ACTIONS(8492), 1, + ACTIONS(8763), 1, + anon_sym_DOT, + ACTIONS(4018), 4, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7183), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7185), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7189), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7203), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5451), 9, + anon_sym_LBRACE, + STATE(5665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661830,7 +690516,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193525] = 40, + 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, + [208334] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661851,72 +690564,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4719), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4733), 1, + anon_sym_DOT, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5666), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(5911), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(5913), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(5915), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(5917), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(5921), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(5929), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(5931), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(5933), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + 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(8102), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(8494), 1, - anon_sym_by, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3886), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5668), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(5903), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(5907), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(5909), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(5919), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(5923), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(5925), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5452), 9, + STATE(5666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -661926,7 +690637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193661] = 40, + [208467] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -661947,72 +690658,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7564), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7568), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, + ACTIONS(7643), 1, anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7655), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7755), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7757), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7763), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7765), 1, anon_sym_QMARK_QMARK, - ACTIONS(8496), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7560), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7566), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7641), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5453), 9, + STATE(5667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662022,7 +690731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193797] = 40, + [208600] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662043,72 +690752,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7243), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7247), 1, + anon_sym_GT_GT, + ACTIONS(7253), 1, + anon_sym_AMP, + ACTIONS(7263), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7268), 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, + ACTIONS(7270), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7272), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7274), 1, anon_sym_QMARK_QMARK, - ACTIONS(8498), 1, - anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7239), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7241), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7245), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7251), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7255), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7257), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5454), 9, + STATE(5668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662118,7 +690825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [193933] = 15, + [208733] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662139,57 +690846,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8111), 1, - anon_sym_into, - STATE(5183), 1, - aux_sym__query_body_repeat2, - STATE(5455), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5835), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5285), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6131), 1, 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, - anon_sym_DOT, - ACTIONS(5833), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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_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, - anon_sym_CARET, + ACTIONS(6139), 2, 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, - 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, - [194019] = 24, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662210,40 +690940,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8275), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5658), 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(5456), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662253,23 +690975,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 15, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_as, - anon_sym_is, - [194123] = 40, + 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, @@ -662290,72 +691018,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6737), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(6739), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(6741), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(6743), 1, + anon_sym_AMP, + ACTIONS(6747), 1, + anon_sym_GT_GT, + ACTIONS(6755), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(6757), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(6759), 1, anon_sym_QMARK_QMARK, - ACTIONS(8500), 1, - anon_sym_COMMA, - STATE(2399), 1, + 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(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(6627), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(6731), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6733), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(6735), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(6745), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(6749), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(6751), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5457), 9, + STATE(5671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662365,7 +691091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194259] = 26, + [209100] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662386,44 +691112,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8259), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(8275), 1, + 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, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8257), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5658), 8, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5458), 9, + 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(5672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662433,21 +691185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [194367] = 40, + [209233] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662468,72 +691206,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8502), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6680), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5459), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662543,7 +691231,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194503] = 40, + 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, + [209324] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662564,72 +691279,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_by, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7057), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(7059), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(7061), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(7063), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(7067), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(7075), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(7077), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(7079), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, - anon_sym_as, - ACTIONS(8102), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(7049), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(7053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(7055), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(7065), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(7069), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(7071), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5460), 9, + STATE(5674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662639,7 +691352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194639] = 40, + [209457] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662660,72 +691373,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + 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, + anon_sym_and, + anon_sym_or, + ACTIONS(3905), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(5675), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8504), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6680), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5461), 9, + ACTIONS(6716), 1, + 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, @@ -662735,7 +691474,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194775] = 40, + 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, @@ -662756,72 +691522,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5302), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8014), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(8506), 1, - anon_sym_on, - STATE(2399), 1, + STATE(2808), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5462), 9, + STATE(5677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662831,7 +691595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [194911] = 40, + [209778] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662852,72 +691616,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, - anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(6690), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(6692), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(6694), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(6700), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, - anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(6708), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(6710), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(6712), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(8508), 1, - anon_sym_by, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(6682), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(6686), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(6688), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(6698), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(6702), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(6704), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5463), 9, + STATE(5678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -662927,7 +691689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195047] = 29, + [209911] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -662948,49 +691710,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8259), 1, + ACTIONS(6459), 1, anon_sym_SLASH, - ACTIONS(8269), 1, + 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(8275), 1, + ACTIONS(6479), 1, + anon_sym_AMP_AMP, + ACTIONS(6481), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6483), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - STATE(2399), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8255), 2, + ACTIONS(6451), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6455), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8257), 2, + ACTIONS(6457), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8267), 2, + ACTIONS(6467), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5658), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_AMP, - STATE(5464), 9, + ACTIONS(6471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6473), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663000,19 +691783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5656), 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, - [195161] = 40, + [210044] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663033,72 +691804,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6499), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(6501), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(6505), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6517), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(6519), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(6521), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + 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(8510), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(6491), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6497), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(6507), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(6511), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(6513), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5465), 9, + STATE(5680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663108,7 +691877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195297] = 40, + [210177] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663129,72 +691898,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5283), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(5304), 1, + anon_sym_BANG, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(6789), 1, + anon_sym_SLASH, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(6799), 1, + anon_sym_GT_GT, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(8512), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2613), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(6781), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5466), 9, + STATE(5681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663204,7 +691971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195433] = 22, + [210310] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663225,36 +691992,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1153), 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(5467), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663264,25 +692024,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(1139), 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, + 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_as, - anon_sym_is, - anon_sym_with, - [195533] = 40, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663303,72 +692068,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(4886), 1, - anon_sym_equals, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8020), 1, - anon_sym_QMARK, - ACTIONS(8026), 1, + ACTIONS(6277), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(6279), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(6281), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(6283), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(6287), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(6297), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(6299), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(6301), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, + 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(8054), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(6269), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(6273), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(6275), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(6285), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(6289), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(6291), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5468), 9, + STATE(5683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663378,7 +692141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195669] = 40, + [210540] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663399,72 +692162,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4804), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4839), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6327), 1, anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(6329), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(6333), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(6337), 1, + anon_sym_GT_GT, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6347), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(6349), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(6351), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, + 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(8514), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3035), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(4841), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(6319), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6323), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(6325), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(6335), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(6339), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(6341), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5469), 9, + STATE(5684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663474,7 +692235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195805] = 40, + [210673] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663495,72 +692256,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6995), 1, - anon_sym_QMARK, - ACTIONS(7001), 1, + ACTIONS(7697), 1, anon_sym_SLASH, - ACTIONS(7003), 1, + ACTIONS(7701), 1, + anon_sym_GT_GT, + ACTIONS(7709), 1, + anon_sym_AMP, + ACTIONS(7719), 1, anon_sym_CARET, - ACTIONS(7005), 1, + ACTIONS(7725), 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, + ACTIONS(7727), 1, anon_sym_AMP_AMP, - ACTIONS(7021), 1, + ACTIONS(7731), 1, anon_sym_PIPE_PIPE, - ACTIONS(7023), 1, + ACTIONS(7733), 1, anon_sym_QMARK_QMARK, - ACTIONS(8516), 1, - anon_sym_SEMI, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6993), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6997), 2, + ACTIONS(7693), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6999), 2, + ACTIONS(7695), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7009), 2, + ACTIONS(7699), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7013), 2, + ACTIONS(7707), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7711), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7015), 2, + ACTIONS(7713), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5470), 9, + STATE(5685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663570,7 +692329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [195941] = 40, + [210806] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663591,72 +692350,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8518), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5471), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663666,7 +692384,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196077] = 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, + [210907] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663687,72 +692428,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4719), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4733), 1, + anon_sym_DOT, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(5624), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5666), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(5674), 1, anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(5676), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(5678), 1, + anon_sym_AMP, + ACTIONS(5682), 1, + anon_sym_GT_GT, + ACTIONS(5749), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(5753), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(5755), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(5757), 1, anon_sym_QMARK_QMARK, - ACTIONS(8520), 1, - anon_sym_RPAREN, - STATE(2399), 1, + 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(3331), 1, + STATE(3886), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5662), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5668), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(5672), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(5680), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(5684), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(5686), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5472), 9, + STATE(5687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663762,7 +692501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196213] = 40, + [211040] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663783,72 +692522,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_LBRACK, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8068), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(8074), 1, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(8076), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(8078), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(8080), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(8084), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(8090), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(8092), 1, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(8094), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(8096), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(8100), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8102), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(8522), 1, - anon_sym_by, - STATE(2399), 1, + STATE(2433), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8066), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8070), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8072), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8082), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8086), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8088), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5473), 9, + STATE(5688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663858,7 +692595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196349] = 40, + [211173] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663879,72 +692616,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7942), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7286), 1, anon_sym_SLASH, - ACTIONS(7946), 1, + ACTIONS(7290), 1, anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(7300), 1, anon_sym_CARET, - ACTIONS(7958), 1, + ACTIONS(7302), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7304), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7310), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7312), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7314), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8524), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7282), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7284), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7288), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, + ACTIONS(7296), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7306), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7308), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5474), 9, + STATE(5689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -663954,7 +692689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196485] = 40, + [211306] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -663975,72 +692710,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(4533), 1, + anon_sym_DOT, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5656), 1, - anon_sym_equals, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, + ACTIONS(6574), 1, + anon_sym_LPAREN, + ACTIONS(6625), 1, + anon_sym_BANG, + ACTIONS(6633), 1, anon_sym_SLASH, - ACTIONS(8028), 1, + ACTIONS(6635), 1, anon_sym_CARET, - ACTIONS(8030), 1, + ACTIONS(6637), 1, anon_sym_PIPE, - ACTIONS(8032), 1, + ACTIONS(6639), 1, anon_sym_AMP, - ACTIONS(8036), 1, + ACTIONS(6643), 1, anon_sym_GT_GT, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - ACTIONS(8044), 1, + ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(8046), 1, + ACTIONS(6655), 1, anon_sym_PIPE_PIPE, - ACTIONS(8048), 1, + ACTIONS(6657), 1, anon_sym_QMARK_QMARK, - ACTIONS(8052), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(4583), 1, sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8018), 2, + ACTIONS(6621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(6627), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(6631), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(6641), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(6645), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(6647), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5475), 9, + STATE(5690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664050,7 +692783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196621] = 38, + [211439] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664071,70 +692804,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8028), 1, - anon_sym_CARET, - ACTIONS(8030), 1, - anon_sym_PIPE, - ACTIONS(8032), 1, - anon_sym_AMP, - ACTIONS(8036), 1, - anon_sym_GT_GT, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - ACTIONS(8044), 1, - anon_sym_AMP_AMP, - ACTIONS(8052), 1, - anon_sym_as, - ACTIONS(8054), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(8018), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8022), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(8024), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8034), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(8038), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8040), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(5656), 3, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5476), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664144,7 +692836,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196753] = 37, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664165,69 +692880,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5658), 1, - anon_sym_QMARK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(8026), 1, - anon_sym_SLASH, - ACTIONS(8028), 1, - anon_sym_CARET, - ACTIONS(8030), 1, - anon_sym_PIPE, - ACTIONS(8032), 1, - anon_sym_AMP, - ACTIONS(8036), 1, - anon_sym_GT_GT, - ACTIONS(8042), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(8052), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(8054), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + ACTIONS(7597), 1, + anon_sym_SLASH, + ACTIONS(7601), 1, + anon_sym_GT_GT, + ACTIONS(7611), 1, + anon_sym_AMP, + 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(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(8018), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(8022), 2, + ACTIONS(7593), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(8024), 2, + ACTIONS(7595), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8034), 2, + ACTIONS(7599), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(8038), 2, + ACTIONS(7609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7613), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8040), 2, + ACTIONS(7615), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(5656), 4, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_equals, - STATE(5477), 9, + STATE(5692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664237,7 +692953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [196883] = 40, + [211669] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664258,72 +692974,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(5754), 1, - anon_sym_on, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7980), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7986), 1, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(6841), 1, anon_sym_SLASH, - ACTIONS(7988), 1, + ACTIONS(6843), 1, anon_sym_CARET, - ACTIONS(7990), 1, + ACTIONS(6845), 1, anon_sym_PIPE, - ACTIONS(7992), 1, + ACTIONS(6847), 1, anon_sym_AMP, - ACTIONS(7996), 1, + ACTIONS(6851), 1, anon_sym_GT_GT, - ACTIONS(8002), 1, - anon_sym_DOT_DOT, - ACTIONS(8004), 1, + ACTIONS(6857), 1, anon_sym_AMP_AMP, - ACTIONS(8006), 1, + ACTIONS(6859), 1, anon_sym_PIPE_PIPE, - ACTIONS(8008), 1, + ACTIONS(6861), 1, anon_sym_QMARK_QMARK, - ACTIONS(8012), 1, - anon_sym_as, - ACTIONS(8014), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7978), 2, + ACTIONS(6833), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7982), 2, + ACTIONS(6837), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7984), 2, + ACTIONS(6839), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7994), 2, + ACTIONS(6849), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7998), 2, + ACTIONS(6853), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(8000), 2, + ACTIONS(6855), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5478), 9, + STATE(5693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664333,7 +693047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197019] = 40, + [211802] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664354,72 +693068,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, - anon_sym_QMARK, - ACTIONS(7956), 1, - anon_sym_CARET, - ACTIONS(7958), 1, - anon_sym_PIPE, - ACTIONS(7960), 1, - anon_sym_AMP, - ACTIONS(7966), 1, - anon_sym_AMP_AMP, - ACTIONS(7968), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8526), 1, - anon_sym_COLON, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7938), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7940), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7944), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7964), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5479), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664429,7 +693100,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197155] = 40, + 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, + [211899] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664450,132 +693144,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(7187), 1, - anon_sym_SLASH, - ACTIONS(7191), 1, - anon_sym_GT_GT, - ACTIONS(7193), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, + ACTIONS(6813), 1, + anon_sym_as, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7403), 1, + anon_sym_SLASH, + ACTIONS(7405), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7407), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7409), 1, + anon_sym_AMP, + ACTIONS(7413), 1, + anon_sym_GT_GT, + ACTIONS(7421), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7423), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7425), 1, anon_sym_QMARK_QMARK, - ACTIONS(8528), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7395), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7399), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7401), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7411), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7415), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7417), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5480), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [197291] = 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(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8042), 1, - anon_sym_DOT_DOT, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5686), 9, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - STATE(5481), 9, + STATE(5695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664585,25 +693217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 17, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_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, - [197391] = 40, + [212032] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664624,72 +693238,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(7232), 1, - anon_sym_as, - ACTIONS(7942), 1, - anon_sym_SLASH, - ACTIONS(7946), 1, - anon_sym_GT_GT, - ACTIONS(7948), 1, - anon_sym_DOT_DOT, - ACTIONS(7954), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(7956), 1, + ACTIONS(6805), 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(7958), 1, + ACTIONS(7336), 1, anon_sym_PIPE, - ACTIONS(7960), 1, + ACTIONS(7338), 1, anon_sym_AMP, - ACTIONS(7966), 1, + ACTIONS(7342), 1, + anon_sym_GT_GT, + ACTIONS(7350), 1, anon_sym_AMP_AMP, - ACTIONS(7968), 1, + ACTIONS(7352), 1, anon_sym_PIPE_PIPE, - ACTIONS(7970), 1, + ACTIONS(7354), 1, anon_sym_QMARK_QMARK, - ACTIONS(7972), 1, - anon_sym_is, - ACTIONS(8530), 1, - anon_sym_COLON, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7938), 2, + ACTIONS(7324), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7328), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7940), 2, + ACTIONS(7330), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7944), 2, + ACTIONS(7340), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7952), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7962), 2, + ACTIONS(7344), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7964), 2, + ACTIONS(7346), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5482), 9, + STATE(5696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664699,7 +693311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197527] = 40, + [212165] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664720,72 +693332,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6695), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(7187), 1, + ACTIONS(6815), 1, + anon_sym_is, + ACTIONS(7123), 1, anon_sym_SLASH, - ACTIONS(7191), 1, + ACTIONS(7127), 1, anon_sym_GT_GT, - ACTIONS(7193), 1, - anon_sym_DOT_DOT, - ACTIONS(7199), 1, - anon_sym_AMP, - ACTIONS(7205), 1, - anon_sym_is, - ACTIONS(7210), 1, - anon_sym_QMARK, - ACTIONS(7212), 1, + ACTIONS(7364), 1, anon_sym_CARET, - ACTIONS(7214), 1, + ACTIONS(7366), 1, anon_sym_PIPE, - ACTIONS(7216), 1, + ACTIONS(7368), 1, + anon_sym_AMP, + ACTIONS(7374), 1, anon_sym_AMP_AMP, - ACTIONS(7218), 1, + ACTIONS(7376), 1, anon_sym_PIPE_PIPE, - ACTIONS(7220), 1, + ACTIONS(7378), 1, anon_sym_QMARK_QMARK, - ACTIONS(8532), 1, - anon_sym_RPAREN, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7183), 2, + ACTIONS(7119), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7185), 2, + ACTIONS(7121), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7189), 2, + ACTIONS(7125), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7197), 2, + ACTIONS(7360), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7201), 2, + ACTIONS(7370), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7203), 2, + ACTIONS(7372), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5483), 9, + STATE(5697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664795,7 +693405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197663] = 15, + [212298] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664816,100 +693426,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8109), 1, - anon_sym_and, - ACTIONS(8486), 1, - anon_sym_or, - STATE(5484), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5298), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(4075), 1, + anon_sym_DOT, + ACTIONS(4077), 1, + anon_sym_DASH_GT, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5285), 1, anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(6343), 1, + anon_sym_switch, + ACTIONS(6357), 1, + anon_sym_with, + ACTIONS(6771), 1, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6775), 1, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5296), 23, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, + 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(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, + 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, - anon_sym_CARET, + 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, - 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, - [197749] = 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(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3293), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3847), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3845), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5485), 9, + STATE(5698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -664919,30 +693499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [197846] = 39, + [212431] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -664963,70 +693520,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4075), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5285), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6631), 1, + 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(7091), 1, anon_sym_SLASH, - ACTIONS(6633), 1, + ACTIONS(7093), 1, anon_sym_CARET, - ACTIONS(6635), 1, + ACTIONS(7095), 1, anon_sym_PIPE, - ACTIONS(6637), 1, + ACTIONS(7097), 1, anon_sym_AMP, - ACTIONS(6641), 1, + ACTIONS(7101), 1, anon_sym_GT_GT, - ACTIONS(6649), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(6651), 1, + ACTIONS(7113), 1, anon_sym_PIPE_PIPE, - ACTIONS(6653), 1, + ACTIONS(7115), 1, anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3259), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5287), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6623), 2, + ACTIONS(7085), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6627), 2, + ACTIONS(7087), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6629), 2, + ACTIONS(7089), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6639), 2, + ACTIONS(7099), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6643), 2, + ACTIONS(7103), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6645), 2, + ACTIONS(7105), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5486), 9, + STATE(5699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665036,7 +693593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [197979] = 39, + [212564] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665057,70 +693614,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6687), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(7035), 1, + ACTIONS(7506), 1, anon_sym_SLASH, - ACTIONS(7037), 1, + ACTIONS(7508), 1, anon_sym_CARET, - ACTIONS(7039), 1, + ACTIONS(7510), 1, anon_sym_PIPE, - ACTIONS(7041), 1, + ACTIONS(7512), 1, anon_sym_AMP, - ACTIONS(7045), 1, + ACTIONS(7516), 1, anon_sym_GT_GT, - ACTIONS(7051), 1, + ACTIONS(7522), 1, anon_sym_AMP_AMP, - ACTIONS(7053), 1, + ACTIONS(7524), 1, anon_sym_PIPE_PIPE, - ACTIONS(7055), 1, + ACTIONS(7526), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7027), 2, + ACTIONS(7498), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7031), 2, + ACTIONS(7502), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7033), 2, + ACTIONS(7504), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7043), 2, + ACTIONS(7514), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7047), 2, + ACTIONS(7518), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7049), 2, + ACTIONS(7520), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5487), 9, + STATE(5700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665130,7 +693687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198112] = 39, + [212697] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665151,70 +693708,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6687), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6933), 1, + ACTIONS(7536), 1, anon_sym_SLASH, - ACTIONS(6935), 1, + ACTIONS(7540), 1, + anon_sym_GT_GT, + ACTIONS(7550), 1, + anon_sym_AMP, + ACTIONS(7558), 1, anon_sym_CARET, - ACTIONS(6937), 1, + ACTIONS(7572), 1, anon_sym_PIPE, - ACTIONS(6939), 1, - anon_sym_AMP, - ACTIONS(6943), 1, - anon_sym_GT_GT, - ACTIONS(6951), 1, + ACTIONS(7574), 1, anon_sym_AMP_AMP, - ACTIONS(6953), 1, + ACTIONS(7576), 1, anon_sym_PIPE_PIPE, - ACTIONS(6955), 1, + ACTIONS(7578), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6925), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6929), 2, + ACTIONS(7532), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6931), 2, + ACTIONS(7534), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6941), 2, + ACTIONS(7538), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6945), 2, + ACTIONS(7548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7552), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6947), 2, + ACTIONS(7554), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5488), 9, + STATE(5701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665224,7 +693781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198245] = 39, + [212830] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665245,70 +693802,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(4808), 1, + anon_sym_DOT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6425), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6427), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6429), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6431), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6435), 1, + ACTIONS(6799), 1, anon_sym_GT_GT, - ACTIONS(6441), 1, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6443), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(6445), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6417), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6421), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6423), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6433), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6437), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 2, + ACTIONS(6803), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5489), 9, + STATE(5702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665318,7 +693875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198378] = 18, + [212963] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665339,22 +693896,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8534), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(8775), 1, anon_sym_DOT, - ACTIONS(3950), 4, + ACTIONS(4018), 4, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - STATE(5490), 9, + anon_sym_RBRACE, + STATE(5703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665364,7 +693921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(4016), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -665391,7 +693948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [198469] = 18, + [213054] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665412,22 +693969,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8536), 1, - anon_sym_DOT, - ACTIONS(3950), 4, + 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, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5491), 9, + STATE(5704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665437,7 +693993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(3949), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -665464,7 +694020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [198560] = 39, + [213143] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665485,70 +694041,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4719), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(4733), 1, + anon_sym_DOT, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5658), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6475), 1, + ACTIONS(6783), 1, + anon_sym_QMARK, + ACTIONS(6789), 1, anon_sym_SLASH, - ACTIONS(6479), 1, - anon_sym_GT_GT, - ACTIONS(6539), 1, + ACTIONS(6791), 1, anon_sym_CARET, - ACTIONS(6541), 1, + ACTIONS(6793), 1, anon_sym_PIPE, - ACTIONS(6543), 1, + ACTIONS(6795), 1, anon_sym_AMP, - ACTIONS(6547), 1, + ACTIONS(6799), 1, + anon_sym_GT_GT, + ACTIONS(6805), 1, + anon_sym_DOT_DOT, + ACTIONS(6807), 1, anon_sym_AMP_AMP, - ACTIONS(6549), 1, + ACTIONS(6809), 1, anon_sym_PIPE_PIPE, - ACTIONS(6551), 1, + ACTIONS(6811), 1, anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - STATE(2399), 1, + STATE(2902), 1, sym_bracketed_argument_list, - STATE(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6469), 2, + ACTIONS(6781), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6471), 2, + ACTIONS(6785), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6473), 2, + ACTIONS(6787), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6477), 2, + ACTIONS(6797), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6481), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(6545), 2, + ACTIONS(6801), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(5492), 9, + ACTIONS(6803), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + STATE(5705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665558,7 +694114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [198693] = 19, + [213276] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665579,26 +694135,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8538), 1, - anon_sym_EQ, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(8540), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(3602), 5, - anon_sym_LBRACK, + ACTIONS(3881), 1, + anon_sym_LBRACE, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5493), 9, + 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, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3915), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665608,7 +694170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(6825), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -665618,7 +694180,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, @@ -665631,8 +694192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [198786] = 13, + [213377] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665653,10 +694213,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5104), 2, + 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(8777), 1, + anon_sym_DOT, + ACTIONS(4018), 4, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - STATE(5494), 9, + anon_sym_LBRACE, + STATE(5707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665666,27 +694238,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5102), 33, + ACTIONS(4016), 26, 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, @@ -665700,7 +694265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [198867] = 39, + [213468] = 39, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665721,70 +694286,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7532), 1, + ACTIONS(6593), 1, anon_sym_SLASH, - ACTIONS(7536), 1, - anon_sym_GT_GT, - ACTIONS(7546), 1, - anon_sym_AMP, - ACTIONS(7556), 1, + ACTIONS(6595), 1, anon_sym_CARET, - ACTIONS(7558), 1, + ACTIONS(6597), 1, anon_sym_PIPE, - ACTIONS(7560), 1, + ACTIONS(6599), 1, + anon_sym_AMP, + ACTIONS(6603), 1, + anon_sym_GT_GT, + ACTIONS(6611), 1, anon_sym_AMP_AMP, - ACTIONS(7570), 1, + ACTIONS(6613), 1, anon_sym_PIPE_PIPE, - ACTIONS(7572), 1, + ACTIONS(6615), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + 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(3331), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5216), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7528), 2, + ACTIONS(6585), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6589), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7530), 2, + ACTIONS(6591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(7534), 2, + ACTIONS(6601), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(7544), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7548), 2, + ACTIONS(6605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7550), 2, + ACTIONS(6607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5495), 9, + STATE(5708), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [213601] = 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, + anon_sym_QMARK, + ACTIONS(8779), 1, + anon_sym_DOT, + ACTIONS(4018), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + STATE(5709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665794,7 +694405,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199000] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665815,70 +694453,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, + ACTIONS(4100), 1, anon_sym_DOT, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, + ACTIONS(5304), 1, anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, + ACTIONS(6343), 1, anon_sym_switch, - ACTIONS(6275), 1, + ACTIONS(6357), 1, anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(6783), 1, anon_sym_QMARK, - ACTIONS(6687), 1, + ACTIONS(6805), 1, anon_sym_DOT_DOT, - ACTIONS(6695), 1, + ACTIONS(6813), 1, anon_sym_as, - ACTIONS(6697), 1, + ACTIONS(6815), 1, anon_sym_is, - ACTIONS(6747), 1, + ACTIONS(7468), 1, anon_sym_SLASH, - ACTIONS(6749), 1, + ACTIONS(7470), 1, anon_sym_CARET, - ACTIONS(6751), 1, + ACTIONS(7472), 1, anon_sym_PIPE, - ACTIONS(6753), 1, + ACTIONS(7474), 1, anon_sym_AMP, - ACTIONS(6757), 1, + ACTIONS(7478), 1, anon_sym_GT_GT, - ACTIONS(6763), 1, + ACTIONS(7486), 1, anon_sym_AMP_AMP, - ACTIONS(6765), 1, + ACTIONS(7488), 1, anon_sym_PIPE_PIPE, - ACTIONS(6767), 1, + ACTIONS(7490), 1, anon_sym_QMARK_QMARK, - STATE(2399), 1, + STATE(2485), 1, sym_bracketed_argument_list, - STATE(3176), 1, + STATE(3487), 1, sym_argument_list, - ACTIONS(5173), 2, + ACTIONS(5306), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6739), 2, + ACTIONS(7460), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6743), 2, + ACTIONS(7464), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6745), 2, + ACTIONS(7466), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6755), 2, + ACTIONS(7476), 2, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(6759), 2, + ACTIONS(7480), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6761), 2, + ACTIONS(7482), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5496), 9, + STATE(5710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -665888,7 +694526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199133] = 39, + [213825] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -665909,70 +694547,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6574), 1, - anon_sym_SLASH, - ACTIONS(6576), 1, - anon_sym_CARET, - ACTIONS(6578), 1, - anon_sym_PIPE, - ACTIONS(6580), 1, - anon_sym_AMP, - ACTIONS(6584), 1, - anon_sym_GT_GT, - ACTIONS(6590), 1, - anon_sym_AMP_AMP, - ACTIONS(6592), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6594), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6572), 2, + ACTIONS(6680), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6582), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6586), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6588), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5497), 9, + ACTIONS(6716), 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, @@ -665982,7 +694571,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199266] = 21, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666003,29 +694619,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(8336), 1, anon_sym_LPAREN, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2181), 1, + sym_generic_name, + STATE(6069), 1, + sym_explicit_interface_specifier, + STATE(6274), 1, sym_identifier, - STATE(3314), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3899), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(3897), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5498), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666035,7 +694651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -666058,7 +694674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [199363] = 39, + [214013] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666079,70 +694695,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + STATE(4063), 1, + sym_type_argument_list, + STATE(6533), 1, + sym_parameter_list, + ACTIONS(3662), 4, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6965), 1, - anon_sym_SLASH, - ACTIONS(6969), 1, - anon_sym_GT_GT, - ACTIONS(6975), 1, - anon_sym_AMP, - ACTIONS(6983), 1, - anon_sym_CARET, - ACTIONS(6985), 1, - anon_sym_PIPE, - ACTIONS(6987), 1, - anon_sym_AMP_AMP, - ACTIONS(6989), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6991), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6961), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6963), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6967), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6973), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6977), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6979), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5499), 9, + anon_sym_DOT, + STATE(5713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666152,7 +694720,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199496] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666173,70 +694767,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5554), 1, - anon_sym_BANG, - ACTIONS(5864), 1, - anon_sym_SLASH, - ACTIONS(5868), 1, - anon_sym_CARET, - ACTIONS(5870), 1, - anon_sym_PIPE, - ACTIONS(5872), 1, - anon_sym_AMP, - ACTIONS(5876), 1, - anon_sym_GT_GT, - ACTIONS(5882), 1, - anon_sym_AMP_AMP, - ACTIONS(5884), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5886), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5860), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5862), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5866), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5874), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5878), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5880), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5500), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666246,7 +694798,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199629] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666267,70 +694842,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + STATE(4063), 1, + sym_type_argument_list, + STATE(6582), 1, + sym_parameter_list, + ACTIONS(3662), 4, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5501), 9, + anon_sym_DOT, + STATE(5715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666340,7 +694867,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199762] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666361,70 +694914,172 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(5024), 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, + sym_preproc_region, + sym_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, + [214387] = 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(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7399), 1, - anon_sym_SLASH, - ACTIONS(7401), 1, - anon_sym_CARET, - ACTIONS(7403), 1, - anon_sym_PIPE, - ACTIONS(7405), 1, - anon_sym_AMP, - ACTIONS(7409), 1, - anon_sym_GT_GT, - ACTIONS(7415), 1, - anon_sym_AMP_AMP, - ACTIONS(7417), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7419), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7391), 2, + ACTIONS(8786), 1, + anon_sym_DOT, + ACTIONS(4018), 3, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + STATE(5717), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(7395), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7397), 2, + 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, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7407), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7411), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7413), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5502), 9, + anon_sym_DOT, + STATE(5718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666434,7 +695089,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [199895] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666455,80 +695134,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(4641), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5494), 1, - anon_sym_LPAREN, - ACTIONS(5554), 1, + 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, anon_sym_BANG, - ACTIONS(5574), 1, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - ACTIONS(5576), 1, - anon_sym_CARET, - ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5580), 1, anon_sym_AMP, - ACTIONS(5584), 1, anon_sym_GT_GT, - ACTIONS(5596), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5600), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3742), 1, - sym_argument_list, - ACTIONS(5556), 2, + anon_sym_DOT, + ACTIONS(5054), 22, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5566), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5572), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(5582), 2, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, - ACTIONS(5586), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5588), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - STATE(5503), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [200028] = 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, + [214649] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666549,70 +695202,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(3122), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5504), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666622,7 +695234,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200161] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666643,70 +695278,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + 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, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7097), 1, - anon_sym_SLASH, - ACTIONS(7101), 1, - anon_sym_GT_GT, - ACTIONS(7165), 1, - anon_sym_CARET, - ACTIONS(7167), 1, - anon_sym_PIPE, - ACTIONS(7169), 1, - anon_sym_AMP, - ACTIONS(7175), 1, - anon_sym_AMP_AMP, - ACTIONS(7177), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7179), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7093), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7095), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7099), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7161), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7171), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7173), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5505), 9, + anon_sym_DOT, + STATE(5721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666716,7 +695307,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200294] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666737,70 +695352,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6377), 1, - anon_sym_SLASH, - ACTIONS(6379), 1, - anon_sym_CARET, - ACTIONS(6381), 1, - anon_sym_PIPE, - ACTIONS(6383), 1, - anon_sym_AMP, - ACTIONS(6387), 1, - anon_sym_GT_GT, - ACTIONS(6397), 1, - anon_sym_AMP_AMP, - ACTIONS(6399), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6401), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6369), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6375), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6385), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6389), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6391), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5506), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666810,7 +695384,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200427] = 13, + 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, + [214939] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666831,10 +695428,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5078), 2, + 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(8800), 1, + anon_sym_DOT, + ACTIONS(4018), 3, anon_sym_LPAREN, - STATE(5507), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(5723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666844,27 +695452,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5076), 33, + ACTIONS(4016), 26, 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, @@ -666878,7 +695479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [200508] = 39, + [215029] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666899,70 +695500,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7455), 1, - anon_sym_SLASH, - ACTIONS(7459), 1, - anon_sym_GT_GT, - ACTIONS(7471), 1, - anon_sym_AMP, - ACTIONS(7481), 1, - anon_sym_CARET, - ACTIONS(7566), 1, - anon_sym_PIPE, - ACTIONS(7568), 1, - anon_sym_AMP_AMP, - ACTIONS(7574), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7576), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7451), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7453), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7457), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7469), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7475), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5508), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -666972,7 +695531,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200641] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -666993,70 +695575,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6116), 1, - anon_sym_SLASH, - ACTIONS(6200), 1, - anon_sym_CARET, - ACTIONS(6202), 1, - anon_sym_PIPE, - ACTIONS(6204), 1, - anon_sym_AMP, - ACTIONS(6208), 1, - anon_sym_GT_GT, - ACTIONS(6214), 1, - anon_sym_AMP_AMP, - ACTIONS(6216), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6218), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6114), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6194), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6198), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6206), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6210), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6212), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5509), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, + sym_generic_name, + STATE(6119), 1, + sym_explicit_interface_specifier, + STATE(6271), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667066,7 +695607,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [200774] = 18, + 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, + [215223] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667087,22 +695651,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8542), 1, - anon_sym_DOT, - ACTIONS(3950), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5510), 9, + ACTIONS(8773), 1, + aux_sym_preproc_if_token1, + ACTIONS(8802), 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(5726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667112,7 +695683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -667123,9 +695694,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, @@ -667138,8 +695706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [200865] = 23, + [215321] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667160,32 +695727,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2181), 1, + sym_generic_name, + STATE(3544), 1, + aux_sym_conversion_operator_declaration_repeat1, + STATE(4373), 1, sym_identifier, - STATE(3335), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5569), 1, - sym_property_pattern_clause, - ACTIONS(3849), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3851), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5511), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667195,7 +695758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -667205,6 +695768,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, @@ -667217,7 +695781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [200966] = 39, + [215417] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667238,70 +695802,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4647), 1, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + ACTIONS(8783), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + STATE(4063), 1, + sym_type_argument_list, + STATE(6554), 1, + sym_parameter_list, + ACTIONS(3662), 4, anon_sym_LBRACK, - ACTIONS(6249), 1, - anon_sym_SLASH, - ACTIONS(6251), 1, - anon_sym_CARET, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6255), 1, - anon_sym_AMP, - ACTIONS(6259), 1, - anon_sym_GT_GT, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6269), 1, - anon_sym_AMP_AMP, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(2936), 1, - sym_argument_list, - ACTIONS(4677), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6243), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6245), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6247), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6261), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6263), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5512), 9, + anon_sym_DOT, + STATE(5728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667311,7 +695827,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201099] = 14, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667332,10 +695874,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2903), 2, - anon_sym_while, - anon_sym_else, - STATE(5513), 9, + ACTIONS(8804), 1, + anon_sym_SEMI, + STATE(5729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667345,7 +695886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2905), 11, + ACTIONS(5056), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, @@ -667357,7 +695898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2907), 22, + ACTIONS(5054), 22, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_PLUS_PLUS, @@ -667380,7 +695921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [201182] = 39, + [215589] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667401,70 +695942,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(5442), 1, + 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, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6454), 1, - anon_sym_LPAREN, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6501), 1, - anon_sym_SLASH, - ACTIONS(6503), 1, - anon_sym_CARET, - ACTIONS(6505), 1, - anon_sym_PIPE, - ACTIONS(6507), 1, - anon_sym_AMP, - ACTIONS(6511), 1, - anon_sym_GT_GT, - ACTIONS(6521), 1, - anon_sym_AMP_AMP, - ACTIONS(6523), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6525), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6489), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6497), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6499), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6509), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6513), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6515), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5514), 9, + anon_sym_DOT, + STATE(5730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667474,7 +695969,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201315] = 39, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667495,70 +696014,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7502), 1, - anon_sym_SLASH, - ACTIONS(7504), 1, - anon_sym_CARET, - ACTIONS(7506), 1, - anon_sym_PIPE, - ACTIONS(7508), 1, - anon_sym_AMP, - ACTIONS(7512), 1, - anon_sym_GT_GT, - ACTIONS(7520), 1, - anon_sym_AMP_AMP, - ACTIONS(7522), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7524), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7498), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7500), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7510), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7514), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7516), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5515), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667568,7 +696046,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201448] = 39, + 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, + [215777] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667589,70 +696090,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4637), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(4641), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(8810), 1, anon_sym_DOT, - ACTIONS(5186), 1, + ACTIONS(4018), 3, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5552), 1, + anon_sym_LBRACE, + STATE(5732), 9, + sym_preproc_region, + sym_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, + [215867] = 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(5024), 1, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2830), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5516), 9, + ACTIONS(5040), 1, + aux_sym_preproc_if_token1, + ACTIONS(8812), 1, + aux_sym_preproc_if_token3, + STATE(2175), 1, + sym__reserved_identifier, + STATE(5786), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6051), 1, + sym__attribute_list, + STATE(6642), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667662,7 +696193,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201581] = 23, + 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, + [215964] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667683,32 +696237,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_LBRACE, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(3294), 1, + STATE(3481), 1, sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(5576), 1, - sym_property_pattern_clause, - ACTIONS(3845), 2, + ACTIONS(3961), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(3847), 3, + ACTIONS(3963), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(5517), 9, + STATE(5734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667718,7 +696268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + ACTIONS(6825), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -667740,7 +696290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [201682] = 21, + [216059] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667761,29 +696311,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3897), 1, sym_discard, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(3340), 1, + STATE(3507), 1, sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3851), 2, + ACTIONS(3905), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3907), 3, + anon_sym_when, anon_sym_and, anon_sym_or, - ACTIONS(3849), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5518), 9, + STATE(5735), 9, + sym_preproc_region, + sym_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), 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, + [216154] = 21, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667793,7 +696415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -667816,7 +696438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [201779] = 39, + [216249] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667837,70 +696459,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, - anon_sym_LPAREN, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(5805), 1, - anon_sym_SLASH, - ACTIONS(5807), 1, - anon_sym_CARET, - ACTIONS(5809), 1, - anon_sym_PIPE, - ACTIONS(5811), 1, - anon_sym_AMP, - ACTIONS(5815), 1, - anon_sym_GT_GT, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5823), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5825), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5797), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5801), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5803), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(5813), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(5817), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5519), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667910,7 +696488,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [201912] = 18, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -667931,22 +696532,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8544), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(8818), 1, anon_sym_DOT, - ACTIONS(3950), 4, - anon_sym_COMMA, + ACTIONS(4018), 3, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - STATE(5520), 9, + STATE(5738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -667956,7 +696554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(4016), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -667983,7 +696581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [202003] = 39, + [216429] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668004,70 +696602,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + 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(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, + anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6897), 1, - anon_sym_SLASH, - ACTIONS(6899), 1, - anon_sym_CARET, - ACTIONS(6901), 1, - anon_sym_PIPE, - ACTIONS(6903), 1, - anon_sym_AMP, - ACTIONS(6907), 1, - anon_sym_GT_GT, - ACTIONS(6915), 1, - anon_sym_AMP_AMP, - ACTIONS(6917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6919), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6893), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6895), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6905), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6909), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6911), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5521), 9, + anon_sym_DOT, + STATE(5739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668077,7 +696627,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202136] = 17, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668098,21 +696672,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6488), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - ACTIONS(3863), 5, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(8822), 1, + anon_sym_using, + ACTIONS(3445), 7, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5522), 9, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_COLON_COLON, + STATE(5740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668122,20 +696692,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3861), 26, + 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, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -668149,76 +696718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [202225] = 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(2911), 2, - anon_sym_while, - anon_sym_else, - STATE(5523), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(2913), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(2915), 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, - [202308] = 39, + [216597] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668239,70 +696739,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5143), 1, + ACTIONS(8824), 1, + sym__identifier_token, + ACTIONS(8830), 1, anon_sym_LPAREN, - ACTIONS(5171), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7113), 1, - anon_sym_SLASH, - ACTIONS(7115), 1, - anon_sym_CARET, - ACTIONS(7117), 1, - anon_sym_PIPE, - ACTIONS(7119), 1, - anon_sym_AMP, - ACTIONS(7123), 1, - anon_sym_GT_GT, - ACTIONS(7129), 1, - anon_sym_AMP_AMP, - ACTIONS(7131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7133), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3176), 1, - sym_argument_list, - ACTIONS(5173), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7105), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7109), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7111), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7121), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7125), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7127), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5524), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668312,7 +696767,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202441] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668333,10 +696811,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5086), 2, - anon_sym_LBRACK, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(5525), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668346,27 +696842,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5084), 33, + ACTIONS(6825), 21, 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, @@ -668379,8 +696864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [202522] = 39, + [216783] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668401,70 +696885,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7354), 1, - anon_sym_SLASH, - ACTIONS(7356), 1, - anon_sym_CARET, - ACTIONS(7358), 1, - anon_sym_PIPE, - ACTIONS(7360), 1, - anon_sym_AMP, - ACTIONS(7364), 1, - anon_sym_GT_GT, - ACTIONS(7372), 1, - anon_sym_AMP_AMP, - ACTIONS(7374), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7376), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7346), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7350), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7352), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7362), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7366), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7368), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5526), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668474,7 +696914,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202655] = 18, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668495,22 +696958,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8546), 1, - anon_sym_DOT, - ACTIONS(3950), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - STATE(5527), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668520,7 +696988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -668531,9 +696999,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, @@ -668546,8 +697011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [202746] = 39, + [216971] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668568,70 +697032,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(5186), 1, + ACTIONS(8830), 1, anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2358), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5528), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668641,7 +697060,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [202879] = 21, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668662,29 +697104,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2525), 1, + ACTIONS(8816), 1, + anon_sym_static, + ACTIONS(8842), 1, + anon_sym_unsafe, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2181), 1, + sym_generic_name, + STATE(5755), 1, + aux_sym_using_directive_repeat1, + STATE(6463), 1, sym_identifier, - STATE(3291), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_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(5529), 9, + STATE(7053), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668694,7 +697134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -668717,7 +697157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [202976] = 39, + [217157] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668738,70 +697178,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(4659), 1, - anon_sym_DOT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + ACTIONS(8844), 1, + 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, anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5530), 9, + anon_sym_DOT, + STATE(5747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668811,7 +697205,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203109] = 13, + 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, + [217248] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668832,10 +697250,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5115), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(5531), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668845,25 +697279,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5113), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_this, anon_sym_scoped, - anon_sym_params, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -668878,8 +697302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [203190] = 39, + [217341] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668900,70 +697323,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4001), 1, - anon_sym_DOT, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(5169), 1, + 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, anon_sym_LBRACK, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2537), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5532), 9, + anon_sym_DOT, + STATE(5749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -668973,7 +697350,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203323] = 13, + 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, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -668994,10 +697395,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5100), 2, - anon_sym_LBRACK, - anon_sym_LPAREN, - STATE(5533), 9, + 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669007,25 +697424,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5098), 33, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_this, anon_sym_scoped, - anon_sym_params, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -669040,8 +697447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [203404] = 39, + [217525] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669062,70 +697468,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6454), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(6823), 1, + sym__identifier_token, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(6493), 1, - anon_sym_BANG, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(6775), 1, - anon_sym_SLASH, - ACTIONS(6779), 1, - anon_sym_GT_GT, - ACTIONS(6792), 1, - anon_sym_CARET, - ACTIONS(6794), 1, - anon_sym_PIPE, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6802), 1, - anon_sym_AMP_AMP, - ACTIONS(6804), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6806), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(4578), 1, - sym_argument_list, - ACTIONS(6495), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6771), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6773), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6777), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6788), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6798), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6800), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5534), 9, + 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(3913), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(3915), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669135,7 +697499,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203537] = 39, + 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, + [217620] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669156,70 +697542,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - ACTIONS(7278), 1, - anon_sym_SLASH, - ACTIONS(7280), 1, - anon_sym_CARET, - ACTIONS(7282), 1, - anon_sym_PIPE, - ACTIONS(7284), 1, - anon_sym_AMP, - ACTIONS(7288), 1, - anon_sym_GT_GT, - ACTIONS(7296), 1, - anon_sym_AMP_AMP, - ACTIONS(7298), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7300), 1, - anon_sym_QMARK_QMARK, - STATE(2399), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(6829), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(7274), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7276), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(7286), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(7290), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5535), 9, + ACTIONS(8849), 1, + anon_sym_COLON_COLON, + STATE(2183), 1, + sym_type_argument_list, + ACTIONS(3662), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT, + STATE(5752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669229,7 +697562,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203670] = 18, + 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, + 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, + [217705] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669250,22 +697611,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8548), 1, - anon_sym_DOT, - ACTIONS(3950), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - STATE(5536), 9, + 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(7164), 2, + sym_enum_member_declaration, + sym_preproc_if_in_enum_member_declaration, + STATE(5753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669275,7 +697641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -669286,9 +697652,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, @@ -669301,8 +697664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [203761] = 39, + [217800] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669323,70 +697685,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4019), 1, - anon_sym_DOT, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5212), 1, - anon_sym_LBRACK, - ACTIONS(5214), 1, - anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_switch, - ACTIONS(6275), 1, - anon_sym_with, - ACTIONS(6665), 1, - anon_sym_QMARK, - ACTIONS(6671), 1, - anon_sym_SLASH, - ACTIONS(6673), 1, - anon_sym_CARET, - ACTIONS(6675), 1, - anon_sym_PIPE, - ACTIONS(6677), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_GT_GT, - ACTIONS(6687), 1, - anon_sym_DOT_DOT, - ACTIONS(6689), 1, - anon_sym_AMP_AMP, - ACTIONS(6691), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6693), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6695), 1, - anon_sym_as, - ACTIONS(6697), 1, - anon_sym_is, - STATE(2738), 1, - sym_bracketed_argument_list, - STATE(3331), 1, - sym_argument_list, - ACTIONS(5216), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6667), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6669), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6679), 2, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - ACTIONS(6683), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6685), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - STATE(5537), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669396,7 +697715,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [203894] = 18, + 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, + [217895] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669417,21 +697759,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8550), 1, - anon_sym_DOT, - ACTIONS(3950), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(5538), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669441,7 +697788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -669452,9 +697799,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, @@ -669467,8 +697811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [203984] = 18, + [217988] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669489,24 +697832,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8552), 1, - anon_sym_EQ, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(8554), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3602), 4, + ACTIONS(2967), 1, + sym__identifier_token, + ACTIONS(5024), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5539), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669516,7 +697862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(2971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -669539,8 +697885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [204074] = 22, + [218083] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669563,27 +697908,24 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5911), 1, - sym_explicit_interface_specifier, - STATE(6079), 1, + STATE(4373), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, + STATE(6062), 1, + aux_sym_using_directive_repeat1, + STATE(7115), 1, sym__name, - STATE(4015), 3, + ACTIONS(8816), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5540), 9, + STATE(5757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669616,7 +697958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [204172] = 21, + [218176] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669639,26 +697981,27 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + 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, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(3433), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4264), 1, + 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, sym_identifier, - STATE(5724), 1, - sym_explicit_interface_specifier, - STATE(7169), 1, - sym__name, - ACTIONS(5453), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5541), 9, + STATE(7440), 1, + sym_enum_member_declaration, + STATE(5758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669691,7 +698034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [204268] = 18, + [218275] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669712,22 +698055,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, + ACTIONS(3669), 1, anon_sym_COLON_COLON, - ACTIONS(6241), 1, + ACTIONS(6311), 1, anon_sym_LT, - ACTIONS(8556), 1, - anon_sym_LPAREN, - STATE(4028), 1, + ACTIONS(8855), 1, + anon_sym_EQ, + STATE(4063), 1, sym_type_argument_list, - STATE(6376), 1, - sym_parameter_list, - ACTIONS(3602), 4, + ACTIONS(3662), 6, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5542), 9, + STATE(5759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669737,15 +698080,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 25, + ACTIONS(3660), 23, 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, @@ -669763,7 +698104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [204358] = 22, + [218362] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669786,27 +698127,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8857), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5935), 1, - sym_explicit_interface_specifier, - STATE(6077), 1, + STATE(4373), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, + STATE(6519), 1, sym__name, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5543), 9, + STATE(5760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669839,7 +698176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [204456] = 22, + [218454] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669862,27 +698199,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8859), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5920), 1, - sym_explicit_interface_specifier, - STATE(6078), 1, + STATE(4373), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7166), 1, + STATE(6519), 1, sym__name, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5544), 9, + STATE(5761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669915,7 +698248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [204554] = 21, + [218546] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669938,26 +698271,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8861), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(3459), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5724), 1, - sym_explicit_interface_specifier, - STATE(7169), 1, + STATE(6519), 1, sym__name, - ACTIONS(5453), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5545), 9, + STATE(5762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669990,7 +698320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [204650] = 18, + [218638] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670011,21 +698341,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 1, + anon_sym_LT, + STATE(4063), 1, + sym_type_argument_list, + ACTIONS(3662), 5, anon_sym_LBRACK, - ACTIONS(6609), 1, + anon_sym_LPAREN, anon_sym_QMARK, - ACTIONS(6611), 1, anon_sym_STAR, - ACTIONS(8559), 1, anon_sym_DOT, - ACTIONS(3950), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5546), 9, + STATE(5763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670035,7 +698365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(3660), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -670046,9 +698376,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, @@ -670062,7 +698389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [204740] = 18, + [218724] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670083,22 +698410,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8556), 1, - anon_sym_LPAREN, - STATE(4028), 1, - sym_type_argument_list, - STATE(6353), 1, - sym_parameter_list, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5547), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670108,15 +698438,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -670133,144 +698461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [204830] = 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(8561), 1, - anon_sym_SEMI, - 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, - ACTIONS(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4890), 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, - [204912] = 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(8563), 1, - anon_sym_SEMI, - 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(4892), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4890), 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, - [204994] = 23, + [218816] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670293,28 +698484,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8565), 1, - aux_sym_preproc_if_token3, - ACTIONS(8567), 1, - aux_sym_preproc_else_token1, - ACTIONS(8569), 1, - aux_sym_preproc_elif_token1, - STATE(2106), 1, + ACTIONS(8865), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(5742), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6327), 1, - sym_enum_member_declaration, - STATE(6392), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7520), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5550), 9, + STATE(6519), 1, + sym__name, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670347,7 +698533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [205094] = 18, + [218908] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670368,22 +698554,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8556), 1, - anon_sym_LPAREN, - STATE(4028), 1, - sym_type_argument_list, - STATE(6265), 1, - sym_parameter_list, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5551), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670393,15 +698582,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -670418,8 +698605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [205184] = 21, + [219000] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670442,26 +698628,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8869), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(3447), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5724), 1, - sym_explicit_interface_specifier, - STATE(7169), 1, + STATE(6519), 1, sym__name, - ACTIONS(5453), 2, - anon_sym_operator, - anon_sym_checked, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5552), 9, + STATE(5767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670494,7 +698677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [205280] = 18, + [219092] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670515,21 +698698,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(4885), 1, + aux_sym_preproc_if_token3, + ACTIONS(4701), 3, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8571), 1, - anon_sym_DOT, - ACTIONS(3950), 3, - anon_sym_COLON, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5553), 9, + aux_sym_preproc_if_token1, + STATE(5768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670539,20 +698714,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + 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, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -670566,7 +698743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [205370] = 23, + [219172] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670589,28 +698766,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8567), 1, - aux_sym_preproc_else_token1, - ACTIONS(8569), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8573), 1, - aux_sym_preproc_if_token3, - STATE(2106), 1, + ACTIONS(8871), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(5742), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6359), 1, - sym_enum_member_declaration, - STATE(6392), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7149), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5554), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670643,7 +698815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [205470] = 18, + [219264] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670664,21 +698836,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8575), 1, - anon_sym_DOT, - ACTIONS(3950), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5555), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8873), 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(5770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670688,7 +698864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -670699,9 +698875,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, @@ -670714,8 +698887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [205560] = 18, + [219356] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670736,24 +698908,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8577), 1, - anon_sym_EQ, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(8540), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - ACTIONS(3602), 4, + ACTIONS(4102), 1, + anon_sym_DASH_GT, + ACTIONS(6678), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6680), 1, anon_sym_STAR, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(8028), 1, anon_sym_DOT, - STATE(5556), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670763,7 +698935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -670787,7 +698959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [205650] = 20, + [219448] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670808,26 +698980,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8552), 1, - anon_sym_EQ, - ACTIONS(8579), 1, - anon_sym_COMMA, - ACTIONS(8582), 1, - anon_sym_RPAREN, - STATE(4028), 1, - sym_type_argument_list, - STATE(6675), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5557), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8877), 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(5772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670837,7 +699008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -670860,8 +699031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [205744] = 20, + [219540] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670884,24 +699054,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8879), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(6981), 1, + STATE(6519), 1, sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5558), 9, + STATE(5773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670934,7 +699103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [205837] = 16, + [219632] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670955,17 +699124,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(8587), 1, - anon_sym_COLON_COLON, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT, - STATE(5559), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8881), 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(5774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670975,10 +699152,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 27, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, - anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -670987,9 +699163,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, @@ -671002,8 +699175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [205922] = 17, + [219724] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671024,19 +699196,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8589), 1, - anon_sym_DOT, - ACTIONS(3950), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5560), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671046,7 +699224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -671057,9 +699235,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, @@ -671072,8 +699247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [206009] = 21, + [219816] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671094,28 +699268,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2525), 1, + ACTIONS(8885), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(3293), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3845), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3847), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5561), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671125,7 +699296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -671135,6 +699306,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, @@ -671147,7 +699319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206104] = 20, + [219908] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671170,24 +699342,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8887), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(7023), 1, + STATE(6519), 1, sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5562), 9, + STATE(5777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671220,7 +699391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206197] = 20, + [220000] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671243,24 +699414,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8889), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(7065), 1, + STATE(6519), 1, sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5563), 9, + STATE(5778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671293,7 +699463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206290] = 21, + [220092] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671316,25 +699486,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8585), 1, - anon_sym_static, - ACTIONS(8591), 1, - anon_sym_unsafe, - STATE(2106), 1, + ACTIONS(8891), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5562), 1, - aux_sym_using_directive_repeat1, - STATE(6249), 1, + STATE(4373), 1, sym_identifier, - STATE(7065), 1, + STATE(6519), 1, sym__name, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5564), 9, + STATE(5779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671367,79 +699535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206385] = 19, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8593), 1, - anon_sym_COMMA, - ACTIONS(8596), 1, - anon_sym_RPAREN, - STATE(4028), 1, - sym_type_argument_list, - STATE(6675), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5565), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3600), 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, - [206476] = 20, + [220184] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671462,24 +699558,23 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8893), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(6829), 1, + STATE(6519), 1, sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, + STATE(7204), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5566), 9, + STATE(5780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671512,7 +699607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206569] = 21, + [220276] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671533,28 +699628,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(8897), 1, anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3340), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3849), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3851), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5567), 9, + ACTIONS(8899), 6, + anon_sym_ref, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, + anon_sym_this, + anon_sym_scoped, + STATE(5781), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671564,16 +699647,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + aux_sym__parameter_type_with_modifiers_repeat1, + ACTIONS(8895), 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, anon_sym_into, anon_sym_join, @@ -671586,7 +699672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206664] = 19, + sym__identifier_token, + [220356] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671607,25 +699694,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8598), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8604), 1, - anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8902), 1, + anon_sym_RBRACK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4084), 1, - sym__simple_name, - STATE(4338), 1, + STATE(4373), 1, sym_identifier, - ACTIONS(8606), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(5568), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671635,7 +699722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8601), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -671658,7 +699745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206755] = 21, + [220448] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671679,28 +699766,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3291), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_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(5569), 9, + ACTIONS(8904), 1, + anon_sym_LBRACK, + ACTIONS(8907), 1, + aux_sym_preproc_if_token1, + STATE(6051), 1, + sym__attribute_list, + STATE(5934), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5783), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671710,16 +699785,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + aux_sym__class_declaration_initializer_repeat1, + 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, anon_sym_scoped, anon_sym_var, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -671732,7 +699811,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [206850] = 14, + sym__identifier_token, + [220531] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671753,17 +699833,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8608), 1, - anon_sym_using, - ACTIONS(3393), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5570), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, + sym_identifier, + STATE(6328), 1, + sym__name, + STATE(6609), 1, + sym_primary_constructor_base_type, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671773,15 +699859,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3395), 25, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -671798,8 +699882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [206931] = 20, + [220620] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671820,26 +699903,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(6986), 1, - sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5571), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671849,7 +699926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3660), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -671872,7 +699949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207024] = 19, + sym__identifier_token, + [220705] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671893,25 +699971,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8604), 1, - anon_sym_LPAREN, - ACTIONS(8610), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3558), 1, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, + aux_sym_preproc_if_token1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3967), 1, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6051), 1, + sym__attribute_list, + STATE(6656), 1, sym_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4084), 1, - sym__simple_name, - ACTIONS(8606), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(5572), 9, + STATE(5934), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671921,7 +699998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8613), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -671944,7 +700021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207115] = 20, + [220796] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671967,24 +700044,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(5875), 1, - aux_sym_using_directive_repeat1, - STATE(6974), 1, + STATE(6519), 1, sym__name, - ACTIONS(8585), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(4015), 3, + STATE(6799), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5573), 9, + STATE(5787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672017,7 +700091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207208] = 21, + [220885] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672038,27 +700112,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(8585), 1, - anon_sym_static, - ACTIONS(8616), 1, - anon_sym_unsafe, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(5573), 1, - aux_sym_using_directive_repeat1, - STATE(6189), 1, - sym_identifier, - STATE(7002), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5574), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672068,7 +700130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4090), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -672079,6 +700141,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, @@ -672091,7 +700156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207303] = 19, + sym__identifier_token, + [220966] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672112,24 +700178,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, + ACTIONS(3669), 1, anon_sym_COLON_COLON, - ACTIONS(3789), 1, - anon_sym_COMMA, - ACTIONS(6241), 1, + ACTIONS(6311), 1, anon_sym_LT, - ACTIONS(8552), 1, - anon_sym_EQ, - ACTIONS(8554), 1, - anon_sym_RPAREN, - STATE(4028), 1, + ACTIONS(8912), 1, + anon_sym_in, + STATE(4063), 1, sym_type_argument_list, - ACTIONS(3602), 4, + ACTIONS(3662), 4, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR, anon_sym_DOT, - STATE(5575), 9, + STATE(5789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672139,7 +700201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(3660), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -672163,7 +700225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [207394] = 21, + [221051] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672184,28 +700246,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(6831), 1, - sym__identifier_token, - ACTIONS(7865), 1, + ACTIONS(2733), 1, anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3314), 1, - sym__variable_designation, - STATE(3405), 1, - sym_parenthesized_variable_designation, - ACTIONS(3897), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(3899), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5576), 9, + STATE(5790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672215,16 +700258,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 21, + ACTIONS(2693), 30, anon_sym_alias, anon_sym_global, + anon_sym_ref, + anon_sym_delegate, anon_sym_file, + anon_sym_readonly, + anon_sym_in, + anon_sym_out, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, + anon_sym_this, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, + anon_sym_when, anon_sym_from, anon_sym_into, anon_sym_join, @@ -672237,7 +700288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207489] = 22, + sym__identifier_token, + [221128] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672260,26 +700312,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_COMMA, - ACTIONS(8620), 1, - anon_sym_RBRACE, - ACTIONS(8622), 1, - aux_sym_preproc_if_token1, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5740), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6576), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(6575), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5577), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672312,7 +700359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207586] = 21, + [221217] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672335,25 +700382,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8585), 1, - anon_sym_static, - ACTIONS(8624), 1, - anon_sym_unsafe, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5566), 1, - aux_sym_using_directive_repeat1, - STATE(6225), 1, + STATE(4373), 1, sym_identifier, - STATE(6981), 1, + STATE(6519), 1, sym__name, - STATE(4015), 3, + STATE(6744), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5578), 9, + STATE(5792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672386,7 +700429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207681] = 17, + [221306] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672407,22 +700450,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8626), 1, - anon_sym_EQ, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 6, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5579), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672432,7 +700476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -672455,8 +700499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [207768] = 21, + [221395] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672479,25 +700522,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8585), 1, - anon_sym_static, - ACTIONS(8628), 1, - anon_sym_unsafe, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(5571), 1, - aux_sym_using_directive_repeat1, - STATE(6246), 1, + STATE(4373), 1, sym_identifier, - STATE(6974), 1, + STATE(6519), 1, sym__name, - STATE(4015), 3, + STATE(7012), 1, + sym_attribute, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5580), 9, + STATE(5794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672530,7 +700569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [207863] = 17, + [221484] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672551,22 +700590,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8630), 1, - anon_sym_EQ, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 6, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5581), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672576,7 +700616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -672599,8 +700639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [207950] = 20, + [221573] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672623,23 +700662,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8632), 1, - anon_sym_RBRACK, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4264), 1, + STATE(4373), 1, sym_identifier, - STATE(6279), 1, + STATE(6519), 1, sym__name, - STATE(6874), 1, + STATE(7204), 1, sym_attribute, - STATE(4015), 3, + STATE(4096), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5582), 9, + STATE(5796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672672,7 +700709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208042] = 17, + [221662] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672693,21 +700730,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 5, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5583), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672717,7 +700756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -672740,8 +700779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [208128] = 20, + [221751] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672764,23 +700802,22 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8634), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(5024), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, + aux_sym_preproc_if_token1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(5783), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6051), 1, + sym__attribute_list, + STATE(6735), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5584), 9, + STATE(5934), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(5798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672813,7 +700850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208220] = 20, + [221842] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672836,23 +700873,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8636), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7771), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5585), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672885,7 +700920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208312] = 14, + [221932] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672906,16 +700941,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8640), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7759), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8642), 6, - anon_sym_ref, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_this, - anon_sym_scoped, - STATE(5586), 10, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6715), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672925,17 +700967,15 @@ 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(8638), 24, + ACTIONS(29), 22, 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, @@ -672950,8 +700990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [208392] = 20, + [222022] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672974,23 +701013,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8645), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7657), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5587), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673023,7 +701060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208484] = 20, + [222112] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673046,23 +701083,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8647), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8918), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5588), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673095,7 +701130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208576] = 20, + [222202] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673118,23 +701153,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8649), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8920), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5589), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673167,7 +701200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208668] = 20, + [222292] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673190,23 +701223,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8651), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7829), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5590), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673239,7 +701270,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208760] = 20, + [222382] = 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4699), 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, + [222466] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673262,23 +701360,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8653), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8924), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6417), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5591), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673311,7 +701407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208852] = 20, + [222556] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673334,23 +701430,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8655), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8926), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5592), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673383,7 +701477,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [208944] = 20, + [222646] = 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(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, + sym_preproc_region, + sym_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), 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, + [222722] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673406,23 +701563,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8657), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8928), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5593), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673455,7 +701610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209036] = 21, + [222812] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673478,24 +701633,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8622), 1, - aux_sym_preproc_if_token1, - ACTIONS(8659), 1, - anon_sym_RBRACE, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(5740), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6576), 1, + STATE(6628), 1, sym_identifier, - STATE(6950), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5594), 9, + STATE(6949), 1, + sym_using_variable_declarator, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673528,7 +701680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209130] = 20, + [222902] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673551,23 +701703,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8661), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7681), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5595), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673600,7 +701750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209222] = 20, + [222992] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673621,25 +701771,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(8663), 1, - anon_sym_RBRACK, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5596), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673649,7 +701793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4699), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -673672,7 +701816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209314] = 20, + sym__identifier_token, + [223076] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673695,23 +701840,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8665), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8930), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5597), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673744,7 +701887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209406] = 20, + [223166] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673765,25 +701908,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(8667), 1, - anon_sym_RBRACK, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5598), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673793,10 +701924,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4749), 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, @@ -673816,7 +701949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209498] = 20, + sym__identifier_token, + [223242] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673839,23 +701973,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8669), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, + anon_sym_LPAREN, + ACTIONS(8932), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5599), 9, + STATE(6851), 1, + sym__variable_designation, + STATE(5815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673888,7 +702020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209590] = 20, + [223332] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673911,23 +702043,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8671), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7835), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5600), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673960,7 +702090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209682] = 20, + [223422] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673981,24 +702111,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(7932), 1, - anon_sym_DOT, - ACTIONS(8431), 1, - anon_sym_LPAREN, - STATE(6929), 1, - sym_attribute_argument_list, - ACTIONS(8673), 2, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8914), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5601), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8934), 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(5817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674008,7 +702137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674031,8 +702160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [209774] = 20, + [223512] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674055,23 +702183,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8675), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8936), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5602), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674104,7 +702230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209866] = 21, + [223602] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674127,24 +702253,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8622), 1, - aux_sym_preproc_if_token1, - ACTIONS(8677), 1, - anon_sym_RBRACE, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8938), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(5740), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6576), 1, + STATE(6715), 1, sym_identifier, - STATE(6950), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5603), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674177,7 +702300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [209960] = 20, + [223692] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674200,23 +702323,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8679), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(7773), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5604), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674249,7 +702370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210052] = 20, + [223782] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674272,23 +702393,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8681), 1, - anon_sym_RBRACK, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8940), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5605), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674321,7 +702440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210144] = 17, + [223872] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674342,20 +702461,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8683), 1, - anon_sym_in, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5606), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7737), 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(5822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674365,7 +702487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674388,8 +702510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [210229] = 20, + [223962] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674410,24 +702531,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - STATE(3558), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8942), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(5684), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6933), 1, + STATE(6715), 1, sym_identifier, - STATE(6943), 1, - sym_type_parameter, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_out, - STATE(5607), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674437,7 +702557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674460,7 +702580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210320] = 19, + [224052] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674483,21 +702603,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7827), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6619), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5608), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674530,7 +702650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210409] = 15, + [224142] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674551,15 +702671,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4045), 1, - anon_sym_EQ_GT, - ACTIONS(5304), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(7833), 1, anon_sym_RPAREN, - ACTIONS(4043), 3, + ACTIONS(8914), 1, anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5609), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6715), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674569,7 +702697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4041), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674580,9 +702708,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, @@ -674595,8 +702720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [210490] = 19, + [224232] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674619,21 +702743,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8944), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6567), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5610), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674666,7 +702790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210579] = 17, + [224322] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674687,20 +702811,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - ACTIONS(8685), 1, - anon_sym_in, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(5611), 9, + 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, + sym__reserved_identifier, + STATE(6715), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674710,7 +702837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3600), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -674733,8 +702860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [210664] = 20, + [224412] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674755,24 +702881,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(5127), 1, + ACTIONS(4763), 5, anon_sym_LBRACK, - ACTIONS(8622), 1, aux_sym_preproc_if_token1, - STATE(2106), 1, - sym__reserved_identifier, - STATE(5740), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6576), 1, - sym_identifier, - STATE(6950), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5612), 9, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(5828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674782,10 +702897,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, @@ -674805,7 +702922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210755] = 19, + sym__identifier_token, + [224488] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674828,21 +702946,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7775), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6570), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5613), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674875,7 +702993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210844] = 19, + [224578] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674898,21 +703016,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7739), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6136), 1, - sym__name, - STATE(6425), 1, - sym_primary_constructor_base_type, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5614), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674945,7 +703063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [210933] = 20, + [224668] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674966,24 +703084,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - STATE(3558), 1, + 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(5684), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6568), 1, - sym_type_parameter, - STATE(6933), 1, + STATE(6715), 1, sym_identifier, - ACTIONS(5137), 2, - anon_sym_in, - anon_sym_out, - STATE(5615), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674993,7 +703110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -675016,7 +703133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211024] = 19, + [224758] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675039,21 +703156,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8946), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6797), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5616), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675086,7 +703203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211113] = 19, + [224848] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675109,21 +703226,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7777), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6699), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5617), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675156,7 +703273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211202] = 19, + [224938] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675179,21 +703296,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7667), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6598), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5618), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675226,7 +703343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211291] = 19, + [225028] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675249,21 +703366,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7675), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6534), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5619), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675296,7 +703413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211380] = 13, + [225118] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675317,9 +703434,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2649), 1, - anon_sym_LPAREN, - STATE(5620), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, + sym_identifier, + STATE(6665), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675329,22 +703458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2645), 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, @@ -675359,8 +703481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [211457] = 19, + [225204] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675383,21 +703504,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(7687), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6279), 1, - sym__name, - STATE(6874), 1, - sym_attribute, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5621), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675430,7 +703551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211546] = 20, + [225294] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675453,21 +703574,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7618), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8948), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5622), 9, + STATE(6793), 1, + sym__variable_designation, + STATE(5838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675500,7 +703621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211636] = 20, + [225384] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675521,23 +703642,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(7632), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8950), 1, + anon_sym_DOT, + ACTIONS(3977), 3, + anon_sym_COLON, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5623), 9, + anon_sym_LBRACE, + STATE(5839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675547,7 +703658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3975), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -675558,6 +703669,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, @@ -675570,7 +703684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211726] = 20, + sym__identifier_token, + [225462] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675593,21 +703708,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(7865), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8691), 1, + ACTIONS(8952), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(6715), 1, sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6756), 1, - sym__variable_designation, - STATE(5624), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675640,7 +703755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211816] = 20, + [225552] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675663,21 +703778,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(7797), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8693), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5625), 9, + STATE(5841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675710,7 +703825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211906] = 20, + [225642] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675733,21 +703848,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8695), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8954), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6199), 1, + STATE(6715), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5626), 9, + STATE(5842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675780,7 +703895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [211996] = 20, + [225732] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675803,21 +703918,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7483), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5627), 9, + STATE(6626), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675850,7 +703963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212086] = 20, + [225818] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675873,21 +703986,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8695), 1, + ACTIONS(7685), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6090), 1, + STATE(6715), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5628), 9, + STATE(5844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675920,7 +704033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212176] = 20, + [225908] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675943,21 +704056,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(8697), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5629), 9, + STATE(6385), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675990,7 +704101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212266] = 20, + [225994] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676013,21 +704124,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7578), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5630), 9, + STATE(6528), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676060,7 +704169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212356] = 20, + [226080] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676083,21 +704192,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7463), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8956), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5631), 9, + STATE(6741), 1, + sym__variable_designation, + STATE(5847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676130,7 +704239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212446] = 20, + [226170] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676153,21 +704262,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8699), 1, + ACTIONS(8958), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5632), 9, + STATE(5848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676200,7 +704309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212536] = 20, + [226260] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676223,21 +704332,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7693), 1, + ACTIONS(7669), 1, anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5633), 9, + STATE(5849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676270,7 +704379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212626] = 20, + [226350] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676293,21 +704402,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(7591), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8701), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5634), 9, + STATE(5850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676340,7 +704449,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212716] = 20, + [226440] = 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4745), 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, + [226516] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676363,21 +704535,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8703), 1, + ACTIONS(8960), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5635), 9, + STATE(5852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676410,7 +704582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212806] = 20, + [226606] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676433,21 +704605,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7638), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8962), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5636), 9, + STATE(6897), 1, + sym__variable_designation, + STATE(5853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676480,7 +704652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212896] = 20, + [226696] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676503,21 +704675,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7676), 1, + ACTIONS(7721), 1, anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5637), 9, + STATE(5854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676550,7 +704722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [212986] = 20, + [226786] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676573,21 +704745,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(7865), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8705), 1, + ACTIONS(8964), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(6715), 1, sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6635), 1, - sym__variable_designation, - STATE(5638), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676620,7 +704792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213076] = 20, + [226876] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676643,21 +704815,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8707), 1, + ACTIONS(8966), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5639), 9, + STATE(5856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676690,7 +704862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213166] = 20, + [226966] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676713,21 +704885,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7636), 1, + ACTIONS(7751), 1, anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5640), 9, + STATE(5857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676760,7 +704932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213256] = 20, + [227056] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676783,21 +704955,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7648), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8968), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5641), 9, + STATE(5858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676830,7 +705002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213346] = 18, + [227146] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676853,19 +705025,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(8970), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, + STATE(6715), 1, sym_identifier, - STATE(6444), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5642), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676898,7 +705072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213432] = 20, + [227236] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676921,21 +705095,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(8709), 1, + ACTIONS(8972), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5643), 9, + STATE(6819), 1, + sym__variable_designation, + STATE(5860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676968,7 +705142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213522] = 20, + [227326] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676991,21 +705165,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7642), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8974), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5644), 9, + STATE(5861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677038,7 +705212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213612] = 20, + [227416] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677061,21 +705235,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8711), 1, + ACTIONS(8976), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5645), 9, + STATE(5862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677108,7 +705282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213702] = 20, + [227506] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677129,23 +705303,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8983), 1, anon_sym_LPAREN, - ACTIONS(8713), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5646), 9, + ACTIONS(8980), 2, + anon_sym_static, + anon_sym_async, + STATE(5863), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677155,15 +705318,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + aux_sym__lambda_expression_init_repeat1, + ACTIONS(8978), 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, @@ -677178,7 +705345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213792] = 20, + sym__identifier_token, + [227584] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677201,21 +705369,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8715), 1, + ACTIONS(8985), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5647), 9, + STATE(5864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677248,7 +705416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213882] = 20, + [227674] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677271,21 +705439,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8717), 1, + ACTIONS(8987), 1, anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5648), 9, + STATE(5865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677318,7 +705486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [213972] = 20, + [227764] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677341,21 +705509,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - ACTIONS(8719), 1, - aux_sym_preproc_if_token3, - STATE(2106), 1, + ACTIONS(7865), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(5742), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6392), 1, + STATE(6715), 1, sym_identifier, - STATE(7187), 1, - sym_enum_member_declaration, - STATE(5649), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677388,71 +705556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214062] = 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(8721), 1, - anon_sym_DOT, - ACTIONS(3934), 3, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - STATE(5650), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3932), 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, - [214140] = 20, + [227854] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677475,21 +705579,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8723), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6285), 1, sym_identifier, - STATE(7383), 1, + STATE(6521), 1, + sym_tuple_pattern, + STATE(6944), 1, + sym_variable_declarator, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5651), 9, + STATE(5867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677522,7 +705626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214230] = 20, + [227944] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677545,21 +705649,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7695), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(8989), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5652), 9, + STATE(5868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677592,7 +705696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214320] = 20, + [228034] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677615,21 +705719,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(8725), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4373), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5653), 9, + STATE(6857), 1, + sym__name, + STATE(4096), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(5869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677662,7 +705764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214410] = 20, + [228120] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677685,21 +705787,21 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, + ACTIONS(7791), 1, + anon_sym_RPAREN, + ACTIONS(8914), 1, anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(8727), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6715), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5654), 9, + STATE(5870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677732,7 +705834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214500] = 20, + [228210] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677753,23 +705855,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6500), 1, - sym_identifier, - STATE(6513), 1, - sym_using_variable_declarator, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5655), 9, + 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, @@ -677779,7 +705877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -677802,7 +705900,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214590] = 20, + sym__identifier_token, + [228295] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677823,23 +705922,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8729), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5656), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677849,7 +705944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -677872,7 +705967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214680] = 20, + sym__identifier_token, + [228380] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677893,23 +705989,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8731), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5657), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677919,7 +706011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -677942,7 +706034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214770] = 20, + sym__identifier_token, + [228465] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677963,23 +706056,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8924), 1, anon_sym_LPAREN, - ACTIONS(8733), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(7224), 1, sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7536), 1, sym__lambda_parameters, - STATE(5658), 9, + STATE(7542), 1, + sym_tuple_pattern, + STATE(5874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677989,7 +706080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678012,7 +706103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214860] = 20, + [228552] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678033,23 +706124,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8735), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5659), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678059,7 +706146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678082,7 +706169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [214950] = 20, + sym__identifier_token, + [228637] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678103,23 +706191,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8737), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5660), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678129,7 +706213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678152,7 +706236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215040] = 20, + sym__identifier_token, + [228722] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678173,23 +706258,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(7465), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5661), 9, + 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(9001), 1, + anon_sym_SEMI, + STATE(5877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678199,7 +706280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678222,7 +706303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215130] = 20, + sym__identifier_token, + [228807] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678243,23 +706325,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8824), 1, sym__identifier_token, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(7865), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4150), 1, + sym__simple_name, + STATE(4369), 1, sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6703), 1, - sym__variable_designation, - STATE(5662), 9, + ACTIONS(8832), 2, + anon_sym_operator, + anon_sym_this, + STATE(5878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678269,7 +706348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8827), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678292,7 +706371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215220] = 20, + [228892] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678313,23 +706392,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8741), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5663), 9, + 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, @@ -678339,7 +706414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678362,7 +706437,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215310] = 20, + sym__identifier_token, + [228977] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678383,23 +706459,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7389), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5664), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678409,7 +706480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678432,7 +706503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215400] = 20, + sym__identifier_token, + [229060] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678453,23 +706525,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(7865), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6662), 1, - sym__variable_designation, - STATE(5665), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678479,7 +706546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678502,7 +706569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215490] = 18, + sym__identifier_token, + [229143] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678523,21 +706591,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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6232), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5666), 9, + 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(4077), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(5882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678547,7 +706612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678570,7 +706635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215576] = 20, + sym__identifier_token, + [229226] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678591,23 +706657,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(7650), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5667), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678617,7 +706679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678640,7 +706702,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215666] = 20, + sym__identifier_token, + [229311] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678661,23 +706724,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(9009), 1, anon_sym_LPAREN, - ACTIONS(8745), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5668), 9, + STATE(5884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678687,15 +706736,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9007), 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, @@ -678710,7 +706764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215756] = 20, + sym__identifier_token, + [229386] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678731,23 +706786,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(7608), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5669), 9, + 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(9011), 1, + anon_sym_DOT, + STATE(5885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678757,7 +706808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678780,7 +706831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215846] = 20, + sym__identifier_token, + [229471] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678801,23 +706853,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(7644), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5670), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678827,7 +706875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678850,7 +706898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [215936] = 20, + sym__identifier_token, + [229556] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678871,23 +706920,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(7385), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5671), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678897,7 +706942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678920,7 +706965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216026] = 20, + sym__identifier_token, + [229641] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678941,23 +706987,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(7427), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5672), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678967,7 +707009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -678990,7 +707032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216116] = 20, + sym__identifier_token, + [229726] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679011,23 +707054,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(7588), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5673), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679037,7 +707076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679060,7 +707099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216206] = 20, + sym__identifier_token, + [229811] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679081,23 +707121,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(7490), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5674), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679107,7 +707143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679130,7 +707166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216296] = 18, + sym__identifier_token, + [229896] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679151,21 +707188,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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6316), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5675), 9, + ACTIONS(4018), 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(9023), 1, + anon_sym_DOT, + STATE(5891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679175,7 +707210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679198,7 +707233,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216382] = 18, + sym__identifier_token, + [229981] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679219,21 +707255,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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6658), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5676), 9, + ACTIONS(4018), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679243,7 +707277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679266,7 +707300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216468] = 18, + sym__identifier_token, + [230066] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679287,21 +707322,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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(4264), 1, - sym_identifier, - STATE(6407), 1, - sym__name, - STATE(4015), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5677), 9, + ACTIONS(4018), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679311,7 +707344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679334,7 +707367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216554] = 14, + sym__identifier_token, + [230151] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679355,12 +707389,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8752), 1, - anon_sym_LPAREN, - ACTIONS(8749), 2, - anon_sym_static, - anon_sym_async, - STATE(5678), 10, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(7132), 1, + sym_identifier, + ACTIONS(9029), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679370,19 +707410,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(8747), 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, @@ -679397,8 +707433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [216632] = 20, + [230232] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679421,21 +707456,19 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(3897), 1, + sym_discard, + ACTIONS(8102), 1, anon_sym_LPAREN, - ACTIONS(8754), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(3463), 1, + sym_parenthesized_variable_designation, + STATE(3479), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5679), 9, + STATE(7227), 1, + sym__variable_designation, + STATE(5895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679468,7 +707501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216722] = 20, + [230319] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679489,23 +707522,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(7447), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5680), 9, + 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, @@ -679515,7 +707544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679538,7 +707567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216812] = 20, + sym__identifier_token, + [230404] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679559,23 +707589,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(7626), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5681), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679585,7 +707611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679608,7 +707634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216902] = 20, + sym__identifier_token, + [230489] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679629,23 +707656,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(8756), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5682), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679655,7 +707678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679678,7 +707701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [216992] = 20, + sym__identifier_token, + [230574] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679699,23 +707723,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(3831), 1, - sym_discard, - ACTIONS(7865), 1, + ACTIONS(9033), 1, anon_sym_LPAREN, - ACTIONS(8758), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(3286), 1, - sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6548), 1, - sym__variable_designation, - STATE(5683), 9, + STATE(5899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679725,15 +707735,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9031), 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, @@ -679748,7 +707763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217082] = 19, + sym__identifier_token, + [230649] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679769,22 +707785,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - STATE(3558), 1, + ACTIONS(8924), 1, + anon_sym_LPAREN, + STATE(2571), 1, sym__reserved_identifier, - STATE(5737), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6936), 1, + STATE(7156), 1, sym_identifier, - ACTIONS(8760), 2, - anon_sym_in, - anon_sym_out, - STATE(5684), 9, + STATE(7311), 1, + sym_parameter_list, + STATE(7471), 1, + sym_tuple_pattern, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679794,7 +707809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679817,7 +707832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217170] = 20, + [230736] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679838,23 +707853,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(7604), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5685), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679864,7 +707874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -679887,7 +707897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217260] = 20, + sym__identifier_token, + [230819] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679908,23 +707919,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(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(9037), 1, anon_sym_LPAREN, - ACTIONS(8762), 1, - anon_sym_RPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6493), 1, - sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5686), 9, + STATE(5902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679934,15 +707931,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9035), 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, @@ -679957,7 +707959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217350] = 20, + sym__identifier_token, + [230894] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679980,21 +707983,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7590), 1, - anon_sym_RPAREN, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6493), 1, + STATE(6784), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5687), 9, + ACTIONS(9039), 4, + anon_sym_Cdecl, + anon_sym_Stdcall, + anon_sym_Thiscall, + anon_sym_Fastcall, + STATE(5903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680027,7 +708025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [217440] = 18, + [230975] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680048,19 +708046,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8764), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9041), 1, anon_sym_DOT, - STATE(5688), 9, + STATE(5904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680070,7 +708068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680094,7 +708092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217525] = 18, + [231060] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680115,19 +708113,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4423), 1, + ACTIONS(4077), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8766), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9041), 1, anon_sym_DOT, - STATE(5689), 9, + STATE(5905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680137,7 +708135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680161,7 +708159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217610] = 18, + [231145] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680182,19 +708180,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4443), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8768), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9043), 1, anon_sym_DOT, - STATE(5690), 9, + STATE(5906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680204,7 +708202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680228,7 +708226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217695] = 18, + [231230] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680249,19 +708247,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8770), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9045), 1, anon_sym_DOT, - STATE(5691), 9, + STATE(5907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680271,7 +708269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680295,7 +708293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217780] = 18, + [231315] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680316,19 +708314,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8914), 1, + anon_sym_COMMA, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8772), 1, - anon_sym_DOT, - STATE(5692), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(7001), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680338,7 +708338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680361,8 +708361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [217865] = 18, + [231402] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680383,19 +708382,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4423), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8774), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(6911), 1, anon_sym_DOT, - STATE(5693), 9, + ACTIONS(9047), 1, + anon_sym_SEMI, + STATE(5909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680405,7 +708404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680429,7 +708428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [217950] = 18, + [231487] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680450,19 +708449,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4102), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8776), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9049), 1, anon_sym_DOT, - STATE(5694), 9, + STATE(5910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680472,7 +708471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680496,7 +708495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [218035] = 18, + [231572] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680517,19 +708516,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(4018), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4755), 1, anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(6680), 1, anon_sym_STAR, - ACTIONS(8778), 1, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9003), 1, anon_sym_DOT, - STATE(5695), 9, + STATE(5911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680539,7 +708538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4016), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680563,7 +708562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [218120] = 19, + [231657] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680586,19 +708585,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6608), 1, - sym_identifier, - STATE(7383), 1, + STATE(7311), 1, sym_parameter_list, - STATE(7499), 1, + STATE(7626), 1, + sym_identifier, + STATE(7765), 1, sym__lambda_parameters, - STATE(5696), 9, + STATE(5912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680631,7 +708628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [218207] = 18, + [231741] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680652,19 +708649,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8780), 1, - anon_sym_DOT, - STATE(5697), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(7626), 1, + sym_identifier, + STATE(5913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680674,7 +708671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680697,8 +708694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218292] = 17, + [231825] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680719,18 +708715,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(4713), 1, + sym_discard, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(4655), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5698), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6810), 1, + sym_tuple_pattern, + STATE(6951), 1, + sym_identifier, + STATE(5914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680740,7 +708737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680763,8 +708760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218375] = 13, + [231909] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680785,9 +708781,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8784), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(5699), 9, + 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, @@ -680797,20 +708803,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8782), 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, @@ -680825,8 +708826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218450] = 18, + [231993] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680847,19 +708847,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8786), 1, - anon_sym_DOT, - STATE(5700), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6527), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7401), 1, + sym__lambda_parameters, + STATE(5916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680869,7 +708869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680892,8 +708892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218535] = 18, + [232077] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680914,19 +708913,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8788), 1, - anon_sym_DOT, - STATE(5701), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680936,7 +708935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -680959,8 +708958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218620] = 18, + [232161] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680981,19 +708979,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8790), 1, - anon_sym_DOT, - STATE(5702), 9, + ACTIONS(9051), 1, + sym_discard, + STATE(2175), 1, + sym__reserved_identifier, + STATE(7188), 1, + sym_tuple_pattern, + STATE(7191), 1, + sym_identifier, + STATE(5918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681003,7 +709001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681026,8 +709024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218705] = 18, + [232245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681048,19 +709045,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8792), 1, - anon_sym_DOT, - STATE(5703), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6310), 1, + sym_identifier, + STATE(6521), 1, + sym_tuple_pattern, + STATE(6944), 1, + sym_variable_declarator, + STATE(5919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681070,7 +709067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681093,8 +709090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218790] = 18, + [232329] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681115,19 +709111,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8794), 1, - anon_sym_DOT, - STATE(5704), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6692), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7536), 1, + sym__lambda_parameters, + STATE(5920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681137,7 +709133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681160,8 +709156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218875] = 18, + [232413] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681182,19 +709177,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8796), 1, - anon_sym_DOT, - STATE(5705), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6477), 1, + sym_identifier, + STATE(6521), 1, + sym_tuple_pattern, + STATE(6944), 1, + sym_variable_declarator, + STATE(5921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681204,7 +709199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681227,8 +709222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [218960] = 18, + [232497] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681249,19 +709243,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8792), 1, - anon_sym_DOT, - STATE(5706), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6486), 1, + sym_tuple_pattern, + STATE(6491), 1, + sym_identifier, + STATE(6900), 1, + sym_variable_declarator, + STATE(5922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681271,7 +709265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681294,8 +709288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219045] = 18, + [232581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681316,19 +709309,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8794), 1, - anon_sym_DOT, - STATE(5707), 9, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6655), 1, + sym_identifier, + STATE(7311), 1, + sym_parameter_list, + STATE(7401), 1, + sym__lambda_parameters, + STATE(5923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681338,7 +709331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681361,8 +709354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219130] = 18, + [232665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681383,19 +709375,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(8336), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8798), 1, - anon_sym_DOT, - STATE(5708), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681405,7 +709397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681428,8 +709420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219215] = 18, + [232749] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681450,19 +709441,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, - anon_sym_DOT, - ACTIONS(8800), 1, - anon_sym_SEMI, - STATE(5709), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681472,7 +709461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681495,8 +709484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219300] = 16, + [232830] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681519,16 +709507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6789), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8802), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5710), 9, + STATE(2387), 1, + sym__simple_name, + STATE(5926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681561,7 +709548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219381] = 18, + [232911] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681582,19 +709569,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8776), 1, - anon_sym_DOT, - STATE(5711), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681604,7 +709589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681627,8 +709612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219466] = 17, + [232992] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681649,18 +709633,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(4423), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5712), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681670,7 +709653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681693,8 +709676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219549] = 18, + [233073] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681715,19 +709697,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, - anon_sym_DOT, - ACTIONS(8804), 1, - anon_sym_SEMI, - STATE(5713), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681737,7 +709717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681760,8 +709740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [219634] = 19, + [233154] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681782,21 +709761,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(3875), 1, sym__identifier_token, - ACTIONS(8695), 1, - anon_sym_LPAREN, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6993), 1, + STATE(3141), 1, sym_identifier, - STATE(7248), 1, - sym_tuple_pattern, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5714), 9, + STATE(3153), 1, + sym__simple_name, + STATE(3156), 1, + sym_generic_name, + STATE(3177), 1, + sym__reserved_identifier, + STATE(5930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681806,7 +709781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681829,7 +709804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219721] = 19, + [233235] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681850,21 +709825,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4058), 1, sym__identifier_token, - ACTIONS(3831), 1, - sym_discard, - ACTIONS(7865), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2361), 1, sym__reserved_identifier, - STATE(3286), 1, + STATE(2366), 1, sym_identifier, - STATE(3405), 1, - sym_parenthesized_variable_designation, - STATE(6939), 1, - sym__variable_designation, - STATE(5715), 9, + STATE(2389), 1, + sym_generic_name, + STATE(2412), 1, + sym__simple_name, + STATE(5931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681874,7 +709845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4060), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681897,7 +709868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [219808] = 18, + [233316] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681918,19 +709889,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8796), 1, - anon_sym_DOT, - STATE(5716), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681940,7 +709909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -681963,8 +709932,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [233397] = 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(25), 1, sym__identifier_token, - [219893] = 18, + 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, + sym_preproc_region, + sym_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, + [233478] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681985,19 +710017,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, + ACTIONS(4701), 2, anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8806), 1, - anon_sym_DOT, - STATE(5717), 9, + aux_sym_preproc_if_token1, + STATE(5934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682007,10 +710030,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(4699), 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, @@ -682031,7 +710056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [219978] = 18, + [233551] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682052,19 +710077,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8808), 1, - anon_sym_DOT, - STATE(5718), 9, + ACTIONS(9053), 1, + sym__identifier_token, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, + sym_identifier, + STATE(2236), 1, + sym__simple_name, + STATE(2241), 1, + sym__reserved_identifier, + STATE(5935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682074,7 +710097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682097,8 +710120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220063] = 19, + [233632] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682119,21 +710141,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(2967), 1, sym__identifier_token, - ACTIONS(8695), 1, - anon_sym_LPAREN, - STATE(2525), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(6952), 1, + STATE(3991), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7466), 1, - sym_tuple_pattern, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5719), 9, + STATE(4109), 1, + sym_generic_name, + STATE(4150), 1, + sym__simple_name, + STATE(5936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682143,7 +710161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(2971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682166,7 +710184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220150] = 13, + [233713] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682187,9 +710205,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8812), 1, - anon_sym_LPAREN, - STATE(5720), 9, + ACTIONS(9057), 1, + sym__identifier_token, + STATE(2624), 1, + sym_identifier, + STATE(2663), 1, + sym__simple_name, + STATE(2722), 1, + sym_generic_name, + STATE(2849), 1, + sym__reserved_identifier, + STATE(5937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682199,20 +710225,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8810), 28, + ACTIONS(9059), 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, @@ -682227,8 +710248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220225] = 18, + [233794] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682249,19 +710269,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8814), 1, - anon_sym_DOT, - STATE(5721), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682271,7 +710289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(3863), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682294,8 +710312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220310] = 16, + [233875] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682318,16 +710335,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6840), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8816), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(5722), 9, + STATE(2295), 1, + sym__simple_name, + STATE(5939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682360,7 +710376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220391] = 17, + [233956] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682381,75 +710397,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(4003), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5723), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3948), 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, - [220474] = 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(8820), 1, - anon_sym_LPAREN, - STATE(5724), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682459,20 +710417,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8818), 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, @@ -682487,8 +710440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220549] = 18, + [234037] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682509,85 +710461,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4637), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8822), 1, - anon_sym_DOT, - STATE(5725), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3948), 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(9053), 1, sym__identifier_token, - [220634] = 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(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(4637), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(5726), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682597,7 +710481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682620,8 +710504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220717] = 18, + [234118] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682642,20 +710525,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8598), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4084), 1, - sym__simple_name, - STATE(4338), 1, + STATE(2184), 1, sym_identifier, - ACTIONS(8606), 2, - anon_sym_operator, - anon_sym_this, - STATE(5727), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2339), 1, + sym__simple_name, + STATE(5942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682665,7 +710545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8601), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682688,7 +710568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220802] = 18, + [234199] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682709,19 +710589,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(4655), 1, - anon_sym_DASH_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(8764), 1, - anon_sym_DOT, - STATE(5728), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682731,7 +710609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3948), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682754,8 +710632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [220887] = 18, + [234280] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682776,19 +710653,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(7070), 1, - sym__lambda_parameters, - STATE(7383), 1, - sym_parameter_list, - STATE(7472), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5729), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2266), 1, + sym__simple_name, + STATE(5944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682798,7 +710673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682821,7 +710696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [220971] = 18, + [234361] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682842,19 +710717,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, - ACTIONS(4717), 1, - sym_discard, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6512), 1, + STATE(2569), 1, sym_identifier, - STATE(6762), 1, - sym_tuple_pattern, - STATE(5730), 9, + STATE(2603), 1, + sym__simple_name, + STATE(2635), 1, + sym_generic_name, + STATE(2645), 1, + sym__reserved_identifier, + STATE(5945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682864,7 +710737,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, @@ -682887,7 +710760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221055] = 18, + [234442] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682908,19 +710781,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6269), 1, + STATE(6258), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7447), 1, - sym__lambda_parameters, - STATE(5731), 9, + ACTIONS(9065), 2, + anon_sym_class, + anon_sym_struct, + STATE(5946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682930,7 +710800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -682953,7 +710823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221139] = 18, + [234521] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682974,19 +710844,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6100), 1, + STATE(6265), 1, sym_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6807), 1, - sym_variable_declarator, - STATE(5732), 9, + ACTIONS(9067), 2, + anon_sym_class, + anon_sym_struct, + STATE(5947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682996,7 +710863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683019,7 +710886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221223] = 18, + [234600] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683042,17 +710909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(9069), 1, + anon_sym_operator, + ACTIONS(9071), 1, + anon_sym_this, + STATE(2175), 1, sym__reserved_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6330), 1, + STATE(6333), 1, sym_identifier, - STATE(6807), 1, - sym_variable_declarator, - STATE(5733), 9, + STATE(5948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683085,7 +710950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221307] = 18, + [234681] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683108,17 +710973,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6338), 1, - sym_tuple_pattern, - STATE(6343), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(6676), 1, - sym_variable_declarator, - STATE(5734), 9, + STATE(2328), 1, + sym__simple_name, + STATE(5949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683151,7 +711014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221391] = 18, + [234762] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683174,17 +711037,14 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6320), 1, - sym_tuple_pattern, - STATE(6330), 1, + STATE(7154), 1, sym_identifier, - STATE(6676), 1, - sym_variable_declarator, - STATE(5735), 9, + ACTIONS(8914), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(5950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683217,7 +711077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221475] = 18, + [234841] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683238,19 +711098,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9073), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - ACTIONS(8824), 1, - sym_discard, - STATE(2106), 1, - sym__reserved_identifier, - STATE(7027), 1, + STATE(2248), 1, sym_identifier, - STATE(7037), 1, - sym_tuple_pattern, - STATE(5736), 9, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2263), 1, + sym__simple_name, + STATE(2269), 1, + sym_generic_name, + STATE(5951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683260,7 +711118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9075), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683283,7 +711141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221559] = 14, + [234922] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683304,11 +711162,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_LBRACK, - STATE(5876), 1, - sym_attribute_list, - STATE(5737), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683318,13 +711181,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(4757), 25, + ACTIONS(6825), 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, @@ -683344,8 +711204,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [235001] = 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(9053), 1, sym__identifier_token, - [221635] = 18, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9055), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [235082] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683368,17 +711291,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6485), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7447), 1, - sym__lambda_parameters, - STATE(5738), 9, + STATE(2398), 1, + sym__simple_name, + STATE(5954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683411,7 +711332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221719] = 18, + [235163] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683432,19 +711353,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, + sym_identifier, + STATE(2241), 1, sym__reserved_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7472), 1, + STATE(2289), 1, + sym__simple_name, + STATE(5955), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9055), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [235244] = 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(3788), 1, + sym__identifier_token, + STATE(3176), 1, sym_identifier, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5739), 9, + STATE(3225), 1, + sym__reserved_identifier, + STATE(3246), 1, + sym_generic_name, + STATE(3472), 1, + sym__simple_name, + STATE(5956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683454,7 +711437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3790), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683477,7 +711460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221803] = 18, + [235325] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683500,17 +711483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5737), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6775), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5740), 9, + STATE(2916), 1, + sym__simple_name, + STATE(5957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683543,7 +711524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221887] = 18, + [235406] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683566,17 +711547,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7447), 1, - sym__lambda_parameters, - STATE(7472), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5741), 9, + STATE(2188), 1, + sym__simple_name, + STATE(5958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683609,7 +711588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [221971] = 18, + [235487] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683632,17 +711611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(5127), 1, - anon_sym_LBRACK, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5737), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(5876), 1, - sym_attribute_list, - STATE(6397), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5742), 9, + STATE(2321), 1, + sym__simple_name, + STATE(5959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683675,7 +711652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222055] = 18, + [235568] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683696,19 +711673,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - ACTIONS(8122), 1, - anon_sym_LPAREN, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6338), 1, - sym_tuple_pattern, - STATE(6343), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(6634), 1, - sym_variable_declarator, - STATE(5743), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2323), 1, + sym__simple_name, + STATE(5960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683718,7 +711693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683741,7 +711716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222139] = 18, + [235649] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683764,17 +711739,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(2106), 1, + ACTIONS(9079), 1, + anon_sym_operator, + ACTIONS(9081), 1, + anon_sym_this, + STATE(2175), 1, sym__reserved_identifier, - STATE(6488), 1, + STATE(6336), 1, sym_identifier, - STATE(7383), 1, - sym_parameter_list, - STATE(7499), 1, - sym__lambda_parameters, - STATE(5744), 9, + STATE(5961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683807,7 +711780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222223] = 17, + [235730] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683830,15 +711803,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2208), 1, + STATE(2363), 1, sym__simple_name, - STATE(5745), 9, + STATE(5962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683871,7 +711844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222304] = 16, + [235811] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683892,16 +711865,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8829), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7268), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8835), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5746), 9, + STATE(2266), 1, + sym__simple_name, + STATE(5963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683911,7 +711885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8832), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683934,7 +711908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222383] = 17, + [235892] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683955,17 +711929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2173), 1, + STATE(2241), 1, sym__reserved_identifier, - STATE(2208), 1, + STATE(4107), 1, sym__simple_name, - STATE(5747), 9, + STATE(4369), 1, + sym_identifier, + STATE(5964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683975,7 +711949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -683998,7 +711972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222464] = 17, + [235973] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684019,17 +711993,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2874), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(2878), 1, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2292), 1, sym__simple_name, - STATE(2923), 1, - sym_generic_name, - STATE(5748), 9, + STATE(5965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684039,7 +712013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684062,7 +712036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222545] = 17, + [236054] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684083,17 +712057,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8841), 1, + ACTIONS(9057), 1, sym__identifier_token, - STATE(2281), 1, + STATE(2624), 1, sym_identifier, - STATE(2299), 1, + STATE(2664), 1, sym__simple_name, - STATE(2344), 1, + STATE(2722), 1, sym_generic_name, - STATE(2573), 1, + STATE(2849), 1, sym__reserved_identifier, - STATE(5749), 9, + STATE(5966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684103,7 +712077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8843), 22, + ACTIONS(9059), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684126,7 +712100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222626] = 17, + [236135] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684147,17 +712121,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2846), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2874), 1, - sym_identifier, - STATE(2923), 1, + STATE(2181), 1, sym_generic_name, - STATE(2947), 1, + STATE(2184), 1, + sym_identifier, + STATE(2289), 1, sym__simple_name, - STATE(5750), 9, + STATE(5967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684167,7 +712141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684190,7 +712164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222707] = 17, + [236216] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684211,17 +712185,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(4050), 1, sym__identifier_token, - STATE(3109), 1, - sym__reserved_identifier, - STATE(3141), 1, + STATE(4314), 1, sym_identifier, - STATE(3199), 1, + STATE(4323), 1, + sym__reserved_identifier, + STATE(4364), 1, sym__simple_name, - STATE(3222), 1, + STATE(4403), 1, sym_generic_name, - STATE(5751), 9, + STATE(5968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684231,7 +712205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 22, + ACTIONS(4052), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684254,7 +712228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222788] = 17, + [236297] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684275,17 +712249,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3109), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3141), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(3198), 1, + STATE(2323), 1, sym__simple_name, - STATE(3222), 1, - sym_generic_name, - STATE(5752), 9, + STATE(5969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684295,7 +712269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684318,7 +712292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222869] = 17, + [236378] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684339,17 +712313,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9083), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, + STATE(4109), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2243), 1, + STATE(4150), 1, sym__simple_name, - STATE(5753), 9, + STATE(5567), 1, + sym__reserved_identifier, + STATE(6278), 1, + sym_identifier, + STATE(5970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684359,7 +712333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9085), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684382,7 +712356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [222950] = 17, + [236459] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684403,17 +712377,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2173), 1, - sym__reserved_identifier, - STATE(2214), 1, + STATE(2194), 1, sym__simple_name, - STATE(5754), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(5971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684423,7 +712397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684446,7 +712420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223031] = 17, + [236540] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684469,15 +712443,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2128), 1, + STATE(2236), 1, sym__simple_name, - STATE(5755), 9, + STATE(5972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684510,7 +712484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223112] = 16, + [236621] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684531,16 +712505,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8829), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7393), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8835), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5756), 9, + STATE(2325), 1, + sym__simple_name, + STATE(5973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684550,7 +712525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8832), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684573,7 +712548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223191] = 16, + [236702] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684594,16 +712569,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6072), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8845), 2, - anon_sym_class, - anon_sym_struct, - STATE(5757), 9, + STATE(2196), 1, + sym__simple_name, + STATE(2241), 1, + sym__reserved_identifier, + STATE(5974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684613,7 +712589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684636,7 +712612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223270] = 17, + [236783] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684657,17 +712633,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8847), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2338), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(2347), 1, + STATE(2187), 1, sym__simple_name, - STATE(2359), 1, + STATE(2241), 1, sym__reserved_identifier, - STATE(2368), 1, - sym_generic_name, - STATE(5758), 9, + STATE(5975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684677,7 +712653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8849), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684700,7 +712676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223351] = 16, + [236864] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684721,16 +712697,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6066), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8851), 2, - anon_sym_class, - anon_sym_struct, - STATE(5759), 9, + STATE(2199), 1, + sym__simple_name, + STATE(2241), 1, + sym__reserved_identifier, + STATE(5976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684740,7 +712717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684763,7 +712740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223430] = 17, + [236945] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684786,15 +712763,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2329), 1, + STATE(2326), 1, sym__simple_name, - STATE(5760), 9, + STATE(5977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684827,7 +712804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223511] = 17, + [237026] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684848,17 +712825,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2958), 1, sym_identifier, - STATE(2125), 1, + STATE(2985), 1, + sym_generic_name, + STATE(3098), 1, sym__simple_name, - STATE(5761), 9, + STATE(3177), 1, + sym__reserved_identifier, + STATE(5978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684868,7 +712845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684891,7 +712868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223592] = 17, + [237107] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684912,17 +712889,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(2967), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2173), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(2181), 1, + STATE(3991), 1, + sym_identifier, + STATE(4107), 1, sym__simple_name, - STATE(5762), 9, + STATE(4109), 1, + sym_generic_name, + STATE(5979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684932,7 +712909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(2971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684955,7 +712932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223673] = 17, + [237188] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684976,17 +712953,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2874), 1, - sym_identifier, - STATE(2923), 1, - sym_generic_name, - STATE(2989), 1, - sym__simple_name, - STATE(3123), 1, + ACTIONS(9087), 1, + anon_sym_RBRACE, + STATE(2175), 1, sym__reserved_identifier, - STATE(5763), 9, + STATE(6780), 1, + sym_with_initializer, + STATE(7482), 1, + sym_identifier, + STATE(5980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684996,7 +712973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685019,7 +712996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223754] = 17, + [237269] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685040,17 +713017,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8853), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2178), 1, - sym_identifier, - STATE(2188), 1, - sym__reserved_identifier, - STATE(2201), 1, + STATE(2181), 1, sym_generic_name, - STATE(2202), 1, + STATE(2571), 1, + sym__reserved_identifier, + STATE(4150), 1, sym__simple_name, - STATE(5764), 9, + STATE(6331), 1, + sym_identifier, + STATE(5981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685060,7 +713037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8855), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685083,7 +713060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223835] = 17, + [237350] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685104,17 +713081,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - ACTIONS(8857), 1, - anon_sym_RBRACE, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6517), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5765), 9, + STATE(2193), 1, + sym__simple_name, + STATE(2241), 1, + sym__reserved_identifier, + STATE(5982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685124,7 +713101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685147,7 +713124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223916] = 17, + [237431] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685168,17 +713145,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(4177), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(4197), 1, - sym_identifier, - STATE(4376), 1, + STATE(2181), 1, sym_generic_name, - STATE(4670), 1, + STATE(2184), 1, + sym_identifier, + STATE(2408), 1, sym__simple_name, - STATE(5766), 9, + STATE(5983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685188,7 +713165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685211,7 +713188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [223997] = 17, + [237512] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685232,17 +713209,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9083), 1, sym__identifier_token, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6539), 1, + STATE(3991), 1, sym_identifier, - STATE(5767), 9, + STATE(4107), 1, + sym__simple_name, + STATE(4109), 1, + sym_generic_name, + STATE(5567), 1, + sym__reserved_identifier, + STATE(5984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685252,7 +713229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9085), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685275,7 +713252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224078] = 17, + [237593] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685296,17 +713273,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, + STATE(3176), 1, + sym_identifier, + STATE(3177), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(3246), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2127), 1, + STATE(3286), 1, sym__simple_name, - STATE(5768), 9, + STATE(5985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685316,7 +713293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685339,7 +713316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224159] = 17, + [237674] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685360,17 +713337,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(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2304), 1, - sym__simple_name, - STATE(5769), 9, + ACTIONS(5132), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685380,10 +713350,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5130), 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, @@ -685403,7 +713375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224240] = 17, + sym__identifier_token, + [237747] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685426,15 +713399,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6539), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5770), 9, + STATE(2327), 1, + sym__simple_name, + STATE(5987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685467,7 +713440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224321] = 17, + [237828] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685488,17 +713461,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, - sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2146), 1, - sym__simple_name, - STATE(2173), 1, - sym__reserved_identifier, - STATE(5771), 9, + ACTIONS(4955), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(5988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685508,10 +713474,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(4953), 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, @@ -685531,7 +713499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224402] = 17, + sym__identifier_token, + [237901] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685552,17 +713521,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(3141), 1, sym_identifier, - STATE(2256), 1, + STATE(3156), 1, + sym_generic_name, + STATE(3177), 1, + sym__reserved_identifier, + STATE(3336), 1, sym__simple_name, - STATE(5772), 9, + STATE(5989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685572,7 +713541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685595,7 +713564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224483] = 17, + [237982] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685616,17 +713585,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2281), 1, - sym_identifier, - STATE(2286), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(2175), 1, sym__reserved_identifier, - STATE(2305), 1, - sym__simple_name, - STATE(2344), 1, - sym_generic_name, - STATE(5773), 9, + STATE(6983), 1, + sym_identifier, + STATE(5990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685636,7 +713605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685659,7 +713628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224564] = 17, + [238063] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685680,17 +713649,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4058), 1, sym__identifier_token, - ACTIONS(8859), 1, - anon_sym_RBRACE, - STATE(2106), 1, + STATE(2361), 1, sym__reserved_identifier, - STATE(6685), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(2366), 1, sym_identifier, - STATE(5774), 9, + STATE(2389), 1, + sym_generic_name, + STATE(3720), 1, + sym__simple_name, + STATE(5991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685700,7 +713669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4060), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685723,7 +713692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224645] = 17, + [238144] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685746,15 +713715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8861), 1, - anon_sym_operator, - ACTIONS(8863), 1, - anon_sym_this, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6134), 1, + STATE(2181), 1, + sym_generic_name, + STATE(4107), 1, + sym__simple_name, + STATE(4369), 1, sym_identifier, - STATE(5775), 9, + STATE(5992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685787,7 +713756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224726] = 17, + [238225] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685808,17 +713777,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3558), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3967), 1, - sym_identifier, - STATE(3999), 1, + STATE(2181), 1, sym_generic_name, - STATE(4036), 1, + STATE(2184), 1, + sym_identifier, + STATE(2382), 1, sym__simple_name, - STATE(5776), 9, + STATE(5993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685828,7 +713797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685851,7 +713820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224807] = 17, + [238306] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685872,17 +713841,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2874), 1, - sym_identifier, - STATE(2923), 1, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, sym_generic_name, - STATE(2947), 1, + STATE(2184), 1, + sym_identifier, + STATE(2410), 1, sym__simple_name, - STATE(3123), 1, - sym__reserved_identifier, - STATE(5777), 9, + STATE(5994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685892,7 +713861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685915,7 +713884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224888] = 17, + [238387] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685936,17 +713905,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8865), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3967), 1, - sym_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4084), 1, - sym__simple_name, - STATE(5220), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + STATE(2175), 1, sym__reserved_identifier, - STATE(5778), 9, + STATE(6983), 1, + sym_identifier, + STATE(5995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685956,7 +713925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8867), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -685979,7 +713948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [224969] = 17, + [238468] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686000,17 +713969,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(3861), 1, sym__identifier_token, - STATE(2815), 1, + STATE(2900), 1, sym_identifier, - STATE(2826), 1, + STATE(2904), 1, sym__reserved_identifier, - STATE(2837), 1, - sym__simple_name, - STATE(2873), 1, + STATE(2929), 1, sym_generic_name, - STATE(5779), 9, + STATE(2947), 1, + sym__simple_name, + STATE(5996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686020,7 +713989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 22, + ACTIONS(3863), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686043,7 +714012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225050] = 17, + [238549] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686066,15 +714035,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8869), 1, - anon_sym_RBRACE, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6644), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5780), 9, + STATE(2306), 1, + sym__simple_name, + STATE(5997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686107,7 +714076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225131] = 17, + [238630] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686128,17 +714097,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - ACTIONS(8871), 1, - anon_sym_RBRACE, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6737), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5781), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2268), 1, + sym__simple_name, + STATE(5998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686148,7 +714117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686171,7 +714140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225212] = 17, + [238711] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686192,17 +714161,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(9083), 1, sym__identifier_token, - STATE(2281), 1, + STATE(3991), 1, sym_identifier, - STATE(2286), 1, - sym__reserved_identifier, - STATE(2344), 1, + STATE(4109), 1, sym_generic_name, - STATE(3723), 1, + STATE(4150), 1, sym__simple_name, - STATE(5782), 9, + STATE(5567), 1, + sym__reserved_identifier, + STATE(5999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686212,7 +714181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 22, + ACTIONS(9085), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686235,7 +714204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225293] = 17, + [238792] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686258,15 +714227,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2244), 1, + STATE(2292), 1, sym__simple_name, - STATE(5783), 9, + STATE(6000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686299,7 +714268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225374] = 17, + [238873] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686320,17 +714289,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9089), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2366), 1, sym_identifier, - STATE(2312), 1, + STATE(2389), 1, + sym_generic_name, + STATE(2412), 1, sym__simple_name, - STATE(5784), 9, + STATE(2643), 1, + sym__reserved_identifier, + STATE(6001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686340,7 +714309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9091), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686363,38 +714332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225455] = 17, - ACTIONS(3), 1, + [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(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - STATE(2106), 1, + STATE(6452), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6935), 1, sym_identifier, - STATE(2285), 1, - sym__simple_name, - STATE(5785), 9, + STATE(6002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686404,7 +714373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686427,7 +714396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225536] = 17, + [239035] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686448,17 +714417,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4050), 1, sym__identifier_token, - STATE(2106), 1, + STATE(4314), 1, + sym_identifier, + STATE(4323), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(4403), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2334), 1, + STATE(4550), 1, sym__simple_name, - STATE(5786), 9, + STATE(6003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686468,7 +714437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4052), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686491,7 +714460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225617] = 17, + [239116] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686514,15 +714483,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2276), 1, + STATE(2331), 1, sym__simple_name, - STATE(5787), 9, + STATE(6004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686555,7 +714524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225698] = 17, + [239197] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686576,17 +714545,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2119), 1, + STATE(2241), 1, + sym__reserved_identifier, + STATE(4150), 1, sym__simple_name, - STATE(5788), 9, + STATE(4369), 1, + sym_identifier, + STATE(6005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686596,7 +714565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686619,7 +714588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225779] = 17, + [239278] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686640,17 +714609,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8865), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3967), 1, - sym_identifier, - STATE(3999), 1, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, sym_generic_name, - STATE(4036), 1, + STATE(4150), 1, sym__simple_name, - STATE(5220), 1, - sym__reserved_identifier, - STATE(5789), 9, + STATE(4369), 1, + sym_identifier, + STATE(6006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686660,7 +714629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8867), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686683,7 +714652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225860] = 17, + [239359] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686704,17 +714673,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3123), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3141), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(3199), 1, + STATE(2332), 1, sym__simple_name, - STATE(3222), 1, - sym_generic_name, - STATE(5790), 9, + STATE(6007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686724,7 +714693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686747,7 +714716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [225941] = 17, + [239440] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686768,17 +714737,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(4058), 1, sym__identifier_token, - STATE(2815), 1, - sym_identifier, - STATE(2826), 1, + STATE(2361), 1, sym__reserved_identifier, - STATE(2873), 1, + STATE(2366), 1, + sym_identifier, + STATE(2389), 1, sym_generic_name, - STATE(2895), 1, + STATE(2413), 1, sym__simple_name, - STATE(5791), 9, + STATE(6008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686788,7 +714757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 22, + ACTIONS(4060), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686811,7 +714780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226022] = 17, + [239521] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686834,15 +714803,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8873), 1, - anon_sym_operator, - ACTIONS(8875), 1, - anon_sym_this, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6137), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5792), 9, + STATE(2199), 1, + sym__simple_name, + STATE(6009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686875,7 +714844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226103] = 17, + [239602] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686896,17 +714865,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3054), 1, - sym_identifier, - STATE(3123), 1, + ACTIONS(9117), 1, + anon_sym_operator, + ACTIONS(9119), 1, + anon_sym_this, + STATE(2175), 1, sym__reserved_identifier, - STATE(3138), 1, - sym_generic_name, - STATE(3239), 1, - sym__simple_name, - STATE(5793), 9, + STATE(6337), 1, + sym_identifier, + STATE(6010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686916,7 +714885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686939,7 +714908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226184] = 17, + [239683] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686960,17 +714929,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(9073), 1, sym__identifier_token, - STATE(3558), 1, - sym__reserved_identifier, - STATE(3967), 1, + STATE(2248), 1, sym_identifier, - STATE(3999), 1, - sym_generic_name, - STATE(4084), 1, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2259), 1, sym__simple_name, - STATE(5794), 9, + STATE(2269), 1, + sym_generic_name, + STATE(6011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686980,7 +714949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(9075), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687003,7 +714972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226265] = 17, + [239764] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687026,15 +714995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2121), 1, + STATE(2406), 1, sym__simple_name, - STATE(5795), 9, + STATE(6012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687067,71 +715036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226346] = 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(8865), 1, - sym__identifier_token, - STATE(3999), 1, - sym_generic_name, - STATE(4084), 1, - sym__simple_name, - STATE(5220), 1, - sym__reserved_identifier, - STATE(6086), 1, - sym_identifier, - STATE(5796), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(8867), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [226427] = 17, + [239845] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687154,15 +715059,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2241), 1, + STATE(2280), 1, sym__simple_name, - STATE(5797), 9, + STATE(6013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687195,7 +715100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226508] = 17, + [239926] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687216,17 +715121,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2815), 1, + ACTIONS(9121), 1, + anon_sym_RBRACE, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6906), 1, + sym_with_initializer, + STATE(7482), 1, sym_identifier, - STATE(2837), 1, - sym__simple_name, - STATE(2873), 1, - sym_generic_name, - STATE(3123), 1, + STATE(6014), 9, + sym_preproc_region, + sym_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, + [240007] = 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(25), 1, + sym__identifier_token, + ACTIONS(9123), 1, + anon_sym_RBRACE, + STATE(2175), 1, sym__reserved_identifier, - STATE(5798), 9, + STATE(6755), 1, + sym_with_initializer, + STATE(7482), 1, + sym_identifier, + STATE(6015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687236,7 +715205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687259,7 +715228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226589] = 17, + [240088] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687280,17 +715249,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, + STATE(2175), 1, + sym__reserved_identifier, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2173), 1, - sym__reserved_identifier, - STATE(2268), 1, + STATE(2196), 1, sym__simple_name, - STATE(5799), 9, + STATE(6016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687300,7 +715269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687323,7 +715292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226670] = 16, + [240169] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687344,16 +715313,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8829), 1, + ACTIONS(9125), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7515), 1, + STATE(7467), 1, sym_identifier, - ACTIONS(8835), 2, + ACTIONS(9131), 2, anon_sym_unsafe, anon_sym_static, - STATE(5800), 9, + STATE(6017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687363,7 +715332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8832), 22, + ACTIONS(9128), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687386,7 +715355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226749] = 17, + [240248] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687409,15 +715378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(4036), 1, - sym__simple_name, - STATE(4338), 1, + STATE(2184), 1, sym_identifier, - STATE(5801), 9, + STATE(2187), 1, + sym__simple_name, + STATE(6018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687450,7 +715419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226830] = 17, + [240329] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687471,17 +715440,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(3887), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2525), 1, + STATE(2945), 1, sym__reserved_identifier, - STATE(4036), 1, - sym__simple_name, - STATE(6140), 1, + STATE(2958), 1, sym_identifier, - STATE(5802), 9, + STATE(2985), 1, + sym_generic_name, + STATE(3098), 1, + sym__simple_name, + STATE(6019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687491,7 +715460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(3889), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687514,7 +715483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226911] = 17, + [240410] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687535,17 +715504,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(4084), 1, - sym__simple_name, - STATE(6140), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(5803), 9, + STATE(2194), 1, + sym__simple_name, + STATE(6020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687555,7 +715524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687578,7 +715547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [226992] = 17, + [240491] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687599,17 +715568,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, + STATE(3176), 1, + sym_identifier, + STATE(3177), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(3246), 1, sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2313), 1, + STATE(3285), 1, sym__simple_name, - STATE(5804), 9, + STATE(6021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687619,7 +715588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687642,7 +715611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227073] = 17, + [240572] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687663,17 +715632,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(9089), 1, sym__identifier_token, - STATE(2815), 1, + STATE(2366), 1, sym_identifier, - STATE(2840), 1, - sym__simple_name, - STATE(2873), 1, + STATE(2389), 1, sym_generic_name, - STATE(3123), 1, + STATE(2413), 1, + sym__simple_name, + STATE(2643), 1, sym__reserved_identifier, - STATE(5805), 9, + STATE(6022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687683,7 +715652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(9091), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687706,7 +715675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227154] = 17, + [240653] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687727,17 +715696,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(9133), 1, sym__identifier_token, - STATE(3123), 1, - sym__reserved_identifier, - STATE(3141), 1, + STATE(3147), 1, sym_identifier, - STATE(3222), 1, + STATE(3189), 1, + sym__reserved_identifier, + STATE(3204), 1, sym_generic_name, - STATE(3414), 1, + STATE(3217), 1, sym__simple_name, - STATE(5806), 9, + STATE(6023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687747,7 +715716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(9135), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687770,7 +715739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227235] = 17, + [240734] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687793,15 +715762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8877), 1, + ACTIONS(9137), 1, anon_sym_RBRACE, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6814), 1, + STATE(7028), 1, sym_with_initializer, - STATE(7112), 1, + STATE(7482), 1, sym_identifier, - STATE(5807), 9, + STATE(6024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687834,7 +715803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227316] = 17, + [240815] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687855,17 +715824,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8853), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2178), 1, - sym_identifier, - STATE(2188), 1, - sym__reserved_identifier, - STATE(2201), 1, + STATE(2181), 1, sym_generic_name, - STATE(2224), 1, + STATE(2184), 1, + sym_identifier, + STATE(2228), 1, sym__simple_name, - STATE(5808), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(6025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687875,7 +715844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8855), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687898,7 +715867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227397] = 17, + [240896] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687919,17 +715888,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2281), 1, - sym_identifier, - STATE(2286), 1, + ACTIONS(9139), 1, + anon_sym_RBRACE, + STATE(2175), 1, sym__reserved_identifier, - STATE(2299), 1, - sym__simple_name, - STATE(2344), 1, - sym_generic_name, - STATE(5809), 9, + STATE(6859), 1, + sym_with_initializer, + STATE(7482), 1, + sym_identifier, + STATE(6026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687939,7 +715908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4025), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687962,7 +715931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227478] = 17, + [240977] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687983,17 +715952,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2900), 1, sym_identifier, - STATE(2124), 1, + STATE(2929), 1, + sym_generic_name, + STATE(2947), 1, sym__simple_name, - STATE(5810), 9, + STATE(3177), 1, + sym__reserved_identifier, + STATE(6027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688003,7 +715972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688026,7 +715995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227559] = 17, + [241058] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688047,17 +716016,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9141), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2377), 1, sym_identifier, - STATE(2181), 1, + STATE(2429), 1, sym__simple_name, - STATE(5811), 9, + STATE(2437), 1, + sym_generic_name, + STATE(2453), 1, + sym__reserved_identifier, + STATE(6028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688067,7 +716036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9143), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688090,7 +716059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227640] = 17, + [241139] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688111,17 +716080,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8841), 1, + ACTIONS(9083), 1, sym__identifier_token, - STATE(2281), 1, - sym_identifier, - STATE(2305), 1, + STATE(4107), 1, sym__simple_name, - STATE(2344), 1, + STATE(4109), 1, sym_generic_name, - STATE(2573), 1, + STATE(5567), 1, sym__reserved_identifier, - STATE(5812), 9, + STATE(6278), 1, + sym_identifier, + STATE(6029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688131,7 +716100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8843), 22, + ACTIONS(9085), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688154,7 +716123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227721] = 17, + [241220] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688175,17 +716144,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(3123), 1, - sym__reserved_identifier, - STATE(3141), 1, + STATE(2958), 1, sym_identifier, - STATE(3198), 1, + STATE(2976), 1, sym__simple_name, - STATE(3222), 1, + STATE(2985), 1, sym_generic_name, - STATE(5813), 9, + STATE(3177), 1, + sym__reserved_identifier, + STATE(6030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688195,7 +716164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688218,7 +716187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227802] = 17, + [241301] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688239,17 +716208,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2173), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(2175), 1, sym__reserved_identifier, - STATE(4084), 1, - sym__simple_name, - STATE(4338), 1, + STATE(6925), 1, sym_identifier, - STATE(5814), 9, + STATE(6031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688259,7 +716228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688282,7 +716251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227883] = 17, + [241382] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688303,17 +716272,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2900), 1, sym_identifier, - STATE(2173), 1, + STATE(2929), 1, + sym_generic_name, + STATE(2948), 1, + sym__simple_name, + STATE(3177), 1, + sym__reserved_identifier, + STATE(6032), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3877), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [241463] = 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(25), 1, + sym__identifier_token, + STATE(2175), 1, sym__reserved_identifier, + STATE(2181), 1, + sym_generic_name, STATE(2184), 1, + sym_identifier, + STATE(2385), 1, sym__simple_name, - STATE(5815), 9, + STATE(6033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688323,7 +716356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688346,7 +716379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [227964] = 17, + [241544] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688367,17 +716400,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(9073), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2248), 1, sym_identifier, - STATE(2173), 1, + STATE(2254), 1, sym__reserved_identifier, - STATE(2210), 1, + STATE(2269), 1, + sym_generic_name, + STATE(2310), 1, sym__simple_name, - STATE(5816), 9, + STATE(6034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688387,7 +716420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(9075), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688410,7 +716443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228045] = 17, + [241625] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688431,17 +716464,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(9125), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2125), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5817), 9, + STATE(7340), 1, + sym_identifier, + ACTIONS(9131), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688451,7 +716483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(9128), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688474,7 +716506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228126] = 17, + [241704] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688495,17 +716527,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8879), 1, + ACTIONS(3788), 1, sym__identifier_token, - STATE(2524), 1, + STATE(3176), 1, sym_identifier, - STATE(2565), 1, + STATE(3225), 1, + sym__reserved_identifier, + STATE(3246), 1, sym_generic_name, - STATE(2571), 1, + STATE(3285), 1, sym__simple_name, - STATE(2577), 1, - sym__reserved_identifier, - STATE(5818), 9, + STATE(6036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688515,7 +716547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8881), 22, + ACTIONS(3790), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688538,7 +716570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228207] = 17, + [241785] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688559,17 +716591,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8853), 1, + ACTIONS(9125), 1, sym__identifier_token, - STATE(2178), 1, - sym_identifier, - STATE(2188), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2192), 1, - sym__simple_name, - STATE(2201), 1, - sym_generic_name, - STATE(5819), 9, + STATE(7352), 1, + sym_identifier, + ACTIONS(9131), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688579,7 +716610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8855), 22, + ACTIONS(9128), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688602,7 +716633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228288] = 17, + [241864] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688623,17 +716654,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3887), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2945), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2958), 1, + sym_identifier, + STATE(2985), 1, sym_generic_name, - STATE(4084), 1, + STATE(3042), 1, sym__simple_name, - STATE(4338), 1, - sym_identifier, - STATE(5820), 9, + STATE(6038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688643,7 +716674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3889), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688666,7 +716697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228369] = 16, + [241945] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688687,16 +716718,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9053), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6995), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - ACTIONS(8687), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(5821), 9, + STATE(2241), 1, + sym__reserved_identifier, + STATE(2308), 1, + sym__simple_name, + STATE(6039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688706,7 +716738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9055), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688729,7 +716761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228448] = 17, + [242026] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688752,15 +716784,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(9145), 1, + anon_sym_RBRACE, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6875), 1, + sym_with_initializer, + STATE(7482), 1, sym_identifier, - STATE(2160), 1, - sym__simple_name, - STATE(5822), 9, + STATE(6040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688793,7 +716825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228529] = 17, + [242107] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688814,17 +716846,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8883), 1, - sym__identifier_token, - STATE(2544), 1, - sym_identifier, - STATE(2594), 1, - sym__simple_name, - STATE(2601), 1, - sym__reserved_identifier, - STATE(2693), 1, - sym_generic_name, - STATE(5823), 9, + ACTIONS(4975), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688834,10 +716859,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8885), 22, + ACTIONS(4973), 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, @@ -688857,7 +716884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228610] = 17, + sym__identifier_token, + [242180] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688878,17 +716906,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3825), 1, + ACTIONS(4050), 1, sym__identifier_token, - STATE(2846), 1, - sym__reserved_identifier, - STATE(2874), 1, + STATE(4314), 1, sym_identifier, - STATE(2923), 1, - sym_generic_name, - STATE(2989), 1, + STATE(4323), 1, + sym__reserved_identifier, + STATE(4365), 1, sym__simple_name, - STATE(5824), 9, + STATE(4403), 1, + sym_generic_name, + STATE(6042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688898,7 +716926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3827), 22, + ACTIONS(4052), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688921,7 +716949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228691] = 17, + [242261] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688942,17 +716970,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8883), 1, + ACTIONS(3788), 1, sym__identifier_token, - STATE(2544), 1, + STATE(3176), 1, sym_identifier, - STATE(2586), 1, - sym__simple_name, - STATE(2601), 1, + STATE(3225), 1, sym__reserved_identifier, - STATE(2693), 1, + STATE(3246), 1, sym_generic_name, - STATE(5825), 9, + STATE(3286), 1, + sym__simple_name, + STATE(6043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688962,7 +716990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8885), 22, + ACTIONS(3790), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688985,7 +717013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228772] = 17, + [242342] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689006,17 +717034,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2958), 1, sym_identifier, - STATE(2146), 1, + STATE(2985), 1, + sym_generic_name, + STATE(3042), 1, sym__simple_name, - STATE(5826), 9, + STATE(3177), 1, + sym__reserved_identifier, + STATE(6044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689026,7 +717054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689049,7 +717077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228853] = 17, + [242423] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689070,17 +717098,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(3875), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2173), 1, + STATE(3176), 1, + sym_identifier, + STATE(3177), 1, sym__reserved_identifier, - STATE(4036), 1, + STATE(3246), 1, + sym_generic_name, + STATE(3472), 1, sym__simple_name, - STATE(4338), 1, - sym_identifier, - STATE(5827), 9, + STATE(6045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689090,7 +717118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(3877), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689113,7 +717141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [228934] = 17, + [242504] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689134,17 +717162,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(3887), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2945), 1, + sym__reserved_identifier, + STATE(2958), 1, sym_identifier, - STATE(2121), 1, + STATE(2976), 1, sym__simple_name, - STATE(2173), 1, - sym__reserved_identifier, - STATE(5828), 9, + STATE(2985), 1, + sym_generic_name, + STATE(6046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689154,7 +717182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(3889), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689177,7 +717205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229015] = 17, + [242585] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689200,15 +717228,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, + STATE(2181), 1, sym_generic_name, - STATE(2115), 1, + STATE(2184), 1, sym_identifier, - STATE(2271), 1, + STATE(2383), 1, sym__simple_name, - STATE(5829), 9, + STATE(6047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689241,7 +717269,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229096] = 17, + [242666] = 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(3784), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + ACTIONS(9147), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6048), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3782), 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, + [242741] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689262,17 +717351,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(9073), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2248), 1, sym_identifier, - STATE(2173), 1, + STATE(2254), 1, sym__reserved_identifier, - STATE(2223), 1, + STATE(2261), 1, sym__simple_name, - STATE(5830), 9, + STATE(2269), 1, + sym_generic_name, + STATE(6049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689282,7 +717371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(9075), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689305,7 +717394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229177] = 17, + [242822] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689326,17 +717415,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(3784), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6050), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3782), 25, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_in, + anon_sym_out, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, sym__identifier_token, - STATE(2106), 1, - sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2250), 1, - sym__simple_name, - STATE(5831), 9, + [242895] = 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(5007), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689346,10 +717488,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5005), 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, @@ -689369,7 +717513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229258] = 17, + sym__identifier_token, + [242968] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689390,17 +717535,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9125), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(7577), 1, sym_identifier, - STATE(2332), 1, - sym__simple_name, - STATE(5832), 9, + ACTIONS(9131), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689410,7 +717554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9128), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689433,38 +717577,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229339] = 17, - ACTIONS(7751), 1, - sym__identifier_token, - ACTIONS(8887), 1, - sym_integer_literal, - ACTIONS(8889), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [243047] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - STATE(6254), 1, - sym__reserved_identifier, - STATE(6518), 1, + ACTIONS(9073), 1, + sym__identifier_token, + STATE(2248), 1, sym_identifier, - STATE(5833), 9, + STATE(2254), 1, + sym__reserved_identifier, + STATE(2269), 1, + sym_generic_name, + STATE(2301), 1, + sym__simple_name, + STATE(6053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689474,7 +717618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(9075), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689497,7 +717641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229420] = 17, + [243128] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689518,17 +717662,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8911), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3053), 1, - sym_identifier, - STATE(3075), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + STATE(2175), 1, sym__reserved_identifier, - STATE(3090), 1, - sym__simple_name, - STATE(3105), 1, - sym_generic_name, - STATE(5834), 9, + STATE(6925), 1, + sym_identifier, + STATE(6054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689538,7 +717682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8913), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689561,7 +717705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229501] = 17, + [243209] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689582,17 +717726,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8853), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2178), 1, - sym_identifier, - STATE(2188), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2201), 1, + STATE(2181), 1, sym_generic_name, - STATE(2227), 1, + STATE(2184), 1, + sym_identifier, + STATE(2193), 1, sym__simple_name, - STATE(5835), 9, + STATE(6055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689602,7 +717746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8855), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689625,7 +717769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229582] = 17, + [243290] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689646,17 +717790,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(3861), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(2900), 1, sym_identifier, - STATE(2124), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2904), 1, sym__reserved_identifier, - STATE(5836), 9, + STATE(2929), 1, + sym_generic_name, + STATE(2983), 1, + sym__simple_name, + STATE(6056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689666,7 +717810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(3863), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689689,7 +717833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229663] = 17, + [243371] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689710,17 +717854,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2581), 1, + STATE(2181), 1, + sym_generic_name, + STATE(2184), 1, sym_identifier, - STATE(2592), 1, + STATE(2329), 1, sym__simple_name, - STATE(2636), 1, - sym_generic_name, - STATE(5837), 9, + STATE(6057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689730,7 +717874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689753,7 +717897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229744] = 17, + [243452] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689774,17 +717918,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3714), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3109), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3141), 1, + STATE(6891), 1, sym_identifier, - STATE(3222), 1, - sym_generic_name, - STATE(3414), 1, - sym__simple_name, - STATE(5838), 9, + STATE(7140), 1, + sym_using_variable_declarator, + STATE(6058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689794,7 +717936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3716), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689817,7 +717959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229825] = 17, + [243530] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689838,17 +717980,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8865), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3999), 1, - sym_generic_name, - STATE(4036), 1, - sym__simple_name, - STATE(5220), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6086), 1, + STATE(7268), 1, + sym_with_initializer, + STATE(7482), 1, sym_identifier, - STATE(5839), 9, + STATE(6059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689858,7 +717998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8867), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689881,7 +718021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229906] = 17, + [243608] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689904,15 +718044,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(8914), 1, + anon_sym_COMMA, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6828), 1, sym_identifier, - STATE(2214), 1, - sym__simple_name, - STATE(5840), 9, + STATE(6060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689945,7 +718083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [229987] = 17, + [243686] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689966,17 +718104,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4885), 1, + aux_sym_preproc_if_token3, + ACTIONS(4701), 2, + anon_sym_LBRACK, + aux_sym_preproc_if_token1, + STATE(6061), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4699), 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(2106), 1, + [243760] = 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(9151), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6062), 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_using_directive_repeat1, + ACTIONS(9149), 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, + [243832] = 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(7904), 1, + sym__identifier_token, + ACTIONS(9154), 1, + sym_integer_literal, + STATE(6452), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(7124), 1, sym_identifier, - STATE(2810), 1, - sym__simple_name, - STATE(5841), 9, + STATE(6063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689986,7 +718241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(7906), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690009,7 +718264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230068] = 17, + [243910] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690032,15 +718287,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + ACTIONS(9156), 1, + anon_sym_RPAREN, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(7463), 1, sym_identifier, - STATE(2210), 1, - sym__simple_name, - STATE(5842), 9, + STATE(6064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690073,7 +718326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230149] = 17, + [243988] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690094,17 +718347,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2874), 1, - sym_identifier, - STATE(2878), 1, - sym__simple_name, - STATE(2923), 1, - sym_generic_name, - STATE(3123), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(5843), 9, + STATE(6654), 1, + sym_identifier, + STATE(6065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690114,7 +718363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690137,7 +718386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230230] = 17, + [244063] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690158,17 +718407,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(3054), 1, - sym_identifier, - STATE(3073), 1, - sym__simple_name, - STATE(3123), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(3138), 1, - sym_generic_name, - STATE(5844), 9, + STATE(6635), 1, + sym_identifier, + STATE(6066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690178,7 +718423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690201,7 +718446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230311] = 17, + [244138] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690222,17 +718467,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2128), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5845), 9, + STATE(6723), 1, + sym_identifier, + STATE(6067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690242,7 +718483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690265,7 +718506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230392] = 17, + [244213] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690286,17 +718527,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3054), 1, - sym_identifier, - STATE(3072), 1, - sym__simple_name, - STATE(3123), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(3138), 1, - sym_generic_name, - STATE(5846), 9, + STATE(6191), 1, + sym_identifier, + STATE(6068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690306,7 +718543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690329,7 +718566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230473] = 17, + [244288] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690352,15 +718589,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6991), 1, sym_identifier, - STATE(2268), 1, - sym__simple_name, - STATE(5847), 9, + STATE(6069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690393,7 +718626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230554] = 17, + [244363] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690416,15 +718649,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6185), 1, sym_identifier, - STATE(2247), 1, - sym__simple_name, - STATE(5848), 9, + STATE(6070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690457,7 +718686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230635] = 17, + [244438] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690478,17 +718707,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2160), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5849), 9, + STATE(6237), 1, + sym_identifier, + STATE(6071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690498,7 +718723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690521,7 +718746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230716] = 17, + [244513] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690542,17 +718767,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3809), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2815), 1, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6727), 1, sym_identifier, - STATE(2873), 1, - sym_generic_name, - STATE(2895), 1, - sym__simple_name, - STATE(3123), 1, + STATE(6072), 9, + sym_preproc_region, + sym_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, + [244588] = 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(5850), 9, + STATE(6264), 1, + sym_identifier, + STATE(6073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690562,7 +718843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3811), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690585,7 +718866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230797] = 17, + [244663] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690608,15 +718889,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8915), 1, - anon_sym_RBRACE, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6729), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(6200), 1, sym_identifier, - STATE(5851), 9, + STATE(6074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690649,7 +718926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230878] = 17, + [244738] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690672,15 +718949,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8917), 1, - anon_sym_operator, - ACTIONS(8919), 1, - anon_sym_this, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6135), 1, + STATE(6196), 1, sym_identifier, - STATE(5852), 9, + STATE(6075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690713,7 +718986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [230959] = 17, + [244813] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690734,17 +719007,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2127), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5853), 9, + STATE(6220), 1, + sym_identifier, + STATE(6076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690754,7 +719023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690777,7 +719046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231040] = 16, + [244888] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690798,16 +719067,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(2967), 1, sym__identifier_token, - STATE(2525), 1, + STATE(3691), 1, sym__reserved_identifier, - STATE(6061), 1, + STATE(7196), 1, sym_identifier, - ACTIONS(8921), 2, - anon_sym_class, - anon_sym_struct, - STATE(5854), 9, + STATE(6077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690817,7 +719083,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(2971), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690840,7 +719106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231119] = 17, + [244963] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690861,17 +719127,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2119), 1, - sym__simple_name, - STATE(2173), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(5855), 9, + STATE(6617), 1, + sym_identifier, + STATE(6078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690881,7 +719143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690904,7 +719166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231200] = 17, + [245038] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690925,17 +719187,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2173), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2240), 1, - sym__simple_name, - STATE(5856), 9, + STATE(6241), 1, + sym_identifier, + STATE(6079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690945,7 +719203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690968,7 +719226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231281] = 17, + [245113] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690989,17 +719247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8837), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, - sym_identifier, - STATE(2173), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(2276), 1, - sym__simple_name, - STATE(5857), 9, + STATE(7388), 1, + sym_identifier, + STATE(6080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691009,7 +719263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8839), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691032,7 +719286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231362] = 17, + [245188] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691055,15 +719309,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6768), 1, + STATE(7284), 1, sym_identifier, - STATE(5858), 9, + STATE(6081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691096,7 +719346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231443] = 17, + [245263] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691119,15 +719369,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6244), 1, sym_identifier, - STATE(2337), 1, - sym__simple_name, - STATE(5859), 9, + STATE(6082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691160,7 +719406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231524] = 17, + [245338] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691183,15 +719429,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6210), 1, sym_identifier, - STATE(2295), 1, - sym__simple_name, - STATE(5860), 9, + STATE(6083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691224,7 +719466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231605] = 17, + [245413] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691245,17 +719487,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6279), 1, sym_identifier, - STATE(2254), 1, - sym__simple_name, - STATE(5861), 9, + STATE(6084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691265,9 +719503,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + 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, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(6085), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(9131), 25, anon_sym_alias, anon_sym_global, + anon_sym_unsafe, + anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -691288,7 +719582,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231686] = 16, + sym__identifier_token, + [245557] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691309,16 +719604,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8829), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7257), 1, + STATE(6248), 1, sym_identifier, - ACTIONS(8835), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5862), 9, + STATE(6086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691328,7 +719620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8832), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691351,7 +719643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231765] = 17, + [245632] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691374,15 +719666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6768), 1, + STATE(7479), 1, sym_identifier, - STATE(5863), 9, + STATE(6087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691415,7 +719703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231846] = 17, + [245707] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691436,17 +719724,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8853), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2178), 1, - sym_identifier, - STATE(2188), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2194), 1, - sym__simple_name, - STATE(2201), 1, - sym_generic_name, - STATE(5864), 9, + STATE(6636), 1, + sym_identifier, + STATE(6088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691456,7 +719740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8855), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691479,7 +719763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [231927] = 17, + [245782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691502,15 +719786,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6187), 1, sym_identifier, - STATE(2221), 1, - sym__simple_name, - STATE(5865), 9, + STATE(6089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691543,7 +719823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232008] = 17, + [245857] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691564,17 +719844,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6327), 1, sym_identifier, - STATE(2333), 1, - sym__simple_name, - STATE(5866), 9, + STATE(6090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691584,7 +719860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691607,7 +719883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232089] = 17, + [245932] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691630,15 +719906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(2107), 1, - sym_generic_name, - STATE(2115), 1, + STATE(6213), 1, sym_identifier, - STATE(2267), 1, - sym__simple_name, - STATE(5867), 9, + STATE(6091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691671,7 +719943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232170] = 17, + [246007] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691692,17 +719964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(4177), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(4197), 1, + STATE(6607), 1, sym_identifier, - STATE(4342), 1, - sym__simple_name, - STATE(4376), 1, - sym_generic_name, - STATE(5868), 9, + STATE(6092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691712,7 +719980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691735,7 +720003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232251] = 17, + [246082] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691756,17 +720024,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(4177), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(4197), 1, + STATE(6269), 1, sym_identifier, - STATE(4340), 1, - sym__simple_name, - STATE(4376), 1, - sym_generic_name, - STATE(5869), 9, + STATE(6093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691776,7 +720040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4013), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691799,7 +720063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232332] = 17, + [246157] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691820,17 +720084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2815), 1, - sym_identifier, - STATE(2826), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(2840), 1, - sym__simple_name, - STATE(2873), 1, - sym_generic_name, - STATE(5870), 9, + STATE(6282), 1, + sym_identifier, + STATE(6094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691840,7 +720100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3802), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691863,7 +720123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232413] = 16, + [246232] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691886,13 +720146,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6522), 1, + STATE(7548), 1, sym_identifier, - STATE(6842), 1, - sym_using_variable_declarator, - STATE(5871), 9, + STATE(6095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691925,7 +720183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232491] = 13, + [246307] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691946,9 +720204,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5115), 1, - anon_sym_LBRACK, - STATE(5872), 9, + ACTIONS(2967), 1, + sym__identifier_token, + STATE(3691), 1, + sym__reserved_identifier, + STATE(7161), 1, + sym_identifier, + STATE(6096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691958,12 +720220,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5113), 25, + ACTIONS(2971), 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, @@ -691983,8 +720243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [232563] = 16, + [246382] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692005,15 +720264,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7751), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(8923), 1, - sym_integer_literal, - STATE(6254), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6937), 1, + STATE(7581), 1, sym_identifier, - STATE(5873), 9, + STATE(6097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692023,7 +720280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7753), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692046,7 +720303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232641] = 16, + [246457] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692067,15 +720324,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - ACTIONS(8925), 1, - anon_sym_RPAREN, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(7284), 1, + STATE(6622), 1, sym_identifier, - STATE(5874), 9, + STATE(6098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692085,7 +720340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692108,7 +720363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [232719] = 13, + [246532] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692129,68 +720384,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8929), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5875), 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_using_directive_repeat1, - ACTIONS(8927), 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(6823), 1, sym__identifier_token, - [232791] = 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(5086), 1, - anon_sym_LBRACK, - STATE(5876), 9, + STATE(2571), 1, + sym__reserved_identifier, + STATE(6276), 1, + sym_identifier, + STATE(6099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692200,12 +720400,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5084), 25, + ACTIONS(6825), 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, @@ -692225,8 +720423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [232863] = 13, + [246607] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692247,9 +720444,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5078), 1, - anon_sym_LBRACK, - STATE(5877), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6666), 1, + sym_identifier, + STATE(6100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692259,12 +720460,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5076), 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, @@ -692284,8 +720483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [232935] = 16, + [246682] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692306,15 +720504,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6964), 1, - sym_with_initializer, - STATE(7112), 1, + STATE(6257), 1, sym_identifier, - STATE(5878), 9, + STATE(6101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692324,7 +720520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692347,7 +720543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233013] = 13, + [246757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692368,9 +720564,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5104), 1, - anon_sym_LBRACK, - STATE(5879), 9, + ACTIONS(6823), 1, + sym__identifier_token, + STATE(2571), 1, + sym__reserved_identifier, + STATE(7408), 1, + sym_identifier, + STATE(6102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692380,12 +720580,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5102), 25, + ACTIONS(6825), 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, @@ -692405,8 +720603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [233085] = 13, + [246832] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692427,9 +720624,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5100), 1, - anon_sym_LBRACK, - STATE(5880), 9, + ACTIONS(25), 1, + sym__identifier_token, + STATE(2175), 1, + sym__reserved_identifier, + STATE(6624), 1, + sym_identifier, + STATE(6103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692439,12 +720640,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5098), 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, @@ -692464,8 +720663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [233157] = 16, + [246907] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692488,13 +720686,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8687), 1, - anon_sym_COMMA, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6587), 1, + STATE(6652), 1, sym_identifier, - STATE(5881), 9, + STATE(6104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692527,7 +720723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233235] = 15, + [246982] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692550,11 +720746,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6040), 1, + STATE(6206), 1, sym_identifier, - STATE(5882), 9, + STATE(6105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692587,7 +720783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233310] = 15, + [247057] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692608,13 +720804,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6420), 1, + STATE(6272), 1, sym_identifier, - STATE(5883), 9, + STATE(6106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692624,7 +720820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692647,7 +720843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233385] = 15, + [247132] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692670,11 +720866,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6856), 1, + STATE(6193), 1, sym_identifier, - STATE(5884), 9, + STATE(6107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692707,7 +720903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233460] = 15, + [247207] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692728,13 +720924,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6461), 1, + STATE(6217), 1, sym_identifier, - STATE(5885), 9, + STATE(6108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692744,7 +720940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692767,7 +720963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233535] = 15, + [247282] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692788,13 +720984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6062), 1, + STATE(6640), 1, sym_identifier, - STATE(5886), 9, + STATE(6109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692804,7 +721000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692827,7 +721023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233610] = 15, + [247357] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692848,13 +721044,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6073), 1, + STATE(6228), 1, sym_identifier, - STATE(5887), 9, + STATE(6110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692864,7 +721060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692887,7 +721083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233685] = 15, + [247432] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692908,13 +721104,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6496), 1, + STATE(6263), 1, sym_identifier, - STATE(5888), 9, + STATE(6111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692924,7 +721120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692947,7 +721143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233760] = 15, + [247507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692968,13 +721164,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(5999), 1, + STATE(6627), 1, sym_identifier, - STATE(5889), 9, + STATE(6112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692984,7 +721180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693007,7 +721203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233835] = 15, + [247582] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693028,13 +721224,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6477), 1, + STATE(6267), 1, sym_identifier, - STATE(5890), 9, + STATE(6113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693044,7 +721240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693067,7 +721263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233910] = 15, + [247657] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693090,11 +721286,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7310), 1, + STATE(7313), 1, sym_identifier, - STATE(5891), 9, + STATE(6114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693127,7 +721323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [233985] = 15, + [247732] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693148,13 +721344,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6082), 1, + STATE(6373), 1, sym_identifier, - STATE(5892), 9, + STATE(6115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693164,7 +721360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693187,7 +721383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234060] = 15, + [247807] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693208,13 +721404,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6055), 1, + STATE(6684), 1, sym_identifier, - STATE(5893), 9, + STATE(6116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693224,7 +721420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693247,7 +721443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234135] = 15, + [247882] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693268,13 +721464,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6074), 1, + STATE(6334), 1, sym_identifier, - STATE(5894), 9, + STATE(6117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693284,7 +721480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693307,7 +721503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234210] = 15, + [247957] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693330,11 +721526,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6431), 1, + STATE(7287), 1, sym_identifier, - STATE(5895), 9, + STATE(6118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693367,7 +721563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234285] = 15, + [248032] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693388,13 +721584,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6072), 1, + STATE(6975), 1, sym_identifier, - STATE(5896), 9, + STATE(6119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693404,7 +721600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693427,7 +721623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234360] = 15, + [248107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693448,13 +721644,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6133), 1, + STATE(6687), 1, sym_identifier, - STATE(5897), 9, + STATE(6120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693464,7 +721660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693487,7 +721683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234435] = 15, + [248182] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693510,11 +721706,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6006), 1, + STATE(6224), 1, sym_identifier, - STATE(5898), 9, + STATE(6121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693547,7 +721743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234510] = 15, + [248257] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693570,11 +721766,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(7066), 1, + STATE(6214), 1, sym_identifier, - STATE(5899), 9, + STATE(6122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693607,7 +721803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234585] = 15, + [248332] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693630,11 +721826,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6471), 1, + STATE(6202), 1, sym_identifier, - STATE(5900), 9, + STATE(6123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693667,7 +721863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234660] = 15, + [248407] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693690,11 +721886,11 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(25), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(5996), 1, + STATE(6246), 1, sym_identifier, - STATE(5901), 9, + STATE(6124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693727,7 +721923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234735] = 15, + [248482] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693748,13 +721944,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3558), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6936), 1, + STATE(6231), 1, sym_identifier, - STATE(5902), 9, + STATE(6125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693764,7 +721960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693787,7 +721983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234810] = 15, + [248557] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693808,13 +722004,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2917), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(3558), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6948), 1, + STATE(7097), 1, sym_identifier, - STATE(5903), 9, + STATE(6126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693824,7 +722020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2921), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693847,7 +722043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234885] = 15, + [248632] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693868,13 +722064,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6075), 1, + STATE(6629), 1, sym_identifier, - STATE(5904), 9, + STATE(6127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693884,7 +722080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693907,7 +722103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [234960] = 15, + [248707] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693928,13 +722124,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6061), 1, + STATE(6203), 1, sym_identifier, - STATE(5905), 9, + STATE(6128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693944,7 +722140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -693967,7 +722163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235035] = 15, + [248782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693988,13 +722184,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(5998), 1, + STATE(6258), 1, sym_identifier, - STATE(5906), 9, + STATE(6129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694004,7 +722200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694027,7 +722223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235110] = 15, + [248857] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694048,13 +722244,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(6823), 1, sym__identifier_token, - STATE(2106), 1, + STATE(2571), 1, sym__reserved_identifier, - STATE(6021), 1, + STATE(6330), 1, sym_identifier, - STATE(5907), 9, + STATE(6130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694064,7 +722260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(6825), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694087,7 +722283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235185] = 15, + [248932] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694108,13 +722304,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(25), 1, sym__identifier_token, - STATE(2525), 1, + STATE(2175), 1, sym__reserved_identifier, - STATE(6395), 1, + STATE(6838), 1, sym_identifier, - STATE(5908), 9, + STATE(6131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694124,7 +722320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694147,7 +722343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235260] = 15, + [249007] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694168,13 +722364,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6475), 1, - sym_identifier, - STATE(5909), 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(6132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694184,30 +722384,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235335] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694228,13 +722422,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(2106), 1, - sym__reserved_identifier, - STATE(6030), 1, - sym_identifier, - STATE(5910), 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(6133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694244,30 +722442,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235410] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694288,13 +722480,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(2106), 1, - sym__reserved_identifier, - STATE(6731), 1, - sym_identifier, - STATE(5911), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694304,30 +722500,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235485] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694348,13 +722538,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(2106), 1, - sym__reserved_identifier, - STATE(6049), 1, - sym_identifier, - STATE(5912), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694364,30 +722558,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235560] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694408,13 +722596,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(2106), 1, - sym__reserved_identifier, - STATE(7254), 1, - sym_identifier, - STATE(5913), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694424,30 +722616,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235635] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694468,13 +722654,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(2106), 1, - sym__reserved_identifier, - STATE(6020), 1, - sym_identifier, - STATE(5914), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694484,30 +722674,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235710] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694528,13 +722712,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6470), 1, - sym_identifier, - STATE(5915), 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(6138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694544,30 +722730,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235785] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694588,13 +722768,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(7303), 1, - sym_identifier, - STATE(5916), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694604,30 +722786,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [235860] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694648,13 +722824,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(2106), 1, - sym__reserved_identifier, - STATE(6010), 1, - sym_identifier, - STATE(5917), 9, + STATE(6140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694664,7 +722834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9194), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694687,7 +722857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [235935] = 15, + sym__identifier_token, + [249644] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694708,13 +722879,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6036), 1, - sym_identifier, - STATE(5918), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694724,30 +722897,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236010] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694768,13 +722935,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6033), 1, - sym_identifier, - STATE(5919), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694784,30 +722953,80 @@ 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, - [236085] = 15, + 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(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694828,13 +723047,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, - STATE(2106), 1, - sym__reserved_identifier, - STATE(6588), 1, - sym_identifier, - STATE(5920), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694844,30 +723065,24 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236160] = 15, + 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(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694888,13 +723103,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6416), 1, - sym_identifier, - STATE(5921), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694904,30 +723144,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, - [236235] = 15, + [250006] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694948,13 +723165,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(7110), 1, - sym_identifier, - STATE(5922), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694964,30 +723206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236310] = 15, + [250092] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695008,13 +723227,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6088), 1, - sym_identifier, - STATE(5923), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695024,30 +723268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236385] = 15, + [250178] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695068,13 +723289,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6042), 1, - sym_identifier, - STATE(5924), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695084,30 +723330,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, - [236460] = 15, + [250264] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695128,13 +723351,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6139), 1, - sym_identifier, - STATE(5925), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695144,30 +723392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236535] = 15, + [250350] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695188,13 +723413,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6026), 1, - sym_identifier, - STATE(5926), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695204,30 +723454,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, - [236610] = 15, + [250436] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695248,13 +723475,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(7390), 1, - sym_identifier, - STATE(5927), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695264,30 +723516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236685] = 15, + [250522] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695308,13 +723537,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6132), 1, - sym_identifier, - STATE(5928), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695324,30 +723578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236760] = 15, + [250608] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695368,13 +723599,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6046), 1, - sym_identifier, - STATE(5929), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695384,30 +723640,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, - [236835] = 15, + [250694] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695428,13 +723661,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6465), 1, - sym_identifier, - STATE(5930), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695444,30 +723702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [236910] = 12, + [250780] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695488,7 +723723,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5931), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695498,33 +723764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8835), 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, - [236979] = 15, + [250866] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695545,13 +723785,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(7014), 1, - sym_identifier, - STATE(5932), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695561,30 +723826,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, - [237054] = 15, + [250952] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695605,13 +723847,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6044), 1, - sym_identifier, - STATE(5933), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695621,30 +723888,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, - [237129] = 15, + [251038] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695665,13 +723909,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6396), 1, - sym_identifier, - STATE(5934), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695681,30 +723950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [237204] = 15, + [251124] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695725,13 +723971,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6687), 1, - sym_identifier, - STATE(5935), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695741,30 +724012,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, - [237279] = 15, + [251210] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695785,13 +724033,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6414), 1, - sym_identifier, - STATE(5936), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695801,30 +724074,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, - [237354] = 15, + [251296] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695845,13 +724095,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6014), 1, - sym_identifier, - STATE(5937), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695861,30 +724136,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, - [237429] = 15, + [251382] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695905,13 +724157,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6003), 1, - sym_identifier, - STATE(5938), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695921,30 +724198,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, - [237504] = 15, + [251468] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695965,13 +724219,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6436), 1, - sym_identifier, - STATE(5939), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695981,30 +724260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [237579] = 15, + [251554] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696025,13 +724281,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6426), 1, - sym_identifier, - STATE(5940), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696041,30 +724322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [237654] = 15, + [251640] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696085,13 +724343,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6013), 1, - sym_identifier, - STATE(5941), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696101,30 +724384,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, - [237729] = 15, + [251726] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696145,13 +724405,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6065), 1, - sym_identifier, - STATE(5942), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696161,30 +724446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [237804] = 15, + [251812] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696205,13 +724467,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6406), 1, - sym_identifier, - STATE(5943), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696221,30 +724508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [237879] = 15, + [251898] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696265,13 +724529,38 @@ 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(2106), 1, - sym__reserved_identifier, - STATE(6173), 1, - sym_identifier, - STATE(5944), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696281,30 +724570,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, - [237954] = 15, + [251984] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696325,13 +724591,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(6076), 1, - sym_identifier, - STATE(5945), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696341,30 +724632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [238029] = 15, + [252070] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696385,13 +724653,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6831), 1, - sym__identifier_token, - STATE(2525), 1, - sym__reserved_identifier, - STATE(7428), 1, - sym_identifier, - STATE(5946), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696401,30 +724694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6833), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [238104] = 14, + [252156] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696445,17 +724715,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8934), 1, - anon_sym_checked, - ACTIONS(8932), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5947), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696465,24 +724756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8936), 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, - [238176] = 14, + [252242] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696503,17 +724777,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8940), 1, - anon_sym_checked, - ACTIONS(8938), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5948), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696523,24 +724818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8942), 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, - [238248] = 14, + [252328] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696561,17 +724839,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8946), 1, - anon_sym_checked, - ACTIONS(8944), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5949), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696581,24 +724880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8948), 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, - [238320] = 14, + [252414] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696619,17 +724901,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8952), 1, - anon_sym_checked, - ACTIONS(8950), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5950), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696639,24 +724942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8954), 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, - [238392] = 14, + [252500] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696677,17 +724963,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8958), 1, - anon_sym_checked, - ACTIONS(8956), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5951), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696697,24 +725004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8960), 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, - [238464] = 14, + [252586] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696735,17 +725025,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8964), 1, - anon_sym_checked, - ACTIONS(8962), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5952), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696755,24 +725066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8966), 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, - [238536] = 13, + [252672] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696793,15 +725087,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8968), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5953), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696811,24 +725128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8970), 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, - [238605] = 12, + [252758] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696849,7 +725149,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5954), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696859,31 +725190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8972), 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, - [238672] = 13, + [252844] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696904,15 +725211,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8956), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5955), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696922,24 +725252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8960), 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, - [238741] = 13, + [252930] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696960,15 +725273,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8974), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5956), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696978,24 +725314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8976), 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, - [238810] = 13, + [253016] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697016,15 +725335,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8944), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5957), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697034,24 +725376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8948), 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, - [238879] = 13, + [253102] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697072,15 +725397,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8950), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5958), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697090,24 +725438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8954), 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, - [238948] = 13, + [253188] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697128,15 +725459,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8978), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - STATE(5959), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697146,24 +725500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8980), 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, - [239017] = 24, + [253274] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697184,38 +725521,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(8992), 1, + ACTIONS(9290), 1, anon_sym_group, - ACTIONS(8994), 1, + ACTIONS(9292), 1, anon_sym_select, - STATE(2986), 1, + STATE(3037), 1, sym__query_body, - STATE(4602), 1, + STATE(5627), 1, sym__select_or_group_clause, - STATE(6041), 1, + STATE(6222), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5960), 9, + STATE(6184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697225,7 +725562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239103] = 24, + [253360] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697246,38 +725583,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(8996), 1, + ACTIONS(9250), 1, anon_sym_group, - ACTIONS(8998), 1, + ACTIONS(9252), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4252), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6054), 1, + STATE(6235), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5961), 9, + STATE(6185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697287,7 +725622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239189] = 24, + [253443] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697308,38 +725643,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9000), 1, + ACTIONS(9266), 1, anon_sym_group, - ACTIONS(9002), 1, + ACTIONS(9268), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(3645), 1, + STATE(5099), 1, sym__select_or_group_clause, - STATE(6005), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5962), 9, + STATE(6186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697349,7 +725682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239275] = 24, + [253526] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697370,38 +725703,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9004), 1, + ACTIONS(9266), 1, anon_sym_group, - ACTIONS(9006), 1, + ACTIONS(9268), 1, anon_sym_select, - STATE(3561), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(3743), 1, - sym__query_body, - STATE(6031), 1, + STATE(6188), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3745), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5963), 9, + STATE(6187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697411,7 +725742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239361] = 24, + [253609] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697432,38 +725763,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9008), 1, + ACTIONS(9266), 1, anon_sym_group, - ACTIONS(9010), 1, + ACTIONS(9268), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(5219), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6015), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5964), 9, + STATE(6188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697473,7 +725802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239447] = 24, + [253692] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697494,38 +725823,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9012), 1, + ACTIONS(9242), 1, anon_sym_group, - ACTIONS(9014), 1, + ACTIONS(9244), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4953), 1, + STATE(4128), 1, sym__select_or_group_clause, - STATE(6039), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5965), 9, + STATE(6189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697535,7 +725862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239533] = 24, + [253775] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697556,38 +725883,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9016), 1, + ACTIONS(9294), 1, anon_sym_group, - ACTIONS(9018), 1, + ACTIONS(9296), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(4020), 1, + STATE(3924), 1, sym__select_or_group_clause, - STATE(6007), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5966), 9, + STATE(6190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697597,7 +725922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239619] = 24, + [253858] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697618,38 +725943,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9020), 1, + ACTIONS(9294), 1, anon_sym_group, - ACTIONS(9022), 1, + ACTIONS(9296), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4731), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6045), 1, + STATE(6192), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5967), 9, + STATE(6191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697659,7 +725982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239705] = 24, + [253941] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697680,38 +726003,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9024), 1, + ACTIONS(9294), 1, anon_sym_group, - ACTIONS(9026), 1, + ACTIONS(9296), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4533), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6028), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5968), 9, + STATE(6192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697721,7 +726042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239791] = 24, + [254024] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697742,38 +726063,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9028), 1, + ACTIONS(9286), 1, anon_sym_group, - ACTIONS(9030), 1, + ACTIONS(9288), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4889), 1, + STATE(4625), 1, sym__select_or_group_clause, - STATE(6025), 1, + STATE(6223), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5969), 9, + STATE(6193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697783,7 +726102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239877] = 24, + [254107] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697804,38 +726123,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9032), 1, + ACTIONS(9282), 1, anon_sym_group, - ACTIONS(9034), 1, + ACTIONS(9284), 1, anon_sym_select, - STATE(4272), 1, + STATE(3921), 1, sym__select_or_group_clause, - STATE(4583), 1, - sym__query_body, - STATE(6008), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(3888), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5970), 9, + STATE(6194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697845,7 +726162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [239963] = 24, + [254190] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697866,38 +726183,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9036), 1, + ACTIONS(9302), 1, anon_sym_group, - ACTIONS(9038), 1, + ACTIONS(9304), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(4001), 1, + STATE(3688), 1, sym__select_or_group_clause, - STATE(6024), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3888), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5971), 9, + STATE(6195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697907,7 +726222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240049] = 24, + [254273] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697928,38 +726243,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9040), 1, + ACTIONS(9302), 1, anon_sym_group, - ACTIONS(9042), 1, + ACTIONS(9304), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4955), 1, + STATE(3745), 1, sym__select_or_group_clause, - STATE(6019), 1, + STATE(6197), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3888), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5972), 9, + STATE(6196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697969,7 +726282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240135] = 24, + [254356] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697990,38 +726303,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9036), 1, + ACTIONS(9302), 1, anon_sym_group, - ACTIONS(9038), 1, + ACTIONS(9304), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(4001), 1, + STATE(3753), 1, sym__select_or_group_clause, - STATE(6024), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3888), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5973), 9, + STATE(6197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698031,7 +726342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240221] = 24, + [254439] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698052,38 +726363,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9044), 1, + ACTIONS(9218), 1, anon_sym_group, - ACTIONS(9046), 1, + ACTIONS(9220), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(5215), 1, + STATE(4236), 1, sym__select_or_group_clause, - STATE(6052), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5974), 9, + STATE(6198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698093,7 +726402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240307] = 24, + [254522] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698114,38 +726423,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9040), 1, + ACTIONS(9226), 1, anon_sym_group, - ACTIONS(9042), 1, + ACTIONS(9228), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4955), 1, + STATE(4783), 1, sym__select_or_group_clause, - STATE(6019), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5975), 9, + STATE(6199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698155,7 +726462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240393] = 24, + [254605] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698176,38 +726483,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9016), 1, + ACTIONS(9226), 1, anon_sym_group, - ACTIONS(9018), 1, + ACTIONS(9228), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(4020), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6007), 1, + STATE(6201), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5976), 9, + STATE(6200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698217,7 +726522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240479] = 24, + [254688] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698238,38 +726543,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9000), 1, + ACTIONS(9226), 1, anon_sym_group, - ACTIONS(9002), 1, + ACTIONS(9228), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(3645), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6005), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5977), 9, + STATE(6201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698279,7 +726582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240565] = 24, + [254771] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698300,38 +726603,216 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9028), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9030), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4889), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6025), 1, + STATE(6209), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5978), 9, + STATE(6202), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [254854] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(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(3745), 1, + sym__select_or_group_clause, + STATE(6204), 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(6203), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [254937] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(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(3753), 1, + sym__select_or_group_clause, + STATE(6254), 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(6204), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [255020] = 23, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(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(4343), 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(6205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698341,7 +726822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240651] = 24, + [255103] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698362,38 +726843,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(8992), 1, + ACTIONS(9222), 1, anon_sym_group, - ACTIONS(8994), 1, + ACTIONS(9224), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(4602), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6041), 1, + STATE(6207), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5979), 9, + STATE(6206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698403,7 +726882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240737] = 24, + [255186] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698424,38 +726903,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9048), 1, + ACTIONS(9222), 1, anon_sym_group, - ACTIONS(9050), 1, + ACTIONS(9224), 1, anon_sym_select, - STATE(3743), 1, - sym__query_body, - STATE(3905), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6009), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3745), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5980), 9, + STATE(6207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698465,7 +726942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240823] = 24, + [255269] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698486,38 +726963,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9052), 1, + ACTIONS(9242), 1, anon_sym_group, - ACTIONS(9054), 1, + ACTIONS(9244), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(5455), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6004), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5981), 9, + STATE(6208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698527,7 +727002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240909] = 24, + [255352] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698548,38 +727023,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9008), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9010), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(5219), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6015), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5982), 9, + STATE(6209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698589,7 +727062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [240995] = 24, + [255435] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698610,38 +727083,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9020), 1, + ACTIONS(9218), 1, anon_sym_group, - ACTIONS(9022), 1, + ACTIONS(9220), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4731), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6045), 1, + STATE(6215), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5983), 9, + STATE(6210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698651,7 +727122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241081] = 24, + [255518] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698672,38 +727143,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(8996), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(8998), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4252), 1, + STATE(5600), 1, sym__select_or_group_clause, - STATE(6054), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5984), 9, + STATE(6211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698713,7 +727182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241167] = 24, + [255601] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698734,38 +727203,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9052), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9054), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(5455), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6004), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5985), 9, + STATE(6212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698775,7 +727242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241253] = 24, + [255684] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698796,38 +727263,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9012), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9014), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4953), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6039), 1, + STATE(6250), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5986), 9, + STATE(6213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698837,7 +727302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241339] = 24, + [255767] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698858,38 +727323,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9056), 1, + ACTIONS(9242), 1, anon_sym_group, - ACTIONS(9058), 1, + ACTIONS(9244), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4486), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6027), 1, + STATE(6208), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5987), 9, + STATE(6214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698899,7 +727362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241425] = 24, + [255850] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698920,38 +727383,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9060), 1, + ACTIONS(9218), 1, anon_sym_group, - ACTIONS(9062), 1, + ACTIONS(9220), 1, anon_sym_select, - STATE(4583), 1, - sym__query_body, - STATE(4970), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6050), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5988), 9, + STATE(6215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698961,7 +727422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241511] = 24, + [255933] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698982,38 +727443,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9064), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9066), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(4156), 1, + STATE(5642), 1, sym__select_or_group_clause, - STATE(6032), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5989), 9, + STATE(6216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699023,7 +727482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241597] = 24, + [256016] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699044,38 +727503,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9056), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9058), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(3261), 1, - sym__query_body, - STATE(4486), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6027), 1, + STATE(6218), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5990), 9, + STATE(6217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699085,7 +727542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241683] = 24, + [256099] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699106,38 +727563,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9024), 1, + ACTIONS(9230), 1, anon_sym_group, - ACTIONS(9026), 1, + ACTIONS(9232), 1, anon_sym_select, - STATE(3318), 1, - sym__query_body, - STATE(4533), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6028), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5991), 9, + STATE(6218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699147,7 +727602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241769] = 24, + [256182] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699168,38 +727623,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9068), 1, + ACTIONS(9254), 1, anon_sym_group, - ACTIONS(9070), 1, + ACTIONS(9256), 1, anon_sym_select, - STATE(2941), 1, - sym__query_body, - STATE(5312), 1, + STATE(4494), 1, sym__select_or_group_clause, - STATE(6047), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5992), 9, + STATE(6219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699209,7 +727662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241855] = 24, + [256265] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699230,38 +727683,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9068), 1, + ACTIONS(9254), 1, anon_sym_group, - ACTIONS(9070), 1, + ACTIONS(9256), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(5312), 1, + STATE(4625), 1, sym__select_or_group_clause, - STATE(6047), 1, + STATE(6221), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5993), 9, + STATE(6220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699271,7 +727722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [241941] = 24, + [256348] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699292,38 +727743,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9044), 1, + ACTIONS(9254), 1, anon_sym_group, - ACTIONS(9046), 1, + ACTIONS(9256), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(5215), 1, + STATE(4658), 1, sym__select_or_group_clause, - STATE(6052), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5994), 9, + STATE(6221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699333,7 +727782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242027] = 24, + [256431] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699354,38 +727803,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9064), 1, + ACTIONS(9290), 1, anon_sym_group, - ACTIONS(9066), 1, + ACTIONS(9292), 1, anon_sym_select, - STATE(2986), 1, - sym__query_body, - STATE(4156), 1, + STATE(5611), 1, sym__select_or_group_clause, - STATE(6032), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5995), 9, + STATE(6222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699395,7 +727842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242113] = 23, + [256514] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699416,36 +727863,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9064), 1, + ACTIONS(9286), 1, anon_sym_group, - ACTIONS(9066), 1, + ACTIONS(9288), 1, anon_sym_select, - STATE(2950), 1, + STATE(4658), 1, sym__select_or_group_clause, - STATE(6023), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5996), 9, + STATE(6223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699455,7 +727902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242196] = 23, + [256597] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699476,36 +727923,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9044), 1, + ACTIONS(9290), 1, anon_sym_group, - ACTIONS(9046), 1, + ACTIONS(9292), 1, anon_sym_select, - STATE(2976), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6225), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5997), 9, + STATE(6224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699515,7 +727962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242279] = 23, + [256680] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699536,36 +727983,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9024), 1, + ACTIONS(9290), 1, anon_sym_group, - ACTIONS(9026), 1, + ACTIONS(9292), 1, anon_sym_select, - STATE(3164), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6000), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5998), 9, + STATE(6225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699575,7 +728022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242362] = 23, + [256763] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699596,36 +728043,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9052), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9054), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(2950), 1, + STATE(5467), 1, sym__select_or_group_clause, - STATE(6017), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(5999), 9, + STATE(6226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699635,7 +728082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242445] = 23, + [256846] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699656,36 +728103,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9024), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9026), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(3165), 1, + STATE(4114), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6000), 9, + STATE(6227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699695,7 +728142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242528] = 23, + [256929] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699716,36 +728163,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9032), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9034), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(4715), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6229), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6001), 9, + STATE(6228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699755,7 +728202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242611] = 23, + [257012] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699776,36 +728223,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9048), 1, + ACTIONS(9234), 1, anon_sym_group, - ACTIONS(9050), 1, + ACTIONS(9236), 1, anon_sym_select, - STATE(3799), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3745), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6002), 9, + STATE(6229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699815,7 +728262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242694] = 23, + [257095] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699836,36 +728283,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9048), 1, + ACTIONS(9298), 1, anon_sym_group, - ACTIONS(9050), 1, + ACTIONS(9300), 1, anon_sym_select, - STATE(3797), 1, + STATE(5110), 1, sym__select_or_group_clause, - STATE(6002), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3745), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6003), 9, + STATE(6230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699875,7 +728322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242777] = 23, + [257178] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699896,36 +728343,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9052), 1, + ACTIONS(9298), 1, anon_sym_group, - ACTIONS(9054), 1, + ACTIONS(9300), 1, anon_sym_select, - STATE(5184), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6232), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6004), 9, + STATE(6231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699935,7 +728382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242860] = 23, + [257261] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699956,36 +728403,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9000), 1, + ACTIONS(9298), 1, anon_sym_group, - ACTIONS(9002), 1, + ACTIONS(9300), 1, anon_sym_select, - STATE(3732), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6005), 9, + STATE(6232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699995,7 +728442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [242943] = 23, + [257344] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700016,36 +728463,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9032), 1, + ACTIONS(9286), 1, anon_sym_group, - ACTIONS(9034), 1, + ACTIONS(9288), 1, anon_sym_select, - STATE(4616), 1, + STATE(5058), 1, sym__select_or_group_clause, - STATE(6001), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, STATE(4586), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6006), 9, + STATE(6233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700055,7 +728502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243026] = 23, + [257427] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700076,36 +728523,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9016), 1, + ACTIONS(9250), 1, anon_sym_group, - ACTIONS(9018), 1, + ACTIONS(9252), 1, anon_sym_select, - STATE(4004), 1, + STATE(4828), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6007), 9, + STATE(6234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700115,7 +728562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243109] = 23, + [257510] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700136,36 +728583,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9032), 1, + ACTIONS(9250), 1, anon_sym_group, - ACTIONS(9034), 1, + ACTIONS(9252), 1, anon_sym_select, - STATE(4290), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6008), 9, + STATE(6235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700175,7 +728622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243192] = 23, + [257593] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700196,36 +728643,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9048), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9050), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(3995), 1, + STATE(5620), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3745), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6009), 9, + STATE(6236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700235,7 +728682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243275] = 23, + [257676] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700256,36 +728703,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9028), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9030), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(3164), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6012), 1, + STATE(6238), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6010), 9, + STATE(6237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700295,7 +728742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243358] = 23, + [257759] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700316,36 +728763,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9060), 1, + ACTIONS(9246), 1, anon_sym_group, - ACTIONS(9062), 1, + ACTIONS(9248), 1, anon_sym_select, - STATE(4715), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6011), 9, + STATE(6238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700355,7 +728802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243441] = 23, + [257842] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700376,36 +728823,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9028), 1, + ACTIONS(9262), 1, anon_sym_group, - ACTIONS(9030), 1, + ACTIONS(9264), 1, anon_sym_select, - STATE(3165), 1, + STATE(4595), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6012), 9, + STATE(6239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700415,7 +728862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243524] = 23, + [257925] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700436,36 +728883,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9000), 1, + ACTIONS(9270), 1, anon_sym_group, - ACTIONS(9002), 1, + ACTIONS(9272), 1, anon_sym_select, - STATE(3164), 1, + STATE(5081), 1, sym__select_or_group_clause, - STATE(6016), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6013), 9, + STATE(6240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700475,7 +728922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243607] = 23, + [258008] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700496,36 +728943,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9060), 1, + ACTIONS(9270), 1, anon_sym_group, - ACTIONS(9062), 1, + ACTIONS(9272), 1, anon_sym_select, - STATE(4616), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6011), 1, + STATE(6242), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(4586), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6014), 9, + STATE(6241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700535,7 +728982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243690] = 23, + [258091] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700556,36 +729003,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9008), 1, + ACTIONS(9270), 1, anon_sym_group, - ACTIONS(9010), 1, + ACTIONS(9272), 1, anon_sym_select, - STATE(5298), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6015), 9, + STATE(6242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700595,7 +729042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243773] = 23, + [258174] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700616,36 +729063,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9000), 1, + ACTIONS(9278), 1, anon_sym_group, - ACTIONS(9002), 1, + ACTIONS(9280), 1, anon_sym_select, - STATE(3165), 1, + STATE(5086), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6016), 9, + STATE(6243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700655,7 +729102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243856] = 23, + [258257] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700676,36 +729123,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9052), 1, + ACTIONS(9278), 1, anon_sym_group, - ACTIONS(9054), 1, + ACTIONS(9280), 1, anon_sym_select, - STATE(2976), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6245), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6017), 9, + STATE(6244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700715,7 +729162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [243939] = 23, + [258340] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700736,36 +729183,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9020), 1, + ACTIONS(9278), 1, anon_sym_group, - ACTIONS(9022), 1, + ACTIONS(9280), 1, anon_sym_select, - STATE(3165), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6018), 9, + STATE(6245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700775,7 +729222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244022] = 23, + [258423] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700796,36 +729243,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9040), 1, + ACTIONS(9238), 1, anon_sym_group, - ACTIONS(9042), 1, + ACTIONS(9240), 1, anon_sym_select, - STATE(4874), 1, + STATE(2982), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6212), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6019), 9, + STATE(6246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700835,7 +729282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244105] = 23, + [258506] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700856,36 +729303,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9020), 1, + ACTIONS(9274), 1, anon_sym_group, - ACTIONS(9022), 1, + ACTIONS(9276), 1, anon_sym_select, - STATE(3164), 1, + STATE(5092), 1, sym__select_or_group_clause, - STATE(6018), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(3152), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6020), 9, + STATE(6247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700895,7 +729342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244188] = 23, + [258589] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700916,36 +729363,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9008), 1, + ACTIONS(9274), 1, anon_sym_group, - ACTIONS(9010), 1, + ACTIONS(9276), 1, anon_sym_select, - STATE(2950), 1, + STATE(3302), 1, sym__select_or_group_clause, - STATE(6022), 1, + STATE(6249), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6021), 9, + STATE(6248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700955,7 +729402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244271] = 23, + [258672] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700976,36 +729423,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9008), 1, + ACTIONS(9274), 1, anon_sym_group, - ACTIONS(9010), 1, + ACTIONS(9276), 1, anon_sym_select, - STATE(2976), 1, + STATE(3351), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(3325), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6022), 9, + STATE(6249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701015,7 +729462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244354] = 23, + [258755] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701036,36 +729483,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9208), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9210), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9212), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9214), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9216), 1, anon_sym_orderby, - ACTIONS(9064), 1, + ACTIONS(9258), 1, anon_sym_group, - ACTIONS(9066), 1, + ACTIONS(9260), 1, anon_sym_select, - STATE(2976), 1, + STATE(3048), 1, sym__select_or_group_clause, - STATE(6059), 1, + STATE(6254), 1, aux_sym__query_body_repeat1, - STATE(6148), 1, + STATE(6363), 1, sym__query_clause, - STATE(2949), 2, + STATE(2971), 2, sym_group_clause, sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6023), 9, + STATE(6250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701075,7 +729522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244437] = 23, + [258838] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701096,36 +729543,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9036), 1, - anon_sym_group, - ACTIONS(9038), 1, - anon_sym_select, - STATE(4024), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6024), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701135,7 +729584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244520] = 23, + [258926] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701156,36 +729605,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9028), 1, - anon_sym_group, - ACTIONS(9030), 1, - anon_sym_select, - STATE(4792), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6025), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701195,7 +729646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244603] = 23, + [259014] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701216,36 +729667,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9036), 1, - anon_sym_group, - ACTIONS(9038), 1, - anon_sym_select, - STATE(2950), 1, - sym__select_or_group_clause, - STATE(6035), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6026), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701255,7 +729708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244686] = 23, + [259102] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701276,36 +729729,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9316), 1, anon_sym_where, - ACTIONS(8984), 1, + ACTIONS(9319), 1, anon_sym_from, - ACTIONS(8986), 1, + ACTIONS(9322), 1, anon_sym_join, - ACTIONS(8988), 1, + ACTIONS(9325), 1, anon_sym_let, - ACTIONS(8990), 1, + ACTIONS(9328), 1, anon_sym_orderby, - ACTIONS(9056), 1, + STATE(6363), 1, + sym__query_clause, + ACTIONS(9331), 2, anon_sym_group, - ACTIONS(9058), 1, anon_sym_select, - STATE(4479), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, + STATE(6355), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6027), 9, + STATE(6254), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701315,7 +729760,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244769] = 23, + aux_sym__query_body_repeat1, + [259174] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701336,36 +729782,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9024), 1, - anon_sym_group, - ACTIONS(9026), 1, - anon_sym_select, - STATE(4536), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6028), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701375,7 +729814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244852] = 23, + [259248] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701396,36 +729835,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9004), 1, - anon_sym_group, - ACTIONS(9006), 1, - anon_sym_select, - STATE(3799), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3745), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6029), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701435,7 +729867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [244935] = 23, + [259322] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701456,36 +729888,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9004), 1, - anon_sym_group, - ACTIONS(9006), 1, - anon_sym_select, - STATE(3797), 1, - sym__select_or_group_clause, - STATE(6029), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3745), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6030), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701495,7 +729920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245018] = 23, + [259396] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701516,36 +729941,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9004), 1, - anon_sym_group, - ACTIONS(9006), 1, - anon_sym_select, - STATE(3563), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3745), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6031), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701555,7 +729973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245101] = 23, + [259470] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701576,36 +729994,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9064), 1, - anon_sym_group, - ACTIONS(9066), 1, - anon_sym_select, - STATE(4166), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6032), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701615,7 +730026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245184] = 23, + [259544] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701636,36 +730047,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9056), 1, - anon_sym_group, - ACTIONS(9058), 1, - anon_sym_select, - STATE(3164), 1, - sym__select_or_group_clause, - STATE(6034), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6033), 9, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(6260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701675,7 +730074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245267] = 23, + [259608] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701696,36 +730095,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9056), 1, - anon_sym_group, - ACTIONS(9058), 1, - anon_sym_select, - STATE(3165), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6034), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701735,7 +730127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245350] = 23, + [259682] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701756,36 +730148,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9036), 1, - anon_sym_group, - ACTIONS(9038), 1, - anon_sym_select, - STATE(2976), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6035), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701795,7 +730180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245433] = 23, + [259756] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701816,36 +730201,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9040), 1, - anon_sym_group, - ACTIONS(9042), 1, - anon_sym_select, - STATE(3164), 1, - sym__select_or_group_clause, - STATE(6037), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6036), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701855,7 +730233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245516] = 23, + [259830] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701876,36 +730254,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9040), 1, - anon_sym_group, - ACTIONS(9042), 1, - anon_sym_select, - STATE(3165), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6037), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701915,7 +730286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245599] = 23, + [259904] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701936,36 +730307,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8996), 1, - anon_sym_group, - ACTIONS(8998), 1, - anon_sym_select, - STATE(3165), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6038), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701975,7 +730339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245682] = 23, + [259978] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701996,36 +730360,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9012), 1, - anon_sym_group, - ACTIONS(9014), 1, - anon_sym_select, - STATE(4929), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6039), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702035,7 +730392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245765] = 23, + [260052] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702056,36 +730413,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8996), 1, - anon_sym_group, - ACTIONS(8998), 1, - anon_sym_select, - STATE(3164), 1, - sym__select_or_group_clause, - STATE(6038), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6040), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702095,7 +730445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245848] = 23, + [260126] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702116,36 +730466,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8992), 1, - anon_sym_group, - ACTIONS(8994), 1, - anon_sym_select, - STATE(4541), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6041), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702155,7 +730498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [245931] = 23, + [260200] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702176,36 +730519,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9016), 1, - anon_sym_group, - ACTIONS(9018), 1, - anon_sym_select, - STATE(2950), 1, - sym__select_or_group_clause, - STATE(6043), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6042), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702215,7 +730551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246014] = 23, + [260274] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702236,36 +730572,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9016), 1, - anon_sym_group, - ACTIONS(9018), 1, - anon_sym_select, - STATE(2976), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6043), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702275,7 +730604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246097] = 23, + [260349] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702296,36 +730625,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9044), 1, - anon_sym_group, - ACTIONS(9046), 1, - anon_sym_select, - STATE(2950), 1, - sym__select_or_group_clause, - STATE(5997), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6044), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702335,7 +730657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246180] = 23, + [260424] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702356,36 +730678,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9020), 1, - anon_sym_group, - ACTIONS(9022), 1, - anon_sym_select, - STATE(4788), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6045), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702395,7 +730708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246263] = 23, + [260495] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702416,36 +730729,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8992), 1, - anon_sym_group, - ACTIONS(8994), 1, - anon_sym_select, - STATE(2950), 1, - sym__select_or_group_clause, - STATE(6048), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6046), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702455,7 +730759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246346] = 23, + [260566] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702476,36 +730780,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, - anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9068), 1, - anon_sym_group, - ACTIONS(9070), 1, - anon_sym_select, - STATE(5169), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6047), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702515,7 +730812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246429] = 23, + [260641] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702536,36 +730833,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(9379), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8992), 1, - anon_sym_group, - ACTIONS(8994), 1, - anon_sym_select, - STATE(2976), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6048), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702575,7 +730856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246512] = 23, + [260698] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702596,36 +730877,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9012), 1, - anon_sym_group, - ACTIONS(9014), 1, - anon_sym_select, - STATE(3164), 1, - sym__select_or_group_clause, - STATE(6051), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6049), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702635,7 +730907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246595] = 23, + [260769] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702656,36 +730928,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9060), 1, - anon_sym_group, - ACTIONS(9062), 1, - anon_sym_select, - STATE(4938), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(4586), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6050), 9, + STATE(6277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702695,7 +730952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246678] = 23, + [260828] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702716,36 +730973,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + 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, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9012), 1, - anon_sym_group, - ACTIONS(9014), 1, - anon_sym_select, - STATE(3165), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6051), 9, + anon_sym_QMARK, + anon_sym_STAR, + anon_sym_DOT, + STATE(6278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702755,7 +730997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246761] = 23, + [260887] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702776,36 +731018,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9044), 1, - anon_sym_group, - ACTIONS(9046), 1, - anon_sym_select, - STATE(5302), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6052), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702815,7 +731048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246844] = 23, + [260958] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702836,36 +731069,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9068), 1, - anon_sym_group, - ACTIONS(9070), 1, - anon_sym_select, - STATE(2976), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6053), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702875,7 +731099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [246927] = 23, + [261029] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702896,36 +731120,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(8996), 1, - anon_sym_group, - ACTIONS(8998), 1, - anon_sym_select, - STATE(4231), 1, - sym__select_or_group_clause, - STATE(6059), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(3152), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6054), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702935,7 +731150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247010] = 23, + [261100] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702956,36 +731171,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8982), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(8984), 1, - anon_sym_from, - ACTIONS(8986), 1, - anon_sym_join, - ACTIONS(8988), 1, - anon_sym_let, - ACTIONS(8990), 1, - anon_sym_orderby, - ACTIONS(9068), 1, - anon_sym_group, - ACTIONS(9070), 1, - anon_sym_select, - STATE(2950), 1, - sym__select_or_group_clause, - STATE(6053), 1, - aux_sym__query_body_repeat1, - STATE(6148), 1, - sym__query_clause, - STATE(2949), 2, - sym_group_clause, - sym_select_clause, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6055), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702995,7 +731201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247093] = 26, + [261171] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703016,38 +731222,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(9074), 1, - anon_sym_EQ, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9078), 1, + ACTIONS(9333), 1, + anon_sym_COLON, + ACTIONS(9337), 1, anon_sym_LT, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2114), 1, - sym_type_argument_list, - STATE(2546), 1, - sym_accessor_list, - STATE(6120), 1, - sym_parameter_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(6944), 1, + ACTIONS(9339), 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, - STATE(7262), 1, - sym_arrow_expression_clause, - ACTIONS(9072), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6056), 9, + sym_base_list, + sym_parameter_list, + STATE(6283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703057,7 +731252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247181] = 26, + [261242] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703078,38 +731273,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, + ACTIONS(6678), 1, anon_sym_LBRACK, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, + 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, - ACTIONS(9074), 1, - anon_sym_EQ, - ACTIONS(9076), 1, anon_sym_LBRACE, - ACTIONS(9078), 1, anon_sym_LT, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2114), 1, - sym_type_argument_list, - STATE(2531), 1, - sym_accessor_list, - STATE(6098), 1, - sym_parameter_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(7025), 1, - sym_type_parameter_list, - STATE(7172), 1, - sym_arrow_expression_clause, - ACTIONS(9072), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6057), 9, + anon_sym_where, + STATE(6284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703119,7 +731298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247269] = 26, + [261304] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703140,38 +731319,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(5573), 1, anon_sym_LBRACK, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(9074), 1, + ACTIONS(9308), 1, anon_sym_EQ, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9078), 1, + ACTIONS(9337), 1, anon_sym_LT, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2114), 1, - sym_type_argument_list, - STATE(2550), 1, - sym_accessor_list, - STATE(6099), 1, + STATE(6720), 1, sym_parameter_list, - STATE(6697), 1, + STATE(6830), 1, sym_bracketed_argument_list, - STATE(6932), 1, + STATE(7173), 1, sym_type_parameter_list, - STATE(7381), 1, - sym_arrow_expression_clause, - ACTIONS(9072), 2, + ACTIONS(9306), 2, anon_sym_SEMI, anon_sym_COMMA, - STATE(6058), 9, + STATE(6285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703181,7 +731348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247357] = 19, + [261374] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703202,28 +731369,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9082), 1, + ACTIONS(9398), 1, + anon_sym_into, + STATE(6370), 1, + sym_join_into_clause, + ACTIONS(9396), 7, anon_sym_where, - ACTIONS(9085), 1, anon_sym_from, - ACTIONS(9088), 1, anon_sym_join, - ACTIONS(9091), 1, anon_sym_let, - ACTIONS(9094), 1, anon_sym_orderby, - STATE(6148), 1, - sym__query_clause, - ACTIONS(9097), 2, anon_sym_group, anon_sym_select, - STATE(6147), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6059), 10, + STATE(6286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703233,8 +731391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat1, - [247429] = 21, + [261431] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703255,29 +731412,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6365), 1, + 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(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7369), 1, - sym_declaration_list, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6060), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703287,7 +731440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247503] = 21, + [261500] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703308,29 +731461,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6064), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6273), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6275), 1, - sym_record_base, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9107), 2, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6061), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703340,7 +731489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247577] = 21, + [261569] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703361,29 +731510,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6071), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6335), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6336), 1, - sym_record_base, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9111), 2, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6062), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703393,7 +731538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247651] = 21, + [261638] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703414,29 +731559,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6091), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6298), 1, - sym_record_base, - STATE(6381), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9113), 2, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6063), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703446,7 +731587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247725] = 21, + [261707] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703467,29 +731608,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6091), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6294), 1, + 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(6295), 1, - sym_record_base, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9115), 2, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6291), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [261776] = 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(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(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6064), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703499,7 +731685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247799] = 21, + [261845] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703520,29 +731706,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6060), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6267), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + STATE(2600), 1, + sym_block, + STATE(6300), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7500), 1, - sym_declaration_list, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6065), 9, + STATE(7129), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703552,7 +731734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247873] = 21, + [261914] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703573,29 +731755,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6063), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6307), 1, - sym_record_base, - STATE(6310), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9117), 2, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6066), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703605,7 +731783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [247947] = 21, + [261983] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703626,29 +731804,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6346), 1, + 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(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7465), 1, - sym_declaration_list, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6067), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703658,7 +731832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248021] = 21, + [262052] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703679,29 +731853,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9404), 1, + anon_sym_COMMA, + ACTIONS(9407), 7, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6091), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6354), 1, - sym_record_base, - STATE(6355), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9119), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6068), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6296), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703711,7 +731873,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248095] = 21, + aux_sym_order_by_clause_repeat1, + [262107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703732,29 +731895,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(9411), 1, anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9103), 1, + ACTIONS(9414), 1, anon_sym_LT, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6340), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7244), 1, - sym_declaration_list, - STATE(6268), 3, + STATE(6444), 2, sym_type_parameter_list, - sym_base_list, sym_parameter_list, - STATE(6069), 9, + ACTIONS(9409), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + STATE(6297), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703764,7 +731917,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248169] = 16, + aux_sym__record_declaration_initializer_repeat1, + [262166] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703785,24 +731939,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3600), 1, - anon_sym_COLON, - ACTIONS(9121), 1, - anon_sym_LT, - ACTIONS(9124), 1, - anon_sym_COLON_COLON, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5274), 1, anon_sym_LBRACE, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6070), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703812,7 +731967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248233] = 21, + [262235] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703833,29 +731988,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6091), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6321), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6367), 1, - sym_record_base, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9126), 2, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6071), 9, + 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, + sym_arrow_expression_clause, + STATE(6299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703865,7 +732016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248307] = 21, + [262304] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703886,29 +732037,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(5617), 1, + anon_sym_LBRACE, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9109), 1, - anon_sym_COLON, - STATE(6068), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6334), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + STATE(2600), 1, + sym_block, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6339), 1, - sym_record_base, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9128), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6072), 9, + STATE(7221), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703918,7 +732065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248381] = 21, + [262373] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703939,29 +732086,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6069), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6375), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_block, + STATE(2817), 1, + sym__function_body, + STATE(6304), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7107), 1, - sym_declaration_list, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6073), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703971,7 +732114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248455] = 21, + [262442] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703992,29 +732135,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6067), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6328), 1, + 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(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7286), 1, - sym_declaration_list, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6074), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704024,7 +732163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248529] = 20, + [262511] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704045,27 +732184,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9130), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6080), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6440), 1, + STATE(2600), 1, + sym_block, + STATE(2656), 1, + sym__function_body, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6075), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704075,7 +732212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248600] = 20, + [262580] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704096,27 +732233,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9132), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6085), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6502), 1, + STATE(2600), 1, + sym_block, + STATE(2661), 1, + sym__function_body, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6076), 9, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704126,7 +732261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248671] = 22, + [262649] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704147,29 +732282,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9072), 1, + ACTIONS(9419), 1, anon_sym_COMMA, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9134), 1, - anon_sym_SEMI, - ACTIONS(9137), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_type_argument_list, - STATE(2637), 1, - sym_accessor_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(6077), 9, + STATE(6296), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9421), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704179,7 +732304,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248746] = 22, + [262706] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704200,29 +732325,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9072), 1, + ACTIONS(9419), 1, anon_sym_COMMA, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9137), 1, - anon_sym_EQ, - ACTIONS(9139), 1, - anon_sym_SEMI, - STATE(2114), 1, - sym_type_argument_list, - STATE(2698), 1, - sym_accessor_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(6078), 9, + STATE(6305), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9423), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704232,7 +732347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248821] = 22, + [262763] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704253,29 +732368,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3602), 1, - anon_sym_DOT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9072), 1, - anon_sym_COMMA, - ACTIONS(9076), 1, + ACTIONS(5293), 1, anon_sym_LBRACE, - ACTIONS(9137), 1, - anon_sym_EQ, - ACTIONS(9142), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9425), 1, anon_sym_SEMI, - STATE(2114), 1, - sym_type_argument_list, - STATE(2610), 1, - sym_accessor_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(6079), 9, + STATE(2019), 1, + sym__function_body, + STATE(2034), 1, + sym_block, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7347), 1, + sym_arrow_expression_clause, + STATE(6307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704285,7 +732396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248896] = 20, + [262832] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704306,27 +732417,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9145), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6469), 1, + STATE(2600), 1, + sym_block, + STATE(2701), 1, + sym__function_body, + STATE(6288), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6080), 9, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704336,7 +732445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [248967] = 14, + [262901] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704357,21 +732466,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3565), 1, - anon_sym_COLON, - ACTIONS(3393), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3562), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6081), 9, + 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, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704381,7 +732494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249026] = 20, + [262970] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704402,27 +732515,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(8916), 1, anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, + ACTIONS(9337), 1, anon_sym_LT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9147), 1, - anon_sym_LBRACE, - STATE(6083), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6443), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, + ACTIONS(9367), 1, + anon_sym_EQ, + STATE(6670), 1, sym_parameter_list, - STATE(6082), 9, + STATE(6830), 1, + sym_bracketed_argument_list, + STATE(7241), 1, + sym_type_parameter_list, + ACTIONS(9306), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704432,7 +732542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249097] = 20, + [263037] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704453,27 +732563,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9149), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6417), 1, + STATE(2600), 1, + sym_block, + STATE(2709), 1, + sym__function_body, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6083), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704483,7 +732591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249168] = 13, + [263106] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704504,20 +732612,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9151), 5, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5274), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(3393), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(6084), 9, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9417), 1, + anon_sym_SEMI, + STATE(1929), 1, + sym__function_body, + STATE(1977), 1, + sym_block, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7503), 1, + sym_arrow_expression_clause, + STATE(6312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704527,7 +732640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249225] = 20, + [263175] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704548,27 +732661,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9154), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6389), 1, + STATE(2600), 1, + sym_block, + STATE(2730), 1, + sym__function_body, + STATE(6290), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6085), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704578,7 +732689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249296] = 14, + [263244] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704599,21 +732710,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9121), 1, - anon_sym_LT, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(3602), 9, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5771), 1, anon_sym_LBRACE, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6086), 9, + ACTIONS(9427), 1, + anon_sym_SEMI, + STATE(2104), 1, + sym_block, + STATE(2139), 1, + sym__function_body, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7338), 1, + sym_arrow_expression_clause, + STATE(6314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704623,7 +732738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249355] = 20, + [263313] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704644,27 +732759,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9156), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6130), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6390), 1, + STATE(2600), 1, + sym_block, + STATE(2746), 1, + sym__function_body, + STATE(6291), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6087), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704674,7 +732787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249426] = 20, + [263382] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704695,27 +732808,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9099), 1, - anon_sym_COLON, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9158), 1, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(6087), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6409), 1, + STATE(2600), 1, + sym_block, + STATE(2749), 1, + sym__function_body, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6088), 9, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704725,7 +732836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249497] = 16, + [263451] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704746,22 +732857,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9160), 1, - anon_sym_DOT, - ACTIONS(3950), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5293), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6089), 9, + ACTIONS(9425), 1, + anon_sym_SEMI, + STATE(2034), 1, + sym_block, + STATE(2035), 1, + sym__function_body, + STATE(6307), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7347), 1, + sym_arrow_expression_clause, + STATE(6317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704771,7 +732885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249559] = 20, + [263520] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704792,26 +732906,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9074), 1, - anon_sym_EQ, - ACTIONS(9103), 1, + ACTIONS(3660), 1, + anon_sym_COLON, + ACTIONS(9429), 1, anon_sym_LT, - STATE(6458), 1, - sym_parameter_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(7017), 1, - sym_type_parameter_list, - ACTIONS(9072), 2, - anon_sym_SEMI, + ACTIONS(9432), 1, + anon_sym_COLON_COLON, + STATE(2183), 1, + sym_type_argument_list, + ACTIONS(3662), 5, anon_sym_COMMA, - STATE(6090), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_DOT, + STATE(6318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704821,7 +732930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249629] = 15, + [263581] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704842,19 +732951,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, + ACTIONS(9434), 1, + anon_sym_COLON, + ACTIONS(9437), 1, anon_sym_LPAREN, - ACTIONS(9167), 1, + ACTIONS(9442), 1, anon_sym_LT, - STATE(6235), 2, - sym_type_parameter_list, - sym_parameter_list, - ACTIONS(9162), 4, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(9440), 2, anon_sym_LBRACE, anon_sym_where, - STATE(6091), 10, + STATE(6505), 3, + sym_type_parameter_list, + sym_base_list, + sym_parameter_list, + STATE(6319), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704864,8 +732974,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__record_declaration_initializer_repeat1, - [249688] = 20, + aux_sym__class_declaration_initializer_repeat3, + [263642] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704886,25 +732996,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9170), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - STATE(2036), 1, - sym__function_body, - STATE(2068), 1, + ACTIONS(9402), 1, + anon_sym_LBRACE, + STATE(2600), 1, sym_block, - STATE(6125), 1, + STATE(2770), 1, + sym__function_body, + STATE(6295), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7336), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6092), 9, + STATE(6320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704914,7 +733024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249757] = 20, + [263711] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704935,25 +733045,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2740), 1, + STATE(2839), 1, sym__function_body, - STATE(6122), 1, + STATE(6309), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6093), 9, + STATE(6321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704963,7 +733073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249826] = 20, + [263780] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704984,25 +733094,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(5771), 1, + anon_sym_LBRACE, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9427), 1, anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, + STATE(2104), 1, sym_block, - STATE(2632), 1, + STATE(2105), 1, sym__function_body, - STATE(6097), 1, + STATE(6314), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, + STATE(7338), 1, sym_arrow_expression_clause, - STATE(6094), 9, + STATE(6322), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [263849] = 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(3669), 1, + anon_sym_COLON_COLON, + ACTIONS(6311), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705012,7 +733167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249895] = 20, + [263910] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705033,25 +733188,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9176), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - STATE(1860), 1, - sym__function_body, - STATE(1905), 1, + ACTIONS(9402), 1, + anon_sym_LBRACE, + STATE(2600), 1, sym_block, - STATE(6252), 1, + STATE(2843), 1, + sym__function_body, + STATE(6311), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7528), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6095), 9, + STATE(6324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705061,7 +733216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [249964] = 20, + [263979] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705082,25 +733237,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2717), 1, + STATE(2844), 1, sym__function_body, - STATE(6117), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6096), 9, + STATE(6325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705110,7 +733265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250033] = 20, + [264048] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705131,25 +733286,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2739), 1, + STATE(2814), 1, sym__function_body, - STATE(6252), 1, + STATE(6325), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6097), 9, + STATE(6326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705159,7 +733314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250102] = 20, + [264117] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705180,25 +733335,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9448), 1, + anon_sym_COLON, + ACTIONS(9450), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2588), 1, - sym__function_body, - STATE(6112), 1, + STATE(6410), 1, + sym_type_parameter_list, + STATE(6633), 1, + sym_base_list, + STATE(6634), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6098), 9, + STATE(6327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705208,7 +733361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250171] = 20, + [264183] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705229,25 +733382,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(5264), 1, + anon_sym_LPAREN, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9454), 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(9174), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2583), 1, - sym__function_body, - STATE(6104), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6099), 9, + anon_sym_where, + STATE(6328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705257,7 +733406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250240] = 19, + [264245] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705278,24 +733427,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9137), 1, - anon_sym_EQ, - STATE(6410), 1, - sym_parameter_list, - STATE(6697), 1, - sym_bracketed_argument_list, - STATE(7057), 1, - sym_type_parameter_list, - ACTIONS(9072), 2, - anon_sym_SEMI, + ACTIONS(9456), 8, anon_sym_COMMA, - STATE(6100), 9, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705305,7 +733446,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250307] = 20, + [264297] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705326,25 +733467,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9448), 1, + anon_sym_COLON, + ACTIONS(9458), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2662), 1, - sym__function_body, - STATE(6107), 1, + STATE(6398), 1, + sym_type_parameter_list, + STATE(6614), 1, + sym_base_list, + STATE(6631), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6101), 9, + STATE(6330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705354,7 +733493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250376] = 20, + [264363] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705375,25 +733514,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9429), 1, + anon_sym_LT, + STATE(2183), 1, + sym_type_argument_list, + ACTIONS(3662), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2606), 1, - sym__function_body, - STATE(6113), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6102), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705403,7 +733535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250445] = 20, + [264419] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705424,25 +733556,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9462), 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, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2597), 1, - sym__function_body, - STATE(6116), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6103), 9, + anon_sym_LT, + anon_sym_where, + STATE(6332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705452,7 +733579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250514] = 20, + [264479] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705473,25 +733600,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9310), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2590), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, + 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(6104), 9, + STATE(6333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705501,7 +733626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250583] = 20, + [264545] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705522,25 +733647,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9337), 1, + anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9448), 1, + anon_sym_COLON, + ACTIONS(9467), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2622), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6418), 1, + sym_type_parameter_list, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6105), 9, + STATE(6644), 1, + sym_base_list, + STATE(6645), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705550,7 +733673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250652] = 14, + [264611] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705571,11 +733694,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9180), 1, - anon_sym_into, - STATE(6174), 1, - sym_join_into_clause, - ACTIONS(9178), 7, + ACTIONS(9407), 8, + anon_sym_COMMA, anon_sym_where, anon_sym_from, anon_sym_join, @@ -705583,7 +733703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(6106), 9, + STATE(6335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705593,7 +733713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250709] = 20, + [264663] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705614,25 +733734,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9310), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2603), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, + ACTIONS(9314), 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, sym_arrow_expression_clause, - STATE(6107), 9, + STATE(6336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705642,7 +733760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250778] = 20, + [264729] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705663,25 +733781,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9310), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2587), 1, - sym__function_body, - STATE(6119), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, + 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(6108), 9, + STATE(6337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705691,7 +733807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250847] = 20, + [264795] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705712,25 +733828,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2733), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6109), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705740,7 +733851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250916] = 14, + [264856] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705761,19 +733872,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9182), 1, - anon_sym_COMMA, - STATE(6129), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9184), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6110), 9, + ACTIONS(5293), 1, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705783,7 +733895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [250973] = 20, + [264917] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705804,25 +733916,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2722), 1, - sym__function_body, - STATE(6126), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6111), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705832,7 +733939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251042] = 20, + [264978] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705853,25 +733960,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2646), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6112), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705881,7 +733983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251111] = 20, + [265039] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705902,25 +734004,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(5771), 1, anon_sym_LBRACE, - STATE(2507), 1, + ACTIONS(9475), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_when, + STATE(2092), 1, sym_block, - STATE(2608), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6113), 9, + STATE(6388), 1, + aux_sym_catch_clause_repeat1, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705930,7 +734027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251180] = 16, + [265100] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705951,21 +734048,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3619), 1, - anon_sym_COLON_COLON, - ACTIONS(6241), 1, - anon_sym_LT, - STATE(4028), 1, - sym_type_argument_list, - ACTIONS(9186), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3602), 4, + ACTIONS(2977), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6114), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705975,7 +734071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251241] = 20, + [265161] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705996,25 +734092,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9176), 1, - anon_sym_SEMI, - STATE(1904), 1, - sym__function_body, - STATE(1905), 1, + ACTIONS(9475), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_when, + STATE(6375), 1, + aux_sym_catch_clause_repeat1, + STATE(6630), 1, sym_block, - STATE(6095), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7528), 1, - sym_arrow_expression_clause, - STATE(6115), 9, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706024,7 +734115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251310] = 20, + [265222] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706045,25 +734136,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9485), 7, anon_sym_SEMI, - ACTIONS(9174), 1, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2613), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6116), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706073,7 +734154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251379] = 20, + [265273] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706094,25 +734175,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2658), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6117), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706122,7 +734198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251448] = 20, + [265334] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706143,25 +734219,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - STATE(2507), 1, - sym_block, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6881), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6118), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706171,7 +734242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251517] = 20, + [265395] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706192,25 +734263,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2618), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6119), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706220,7 +734286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251586] = 20, + [265456] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706241,25 +734307,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9493), 1, + anon_sym_LPAREN, + STATE(6413), 1, + sym_argument_list, + ACTIONS(9491), 5, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2716), 1, - sym__function_body, - STATE(6105), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6120), 9, + anon_sym_LT, + anon_sym_where, + STATE(6349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706269,7 +734327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251655] = 20, + [265511] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706290,25 +734348,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9462), 1, + anon_sym_COMMA, + STATE(6353), 1, + aux_sym_base_list_repeat1, + ACTIONS(9496), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2666), 1, - sym__function_body, - STATE(6109), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6121), 9, + anon_sym_LT, + anon_sym_where, + STATE(6350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706318,7 +734368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251724] = 20, + [265566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706339,25 +734389,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, + ACTIONS(9498), 7, anon_sym_SEMI, - ACTIONS(9174), 1, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2659), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6122), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706367,7 +734407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251793] = 20, + [265617] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706388,25 +734428,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(5771), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9189), 1, - anon_sym_SEMI, - STATE(1942), 1, + ACTIONS(9475), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_when, + STATE(2088), 1, sym_block, - STATE(1974), 1, - sym__function_body, - STATE(6124), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7506), 1, - sym_arrow_expression_clause, - STATE(6123), 9, + STATE(6342), 1, + aux_sym_catch_clause_repeat1, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706416,7 +734451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251862] = 20, + [265678] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706437,25 +734472,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(9500), 1, + anon_sym_COMMA, + ACTIONS(9491), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, + anon_sym_LT, anon_sym_where, - ACTIONS(9189), 1, - anon_sym_SEMI, - STATE(1942), 1, - sym_block, - STATE(1979), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7506), 1, - sym_arrow_expression_clause, - STATE(6124), 9, + STATE(6353), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706465,7 +734490,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [251931] = 20, + aux_sym_base_list_repeat1, + [265731] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706486,25 +734512,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9170), 1, - anon_sym_SEMI, - STATE(2033), 1, - sym__function_body, - STATE(2068), 1, + ACTIONS(9475), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_when, + STATE(1923), 1, sym_block, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7336), 1, - sym_arrow_expression_clause, - STATE(6125), 9, + STATE(6388), 1, + aux_sym_catch_clause_repeat1, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706514,7 +734535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252000] = 20, + [265792] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706535,25 +734556,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, + ACTIONS(9503), 7, anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2707), 1, - sym__function_body, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6126), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706563,7 +734574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252069] = 16, + [265843] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706584,21 +734595,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(9505), 1, + anon_sym_DOT, + ACTIONS(3977), 6, anon_sym_COLON, - ACTIONS(9191), 1, - anon_sym_LT, - ACTIONS(9194), 1, - anon_sym_COLON_COLON, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 5, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_DOT, - STATE(6127), 9, + STATE(6356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706608,7 +734614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252130] = 14, + [265896] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706629,19 +734635,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9182), 1, - anon_sym_COMMA, - STATE(6110), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(9196), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6128), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706651,7 +734658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252187] = 13, + [265957] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706672,17 +734679,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9198), 1, - anon_sym_COMMA, - ACTIONS(9201), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6129), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706692,8 +734702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_order_by_clause_repeat1, - [252242] = 16, + [266018] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706714,20 +734723,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9203), 1, - anon_sym_COLON, - ACTIONS(9206), 1, - anon_sym_LPAREN, - ACTIONS(9211), 1, - anon_sym_LT, - ACTIONS(9209), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6268), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6130), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706737,8 +734744,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat3, - [252303] = 20, + aux_sym_interpolated_string_expression_repeat1, + [266077] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706759,25 +734766,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9172), 1, - anon_sym_SEMI, - STATE(2507), 1, - sym_block, - STATE(6118), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6893), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6131), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706787,7 +734789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252372] = 19, + [266138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706808,23 +734810,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9214), 1, + ACTIONS(4094), 7, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(9216), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(6244), 1, - sym_type_parameter_list, - STATE(6393), 1, - sym_base_list, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6476), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6132), 9, + anon_sym_LT, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706834,7 +734828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252438] = 19, + [266189] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706855,23 +734849,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [266250] = 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(9525), 7, anon_sym_where, - ACTIONS(9214), 1, - anon_sym_COLON, - ACTIONS(9218), 1, - anon_sym_LBRACE, - STATE(6198), 1, - sym_type_parameter_list, - STATE(6387), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6388), 1, - sym_base_list, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6133), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706881,7 +734911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252504] = 19, + [266301] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706902,23 +734932,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(2554), 1, - sym_accessor_list, - STATE(6121), 1, - sym_parameter_list, - STATE(7007), 1, - sym_type_parameter_list, - STATE(7196), 1, - sym_arrow_expression_clause, - STATE(6134), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706928,7 +734955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252570] = 19, + [266362] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706949,23 +734976,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9076), 1, + ACTIONS(5274), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(2541), 1, - sym_accessor_list, - STATE(6102), 1, - sym_parameter_list, - STATE(7036), 1, - sym_type_parameter_list, - STATE(7133), 1, - sym_arrow_expression_clause, - STATE(6135), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706975,7 +734999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252636] = 17, + [266423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706996,21 +735020,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9222), 1, - anon_sym_COMMA, - STATE(6264), 1, - aux_sym_record_base_repeat1, - STATE(6472), 1, - sym_argument_list, - ACTIONS(9220), 3, + ACTIONS(9527), 7, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6136), 9, + anon_sym_EQ_GT, + STATE(6366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707020,7 +735038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252698] = 19, + [266474] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707041,23 +735059,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(9529), 7, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(9076), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9103), 1, anon_sym_LT, - STATE(2579), 1, - sym_accessor_list, - STATE(6093), 1, - sym_parameter_list, - STATE(6921), 1, - sym_type_parameter_list, - STATE(7403), 1, - sym_arrow_expression_clause, - STATE(6137), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707067,7 +735077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252764] = 12, + [266525] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707088,16 +735098,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9201), 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(6138), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707107,7 +735121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252816] = 19, + [266586] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707128,23 +735142,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9103), 1, - anon_sym_LT, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9214), 1, - anon_sym_COLON, - ACTIONS(9224), 1, - anon_sym_LBRACE, - STATE(6258), 1, - sym_type_parameter_list, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6492), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6495), 1, - sym_base_list, - STATE(6139), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707154,7 +735165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252882] = 14, + [266647] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707175,18 +735186,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9191), 1, - anon_sym_LT, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9535), 7, anon_sym_where, - anon_sym_DOT, - STATE(6140), 9, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707196,7 +735204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252938] = 12, + [266698] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707217,16 +735225,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9226), 8, + 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, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6141), 9, + STATE(6371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707236,7 +735245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [252990] = 16, + [266753] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707257,20 +735266,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9462), 1, anon_sym_COMMA, - ACTIONS(9232), 1, - anon_sym_LPAREN, - STATE(6168), 1, - sym_argument_list, - STATE(6170), 1, + STATE(6353), 1, aux_sym_base_list_repeat1, - ACTIONS(9228), 4, + ACTIONS(9537), 5, anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - STATE(6142), 9, + STATE(6372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707280,7 +735286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253050] = 17, + [266808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707301,20 +735307,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9237), 1, - sym_interpolation_end_quote, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - STATE(6146), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6143), 9, + ACTIONS(9539), 7, + anon_sym_where, + anon_sym_from, + anon_sym_join, + anon_sym_let, + anon_sym_orderby, + anon_sym_group, + anon_sym_select, + STATE(6373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707324,7 +735325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253111] = 17, + [266859] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707345,20 +735346,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(1901), 1, - sym_block, - STATE(6240), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6144), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707368,7 +735369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253172] = 17, + [266920] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707389,20 +735390,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - ACTIONS(9241), 1, + ACTIONS(9475), 1, anon_sym_LPAREN, - ACTIONS(9243), 1, + ACTIONS(9477), 1, anon_sym_when, - STATE(6153), 1, + STATE(6388), 1, aux_sym_catch_clause_repeat1, - STATE(6400), 1, + STATE(6621), 1, sym_block, - STATE(6614), 2, + STATE(7010), 2, sym_catch_declaration, sym_catch_filter_clause, - STATE(6145), 9, + STATE(6375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707412,7 +735413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253233] = 16, + [266981] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707433,18 +735434,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9248), 1, - sym_interpolation_end_quote, - ACTIONS(9250), 1, - sym_interpolation_open_brace, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9245), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6146), 10, + ACTIONS(5293), 1, + anon_sym_LBRACE, + ACTIONS(9475), 1, + anon_sym_LPAREN, + ACTIONS(9477), 1, + anon_sym_when, + STATE(1963), 1, + sym_block, + STATE(6388), 1, + aux_sym_catch_clause_repeat1, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707454,8 +735457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat1, - [253292] = 12, + [267042] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707476,15 +735478,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9253), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6147), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707494,7 +735501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253343] = 12, + [267103] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707515,15 +735522,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9255), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6148), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707533,7 +735545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253394] = 12, + [267164] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707554,15 +735566,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9257), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6149), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707572,7 +735589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253445] = 17, + [267225] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707593,20 +735610,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, - anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(1851), 1, - sym_block, - STATE(6240), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6150), 9, + 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, @@ -707616,41 +735632,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253506] = 17, - ACTIONS(3), 1, + [267285] = 16, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9259), 1, - sym_interpolation_end_quote, - STATE(6143), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, + 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(6151), 9, + STATE(6726), 1, + sym_string_literal_content, + STATE(6381), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707660,7 +735673,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253567] = 12, + aux_sym_string_literal_repeat1, + [267343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707681,15 +735695,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9261), 7, + ACTIONS(9564), 6, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6152), 9, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707699,7 +735712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253618] = 17, + [267393] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707720,20 +735733,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(6240), 1, - aux_sym_catch_clause_repeat1, - STATE(6442), 1, + STATE(2600), 1, sym_block, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6153), 9, + STATE(2659), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707743,41 +735755,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253679] = 17, - ACTIONS(3), 1, + [267453] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9263), 1, - anon_sym_catch, - ACTIONS(9265), 1, - anon_sym_finally, - STATE(6176), 1, - aux_sym_try_statement_repeat1, - STATE(6385), 1, - sym_catch_clause, - STATE(6873), 1, - sym_finally_clause, - ACTIONS(3051), 2, - anon_sym_while, - anon_sym_else, - STATE(6154), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707787,7 +735798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253740] = 17, + [267513] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707808,20 +735819,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9454), 1, + anon_sym_COMMA, + STATE(6566), 1, + aux_sym_record_base_repeat1, + ACTIONS(9574), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(1852), 1, - sym_block, - STATE(6150), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6155), 9, + anon_sym_where, + STATE(6385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707831,7 +735839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253801] = 12, + [267569] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707852,15 +735860,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4045), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6156), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707870,41 +735882,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253852] = 17, - ACTIONS(3), 1, + [267629] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(2020), 1, - sym_block, - STATE(6240), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6157), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707914,7 +735925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253913] = 17, + [267689] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707935,20 +735946,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9267), 1, - sym_interpolation_end_quote, - STATE(6160), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6158), 9, + ACTIONS(9580), 1, + anon_sym_LPAREN, + ACTIONS(9583), 1, + anon_sym_LBRACE, + ACTIONS(9585), 1, + anon_sym_when, + STATE(7010), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6388), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707958,7 +735965,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [253974] = 13, + aux_sym_catch_clause_repeat1, + [267745] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707979,16 +735987,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9269), 1, - anon_sym_DOT, - ACTIONS(3934), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9588), 1, + anon_sym_SEMI, + ACTIONS(9590), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6159), 9, + STATE(3436), 1, + sym_block, + STATE(3491), 1, + sym__function_body, + STATE(7418), 1, + sym_arrow_expression_clause, + STATE(6389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707998,41 +736009,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254027] = 17, - ACTIONS(3), 1, + [267805] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9271), 1, - sym_interpolation_end_quote, - STATE(6146), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, + 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(6160), 9, + ACTIONS(9592), 1, + anon_sym_DQUOTE, + STATE(6381), 1, + aux_sym_string_literal_repeat1, + STATE(6726), 1, + sym_string_literal_content, + STATE(6390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708042,41 +736052,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254088] = 17, - ACTIONS(3), 1, + [267865] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9273), 1, - sym_interpolation_end_quote, - STATE(6146), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, + 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(6161), 9, + ACTIONS(9594), 1, + anon_sym_DQUOTE, + STATE(6381), 1, + aux_sym_string_literal_repeat1, + STATE(6726), 1, + sym_string_literal_content, + STATE(6391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708086,7 +736095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254149] = 17, + [267925] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708107,20 +736116,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9275), 1, + ACTIONS(9551), 1, + sym_interpolation_string_content, + ACTIONS(9596), 1, sym_interpolation_end_quote, - STATE(6161), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, + STATE(6401), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6761), 1, sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6162), 9, + STATE(6778), 1, + sym__interpolated_raw_string_content, + STATE(6392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708130,7 +736138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254210] = 14, + [267985] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708151,17 +736159,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - STATE(6165), 1, - aux_sym_base_list_repeat1, - ACTIONS(9277), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6163), 9, + 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, + sym_interpolation, + STATE(6778), 1, + sym__interpolated_raw_string_content, + STATE(6393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708171,7 +736181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254265] = 17, + [268045] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708192,20 +736202,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(1870), 1, + STATE(2600), 1, sym_block, - STATE(6144), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6164), 9, + STATE(2713), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708215,7 +736224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254326] = 13, + [268105] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708236,15 +736245,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9281), 1, - anon_sym_COMMA, - ACTIONS(9279), 5, - anon_sym_COLON, + ACTIONS(5264), 1, 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(6165), 10, + STATE(6395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708254,8 +736266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [254379] = 14, + [268163] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708276,17 +736287,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9284), 1, - anon_sym_LPAREN, - STATE(6227), 1, - sym_argument_list, - ACTIONS(9279), 5, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6166), 9, + STATE(2600), 1, + sym_block, + STATE(2812), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708296,7 +736309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254434] = 17, + [268223] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708317,20 +736330,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(9241), 1, - anon_sym_LPAREN, - ACTIONS(9243), 1, - anon_sym_when, - STATE(2022), 1, - sym_block, - STATE(6157), 1, - aux_sym_catch_clause_repeat1, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6167), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9547), 1, + sym_interpolation_end_quote, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6399), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, + sym_interpolation, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708340,7 +736352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254495] = 14, + [268283] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708361,17 +736373,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - STATE(6163), 1, - aux_sym_base_list_repeat1, - ACTIONS(9287), 5, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9448), 1, anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9602), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6168), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708381,7 +736395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254550] = 17, + [268343] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708402,20 +736416,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9289), 1, + ACTIONS(9604), 1, sym_interpolation_end_quote, - STATE(6177), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, + ACTIONS(9606), 1, + sym_interpolation_open_brace, + ACTIONS(9609), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6169), 9, + STATE(6928), 1, + sym_interpolation, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6399), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708425,38 +736436,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254611] = 14, - ACTIONS(3), 1, + aux_sym_interpolated_string_expression_repeat2, + [268401] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_COMMA, - STATE(6165), 1, - aux_sym_base_list_repeat1, - ACTIONS(9287), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6170), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708466,7 +736480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254666] = 12, + [268461] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708487,15 +736501,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9291), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6171), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708505,7 +736521,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254717] = 17, + aux_sym_interpolated_string_expression_repeat3, + [268519] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708526,20 +736543,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9293), 1, - sym_interpolation_end_quote, - STATE(6146), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6172), 9, + 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(2781), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708549,7 +736565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254778] = 12, + [268579] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708570,15 +736586,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9295), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6173), 9, + ACTIONS(9622), 6, + anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708588,7 +736603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254829] = 12, + [268629] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708609,15 +736624,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9297), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6174), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708627,7 +736646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254880] = 12, + [268689] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708648,15 +736667,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9299), 7, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9402), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6175), 9, + STATE(2600), 1, + sym_block, + STATE(2720), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708666,7 +736689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254931] = 17, + [268749] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708687,20 +736710,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9263), 1, - anon_sym_catch, - ACTIONS(9265), 1, - anon_sym_finally, - STATE(6184), 1, - aux_sym_try_statement_repeat1, - STATE(6385), 1, - sym_catch_clause, - STATE(6858), 1, - sym_finally_clause, - ACTIONS(3043), 2, - anon_sym_while, - anon_sym_else, - STATE(6176), 9, + 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(2671), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708710,7 +736732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [254992] = 17, + [268809] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708731,20 +736753,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9301), 1, + ACTIONS(9521), 1, sym_interpolation_end_quote, - STATE(6146), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, - sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, + ACTIONS(9576), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6177), 9, + STATE(6399), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, + sym_interpolation, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708754,7 +736775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255053] = 17, + [268869] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708775,20 +736796,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9303), 1, + ACTIONS(9551), 1, + sym_interpolation_string_content, + ACTIONS(9624), 1, sym_interpolation_end_quote, - STATE(6172), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6428), 1, + STATE(6401), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6761), 1, sym_interpolation, - STATE(6432), 1, - sym__interpolated_string_content, - ACTIONS(9235), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6178), 9, + STATE(6778), 1, + sym__interpolated_raw_string_content, + STATE(6408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708798,7 +736818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255114] = 17, + [268929] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708819,19 +736839,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2641), 1, + STATE(2683), 1, sym__function_body, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6179), 9, + STATE(6409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708841,7 +736861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255174] = 14, + [268989] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708862,16 +736882,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9307), 1, - anon_sym_COMMA, - STATE(6195), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9305), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9339), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6180), 9, + ACTIONS(9448), 1, + anon_sym_COLON, + ACTIONS(9626), 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, @@ -708881,40 +736904,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255228] = 17, - ACTIONS(8891), 1, + [269049] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9309), 1, - anon_sym_DQUOTE, - ACTIONS(9311), 1, + ACTIONS(9568), 1, aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, + ACTIONS(9570), 1, aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, + ACTIONS(9572), 1, sym_escape_sequence, - STATE(6206), 1, + ACTIONS(9628), 1, + anon_sym_DQUOTE, + STATE(6400), 1, aux_sym_string_literal_repeat1, - STATE(6479), 1, + STATE(6726), 1, sym_string_literal_content, - STATE(6181), 9, + STATE(6411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708924,7 +736947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255288] = 17, + [269109] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708945,19 +736968,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9317), 1, - sym_interpolation_end_quote, - ACTIONS(9319), 1, - sym_interpolation_string_content, - STATE(6239), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6182), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708967,7 +736987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255348] = 17, + [269163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708988,19 +737008,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9632), 6, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2643), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6183), 9, + anon_sym_LT, + anon_sym_where, + STATE(6413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709010,36 +737025,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255408] = 14, - ACTIONS(3), 1, + [269213] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9321), 1, - anon_sym_catch, - STATE(6385), 1, - sym_catch_clause, - ACTIONS(3055), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - STATE(6184), 10, + 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(9634), 1, + anon_sym_DQUOTE, + STATE(6387), 1, + aux_sym_string_literal_repeat1, + STATE(6726), 1, + sym_string_literal_content, + STATE(6414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709049,8 +737068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_try_statement_repeat1, - [255462] = 12, + [269273] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709071,14 +737089,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9324), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6185), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709088,7 +737107,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255512] = 17, + aux_sym_try_statement_repeat1, + [269327] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709109,62 +737129,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2607), 1, + STATE(2828), 1, sym__function_body, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [255572] = 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(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9289), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6219), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6187), 9, + STATE(6416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709174,7 +737151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255632] = 17, + [269387] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709195,19 +737172,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(3667), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, + 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, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2596), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6188), 9, + anon_sym_COMMA, + STATE(6417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709217,7 +737193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255692] = 16, + [269445] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709238,18 +737214,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9328), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6189), 9, + ACTIONS(9339), 1, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709259,7 +737236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255750] = 17, + [269505] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709280,19 +737257,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9330), 1, + ACTIONS(9479), 1, sym_interpolation_end_quote, - STATE(6220), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6397), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, sym_interpolation, - STATE(6190), 9, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709302,7 +737279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255810] = 16, + [269565] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709323,18 +737300,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, + 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, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(3950), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6191), 9, + STATE(6420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709344,7 +737321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255868] = 17, + [269623] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709365,62 +737342,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9334), 1, - sym_interpolation_end_quote, - STATE(6182), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6192), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [255928] = 17, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9336), 1, - anon_sym_DQUOTE, - STATE(6236), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6193), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709430,7 +737364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [255988] = 17, + [269683] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709451,19 +737385,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9259), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6247), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6194), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709473,7 +737406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256048] = 14, + [269741] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709494,16 +737427,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9307), 1, - anon_sym_COMMA, - STATE(6251), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9338), 4, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6195), 9, + STATE(2600), 1, + sym_block, + STATE(2738), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709513,7 +737449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256102] = 17, + [269801] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709534,19 +737470,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9588), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9590), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2616), 1, + STATE(3381), 1, sym__function_body, - STATE(7083), 1, + STATE(3436), 1, + sym_block, + STATE(7418), 1, sym_arrow_expression_clause, - STATE(6196), 9, + STATE(6424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709556,7 +737492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256162] = 13, + [269861] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709577,15 +737513,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9342), 1, - anon_sym_QMARK, - ACTIONS(9340), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6197), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9489), 1, + sym_interpolation_end_quote, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6407), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, + sym_interpolation, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709595,7 +737535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256214] = 17, + [269921] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709616,19 +737556,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9214), 1, - anon_sym_COLON, - ACTIONS(9344), 1, - anon_sym_LBRACE, - STATE(6383), 1, - sym_base_list, - STATE(6446), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6198), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709638,7 +737578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256274] = 16, + [269981] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709659,18 +737599,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(9074), 1, - anon_sym_EQ, - STATE(6697), 1, - sym_bracketed_argument_list, - ACTIONS(9072), 2, - anon_sym_SEMI, + ACTIONS(9649), 1, anon_sym_COMMA, - STATE(6199), 9, + STATE(6436), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + ACTIONS(9647), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709680,7 +737618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256332] = 17, + [270035] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709701,19 +737639,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9346), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9348), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(3445), 1, + STATE(2600), 1, sym_block, - STATE(3452), 1, + STATE(2834), 1, sym__function_body, - STATE(7298), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6200), 9, + STATE(6428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709723,7 +737661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256392] = 12, + [270095] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709744,14 +737682,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9350), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6201), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9551), 1, + sym_interpolation_string_content, + ACTIONS(9651), 1, + sym_interpolation_end_quote, + STATE(6392), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6761), 1, + sym_interpolation, + STATE(6778), 1, + sym__interpolated_raw_string_content, + STATE(6429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709761,40 +737704,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256442] = 17, - ACTIONS(8891), 1, + [270155] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9352), 1, - anon_sym_DQUOTE, - STATE(6193), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6202), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709804,7 +737747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256502] = 12, + [270215] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709825,14 +737768,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9354), 6, + ACTIONS(9657), 6, anon_sym_SEMI, anon_sym_EQ, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_in, - STATE(6203), 9, + STATE(6431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709842,40 +737785,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256552] = 17, - ACTIONS(8891), 1, + [270265] = 13, + ACTIONS(3445), 1, + aux_sym_preproc_if_token2, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9356), 1, - anon_sym_DQUOTE, - STATE(6242), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6204), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709885,7 +737824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256612] = 17, + [270317] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709906,19 +737845,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2600), 1, sym_block, - STATE(2683), 1, + STATE(2689), 1, sym__function_body, - STATE(7083), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6205), 9, + STATE(6433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709928,40 +737867,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256672] = 17, - ACTIONS(8891), 1, + [270377] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9358), 1, - anon_sym_DQUOTE, - STATE(6236), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6206), 9, + ACTIONS(9659), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709971,7 +737905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256732] = 17, + [270427] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709992,19 +737926,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9661), 6, anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2696), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6207), 9, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710014,7 +737943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256792] = 14, + [270477] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710035,16 +737964,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(9360), 1, - anon_sym_EQ, - ACTIONS(3743), 4, + ACTIONS(9665), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6208), 9, + ACTIONS(9663), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6436), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710054,7 +737981,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256846] = 17, + aux_sym_type_parameter_constraints_clause_repeat1, + [270529] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710075,19 +738003,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(3667), 1, anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2706), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6209), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710097,7 +738023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256906] = 17, + [270585] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710118,19 +738044,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, + ACTIONS(9672), 1, + anon_sym_QMARK, + ACTIONS(9670), 5, anon_sym_SEMI, - ACTIONS(9174), 1, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2672), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6210), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710140,7 +738062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [256966] = 17, + [270637] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710161,19 +738083,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9346), 1, + ACTIONS(9400), 1, anon_sym_SEMI, - ACTIONS(9348), 1, + ACTIONS(9402), 1, anon_sym_LBRACE, - STATE(3445), 1, + STATE(2600), 1, sym_block, - STATE(3460), 1, + STATE(2809), 1, sym__function_body, - STATE(7298), 1, + STATE(7670), 1, sym_arrow_expression_clause, - STATE(6211), 9, + STATE(6439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710183,40 +738105,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257026] = 17, - ACTIONS(8891), 1, + [270697] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9311), 1, + ACTIONS(9568), 1, aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, + ACTIONS(9570), 1, aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, + ACTIONS(9572), 1, sym_escape_sequence, - ACTIONS(9362), 1, + ACTIONS(9674), 1, anon_sym_DQUOTE, - STATE(6236), 1, + STATE(6460), 1, aux_sym_string_literal_repeat1, - STATE(6479), 1, + STATE(6726), 1, sym_string_literal_content, - STATE(6212), 9, + STATE(6440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710226,40 +738148,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257086] = 17, - ACTIONS(8891), 1, + [270757] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9364), 1, - anon_sym_DQUOTE, - STATE(6231), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6213), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710269,7 +738188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257146] = 17, + [270811] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710290,19 +738209,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9293), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6233), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6214), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710312,7 +738231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257206] = 17, + [270871] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710333,19 +738252,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9366), 1, + ACTIONS(9523), 1, sym_interpolation_end_quote, - STATE(6239), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6399), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, sym_interpolation, - STATE(6215), 9, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710355,7 +738274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257266] = 17, + [270931] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710376,19 +738295,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, - anon_sym_DOT, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6216), 9, + ACTIONS(9678), 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710398,7 +738312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257326] = 17, + [270981] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710419,19 +738333,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9275), 1, + ACTIONS(9511), 1, sym_interpolation_end_quote, - ACTIONS(9326), 1, + ACTIONS(9576), 1, sym_interpolation_string_content, - STATE(6248), 1, + STATE(6461), 1, aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, + STATE(6928), 1, sym_interpolation, - STATE(6217), 9, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710441,7 +738355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257386] = 16, + [271041] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710462,18 +738376,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(9370), 1, - anon_sym_COMMA, - STATE(6474), 1, - sym_argument_list, - STATE(6478), 1, - aux_sym_base_list_repeat1, - ACTIONS(9228), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6218), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710483,40 +738398,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257444] = 17, - ACTIONS(3), 1, + [271101] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9301), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6233), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6219), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710526,7 +738441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257504] = 17, + [271161] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710547,19 +738462,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9372), 1, - sym_interpolation_end_quote, - STATE(6239), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6220), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710569,7 +738480,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257564] = 17, + aux_sym__class_declaration_initializer_repeat4, + [271215] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710590,19 +738502,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9374), 1, + ACTIONS(9487), 1, sym_interpolation_end_quote, - STATE(6239), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6399), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, sym_interpolation, - STATE(6221), 9, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710612,7 +738524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257624] = 17, + [271275] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710633,19 +738545,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9271), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6233), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6222), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710655,40 +738566,79 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257684] = 17, - ACTIONS(3), 1, + [271333] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2715), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6223), 9, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [271393] = 13, + ACTIONS(3652), 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, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710698,7 +738648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257744] = 17, + [271445] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710719,19 +738669,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9376), 1, - sym_interpolation_end_quote, - STATE(6253), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6224), 9, + 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, + anon_sym_SEMI, + anon_sym_DOT, + STATE(6453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710741,7 +738690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257804] = 16, + [271503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710762,18 +738711,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9378), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 2, + ACTIONS(9691), 6, anon_sym_SEMI, - anon_sym_DOT, - STATE(6225), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710783,7 +738728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257862] = 12, + [271553] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710804,14 +738749,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9380), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6226), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710821,7 +738771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257912] = 12, + [271613] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710842,14 +738792,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9382), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6227), 9, + STATE(2600), 1, + sym_block, + STATE(2805), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710859,40 +738814,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [257962] = 17, - ACTIONS(8891), 1, + [271673] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9311), 1, + ACTIONS(9568), 1, aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, + ACTIONS(9570), 1, aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, + ACTIONS(9572), 1, sym_escape_sequence, - ACTIONS(9384), 1, + ACTIONS(9695), 1, anon_sym_DQUOTE, - STATE(6236), 1, + STATE(6390), 1, aux_sym_string_literal_repeat1, - STATE(6479), 1, + STATE(6726), 1, sym_string_literal_content, - STATE(6228), 9, + STATE(6457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710902,7 +738857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258022] = 15, + [271733] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710923,17 +738878,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(9314), 1, anon_sym_EQ_GT, - ACTIONS(9360), 1, - anon_sym_EQ, - ACTIONS(9386), 1, - anon_sym_RPAREN, - ACTIONS(3743), 3, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(6229), 9, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, + anon_sym_LBRACE, + STATE(2600), 1, + sym_block, + STATE(2824), 1, + sym__function_body, + STATE(7670), 1, + sym_arrow_expression_clause, + STATE(6458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710943,40 +738900,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258078] = 17, - ACTIONS(8891), 1, + [271793] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9388), 1, - anon_sym_DQUOTE, - STATE(6212), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6230), 9, + 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, @@ -710986,40 +738943,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258138] = 17, - ACTIONS(8891), 1, + [271853] = 17, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9311), 1, + ACTIONS(9568), 1, aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, + ACTIONS(9570), 1, aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, + ACTIONS(9572), 1, sym_escape_sequence, - ACTIONS(9390), 1, + ACTIONS(9699), 1, anon_sym_DQUOTE, - STATE(6236), 1, + STATE(6381), 1, aux_sym_string_literal_repeat1, - STATE(6479), 1, + STATE(6726), 1, sym_string_literal_content, - STATE(6231), 9, + STATE(6460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711029,7 +738986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258198] = 15, + [271913] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711050,17 +739007,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9222), 1, - anon_sym_COMMA, - STATE(6314), 1, - aux_sym_record_base_repeat1, - ACTIONS(9392), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6232), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9543), 1, + sym_interpolation_end_quote, + ACTIONS(9576), 1, + sym_interpolation_string_content, + STATE(6399), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(6928), 1, + sym_interpolation, + STATE(7034), 1, + sym__interpolated_verbatim_string_content, + STATE(6461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711070,7 +739029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258254] = 16, + [271973] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711091,17 +739050,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9394), 1, - sym_interpolation_end_quote, - ACTIONS(9396), 1, + ACTIONS(9473), 1, sym_interpolation_open_brace, - ACTIONS(9399), 1, + ACTIONS(9551), 1, sym_interpolation_string_content, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, + ACTIONS(9701), 1, + sym_interpolation_end_quote, + STATE(6401), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(6761), 1, sym_interpolation, - STATE(6233), 10, + STATE(6778), 1, + sym__interpolated_raw_string_content, + STATE(6462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711111,8 +739072,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat2, - [258312] = 17, + [272033] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711133,19 +739093,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, + 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, anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2669), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6234), 9, + anon_sym_DOT, + STATE(6463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711155,7 +739114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258372] = 12, + [272091] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711176,14 +739135,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9402), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6235), 9, + ACTIONS(9473), 1, + sym_interpolation_open_brace, + ACTIONS(9551), 1, + sym_interpolation_string_content, + ACTIONS(9705), 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(6464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711193,38 +739157,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258422] = 16, - ACTIONS(8891), 1, + [272151] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9404), 1, - anon_sym_DQUOTE, - ACTIONS(9406), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9409), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9412), 1, - sym_escape_sequence, - STATE(6479), 1, - sym_string_literal_content, - STATE(6236), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711234,8 +739198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_string_literal_repeat1, - [258480] = 17, + [272208] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711256,19 +739219,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9415), 1, - sym_interpolation_end_quote, - STATE(6221), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6237), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711278,7 +739239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258540] = 17, + [272265] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711299,19 +739260,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9267), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6222), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6238), 9, + 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(9653), 1, + anon_sym_COMMA, + STATE(6467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711321,7 +739280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258600] = 16, + [272322] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711342,17 +739301,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9417), 1, - sym_interpolation_end_quote, - ACTIONS(9419), 1, - sym_interpolation_open_brace, - ACTIONS(9422), 1, - sym_interpolation_string_content, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6239), 10, + ACTIONS(9717), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711362,8 +739317,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat3, - [258658] = 15, + [272371] = 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(9725), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6469), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [272426] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711384,16 +739378,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9425), 1, - anon_sym_LPAREN, - ACTIONS(9428), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - ACTIONS(9430), 1, - anon_sym_when, - STATE(6614), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6240), 10, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(3088), 1, + sym_block, + STATE(7176), 1, + sym_parameter_list, + STATE(6470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711403,8 +739398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_catch_clause_repeat1, - [258714] = 12, + [272483] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711425,14 +739419,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9433), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6241), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711442,40 +739438,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258764] = 17, - ACTIONS(8891), 1, + [272538] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9435), 1, - anon_sym_DQUOTE, - STATE(6236), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6242), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711485,40 +739476,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258824] = 17, - ACTIONS(8891), 1, + [272589] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9311), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9313), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9315), 1, - sym_escape_sequence, - ACTIONS(9437), 1, - anon_sym_DQUOTE, - STATE(6228), 1, - aux_sym_string_literal_repeat1, - STATE(6479), 1, - sym_string_literal_content, - STATE(6243), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711528,7 +739515,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258884] = 17, + aux_sym_switch_body_repeat1, + [272644] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711549,19 +739537,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9214), 1, - anon_sym_COLON, - ACTIONS(9439), 1, - anon_sym_LBRACE, - STATE(6441), 1, - sym_base_list, - STATE(6451), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6244), 9, + ACTIONS(4018), 1, + anon_sym_GT, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(9653), 1, + anon_sym_COMMA, + ACTIONS(9655), 1, + anon_sym_QMARK, + STATE(6474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711571,7 +739557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [258944] = 17, + [272701] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711592,19 +739578,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [272758] = 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(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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [272815] = 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(5573), 1, + anon_sym_LBRACK, + ACTIONS(9367), 1, + anon_sym_EQ, + STATE(6830), 1, + sym_bracketed_argument_list, + ACTIONS(9306), 2, anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2664), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6245), 9, + anon_sym_COMMA, + STATE(6477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711614,7 +739679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259004] = 16, + [272870] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711635,18 +739700,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9441), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 2, + 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, anon_sym_SEMI, - anon_sym_DOT, - STATE(6246), 9, + anon_sym_LBRACE, + STATE(6478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711656,40 +739719,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259062] = 17, - ACTIONS(3), 1, + [272925] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9237), 1, - sym_interpolation_end_quote, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6233), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6247), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711699,7 +739759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259122] = 17, + [272980] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711720,19 +739780,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9273), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6233), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6248), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711742,7 +739800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259182] = 16, + [273037] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711763,18 +739821,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6619), 1, - anon_sym_LT, - ACTIONS(6621), 1, - anon_sym_COLON_COLON, - ACTIONS(9443), 1, - anon_sym_EQ, - STATE(2114), 1, - sym_type_argument_list, - ACTIONS(3602), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6249), 9, + 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(7462), 1, + sym_declaration_list, + STATE(6481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711784,7 +739841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259240] = 17, + [273094] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711805,19 +739862,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9346), 1, - anon_sym_SEMI, - ACTIONS(9348), 1, - anon_sym_LBRACE, - STATE(3437), 1, - sym__function_body, - STATE(3445), 1, - sym_block, - STATE(7298), 1, - sym_arrow_expression_clause, - STATE(6250), 9, + 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, @@ -711827,35 +739882,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259300] = 13, - ACTIONS(3), 1, + [273151] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9447), 1, - anon_sym_COMMA, - ACTIONS(9445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6251), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711865,8 +739922,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, - [259352] = 14, + [273206] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711887,15 +739943,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9452), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6467), 1, + STATE(6488), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9450), 3, + ACTIONS(9341), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6252), 10, + STATE(6484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711905,8 +739962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat4, - [259406] = 17, + [273261] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711927,19 +739983,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9455), 1, - sym_interpolation_end_quote, - STATE(6239), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6253), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711949,36 +740002,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259466] = 13, - ACTIONS(3598), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [273316] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3596), 5, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(9769), 1, + anon_sym_EQ, + STATE(6788), 1, + sym_bracketed_argument_list, + ACTIONS(9771), 2, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6254), 9, + anon_sym_RPAREN, + STATE(6486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711988,7 +740042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259518] = 17, + [273371] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712009,19 +740063,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9303), 1, - sym_interpolation_end_quote, - ACTIONS(9326), 1, - sym_interpolation_string_content, - STATE(6214), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(6627), 1, - sym__interpolated_verbatim_string_content, - STATE(6628), 1, - sym_interpolation, - STATE(6255), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712031,7 +740082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259578] = 17, + [273426] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712052,19 +740103,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9239), 1, - sym_interpolation_open_brace, - ACTIONS(9319), 1, - sym_interpolation_string_content, - ACTIONS(9457), 1, - sym_interpolation_end_quote, - STATE(6215), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(6623), 1, - sym__interpolated_raw_string_content, - STATE(6624), 1, - sym_interpolation, - STATE(6256), 9, + 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, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712074,7 +740122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259638] = 12, + [273481] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712095,14 +740143,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9459), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9335), 1, anon_sym_LBRACE, - anon_sym_LT, + ACTIONS(9339), 1, anon_sym_where, - STATE(6257), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712112,7 +740163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259688] = 17, + [273538] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712133,19 +740184,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9214), 1, - anon_sym_COLON, - ACTIONS(9461), 1, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9775), 1, anon_sym_LBRACE, - STATE(6423), 1, - sym_base_list, - STATE(6427), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6258), 9, + STATE(4814), 1, + sym_block, + STATE(7280), 1, + sym_parameter_list, + STATE(6490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712155,7 +740204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259748] = 17, + [273595] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712176,19 +740225,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2675), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6259), 9, + 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, @@ -712198,36 +740244,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259808] = 13, - ACTIONS(3393), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [273650] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(3395), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9721), 1, anon_sym_AMP_AMP, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - STATE(6260), 9, + ACTIONS(9779), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712237,7 +740284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259860] = 17, + [273705] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712258,19 +740305,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, - anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2764), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6261), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712280,7 +740323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259920] = 17, + [273758] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712301,19 +740344,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, + 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, - ACTIONS(9174), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2763), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6262), 9, + STATE(6494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712323,7 +740363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [259980] = 17, + [273813] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712344,19 +740384,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - ACTIONS(9172), 1, - anon_sym_SEMI, - ACTIONS(9174), 1, + ACTIONS(9335), 1, anon_sym_LBRACE, - STATE(2507), 1, - sym_block, - STATE(2760), 1, - sym__function_body, - STATE(7083), 1, - sym_arrow_expression_clause, - STATE(6263), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712366,7 +740404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260040] = 14, + [273870] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712387,15 +740425,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - STATE(6323), 1, - aux_sym_record_base_repeat1, - ACTIONS(9463), 3, + 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, - anon_sym_where, - STATE(6264), 9, + STATE(6496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712405,7 +740444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260093] = 14, + [273925] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712426,15 +740465,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9467), 1, - anon_sym_COLON, - STATE(6670), 1, - sym_constructor_initializer, - ACTIONS(9465), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6265), 9, + ACTIONS(9711), 1, + anon_sym_and, + ACTIONS(6067), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + STATE(6497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712444,34 +740482,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260146] = 12, - ACTIONS(3), 1, + [273976] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9469), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6266), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712481,7 +740522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260195] = 16, + [274031] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712502,17 +740543,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6252), 1, + STATE(6526), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7369), 1, - sym_declaration_list, - STATE(6267), 9, + ACTIONS(9781), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712522,7 +740562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260252] = 12, + [274086] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712543,13 +740583,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9471), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6268), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712559,7 +740602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260301] = 16, + [274141] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712580,17 +740623,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(6410), 1, - sym_parameter_list, - STATE(7057), 1, - sym_type_parameter_list, - STATE(6269), 9, + ACTIONS(9454), 1, + anon_sym_COMMA, + STATE(6529), 1, + aux_sym_record_base_repeat1, + ACTIONS(9787), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712600,37 +740641,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260358] = 15, - ACTIONS(8891), 1, + [274194] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9479), 1, + ACTIONS(9789), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6270), 9, + STATE(6502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712640,7 +740681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260413] = 16, + [274249] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712661,17 +740702,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9481), 1, - anon_sym_COMMA, - ACTIONS(9483), 1, - anon_sym_RBRACK, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - STATE(6546), 1, - aux_sym_list_pattern_repeat1, - STATE(6271), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712681,7 +740721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260470] = 12, + [274304] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712702,13 +740742,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9445), 5, + 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, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6272), 9, + STATE(6504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712718,7 +740761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260519] = 15, + [274359] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712739,16 +740782,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9115), 2, - anon_sym_SEMI, + ACTIONS(9793), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, - STATE(6273), 9, + anon_sym_LT, + anon_sym_where, + STATE(6505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712758,37 +740798,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260574] = 15, - ACTIONS(8891), 1, + [274408] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9489), 1, + ACTIONS(9795), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6274), 9, + STATE(6506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712798,7 +740838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260629] = 15, + [274463] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712819,16 +740859,57 @@ 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [274520] = 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, - anon_sym_where, - STATE(6294), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9115), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6275), 9, + 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(9799), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712838,38 +740919,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260684] = 16, - ACTIONS(3), 1, + [274575] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9491), 1, - anon_sym_RBRACE, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - STATE(6292), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6276), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712879,7 +740959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260741] = 16, + [274630] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712900,17 +740980,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9497), 1, - anon_sym_RBRACE, - STATE(6324), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6277), 9, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9715), 1, + anon_sym_LBRACE, + STATE(3317), 1, + sym_block, + STATE(7131), 1, + sym_parameter_list, + STATE(6510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712920,38 +741000,75 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260798] = 16, - ACTIONS(3), 1, + [274687] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9499), 1, - anon_sym_RBRACE, - STATE(6303), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6278), 9, + 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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [274742] = 13, + ACTIONS(5102), 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, + ACTIONS(5104), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712961,7 +741078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260855] = 15, + [274793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712982,16 +741099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9501), 1, - anon_sym_LPAREN, - STATE(6929), 1, - sym_attribute_argument_list, - ACTIONS(8673), 2, + ACTIONS(9805), 5, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6279), 9, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713001,7 +741115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260910] = 15, + [274842] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713022,16 +741136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9503), 1, - anon_sym_RPAREN, - ACTIONS(9507), 1, - anon_sym_AMP_AMP, - ACTIONS(9509), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9505), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6280), 9, + ACTIONS(9663), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713041,7 +741152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [260965] = 15, + [274891] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713062,16 +741173,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9511), 2, - anon_sym_SEMI, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(6281), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713081,7 +741193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261020] = 16, + [274948] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713102,17 +741214,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, + ACTIONS(5619), 1, anon_sym_STAR, - ACTIONS(6786), 1, - anon_sym_DOT, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6282), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713122,7 +741234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261077] = 12, + [275005] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713143,13 +741255,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9513), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6283), 9, + 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(9809), 1, + anon_sym_DOT, + STATE(6517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713159,35 +741275,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261126] = 13, - ACTIONS(4910), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [275062] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(4912), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6284), 9, + 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(7576), 1, + sym_declaration_list, + STATE(6518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713197,37 +741316,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261177] = 15, - ACTIONS(8891), 1, + [275119] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9515), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6285), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713237,37 +741356,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261232] = 15, - ACTIONS(8891), 1, + [275174] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9517), 1, + ACTIONS(9813), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6286), 9, + STATE(6520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713277,7 +741396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261287] = 16, + [275229] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713298,17 +741417,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(3035), 1, - sym_block, - STATE(7013), 1, - sym_parameter_list, - STATE(6287), 9, + ACTIONS(5573), 1, + anon_sym_LBRACK, + ACTIONS(9815), 1, + anon_sym_EQ, + STATE(6820), 1, + sym_bracketed_argument_list, + ACTIONS(9771), 2, + anon_sym_SEMI, + anon_sym_COMMA, + STATE(6521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713318,7 +741436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261344] = 16, + [275284] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713339,17 +741457,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, + 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, anon_sym_LBRACE, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9519), 1, - anon_sym_STAR, - STATE(3035), 1, - sym_block, - STATE(7013), 1, - sym_parameter_list, - STATE(6288), 9, + STATE(6522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713359,7 +741476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261401] = 16, + [275339] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713380,17 +741497,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9521), 1, + ACTIONS(9335), 1, anon_sym_LBRACE, - STATE(3398), 1, - sym_block, - STATE(6912), 1, - sym_parameter_list, - STATE(6289), 9, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(7540), 1, + sym_declaration_list, + STATE(6523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713400,37 +741517,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261458] = 15, - ACTIONS(8891), 1, + [275396] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9523), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6290), 9, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9354), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713440,37 +741557,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261513] = 15, - ACTIONS(8891), 1, + [275451] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9525), 1, + ACTIONS(9817), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6291), 9, + STATE(6525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713480,7 +741597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261568] = 16, + [275506] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713501,17 +741618,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9527), 1, - anon_sym_RBRACE, - STATE(6303), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6292), 9, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9819), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713521,35 +741637,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261625] = 13, - ACTIONS(8891), 1, + [275561] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9531), 1, - aux_sym_preproc_if_token2, - ACTIONS(9529), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6293), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713559,7 +741678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261676] = 15, + [275618] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713580,16 +741699,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9533), 2, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9821), 4, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6294), 9, + anon_sym_where, + STATE(6528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713599,7 +741716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261731] = 15, + [275669] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713620,16 +741737,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6305), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9533), 2, + ACTIONS(9823), 1, + anon_sym_COMMA, + ACTIONS(9821), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6295), 9, + anon_sym_where, + STATE(6529), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713639,37 +741753,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261786] = 15, - ACTIONS(8891), 1, + aux_sym_record_base_repeat1, + [275720] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9731), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9733), 1, anon_sym_PIPE_PIPE, - ACTIONS(9535), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9826), 1, + anon_sym_RPAREN, + ACTIONS(9729), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6296), 9, + STATE(6530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713679,7 +741794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261841] = 16, + [275775] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713700,17 +741815,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5264), 1, anon_sym_LPAREN, - ACTIONS(9228), 1, + ACTIONS(9460), 1, anon_sym_LBRACE, - ACTIONS(9537), 1, + ACTIONS(9828), 1, anon_sym_COMMA, - STATE(6650), 1, + STATE(6825), 1, sym_argument_list, - STATE(6652), 1, + STATE(6826), 1, aux_sym_base_list_repeat1, - STATE(6297), 9, + STATE(6531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713720,7 +741835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261898] = 15, + [275832] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713741,16 +741856,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6299), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9539), 2, - anon_sym_SEMI, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9830), 1, anon_sym_LBRACE, - STATE(6298), 9, + STATE(3000), 1, + sym_block, + STATE(7077), 1, + sym_parameter_list, + STATE(6532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713760,7 +741876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [261953] = 15, + [275889] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713781,16 +741897,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9541), 2, + ACTIONS(9834), 1, + anon_sym_COLON, + STATE(6766), 1, + sym_constructor_initializer, + ACTIONS(9832), 3, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6299), 9, + anon_sym_EQ_GT, + STATE(6533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713800,35 +741915,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262008] = 13, - ACTIONS(8891), 1, + [275942] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9545), 1, - aux_sym_preproc_if_token2, - ACTIONS(9543), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6300), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713838,37 +741956,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262059] = 15, - ACTIONS(8891), 1, + [275999] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9547), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6301), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713878,7 +741997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262114] = 16, + [276056] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713899,17 +742018,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8380), 1, - anon_sym_COLON, - ACTIONS(9549), 1, - anon_sym_when, - ACTIONS(9551), 1, - anon_sym_and, - ACTIONS(9553), 1, - anon_sym_or, - STATE(7288), 1, - sym_when_clause, - STATE(6302), 9, + ACTIONS(9838), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713919,7 +742034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262171] = 15, + [276105] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713940,15 +742055,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9555), 1, - anon_sym_RBRACE, - ACTIONS(9557), 1, - anon_sym_case, - ACTIONS(9560), 1, - anon_sym_default, - STATE(6561), 1, - sym_switch_section, - STATE(6303), 10, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9840), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713958,36 +742074,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_switch_body_repeat1, - [262226] = 13, - ACTIONS(8891), 1, + [276160] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9565), 1, - aux_sym_preproc_if_token2, - ACTIONS(9563), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6304), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713997,7 +742114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262277] = 15, + [276215] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714018,16 +742135,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9567), 2, + ACTIONS(9844), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6305), 9, + STATE(6539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714037,35 +742154,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262332] = 13, - ACTIONS(8891), 1, + [276270] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9513), 1, + ACTIONS(9721), 1, + anon_sym_AMP_AMP, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9846), 1, aux_sym_preproc_if_token2, - ACTIONS(9569), 4, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6306), 9, + STATE(6540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714075,7 +742194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262383] = 15, + [276325] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714096,16 +742215,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6381), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9113), 2, - anon_sym_SEMI, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9848), 1, anon_sym_LBRACE, - STATE(6307), 9, + STATE(3884), 1, + sym_block, + STATE(7240), 1, + sym_parameter_list, + STATE(6541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714115,36 +742235,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262438] = 14, - ACTIONS(3), 1, + [276382] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(6041), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6308), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714154,36 +742273,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262491] = 14, - ACTIONS(8891), 1, + [276433] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9565), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9852), 5, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9563), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6309), 9, + STATE(6543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714193,7 +742310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262544] = 15, + [276482] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714214,16 +742331,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9113), 2, - anon_sym_SEMI, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9807), 1, anon_sym_LBRACE, - STATE(6310), 9, + STATE(3431), 1, + sym_block, + STATE(7251), 1, + sym_parameter_list, + STATE(6544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714233,37 +742351,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262599] = 15, - ACTIONS(8891), 1, + [276539] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9571), 1, + ACTIONS(9854), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6311), 9, + STATE(6545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714273,37 +742391,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262654] = 15, - ACTIONS(3), 1, + [276594] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9507), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9509), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9573), 1, - anon_sym_RPAREN, - ACTIONS(9505), 2, + ACTIONS(9856), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6312), 9, + STATE(6546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714313,34 +742431,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262709] = 12, - ACTIONS(3), 1, + [276649] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9531), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9721), 1, anon_sym_AMP_AMP, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - STATE(6313), 9, + ACTIONS(9858), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714350,36 +742471,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262758] = 14, - ACTIONS(3), 1, + [276704] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9222), 1, - anon_sym_COMMA, - STATE(6323), 1, - aux_sym_record_base_repeat1, - ACTIONS(9575), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6314), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714389,37 +742511,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262811] = 15, - ACTIONS(8891), 1, + [276759] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9563), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9565), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6315), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714429,35 +742552,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262866] = 13, - ACTIONS(3), 1, + [276816] = 13, + ACTIONS(5016), 1, + aux_sym_preproc_if_token2, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9577), 4, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(6316), 9, + ACTIONS(5018), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714467,38 +742590,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262917] = 16, - ACTIONS(3), 1, + [276867] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9579), 1, - anon_sym_LBRACE, - STATE(4544), 1, - sym_block, - STATE(6834), 1, - sym_parameter_list, - STATE(6317), 9, + ACTIONS(9721), 1, + anon_sym_AMP_AMP, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9864), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714508,34 +742630,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [262974] = 12, - ACTIONS(3), 1, + [276922] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9565), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9721), 1, anon_sym_AMP_AMP, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - STATE(6318), 9, + ACTIONS(9866), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714545,38 +742670,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263023] = 16, - ACTIONS(3), 1, + [276977] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9581), 1, - anon_sym_COMMA, - ACTIONS(9583), 1, - anon_sym_RBRACK, - STATE(6755), 1, - aux_sym_list_pattern_repeat1, - STATE(6319), 9, + ACTIONS(9721), 1, + anon_sym_AMP_AMP, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9868), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714586,7 +742710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263080] = 15, + [277032] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714607,16 +742731,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(9587), 1, - anon_sym_EQ, - STATE(6742), 1, - sym_bracketed_argument_list, - ACTIONS(9585), 2, + ACTIONS(9834), 1, + anon_sym_COLON, + STATE(6737), 1, + sym_constructor_initializer, + ACTIONS(9870), 3, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6320), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714626,7 +742749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263135] = 15, + [277085] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714647,16 +742770,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9589), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6321), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714666,35 +742790,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263190] = 13, - ACTIONS(3), 1, + [277142] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9505), 2, + ACTIONS(9878), 1, + aux_sym_preproc_if_token2, + ACTIONS(9876), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9565), 3, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6322), 9, + STATE(6556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714704,7 +742828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263241] = 13, + [277193] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714725,13 +742849,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9591), 1, - anon_sym_COMMA, - ACTIONS(9577), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6323), 10, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714741,8 +742868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_record_base_repeat1, - [263292] = 16, + [277248] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714763,17 +742889,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9594), 1, - anon_sym_RBRACE, - STATE(6303), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6324), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714783,38 +742906,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263349] = 16, - ACTIONS(3), 1, + [277299] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(3646), 1, - sym_block, - STATE(6985), 1, - sym_parameter_list, - STATE(6325), 9, + ACTIONS(9721), 1, + anon_sym_AMP_AMP, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9882), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714824,7 +742946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263406] = 16, + [277354] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714845,17 +742967,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9598), 1, - anon_sym_COMMA, - ACTIONS(9600), 1, - anon_sym_RBRACK, - STATE(6657), 1, - aux_sym_list_pattern_repeat1, - STATE(6326), 9, + ACTIONS(9731), 1, + anon_sym_AMP_AMP, + ACTIONS(9729), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(9838), 2, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + STATE(6560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714865,7 +742985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263463] = 15, + [277407] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714886,16 +743006,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(4705), 1, aux_sym_preproc_else_token1, - ACTIONS(8569), 1, + ACTIONS(4707), 1, aux_sym_preproc_elif_token1, - ACTIONS(9602), 1, + ACTIONS(8448), 1, aux_sym_preproc_if_token3, - STATE(7167), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6327), 9, + STATE(7328), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714905,7 +743025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263518] = 16, + [277462] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714926,17 +743046,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7465), 1, - sym_declaration_list, - STATE(6328), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714946,7 +743066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263575] = 16, + [277519] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714967,17 +743087,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_LPAREN, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9604), 1, - anon_sym_DOT, - STATE(6329), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714987,7 +743106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263632] = 15, + [277574] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715008,16 +743127,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(9137), 1, - anon_sym_EQ, - STATE(6697), 1, - sym_bracketed_argument_list, - ACTIONS(9072), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6330), 9, + ACTIONS(9737), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715027,7 +743143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263687] = 16, + [277623] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715048,17 +743164,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9521), 1, - anon_sym_LBRACE, - STATE(3403), 1, - sym_block, - STATE(6976), 1, - sym_parameter_list, - STATE(6331), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715068,7 +743183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263744] = 13, + [277678] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715089,14 +743204,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(5941), 4, + ACTIONS(9454), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - STATE(6332), 9, + STATE(6529), 1, + aux_sym_record_base_repeat1, + ACTIONS(9886), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6566), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715106,37 +743222,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263795] = 15, - ACTIONS(8891), 1, + [277731] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9606), 1, + ACTIONS(9888), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6333), 9, + STATE(6567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715146,7 +743262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263850] = 15, + [277786] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715167,16 +743283,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9119), 2, + ACTIONS(9670), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6334), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715186,7 +743299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263905] = 15, + [277835] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715207,16 +743320,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9126), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6335), 9, + ACTIONS(9878), 5, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715226,7 +743336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [263960] = 15, + [277884] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715247,16 +743357,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6321), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9126), 2, + ACTIONS(9890), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(6336), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715266,37 +743373,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264015] = 15, - ACTIONS(8891), 1, + [277933] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9608), 1, + ACTIONS(9892), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6337), 9, + STATE(6571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715306,7 +743413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264070] = 15, + [277988] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715327,16 +743434,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5442), 1, - anon_sym_LBRACK, - ACTIONS(9610), 1, - anon_sym_EQ, - STATE(6793), 1, - sym_bracketed_argument_list, - ACTIONS(9585), 2, + ACTIONS(5264), 1, + anon_sym_LPAREN, + STATE(6413), 1, + sym_argument_list, + ACTIONS(9491), 3, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6338), 9, + anon_sym_LBRACE, + anon_sym_where, + STATE(6572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715346,37 +743452,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264125] = 15, - ACTIONS(3), 1, + [278041] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6355), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9119), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6339), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715386,38 +743492,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264180] = 16, - ACTIONS(3), 1, + [278096] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7368), 1, - sym_declaration_list, - STATE(6340), 9, + ACTIONS(9721), 1, + anon_sym_AMP_AMP, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9896), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715427,7 +743532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264237] = 16, + [278151] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715448,17 +743553,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6341), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715468,76 +743572,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264294] = 14, - ACTIONS(3), 1, + [278206] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9507), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9505), 2, + ACTIONS(9723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9900), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9565), 2, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - STATE(6342), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [264347] = 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(5442), 1, - anon_sym_LBRACK, - ACTIONS(9612), 1, - anon_sym_EQ, - STATE(6782), 1, - sym_bracketed_argument_list, - ACTIONS(9072), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6343), 9, + STATE(6576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715547,34 +743612,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264402] = 12, - ACTIONS(3), 1, + [278261] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9545), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9721), 1, anon_sym_AMP_AMP, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - STATE(6344), 9, + ACTIONS(9902), 1, + aux_sym_preproc_if_token2, + ACTIONS(9719), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715584,7 +743652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264451] = 14, + [278316] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715605,15 +743673,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(6227), 1, - sym_argument_list, - ACTIONS(9279), 3, - anon_sym_COMMA, + ACTIONS(9848), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6345), 9, + STATE(3703), 1, + sym_block, + STATE(7109), 1, + sym_parameter_list, + STATE(6578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715623,7 +743693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264504] = 16, + [278373] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715644,17 +743714,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7291), 1, - sym_declaration_list, - STATE(6346), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715664,37 +743733,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264561] = 15, - ACTIONS(8891), 1, + [278428] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9614), 1, + ACTIONS(9904), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6347), 9, + STATE(6580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715704,7 +743773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264616] = 16, + [278483] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715725,57 +743794,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9579), 1, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6575), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9362), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4599), 1, - sym_block, - STATE(6954), 1, - sym_parameter_list, - STATE(6348), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [264673] = 15, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9616), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6349), 9, + STATE(6581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715785,37 +743813,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264728] = 15, - ACTIONS(8891), 1, + [278538] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9618), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6350), 9, + ACTIONS(9834), 1, + anon_sym_COLON, + STATE(6738), 1, + sym_constructor_initializer, + ACTIONS(9906), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715825,37 +743852,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264783] = 15, - ACTIONS(8891), 1, + [278591] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9620), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6351), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715865,7 +743893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264838] = 13, + [278648] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715886,14 +743914,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(3743), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_and, - anon_sym_or, - STATE(6352), 9, + ACTIONS(5617), 1, + anon_sym_LBRACE, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9908), 1, + anon_sym_STAR, + STATE(3118), 1, + sym_block, + STATE(7238), 1, + sym_parameter_list, + STATE(6584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715903,7 +743934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264889] = 14, + [278705] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715924,15 +743955,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9467), 1, - anon_sym_COLON, - STATE(6733), 1, - sym_constructor_initializer, - ACTIONS(9622), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6353), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715942,7 +743975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264942] = 15, + [278762] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715963,16 +743996,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6281), 1, + STATE(6496), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9624), 2, + ACTIONS(9360), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6354), 9, + STATE(6586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715982,7 +744015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [264997] = 15, + [278817] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716003,16 +744036,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9624), 2, + ACTIONS(9362), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6355), 9, + STATE(6587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716022,7 +744055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265052] = 16, + [278872] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716043,55 +744076,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9493), 1, + ACTIONS(9753), 1, anon_sym_case, - ACTIONS(9495), 1, + ACTIONS(9755), 1, anon_sym_default, - ACTIONS(9626), 1, + ACTIONS(9914), 1, anon_sym_RBRACE, - STATE(6366), 1, + STATE(6476), 1, aux_sym_switch_body_repeat1, - STATE(6561), 1, + STATE(6882), 1, sym_switch_section, - STATE(6356), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [265109] = 13, - ACTIONS(5058), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(5060), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6357), 9, + STATE(6588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716101,7 +744096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265160] = 15, + [278929] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716122,16 +744117,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(3950), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6358), 9, + ACTIONS(9753), 1, + anon_sym_case, + ACTIONS(9755), 1, + anon_sym_default, + ACTIONS(9916), 1, + anon_sym_RBRACE, + STATE(6482), 1, + aux_sym_switch_body_repeat1, + STATE(6882), 1, + sym_switch_section, + STATE(6589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716141,7 +744137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265215] = 15, + [278986] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716162,16 +744158,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8567), 1, - aux_sym_preproc_else_token1, - ACTIONS(8569), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9628), 1, - aux_sym_preproc_if_token3, - STATE(7157), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6359), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716181,37 +744178,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265270] = 15, - ACTIONS(8891), 1, + [279043] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9475), 1, - anon_sym_AMP_AMP, - ACTIONS(9477), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9630), 1, - aux_sym_preproc_if_token2, - ACTIONS(9473), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6360), 9, + 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, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716221,7 +744218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265325] = 16, + [279098] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716242,17 +744239,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9632), 1, - anon_sym_LBRACE, - STATE(2927), 1, - sym_block, - STATE(7024), 1, - sym_parameter_list, - STATE(6361), 9, + 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, @@ -716262,37 +744256,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265382] = 15, - ACTIONS(3), 1, + [279149] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9634), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6362), 9, + 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, @@ -716302,37 +744294,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265437] = 15, - ACTIONS(8891), 1, + [279200] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9475), 1, + ACTIONS(9721), 1, anon_sym_AMP_AMP, - ACTIONS(9477), 1, + ACTIONS(9723), 1, anon_sym_PIPE_PIPE, - ACTIONS(9636), 1, + ACTIONS(9928), 1, aux_sym_preproc_if_token2, - ACTIONS(9473), 2, + ACTIONS(9719), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6363), 9, + STATE(6594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716342,38 +744334,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265492] = 16, - ACTIONS(3), 1, + [279255] = 14, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9638), 1, - anon_sym_RBRACE, - STATE(6278), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6364), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716383,7 +744373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265549] = 16, + [279308] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716404,17 +744394,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, + ACTIONS(5619), 1, + anon_sym_STAR, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9830), 1, anon_sym_LBRACE, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(7392), 1, - sym_declaration_list, - STATE(6365), 9, + STATE(3022), 1, + sym_block, + STATE(7208), 1, + sym_parameter_list, + STATE(6596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716424,38 +744414,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265606] = 16, - ACTIONS(3), 1, + [279365] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9493), 1, - anon_sym_case, - ACTIONS(9495), 1, - anon_sym_default, - ACTIONS(9640), 1, - anon_sym_RBRACE, - STATE(6303), 1, - aux_sym_switch_body_repeat1, - STATE(6561), 1, - sym_switch_section, - STATE(6366), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716465,37 +744454,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265663] = 15, - ACTIONS(3), 1, + [279420] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - STATE(6362), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9589), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6367), 9, + 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, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716505,38 +744494,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265718] = 16, - ACTIONS(3), 1, + [279475] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9642), 1, - anon_sym_EQ_GT, - ACTIONS(9644), 1, - anon_sym_when, - ACTIONS(9646), 1, - anon_sym_and, - ACTIONS(9648), 1, - anon_sym_or, - STATE(7195), 1, - sym_when_clause, - STATE(6368), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716546,7 +744534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265775] = 16, + [279530] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716567,17 +744555,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9650), 1, - anon_sym_LBRACE, - STATE(3255), 1, - sym_block, - STATE(7050), 1, - sym_parameter_list, - STATE(6369), 9, + ACTIONS(8577), 1, + anon_sym_COLON, + ACTIONS(9934), 1, + anon_sym_when, + ACTIONS(9936), 1, + anon_sym_and, + ACTIONS(9938), 1, + anon_sym_or, + STATE(7460), 1, + sym_when_clause, + STATE(6600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716587,38 +744575,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265832] = 16, - ACTIONS(3), 1, + [279587] = 15, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9652), 1, - anon_sym_COMMA, - ACTIONS(9654), 1, - anon_sym_RBRACK, - STATE(6651), 1, - aux_sym_list_pattern_repeat1, - STATE(6370), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716628,7 +744615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265889] = 12, + [279642] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716649,54 +744636,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9656), 5, + ACTIONS(9339), 1, + anon_sym_where, + STATE(6504), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9898), 2, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6371), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [265938] = 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(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9658), 1, - anon_sym_COMMA, - ACTIONS(9660), 1, - anon_sym_RBRACK, - STATE(6705), 1, - aux_sym_list_pattern_repeat1, - STATE(6372), 9, + STATE(6602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716706,7 +744655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [265995] = 16, + [279697] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716727,17 +744676,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9650), 1, + 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(3259), 1, - sym_block, - STATE(6902), 1, - sym_parameter_list, - STATE(6373), 9, + STATE(6603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716747,7 +744695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266052] = 16, + [279752] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716768,17 +744716,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9596), 1, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9942), 1, anon_sym_LBRACE, - STATE(3683), 1, - sym_block, - STATE(6946), 1, - sym_parameter_list, - STATE(6374), 9, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716788,7 +744734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266109] = 16, + [279806] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716809,17 +744755,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6252), 1, + ACTIONS(9944), 1, + anon_sym_LBRACE, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(7244), 1, - sym_declaration_list, - STATE(6375), 9, + STATE(6605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716829,7 +744773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266166] = 14, + [279860] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716850,15 +744794,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9467), 1, - anon_sym_COLON, - STATE(6770), 1, - sym_constructor_initializer, - ACTIONS(9662), 3, - anon_sym_SEMI, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9946), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6376), 9, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716868,7 +744812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266219] = 16, + [279914] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716889,17 +744833,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9632), 1, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(2885), 1, - sym_block, - STATE(7056), 1, - sym_parameter_list, - STATE(6377), 9, + STATE(7069), 1, + sym_base_list, + STATE(7457), 1, + sym_enum_member_declaration_list, + STATE(6607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716909,7 +744851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266276] = 12, + [279968] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716930,13 +744872,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9664), 5, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9310), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9314), 1, anon_sym_EQ_GT, - STATE(6378), 9, + STATE(2752), 1, + sym_accessor_list, + STATE(7332), 1, + sym_arrow_expression_clause, + STATE(6608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716946,7 +744890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266325] = 12, + [280022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716967,54 +744911,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9340), 5, - anon_sym_SEMI, + ACTIONS(9952), 1, anon_sym_COMMA, + ACTIONS(9452), 3, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - anon_sym_EQ_GT, - STATE(6379), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [266374] = 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(5481), 1, - anon_sym_LBRACE, - ACTIONS(5483), 1, - anon_sym_STAR, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(3012), 1, - sym_block, - STATE(6851), 1, - sym_parameter_list, - STATE(6380), 9, + STATE(6609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717024,7 +744927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266431] = 15, + [280072] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717045,16 +744948,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - STATE(6252), 1, + ACTIONS(9954), 1, + anon_sym_LBRACE, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - ACTIONS(9539), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6381), 9, + STATE(6610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717064,7 +744966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266486] = 13, + [280126] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717085,12 +744987,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9666), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9653), 1, anon_sym_COMMA, - ACTIONS(9669), 2, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6382), 10, + STATE(6611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717100,8 +745005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_parameter_list_repeat1, - [266536] = 15, + [280180] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717122,15 +745026,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9671), 1, - anon_sym_LBRACE, - STATE(6419), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6383), 9, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(6205), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717140,7 +745043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266590] = 15, + [280232] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717161,15 +745064,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9673), 1, - anon_sym_LT, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - STATE(7463), 1, - sym_calling_convention, - STATE(6384), 9, + ACTIONS(9310), 1, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717179,7 +745082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266644] = 12, + [280286] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717200,12 +745103,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3089), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6385), 9, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9960), 1, + anon_sym_LBRACE, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6714), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717215,7 +745121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266692] = 14, + [280340] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717236,14 +745142,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(1909), 2, + ACTIONS(3996), 4, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6386), 9, + anon_sym_GT, + anon_sym_STAR, + STATE(6615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717253,7 +745157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266744] = 15, + [280388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717274,15 +745178,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9679), 1, + ACTIONS(9962), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6387), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717292,7 +745193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266798] = 15, + [280436] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717313,15 +745214,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9679), 1, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6498), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6388), 9, + STATE(7182), 1, + sym_base_list, + STATE(7442), 1, + sym_enum_member_declaration_list, + STATE(6617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717331,7 +745232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266852] = 15, + [280490] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717352,15 +745253,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9681), 1, + ACTIONS(9964), 1, anon_sym_LBRACE, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6389), 9, + STATE(6618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717370,7 +745271,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266906] = 15, + [280544] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717391,15 +745292,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9683), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + ACTIONS(9966), 1, + anon_sym_SEMI, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6390), 9, + STATE(6676), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717409,7 +745310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [266960] = 14, + [280598] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717430,14 +745331,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9685), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6391), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717447,7 +745349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267012] = 13, + [280652] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717468,90 +745370,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9687), 1, - anon_sym_EQ, - ACTIONS(9689), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6392), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [267062] = 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(9105), 1, - anon_sym_where, - ACTIONS(9691), 1, - anon_sym_LBRACE, - STATE(6452), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6393), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [267116] = 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(9551), 1, - anon_sym_and, - ACTIONS(9553), 1, - anon_sym_or, - ACTIONS(6041), 2, - anon_sym_COLON, - anon_sym_when, - STATE(6394), 9, + ACTIONS(3128), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717561,7 +745385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267168] = 15, + [280700] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717582,15 +745406,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, + ACTIONS(9948), 1, anon_sym_COLON, - ACTIONS(9695), 1, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(7022), 1, + STATE(7150), 1, sym_base_list, - STATE(7180), 1, + STATE(7498), 1, sym_enum_member_declaration_list, - STATE(6395), 9, + STATE(6622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717600,7 +745424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267222] = 15, + [280754] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717621,15 +745445,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7053), 1, - sym_base_list, - STATE(7205), 1, - sym_enum_member_declaration_list, - STATE(6396), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717639,7 +745463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267276] = 13, + [280808] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717660,13 +745484,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9697), 1, + ACTIONS(9976), 1, anon_sym_EQ, - ACTIONS(9699), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6397), 9, + ACTIONS(9668), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717676,7 +745500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267326] = 15, + [280858] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717697,15 +745521,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9701), 1, - anon_sym_LT, - STATE(7476), 1, - sym_calling_convention, - STATE(6398), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717715,7 +745539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267380] = 15, + [280912] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717736,15 +745560,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9703), 1, - anon_sym_LT, - STATE(7446), 1, - sym_calling_convention, - STATE(6399), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9335), 1, + anon_sym_LBRACE, + ACTIONS(9980), 1, + anon_sym_SEMI, + STATE(7439), 1, + sym_declaration_list, + STATE(6626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717754,7 +745578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267434] = 12, + [280966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717775,12 +745599,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3072), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6400), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717790,7 +745617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267482] = 15, + [281020] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717811,15 +745638,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9705), 1, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(9982), 1, + anon_sym_EQ, + ACTIONS(9984), 1, anon_sym_COMMA, - ACTIONS(9707), 1, + ACTIONS(9987), 1, anon_sym_RPAREN, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - STATE(6401), 9, + STATE(6628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717829,7 +745656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267536] = 14, + [281074] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717850,14 +745677,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9485), 1, - anon_sym_and, - ACTIONS(9487), 1, - anon_sym_or, - ACTIONS(9705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6402), 9, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7062), 1, + sym_base_list, + STATE(7445), 1, + sym_enum_member_declaration_list, + STATE(6629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717867,7 +745695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267588] = 15, + [281128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717888,15 +745716,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9713), 1, - anon_sym_LT, - STATE(7488), 1, - sym_calling_convention, - STATE(6403), 9, + ACTIONS(3136), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717906,7 +745731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267642] = 15, + [281176] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717927,15 +745752,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9715), 1, - anon_sym_SEMI, - STATE(6412), 1, + ACTIONS(9960), 1, + anon_sym_LBRACE, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6404), 9, + STATE(6631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717945,7 +745770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267696] = 15, + [281230] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717966,15 +745791,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9705), 1, - anon_sym_COMMA, - ACTIONS(9709), 1, - anon_sym_and, ACTIONS(9711), 1, + anon_sym_and, + ACTIONS(9713), 1, anon_sym_or, - ACTIONS(9717), 1, - anon_sym_RPAREN, - STATE(6405), 9, + ACTIONS(1913), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(6632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717984,7 +745808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267750] = 15, + [281282] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718005,15 +745829,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9989), 1, anon_sym_LBRACE, - STATE(6941), 1, - sym_base_list, - STATE(7108), 1, - sym_enum_member_declaration_list, - STATE(6406), 9, + STATE(6625), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718023,7 +745847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267804] = 15, + [281336] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718044,15 +745868,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9101), 1, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9989), 1, anon_sym_LBRACE, - ACTIONS(9719), 1, - anon_sym_SEMI, - STATE(7104), 1, - sym_declaration_list, - STATE(6407), 9, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718062,7 +745886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267858] = 15, + [281390] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718083,15 +745907,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2605), 1, - sym_accessor_list, - STATE(7406), 1, - sym_arrow_expression_clause, - STATE(6408), 9, + STATE(7130), 1, + sym_base_list, + STATE(7348), 1, + sym_enum_member_declaration_list, + STATE(6635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718101,7 +745925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267912] = 15, + [281444] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718122,15 +745946,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9156), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6409), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718140,7 +745964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [267966] = 12, + [281498] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718161,12 +745985,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9721), 4, - anon_sym_SEMI, + ACTIONS(9310), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9314), 1, anon_sym_EQ_GT, - STATE(6410), 9, + STATE(2848), 1, + sym_accessor_list, + STATE(7641), 1, + sym_arrow_expression_clause, + STATE(6637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718176,7 +746003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268014] = 15, + [281552] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718197,15 +746024,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2612), 1, - sym_accessor_list, - STATE(7146), 1, - sym_arrow_expression_clause, - STATE(6411), 9, + ACTIONS(9991), 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, @@ -718215,7 +746039,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268068] = 15, + [281600] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718236,15 +746060,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9723), 1, - anon_sym_SEMI, - STATE(6252), 1, + ACTIONS(9374), 1, + anon_sym_LBRACE, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6412), 9, + STATE(6639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718254,7 +746078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268122] = 12, + [281654] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718275,12 +746099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9725), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6413), 9, + ACTIONS(9993), 1, + anon_sym_EQ, + ACTIONS(9995), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718290,7 +746115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268170] = 15, + [281704] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718311,15 +746136,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(6481), 1, - sym_parameter_list, - STATE(6938), 1, - sym_type_parameter_list, - STATE(6414), 9, + ACTIONS(9997), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718329,7 +746151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268224] = 12, + [281752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718350,12 +746172,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3954), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6415), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718365,7 +746188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268272] = 13, + [281802] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718386,13 +746209,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9727), 1, - anon_sym_EQ, - ACTIONS(9386), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6416), 9, + ACTIONS(10003), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718402,7 +746224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268322] = 15, + [281850] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718423,51 +746245,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9729), 1, + ACTIONS(10005), 1, anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6417), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [268376] = 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(9731), 1, - anon_sym_COMMA, - ACTIONS(7600), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6418), 10, + STATE(6673), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718477,8 +746263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [268426] = 15, + [281904] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718499,15 +746284,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9734), 1, + ACTIONS(10005), 1, anon_sym_LBRACE, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6419), 9, + STATE(6645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718517,7 +746302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268480] = 15, + [281958] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718538,15 +746323,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(10007), 1, anon_sym_LBRACE, - STATE(6885), 1, - sym_base_list, - STATE(7269), 1, - sym_enum_member_declaration_list, - STATE(6420), 9, + STATE(6610), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718556,7 +746341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268534] = 15, + [282012] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718577,15 +746362,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2670), 1, - sym_accessor_list, - STATE(7430), 1, - sym_arrow_expression_clause, - STATE(6421), 9, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(10009), 1, + anon_sym_COMMA, + ACTIONS(10011), 1, + anon_sym_RPAREN, + STATE(6647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718595,7 +746380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268588] = 14, + [282066] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718616,14 +746401,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - ACTIONS(6041), 2, + ACTIONS(4018), 1, + anon_sym_GT, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(9653), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6422), 9, + ACTIONS(9655), 1, + anon_sym_QMARK, + STATE(6648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718633,7 +746419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268640] = 15, + [282120] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718654,15 +746440,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6499), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6423), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718672,7 +746458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268694] = 15, + [282174] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718693,15 +746479,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2600), 1, - sym_accessor_list, - STATE(7201), 1, - sym_arrow_expression_clause, - STATE(6424), 9, + ACTIONS(4018), 1, + anon_sym_GT, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(9653), 1, + anon_sym_COMMA, + STATE(6650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718711,7 +746497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268748] = 13, + [282228] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718732,13 +746518,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9738), 1, - anon_sym_COMMA, - ACTIONS(9220), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6425), 9, + ACTIONS(9936), 1, + anon_sym_and, + ACTIONS(9938), 1, + anon_sym_or, + ACTIONS(6205), 2, + anon_sym_COLON, + anon_sym_when, + STATE(6651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718748,7 +746535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268798] = 15, + [282280] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718769,15 +746556,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(6875), 1, - sym_base_list, - STATE(7333), 1, - sym_enum_member_declaration_list, - STATE(6426), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718787,7 +746574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268852] = 15, + [282334] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718808,15 +746595,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6427), 9, + ACTIONS(10015), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718826,7 +746610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268906] = 12, + [282382] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718847,12 +746631,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9740), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6428), 9, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7081), 1, + sym_base_list, + STATE(7586), 1, + sym_enum_member_declaration_list, + STATE(6654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718862,7 +746649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [268954] = 14, + [282436] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718883,14 +746670,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(3950), 2, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(10017), 1, + anon_sym_EQ, + ACTIONS(10019), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(6429), 9, + anon_sym_RPAREN, + STATE(6655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718900,7 +746687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269006] = 13, + [282488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718921,13 +746708,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5270), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(5278), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6430), 9, + ACTIONS(10021), 1, + anon_sym_EQ, + ACTIONS(10023), 3, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718937,7 +746724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269056] = 15, + [282538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718958,15 +746745,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(6983), 1, - sym_parameter_list, - STATE(6984), 1, - sym_type_parameter_list, - STATE(6431), 9, + ACTIONS(3981), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718976,7 +746760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269110] = 12, + [282586] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718997,12 +746781,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9742), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6432), 9, + ACTIONS(9600), 1, + anon_sym_COMMA, + STATE(6664), 1, + aux_sym_base_list_repeat1, + ACTIONS(9496), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719012,7 +746798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269158] = 15, + [282638] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719033,15 +746819,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9744), 1, - anon_sym_SEMI, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6433), 9, + ACTIONS(9936), 1, + anon_sym_and, + ACTIONS(6067), 3, + anon_sym_COLON, + anon_sym_when, + anon_sym_or, + STATE(6659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719051,7 +746835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269212] = 15, + [282688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719072,15 +746856,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9746), 1, + ACTIONS(10025), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6434), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719090,7 +746871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269266] = 15, + [282736] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719111,15 +746892,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9748), 1, - anon_sym_LT, - STATE(7342), 1, - sym_calling_convention, - STATE(6435), 9, + ACTIONS(10027), 1, + anon_sym_COMMA, + ACTIONS(10030), 2, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6661), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719129,7 +746907,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269320] = 15, + aux_sym_bracketed_parameter_list_repeat1, + [282786] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719150,15 +746929,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(6822), 1, - sym_base_list, - STATE(7532), 1, - sym_enum_member_declaration_list, - STATE(6436), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719168,7 +746947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269374] = 12, + [282840] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719189,12 +746968,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3924), 4, - anon_sym_LBRACK, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(10009), 2, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6437), 9, + anon_sym_RPAREN, + STATE(6663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719204,7 +746985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269422] = 13, + [282892] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719225,13 +747006,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9646), 1, - anon_sym_and, - ACTIONS(5941), 3, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_or, - STATE(6438), 9, + ACTIONS(10034), 1, + anon_sym_COMMA, + ACTIONS(9491), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6664), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719241,7 +747021,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269472] = 12, + aux_sym_base_list_repeat1, + [282942] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719262,12 +747043,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3928), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6439), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9335), 1, + anon_sym_LBRACE, + ACTIONS(10037), 1, + anon_sym_SEMI, + STATE(7431), 1, + sym_declaration_list, + STATE(6665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719277,7 +747061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269520] = 15, + [282996] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719298,15 +747082,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9145), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6440), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719316,7 +747100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269574] = 15, + [283050] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719337,15 +747121,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9750), 1, - anon_sym_LBRACE, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6468), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6441), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719355,7 +747138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269628] = 12, + [283102] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719376,12 +747159,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3068), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6442), 9, + ACTIONS(4006), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719391,7 +747174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269676] = 15, + [283150] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719412,15 +747195,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9149), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6443), 9, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(7783), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6669), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719430,7 +747210,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269730] = 15, + aux_sym__for_statement_conditions_repeat1, + [283200] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719451,15 +747232,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9752), 1, + ACTIONS(10042), 4, anon_sym_SEMI, - STATE(7480), 1, - sym_declaration_list, - STATE(6444), 9, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719469,7 +747247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269784] = 14, + [283248] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719490,14 +747268,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9754), 1, - anon_sym_LPAREN, - ACTIONS(9758), 1, - sym_integer_literal, - ACTIONS(9756), 2, - anon_sym_default, - anon_sym_hidden, - STATE(6445), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719507,7 +747286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269836] = 15, + [283302] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719528,15 +747307,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9671), 1, + ACTIONS(10007), 1, anon_sym_LBRACE, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6446), 9, + STATE(6672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719546,7 +747325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269890] = 15, + [283356] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719567,15 +747346,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(9332), 1, - anon_sym_QMARK, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6447), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719585,7 +747364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269944] = 14, + [283410] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719606,14 +747385,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9646), 1, + ACTIONS(9711), 1, anon_sym_and, - ACTIONS(9648), 1, + ACTIONS(9713), 1, anon_sym_or, - ACTIONS(6041), 2, - anon_sym_EQ_GT, - anon_sym_when, - STATE(6448), 9, + ACTIONS(10048), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719623,7 +747402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [269996] = 15, + [283462] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719644,15 +747423,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_GT, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6449), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719662,7 +747441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270050] = 15, + [283516] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719683,15 +747462,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9705), 1, - anon_sym_COMMA, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - ACTIONS(9760), 1, - anon_sym_RPAREN, - STATE(6450), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719701,7 +747480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270104] = 15, + [283570] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719722,15 +747501,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9750), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6451), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719740,7 +747519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270158] = 15, + [283624] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719761,15 +747540,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9762), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6452), 9, + ACTIONS(4014), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719779,7 +747555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270212] = 15, + [283672] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719800,15 +747576,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9764), 1, - anon_sym_LT, - STATE(7422), 1, - sym_calling_convention, - STATE(6453), 9, + ACTIONS(10056), 1, + anon_sym_COMMA, + ACTIONS(10059), 2, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6679), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719818,7 +747591,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270266] = 12, + aux_sym_type_argument_list_repeat1, + [283722] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719839,12 +747613,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9766), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9339), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6454), 9, + ACTIONS(10061), 1, + anon_sym_LBRACE, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719854,7 +747631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270314] = 12, + [283776] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719875,12 +747652,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9768), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6455), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719890,7 +747670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270362] = 12, + [283830] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719911,12 +747691,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9770), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6456), 9, + ACTIONS(3973), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719926,7 +747706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270410] = 12, + [283878] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719947,12 +747727,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3946), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6457), 9, + ACTIONS(9310), 1, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719962,7 +747745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270458] = 12, + [283932] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719983,12 +747766,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9772), 4, - anon_sym_SEMI, + ACTIONS(9948), 1, + anon_sym_COLON, + ACTIONS(9950), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6458), 9, + STATE(7116), 1, + sym_base_list, + STATE(7506), 1, + sym_enum_member_declaration_list, + STATE(6684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719998,7 +747784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270506] = 15, + [283986] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720019,15 +747805,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, - anon_sym_unmanaged, - ACTIONS(9677), 1, - anon_sym_managed, - ACTIONS(9774), 1, - anon_sym_LT, - STATE(7389), 1, - sym_calling_convention, - STATE(6459), 9, + ACTIONS(9310), 1, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720037,7 +747823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270560] = 15, + [284040] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720058,15 +747844,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9776), 1, - anon_sym_SEMI, - STATE(6433), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6460), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720076,7 +747862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270614] = 15, + [284094] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720097,15 +747883,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, + ACTIONS(9948), 1, anon_sym_COLON, - ACTIONS(9695), 1, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(7052), 1, + STATE(7187), 1, sym_base_list, - STATE(7105), 1, + STATE(7451), 1, sym_enum_member_declaration_list, - STATE(6461), 9, + STATE(6687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720115,7 +747901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270668] = 12, + [284148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720136,12 +747922,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9778), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6462), 9, + ACTIONS(3132), 4, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + anon_sym_else, + STATE(6688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720151,7 +747937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270716] = 15, + [284196] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720172,15 +747958,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, + ACTIONS(9970), 1, anon_sym_unmanaged, - ACTIONS(9677), 1, + ACTIONS(9972), 1, anon_sym_managed, - ACTIONS(9780), 1, + ACTIONS(10067), 1, anon_sym_LT, - STATE(7259), 1, + STATE(7676), 1, sym_calling_convention, - STATE(6463), 9, + STATE(6689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720190,7 +747976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270770] = 15, + [284250] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720211,15 +747997,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9705), 1, - anon_sym_COMMA, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - ACTIONS(9782), 1, - anon_sym_RPAREN, - STATE(6464), 9, + ACTIONS(9310), 1, + anon_sym_LBRACE, + ACTIONS(9314), 1, + anon_sym_EQ_GT, + STATE(2728), 1, + sym_accessor_list, + STATE(7603), 1, + sym_arrow_expression_clause, + STATE(6690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720229,7 +748015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270824] = 15, + [284304] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720250,15 +748036,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, + ACTIONS(10069), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6850), 1, - sym_base_list, - STATE(7292), 1, - sym_enum_member_declaration_list, - STATE(6465), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720268,7 +748051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270878] = 15, + [284352] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720289,15 +748072,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(10071), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6692), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [284402] = 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(9339), 1, anon_sym_where, - ACTIONS(9784), 1, + ACTIONS(10073), 1, anon_sym_SEMI, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6466), 9, + STATE(6705), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720307,7 +748127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270932] = 12, + [284456] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720328,12 +748148,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9786), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6467), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(9655), 1, + anon_sym_QMARK, + ACTIONS(4018), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720343,7 +748165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [270980] = 15, + [284508] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720364,15 +748186,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9788), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6468), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720382,7 +748204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271034] = 15, + [284562] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720403,15 +748225,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9790), 1, + ACTIONS(9392), 1, anon_sym_LBRACE, - STATE(6252), 1, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6469), 9, + STATE(6696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720421,7 +748243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271088] = 15, + [284616] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720442,15 +748264,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(6966), 1, - sym_type_parameter_list, - STATE(6968), 1, - sym_parameter_list, - STATE(6470), 9, + ACTIONS(10077), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720460,7 +748279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271142] = 13, + [284664] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720481,13 +748300,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9792), 1, - anon_sym_EQ, - ACTIONS(9794), 3, + ACTIONS(9600), 1, + anon_sym_COMMA, + STATE(6658), 1, + aux_sym_base_list_repeat1, + ACTIONS(9537), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6698), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [284716] = 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(9956), 1, + anon_sym_and, + ACTIONS(6067), 3, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6471), 9, + anon_sym_or, + STATE(6699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720497,7 +748354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271192] = 12, + [284766] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720518,12 +748375,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9796), 4, - anon_sym_SEMI, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9388), 1, + anon_sym_LBRACE, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6700), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [284820] = 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(9600), 1, anon_sym_COMMA, + STATE(6664), 1, + aux_sym_base_list_repeat1, + ACTIONS(9537), 2, anon_sym_LBRACE, anon_sym_where, - STATE(6472), 9, + STATE(6701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720533,7 +748431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271240] = 12, + [284872] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720554,12 +748452,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3942), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6473), 9, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(10079), 1, + anon_sym_LBRACE, + STATE(6618), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720569,7 +748470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271288] = 14, + [284926] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720590,14 +748491,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(10009), 1, anon_sym_COMMA, - STATE(6490), 1, - aux_sym_base_list_repeat1, - ACTIONS(9287), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6474), 9, + ACTIONS(10081), 1, + anon_sym_RPAREN, + STATE(6703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720607,36 +748509,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271340] = 15, - ACTIONS(3), 1, + [284980] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9693), 1, - anon_sym_COLON, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(6958), 1, - sym_base_list, - STATE(7317), 1, - sym_enum_member_declaration_list, - STATE(6475), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720646,7 +748546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271394] = 15, + [285030] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720667,15 +748567,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, + ACTIONS(9339), 1, anon_sym_where, - ACTIONS(9691), 1, - anon_sym_LBRACE, - STATE(6252), 1, + ACTIONS(10087), 1, + anon_sym_SEMI, + STATE(6448), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, + STATE(6641), 1, sym_type_parameter_constraints_clause, - STATE(6476), 9, + STATE(6705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720685,7 +748585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271448] = 15, + [285084] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720706,15 +748606,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - ACTIONS(9103), 1, - anon_sym_LT, - STATE(6817), 1, - sym_parameter_list, - STATE(7000), 1, - sym_type_parameter_list, - STATE(6477), 9, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(10009), 1, + anon_sym_COMMA, + ACTIONS(10089), 1, + anon_sym_RPAREN, + STATE(6706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720724,7 +748624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271502] = 14, + [285138] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720745,51 +748645,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9370), 1, - anon_sym_COMMA, - STATE(6494), 1, - aux_sym_base_list_repeat1, - ACTIONS(9287), 2, - anon_sym_LBRACE, + ACTIONS(9339), 1, anon_sym_where, - STATE(6478), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [271554] = 13, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(9800), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9798), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6479), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720799,34 +748663,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271604] = 13, - ACTIONS(8891), 1, + [285192] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9804), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9802), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6480), 9, + ACTIONS(10093), 1, + anon_sym_LPAREN, + ACTIONS(10097), 1, + sym_integer_literal, + ACTIONS(10095), 2, + anon_sym_default, + anon_sym_hidden, + STATE(6708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720836,7 +748701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271654] = 12, + [285244] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720857,12 +748722,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9806), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9339), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6481), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720872,34 +748740,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271702] = 13, - ACTIONS(8891), 1, + [285298] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9804), 1, - aux_sym_string_literal_content_token1, - ACTIONS(9802), 3, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - STATE(6482), 9, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(9386), 1, + anon_sym_LBRACE, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720909,7 +748779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271752] = 15, + [285352] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720930,15 +748800,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(6786), 1, - anon_sym_DOT, - STATE(6483), 9, + ACTIONS(9922), 1, + anon_sym_and, + ACTIONS(6067), 3, + anon_sym_EQ_GT, + anon_sym_when, + anon_sym_or, + STATE(6711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720948,7 +748816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271806] = 15, + [285402] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720969,15 +748837,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6484), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720987,7 +748855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271860] = 14, + [285456] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721008,14 +748876,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(9808), 1, - anon_sym_EQ, - ACTIONS(9794), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6485), 9, + ACTIONS(9339), 1, + anon_sym_where, + ACTIONS(10079), 1, + anon_sym_LBRACE, + STATE(6448), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6641), 1, + sym_type_parameter_constraints_clause, + STATE(6713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721025,7 +748894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271912] = 13, + [285510] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721046,13 +748915,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(5941), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_or, - STATE(6486), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721062,7 +748933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [271962] = 14, + [285564] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721083,14 +748954,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - ACTIONS(9705), 2, - anon_sym_COMMA, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(9630), 1, + anon_sym_EQ, + ACTIONS(9668), 1, anon_sym_RPAREN, - STATE(6487), 9, + ACTIONS(10103), 1, + anon_sym_COMMA, + STATE(6715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721100,7 +748972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272014] = 13, + [285618] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721121,13 +748993,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(9810), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6488), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721137,7 +749011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272064] = 14, + [285672] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721158,14 +749032,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9709), 1, - anon_sym_and, ACTIONS(9711), 1, + anon_sym_and, + ACTIONS(9713), 1, anon_sym_or, - ACTIONS(9685), 2, + ACTIONS(10009), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6489), 9, + anon_sym_RBRACE, + STATE(6717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721175,7 +749049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272116] = 14, + [285724] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721196,14 +749070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(5373), 2, + anon_sym_and, + anon_sym_or, + ACTIONS(5427), 2, anon_sym_COMMA, - STATE(6494), 1, - aux_sym_base_list_repeat1, - ACTIONS(9277), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6490), 9, + anon_sym_RPAREN, + STATE(6718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721213,7 +749086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272168] = 15, + [285774] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721234,15 +749107,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2742), 1, - sym_accessor_list, - STATE(7128), 1, - sym_arrow_expression_clause, - STATE(6491), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721252,7 +749125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272222] = 15, + [285828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721273,15 +749146,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9812), 1, + ACTIONS(10109), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6492), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721291,7 +749161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272276] = 15, + [285876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721312,15 +749182,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(10111), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - ACTIONS(9360), 1, - anon_sym_EQ, - ACTIONS(9386), 1, - anon_sym_RPAREN, - ACTIONS(9814), 1, - anon_sym_COMMA, - STATE(6493), 9, + STATE(6721), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [285924] = 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(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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721330,7 +749234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272330] = 13, + [285974] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721351,12 +749255,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9818), 1, - anon_sym_COMMA, - ACTIONS(9279), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6494), 10, + ACTIONS(8916), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_LT, + STATE(6660), 1, + sym_parameter_list, + STATE(7121), 1, + sym_type_parameter_list, + STATE(6723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721366,8 +749273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [272380] = 15, + [286028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721388,15 +749294,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9812), 1, - anon_sym_LBRACE, - STATE(6434), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6495), 9, + ACTIONS(10113), 4, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + sym_escape_sequence, + STATE(6724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721406,7 +749309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272434] = 13, + [286076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721427,13 +749330,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9821), 1, - anon_sym_EQ, - ACTIONS(9823), 3, + ACTIONS(10115), 4, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6496), 9, + anon_sym_LBRACE, + anon_sym_where, + STATE(6725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721443,33 +749345,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272484] = 12, - ACTIONS(3), 1, + [286124] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9825), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, + 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(6497), 9, + STATE(6726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721479,7 +749382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272532] = 15, + [286174] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721500,15 +749403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9827), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6498), 9, + ACTIONS(10121), 1, + anon_sym_EQ, + ACTIONS(10019), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721518,7 +749419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272586] = 15, + [286224] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721539,15 +749440,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9829), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6499), 9, + ACTIONS(9956), 1, + anon_sym_and, + ACTIONS(9958), 1, + anon_sym_or, + ACTIONS(10048), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721557,7 +749457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272640] = 15, + [286276] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721578,15 +749478,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(9831), 1, - anon_sym_EQ, - ACTIONS(9833), 1, + ACTIONS(8873), 1, + anon_sym_RBRACK, + ACTIONS(10123), 1, anon_sym_COMMA, - ACTIONS(9836), 1, - anon_sym_RPAREN, - STATE(6500), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721596,7 +749494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272694] = 15, + [286327] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721617,15 +749515,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(9080), 1, - anon_sym_EQ_GT, - STATE(2774), 1, - sym_accessor_list, - STATE(7082), 1, - sym_arrow_expression_clause, - STATE(6501), 9, + ACTIONS(10125), 1, + anon_sym_COMMA, + ACTIONS(10127), 1, + anon_sym_RBRACK, + STATE(6887), 1, + aux_sym_argument_list_repeat1, + STATE(6730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721635,7 +749531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272748] = 15, + [286378] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721656,15 +749552,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9154), 1, - anon_sym_LBRACE, - STATE(6252), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6502), 9, + ACTIONS(8883), 1, + anon_sym_RBRACK, + ACTIONS(10129), 1, + anon_sym_COMMA, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721674,7 +749568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272802] = 13, + [286429] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721695,12 +749589,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9838), 1, - anon_sym_COMMA, - ACTIONS(9841), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6503), 10, + ACTIONS(9335), 1, + anon_sym_LBRACE, + ACTIONS(10131), 1, + anon_sym_SEMI, + STATE(7394), 1, + sym_declaration_list, + STATE(6732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721710,8 +749605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat1, - [272852] = 13, + [286480] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721732,13 +749626,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9551), 1, - anon_sym_and, - ACTIONS(5941), 3, - anon_sym_COLON, - anon_sym_when, - anon_sym_or, - STATE(6504), 9, + ACTIONS(7900), 1, + anon_sym_RBRACK, + ACTIONS(10133), 1, + anon_sym_COMMA, + STATE(6733), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721748,7 +749640,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272902] = 15, + aux_sym_array_rank_specifier_repeat1, + [286529] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721769,15 +749662,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9105), 1, - anon_sym_where, - ACTIONS(9843), 1, - anon_sym_SEMI, - STATE(6466), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6467), 1, - sym_type_parameter_constraints_clause, - STATE(6505), 9, + ACTIONS(10136), 1, + anon_sym_COMMA, + ACTIONS(10138), 1, + anon_sym_RBRACE, + STATE(6847), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721787,7 +749678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [272956] = 15, + [286580] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721808,15 +749699,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9705), 1, + ACTIONS(10140), 1, + anon_sym_EQ, + ACTIONS(10023), 2, anon_sym_COMMA, - ACTIONS(9709), 1, - anon_sym_and, - ACTIONS(9711), 1, - anon_sym_or, - ACTIONS(9845), 1, - anon_sym_RPAREN, - STATE(6506), 9, + anon_sym_RBRACE, + STATE(6735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721826,7 +749714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273010] = 14, + [286629] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721847,13 +749735,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10142), 1, anon_sym_COMMA, - ACTIONS(9849), 1, - anon_sym_GT, - STATE(6813), 1, - aux_sym_type_argument_list_repeat2, - STATE(6507), 9, + ACTIONS(10144), 1, + anon_sym_RBRACE, + STATE(6818), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721863,7 +749751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273061] = 14, + [286680] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721884,13 +749772,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_COMMA, - ACTIONS(9853), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6508), 9, + ACTIONS(10146), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721900,7 +749786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273112] = 14, + [286727] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721921,13 +749807,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(9855), 1, - anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6509), 9, + ACTIONS(10148), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721937,7 +749821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273163] = 12, + [286774] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721958,11 +749842,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9857), 3, - anon_sym_disable, - anon_sym_restore, - anon_sym_enable, - STATE(6510), 9, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(7839), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721972,7 +749858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273210] = 14, + [286825] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721993,13 +749879,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10150), 1, anon_sym_COMMA, - ACTIONS(9859), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6511), 9, + ACTIONS(10152), 1, + anon_sym_RBRACK, + STATE(6746), 1, + aux_sym_argument_list_repeat1, + STATE(6740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722009,7 +749895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273261] = 14, + [286876] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722030,13 +749916,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8596), 1, - anon_sym_RPAREN, - ACTIONS(9861), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - STATE(6675), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6512), 9, + ACTIONS(10156), 1, + anon_sym_RPAREN, + STATE(6927), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722046,7 +749932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273312] = 14, + [286927] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722067,13 +749953,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(2799), 1, + anon_sym_RBRACE, + ACTIONS(10158), 1, anon_sym_COMMA, - ACTIONS(9865), 1, - anon_sym_RPAREN, - STATE(6741), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6513), 9, + STATE(6809), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722083,7 +749969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273363] = 13, + [286978] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722104,11 +749990,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9867), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(9870), 1, - anon_sym_RBRACE, - STATE(6514), 10, + ACTIONS(10162), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722118,8 +750006,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, - [273412] = 14, + [287029] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722140,13 +750027,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(8883), 1, + anon_sym_RBRACK, + ACTIONS(10129), 1, anon_sym_COMMA, - ACTIONS(9872), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6515), 9, + STATE(6956), 1, + aux_sym_global_attribute_repeat1, + STATE(6744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722156,7 +750043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273463] = 13, + [287080] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722177,12 +750064,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6786), 1, - anon_sym_DOT, - ACTIONS(3934), 2, + ACTIONS(2837), 1, + anon_sym_RBRACE, + ACTIONS(10164), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(6516), 9, + STATE(6809), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722192,7 +750080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273512] = 14, + [287131] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722213,50 +750101,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, - anon_sym_COMMA, - ACTIONS(9876), 1, - anon_sym_RBRACE, - STATE(6553), 1, - aux_sym__with_body_repeat1, - STATE(6517), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [273563] = 14, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(9878), 1, + ACTIONS(2685), 1, + anon_sym_RBRACK, + ACTIONS(10166), 1, anon_sym_COMMA, - ACTIONS(9880), 1, - aux_sym_preproc_if_token2, - STATE(6727), 1, - aux_sym_preproc_pragma_repeat1, - STATE(6518), 9, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(6746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722266,7 +750117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273614] = 14, + [287182] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722287,50 +750138,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(9335), 1, anon_sym_LBRACE, - ACTIONS(9882), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_block, - STATE(6519), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [273665] = 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(9884), 1, - anon_sym_COMMA, - ACTIONS(9886), 1, - anon_sym_RBRACE, - STATE(6509), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6520), 9, + ACTIONS(10168), 1, + anon_sym_SEMI, + STATE(7634), 1, + sym_declaration_list, + STATE(6747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722340,7 +750154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273716] = 14, + [287233] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722361,13 +750175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(9888), 1, - anon_sym_GT, - STATE(6525), 1, - aux_sym_type_argument_list_repeat2, - STATE(6521), 9, + ACTIONS(10172), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722377,7 +750191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273767] = 13, + [287284] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722398,12 +750212,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9890), 1, - anon_sym_EQ, - ACTIONS(9836), 2, + ACTIONS(10174), 1, anon_sym_COMMA, + ACTIONS(10176), 1, anon_sym_RPAREN, - STATE(6522), 9, + STATE(6893), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(6749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722413,7 +750228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273816] = 14, + [287335] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722434,13 +750249,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(9892), 1, + ACTIONS(7816), 1, anon_sym_RBRACK, - STATE(6680), 1, + STATE(6733), 1, aux_sym_array_rank_specifier_repeat1, - STATE(6523), 9, + STATE(6750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722450,7 +750265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273867] = 14, + [287386] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722471,13 +750286,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(9888), 1, - anon_sym_GT, - STATE(6503), 1, + ACTIONS(10178), 1, + anon_sym_RBRACK, + STATE(6782), 1, aux_sym_type_argument_list_repeat1, - STATE(6524), 9, + STATE(6751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722487,7 +750302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273918] = 14, + [287437] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722508,13 +750323,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6716), 1, + anon_sym_QMARK, + ACTIONS(9653), 1, anon_sym_COMMA, - ACTIONS(9894), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6525), 9, + STATE(6752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722524,7 +750339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [273969] = 12, + [287488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722545,11 +750360,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9896), 3, + ACTIONS(10180), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10183), 1, anon_sym_RPAREN, - STATE(6526), 9, + STATE(6753), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722559,7 +750374,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274016] = 14, + aux_sym_parenthesized_variable_designation_repeat1, + [287537] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722580,13 +750396,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(9898), 1, + ACTIONS(10185), 1, anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6527), 9, + ACTIONS(10187), 1, + anon_sym_RBRACK, + STATE(6833), 1, + aux_sym_argument_list_repeat1, + STATE(6754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722596,7 +750412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274067] = 13, + [287588] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722617,49 +750433,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9900), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(9903), 1, - anon_sym_RPAREN, - STATE(6528), 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_using_variable_declaration_repeat1, - [274116] = 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(9851), 1, - anon_sym_COMMA, - ACTIONS(9905), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6529), 9, + ACTIONS(10191), 1, + anon_sym_RBRACE, + STATE(6869), 1, + aux_sym__with_body_repeat1, + STATE(6755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722669,7 +750449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274167] = 14, + [287639] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722690,13 +750470,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(9907), 1, + ACTIONS(10195), 1, anon_sym_GT, - STATE(6511), 1, + STATE(6783), 1, aux_sym_type_argument_list_repeat2, - STATE(6530), 9, + STATE(6756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722706,7 +750486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274218] = 13, + [287690] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722727,49 +750507,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9909), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(9912), 1, - anon_sym_RBRACK, - STATE(6531), 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_global_attribute_repeat1, - [274267] = 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(8647), 1, + ACTIONS(10197), 1, anon_sym_RBRACK, - ACTIONS(9914), 1, - anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6532), 9, + STATE(6763), 1, + aux_sym_type_argument_list_repeat1, + STATE(6757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722779,7 +750523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274318] = 13, + [287741] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722800,11 +750544,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym_RBRACK, - ACTIONS(9916), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6533), 10, + ACTIONS(10195), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722814,8 +750560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [274367] = 14, + [287792] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722836,13 +750581,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9919), 1, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(9653), 1, anon_sym_COMMA, - ACTIONS(9921), 1, - anon_sym_RBRACK, - STATE(6744), 1, - aux_sym_global_attribute_repeat1, - STATE(6534), 9, + STATE(6759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722852,7 +750597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274418] = 14, + [287843] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722873,13 +750618,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9923), 1, + ACTIONS(8857), 1, + anon_sym_RBRACK, + ACTIONS(10199), 1, anon_sym_COMMA, - ACTIONS(9925), 1, - anon_sym_RPAREN, - STATE(6750), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6535), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722889,7 +750634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274469] = 14, + [287894] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722910,13 +750655,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_COMMA, - ACTIONS(9927), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6536), 9, + ACTIONS(10201), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722926,7 +750669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274520] = 14, + [287941] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722947,13 +750690,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(9927), 1, + ACTIONS(10203), 1, anon_sym_GT, - STATE(6515), 1, + STATE(6767), 1, aux_sym_type_argument_list_repeat2, - STATE(6537), 9, + STATE(6762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722963,7 +750706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274571] = 12, + [287992] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722984,11 +750727,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7425), 3, + ACTIONS(5026), 1, anon_sym_COMMA, + ACTIONS(10205), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6538), 9, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722998,7 +750743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274618] = 12, + [288043] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723019,11 +750764,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9929), 3, + ACTIONS(5026), 1, anon_sym_COMMA, + ACTIONS(10203), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6764), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288094] = 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(2697), 1, + anon_sym_COMMA, + ACTIONS(10207), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6539), 9, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723033,7 +750817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274665] = 13, + [288145] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723054,11 +750838,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9931), 1, + ACTIONS(10209), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6766), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288192] = 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(10193), 1, anon_sym_COMMA, - ACTIONS(9934), 1, - anon_sym_RPAREN, - STATE(6540), 10, + ACTIONS(10211), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723068,8 +750889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_argument_list_repeat1, - [274714] = 14, + [288243] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723090,13 +750910,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(9938), 1, + ACTIONS(10213), 1, anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6541), 9, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723106,7 +750926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274765] = 14, + [288294] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723127,13 +750947,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, - anon_sym_COMMA, - ACTIONS(7669), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6542), 9, + ACTIONS(5293), 1, + anon_sym_LBRACE, + ACTIONS(10215), 1, + anon_sym_LPAREN, + STATE(2020), 1, + sym_block, + STATE(6769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723143,7 +750963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274816] = 12, + [288345] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723164,11 +750984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9940), 3, + ACTIONS(2795), 1, + anon_sym_RBRACE, + ACTIONS(10217), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6543), 9, + STATE(6809), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723178,7 +751000,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274863] = 14, + [288396] = 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(10219), 1, + anon_sym_COMMA, + ACTIONS(10221), 1, + aux_sym_preproc_if_token2, + STATE(6874), 1, + aux_sym_preproc_pragma_repeat1, + STATE(6771), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288447] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723199,13 +751058,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(8871), 1, + anon_sym_RBRACK, + ACTIONS(10223), 1, anon_sym_COMMA, - ACTIONS(9942), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6544), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723215,7 +751074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274914] = 14, + [288498] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723236,13 +751095,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - ACTIONS(9946), 1, + ACTIONS(10225), 1, anon_sym_RPAREN, - STATE(6382), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6545), 9, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723252,7 +751111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [274965] = 14, + [288549] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723273,13 +751132,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2275), 1, + ACTIONS(8871), 1, anon_sym_RBRACK, - ACTIONS(9948), 1, + ACTIONS(10223), 1, anon_sym_COMMA, - STATE(6706), 1, - aux_sym_list_pattern_repeat1, - STATE(6546), 9, + STATE(6856), 1, + aux_sym_global_attribute_repeat1, + STATE(6774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723289,7 +751148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275016] = 14, + [288600] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723310,13 +751169,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(9950), 1, - anon_sym_RPAREN, - STATE(6382), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6547), 9, + ACTIONS(10227), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723326,7 +751185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275067] = 14, + [288651] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723347,13 +751206,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - ACTIONS(9954), 1, + ACTIONS(10229), 1, anon_sym_RPAREN, - STATE(6572), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6548), 9, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723363,7 +751222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275118] = 12, + [288702] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723384,11 +751243,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10231), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6549), 9, + ACTIONS(10233), 1, + anon_sym_RBRACE, + STATE(6791), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6777), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [288753] = 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(10235), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723398,7 +751294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275165] = 14, + [288800] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723419,13 +751315,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(2679), 1, + anon_sym_RBRACK, + ACTIONS(10237), 1, anon_sym_COMMA, - ACTIONS(9958), 1, - anon_sym_GT, - STATE(6557), 1, - aux_sym_type_argument_list_repeat2, - STATE(6550), 9, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(6779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723435,7 +751331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275216] = 14, + [288851] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723456,13 +751352,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(9958), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6551), 9, + ACTIONS(10239), 1, + anon_sym_RBRACE, + STATE(6795), 1, + aux_sym__with_body_repeat1, + STATE(6780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723472,7 +751368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275267] = 13, + [288902] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723493,11 +751389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9960), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(9963), 1, + ACTIONS(10241), 1, anon_sym_RPAREN, - STATE(6552), 10, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723507,8 +751405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_type_repeat1, - [275316] = 14, + [288953] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723529,13 +751426,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(9965), 1, - anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6553), 9, + ACTIONS(10243), 1, + anon_sym_RBRACK, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723545,7 +751442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275367] = 14, + [289004] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723566,13 +751463,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9967), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(9969), 1, - anon_sym_RBRACE, - STATE(6527), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6554), 9, + ACTIONS(10245), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723582,7 +751479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275418] = 14, + [289055] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723603,13 +751500,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - ACTIONS(9882), 1, - anon_sym_LPAREN, - STATE(2064), 1, - sym_block, - STATE(6555), 9, + ACTIONS(10247), 1, + anon_sym_COMMA, + ACTIONS(10249), 1, + anon_sym_RBRACK, + STATE(6924), 1, + aux_sym_calling_convention_repeat1, + STATE(6784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723619,7 +751516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275469] = 14, + [289106] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723640,13 +751537,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(9971), 1, - anon_sym_RPAREN, - STATE(6529), 1, - aux_sym_argument_list_repeat1, - STATE(6556), 9, + ACTIONS(10251), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723656,7 +751553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275520] = 14, + [289157] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723677,13 +751574,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(9973), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6557), 9, + ACTIONS(10253), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723693,7 +751590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275571] = 14, + [289208] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723714,13 +751611,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_RBRACE, - ACTIONS(9975), 1, + ACTIONS(8865), 1, + anon_sym_RBRACK, + ACTIONS(10255), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6558), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723730,7 +751627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275622] = 14, + [289259] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723751,13 +751648,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(9977), 1, - anon_sym_SEMI, - STATE(7481), 1, - sym_declaration_list, - STATE(6559), 9, + ACTIONS(10257), 1, + anon_sym_EQ, + ACTIONS(10259), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723767,7 +751663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275673] = 14, + [289308] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723788,13 +751684,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(10261), 1, anon_sym_COMMA, - ACTIONS(9979), 1, + ACTIONS(10263), 1, anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6560), 9, + STATE(6829), 1, + aux_sym_variable_declaration_repeat1, + STATE(6789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723804,7 +751700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275724] = 12, + [289359] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723825,11 +751721,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9981), 3, - anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(6561), 9, + ACTIONS(10265), 1, + anon_sym_EQ, + ACTIONS(10267), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723839,7 +751736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275771] = 14, + [289408] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723860,13 +751757,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(2275), 1, + anon_sym_RBRACE, + ACTIONS(10269), 1, anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6562), 9, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723876,7 +751773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275822] = 14, + [289459] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723897,13 +751794,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2641), 1, + ACTIONS(2327), 1, anon_sym_RBRACK, - ACTIONS(9985), 1, + ACTIONS(10271), 1, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6563), 9, + STATE(6945), 1, + aux_sym_list_pattern_repeat1, + STATE(6792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723913,7 +751810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275873] = 14, + [289510] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723934,13 +751831,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - ACTIONS(9987), 1, + ACTIONS(10273), 1, anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6564), 9, + STATE(6801), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723950,7 +751847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275924] = 14, + [289561] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723971,13 +751868,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2625), 1, - anon_sym_RBRACK, - ACTIONS(9989), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6565), 9, + ACTIONS(10275), 1, + anon_sym_RBRACK, + STATE(6800), 1, + aux_sym_type_argument_list_repeat1, + STATE(6794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723987,32 +751884,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [275975] = 13, - ACTIONS(8891), 1, + [289612] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9991), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(9994), 1, - aux_sym_preproc_if_token2, - STATE(6566), 10, + ACTIONS(10277), 1, + anon_sym_RBRACE, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724022,8 +751921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_preproc_pragma_repeat1, - [276024] = 14, + [289663] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724044,13 +751942,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8665), 1, + ACTIONS(8879), 1, anon_sym_RBRACK, - ACTIONS(9996), 1, + ACTIONS(10279), 1, anon_sym_COMMA, - STATE(6532), 1, + STATE(6955), 1, aux_sym_global_attribute_repeat1, - STATE(6567), 9, + STATE(6796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724060,7 +751958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276075] = 14, + [289714] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724081,13 +751979,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9998), 1, + ACTIONS(2853), 1, + anon_sym_RBRACE, + ACTIONS(10281), 1, anon_sym_COMMA, - ACTIONS(10000), 1, - anon_sym_GT, - STATE(6772), 1, - aux_sym_type_parameter_list_repeat1, - STATE(6568), 9, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724097,7 +751995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276126] = 14, + [289765] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724118,13 +752016,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8665), 1, - anon_sym_RBRACK, - ACTIONS(9996), 1, + ACTIONS(10283), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6569), 9, + ACTIONS(10286), 1, + anon_sym_RPAREN, + STATE(6798), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724134,7 +752030,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276177] = 14, + aux_sym_tuple_pattern_repeat1, + [289814] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724155,13 +752052,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8681), 1, + ACTIONS(8879), 1, anon_sym_RBRACK, - ACTIONS(10002), 1, + ACTIONS(10279), 1, anon_sym_COMMA, - STATE(6573), 1, + STATE(6729), 1, aux_sym_global_attribute_repeat1, - STATE(6570), 9, + STATE(6799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724171,7 +752068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276228] = 14, + [289865] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724192,13 +752089,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8681), 1, - anon_sym_RBRACK, - ACTIONS(10002), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6571), 9, + ACTIONS(10288), 1, + anon_sym_RBRACK, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724208,7 +752105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276279] = 14, + [289916] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724229,13 +752126,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - ACTIONS(10004), 1, + ACTIONS(10290), 1, anon_sym_RPAREN, - STATE(6766), 1, + STATE(6753), 1, aux_sym_parenthesized_variable_designation_repeat1, - STATE(6572), 9, + STATE(6801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724245,7 +752142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276330] = 14, + [289967] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724266,13 +752163,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8651), 1, - anon_sym_RBRACK, - ACTIONS(10006), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6573), 9, + ACTIONS(10292), 1, + anon_sym_RPAREN, + STATE(6860), 1, + aux_sym_argument_list_repeat1, + STATE(6802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724282,7 +752179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276381] = 14, + [290018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724303,13 +752200,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(7831), 3, anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_GT, - STATE(6686), 1, - aux_sym_type_argument_list_repeat2, - STATE(6574), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724319,7 +752214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276432] = 14, + [290065] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724340,13 +752235,85 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10008), 1, + ACTIONS(10294), 1, anon_sym_COMMA, - ACTIONS(10010), 1, + ACTIONS(10296), 1, anon_sym_RBRACE, - STATE(6774), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(6575), 9, + STATE(6861), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6804), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [290116] = 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(5617), 1, + anon_sym_LBRACE, + ACTIONS(10215), 1, + anon_sym_LPAREN, + STATE(7135), 1, + sym_block, + STATE(6805), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [290167] = 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(10298), 3, + anon_sym_disable, + anon_sym_restore, + anon_sym_enable, + STATE(6806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724356,7 +752323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276483] = 13, + [290214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724377,12 +752344,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10012), 1, - anon_sym_EQ, - ACTIONS(9689), 2, + ACTIONS(7747), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6576), 9, + ACTIONS(10300), 1, + anon_sym_SEMI, + STATE(6823), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724392,7 +752360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276532] = 14, + [290265] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724413,13 +752381,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(2265), 1, + anon_sym_RBRACE, + ACTIONS(10302), 1, anon_sym_COMMA, - ACTIONS(10014), 1, - anon_sym_GT, - STATE(6583), 1, - aux_sym_type_argument_list_repeat2, - STATE(6577), 9, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724429,7 +752397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276583] = 14, + [290316] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724450,13 +752418,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10016), 1, + ACTIONS(10304), 1, anon_sym_COMMA, - ACTIONS(10018), 1, - anon_sym_RBRACK, - STATE(6597), 1, - aux_sym_global_attribute_repeat1, - STATE(6578), 9, + ACTIONS(10307), 1, + anon_sym_RBRACE, + STATE(6809), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724466,7 +752432,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276634] = 13, + aux_sym_anonymous_object_creation_expression_repeat1, + [290365] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724487,11 +752454,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10020), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10023), 1, + ACTIONS(10311), 1, anon_sym_RPAREN, - STATE(6579), 10, + STATE(7014), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724501,8 +752470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_pattern_repeat1, - [276683] = 14, + [290416] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724523,13 +752491,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10025), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10027), 1, - anon_sym_RBRACK, - STATE(6599), 1, - aux_sym_argument_list_repeat1, - STATE(6580), 9, + ACTIONS(10313), 1, + anon_sym_RPAREN, + STATE(6798), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724539,7 +752507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276734] = 13, + [290467] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724560,11 +752528,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10029), 1, + ACTIONS(2323), 1, + anon_sym_RBRACK, + ACTIONS(10315), 1, anon_sym_COMMA, - ACTIONS(10032), 1, - anon_sym_GT, - STATE(6581), 10, + STATE(6945), 1, + aux_sym_list_pattern_repeat1, + STATE(6812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724574,8 +752544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_parameter_list_repeat1, - [276783] = 14, + [290518] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724596,13 +752565,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(10014), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6582), 9, + ACTIONS(10319), 1, + anon_sym_RPAREN, + STATE(6661), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724612,7 +752581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276834] = 14, + [290569] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724633,13 +752602,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10321), 1, anon_sym_COMMA, - ACTIONS(10034), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6583), 9, + ACTIONS(10323), 1, + anon_sym_RPAREN, + STATE(6985), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724649,7 +752618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276885] = 14, + [290620] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724670,13 +752639,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(8863), 1, + anon_sym_RBRACK, + ACTIONS(10325), 1, anon_sym_COMMA, - ACTIONS(10036), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6584), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724686,7 +752655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276936] = 14, + [290671] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724707,13 +752676,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6585), 9, + ACTIONS(10327), 1, + anon_sym_RPAREN, + STATE(6661), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724723,7 +752692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [276987] = 14, + [290722] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724744,13 +752713,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10038), 1, - anon_sym_GT, - STATE(6584), 1, - aux_sym_type_argument_list_repeat2, - STATE(6586), 9, + ACTIONS(10329), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724760,7 +752729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277038] = 14, + [290773] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724781,13 +752750,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9386), 1, - anon_sym_RPAREN, - ACTIONS(9727), 1, - anon_sym_EQ, - ACTIONS(10040), 1, + ACTIONS(2249), 1, + anon_sym_RBRACE, + ACTIONS(10331), 1, anon_sym_COMMA, - STATE(6587), 9, + STATE(6855), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724797,7 +752766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277089] = 14, + [290824] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724818,13 +752787,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(10043), 1, - anon_sym_SEMI, - STATE(2701), 1, - sym_accessor_list, - STATE(6588), 9, + ACTIONS(10154), 1, + anon_sym_COMMA, + ACTIONS(10333), 1, + anon_sym_RPAREN, + STATE(6994), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724834,7 +752803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277140] = 14, + [290875] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724855,13 +752824,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10335), 1, + anon_sym_EQ, + ACTIONS(10259), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10045), 1, - anon_sym_GT, - STATE(6595), 1, - aux_sym_type_argument_list_repeat2, - STATE(6589), 9, + STATE(6820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724871,7 +752839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277191] = 14, + [290924] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724892,13 +752860,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10047), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10049), 1, - anon_sym_RBRACK, - STATE(6803), 1, - aux_sym_calling_convention_repeat1, - STATE(6590), 9, + ACTIONS(10337), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724908,7 +752876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277242] = 14, + [290975] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724929,13 +752897,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10263), 1, + anon_sym_SEMI, + ACTIONS(10339), 1, anon_sym_COMMA, - ACTIONS(10045), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6591), 9, + STATE(6988), 1, + aux_sym_variable_declaration_repeat1, + STATE(6822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724945,7 +752913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277293] = 12, + [291026] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724966,11 +752934,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7602), 3, + ACTIONS(7783), 1, + anon_sym_SEMI, + ACTIONS(10341), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6592), 9, + STATE(6823), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724980,34 +752948,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277340] = 14, - ACTIONS(8891), 1, + aux_sym__for_statement_conditions_repeat1, + [291075] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10051), 1, - anon_sym_DQUOTE, - ACTIONS(10053), 1, - aux_sym_preproc_if_token2, - STATE(7135), 1, - sym_string_literal, - STATE(6593), 9, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(7671), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725017,33 +752986,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277391] = 13, - ACTIONS(8891), 1, + [291126] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10055), 1, - aux_sym_preproc_if_token2, - ACTIONS(10057), 2, - anon_sym_annotations, - anon_sym_warnings, - STATE(6594), 9, + ACTIONS(9537), 1, + anon_sym_LBRACE, + ACTIONS(9828), 1, + anon_sym_COMMA, + STATE(6920), 1, + aux_sym_base_list_repeat1, + STATE(6825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725053,7 +753023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277440] = 14, + [291177] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725074,13 +753044,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(9537), 1, + anon_sym_LBRACE, + ACTIONS(9828), 1, anon_sym_COMMA, - ACTIONS(10059), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6595), 9, + STATE(6922), 1, + aux_sym_base_list_repeat1, + STATE(6826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725090,7 +753060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277491] = 12, + [291228] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725111,11 +753081,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10061), 3, + ACTIONS(5026), 1, anon_sym_COMMA, + ACTIONS(10344), 1, anon_sym_RBRACK, - anon_sym_GT, - STATE(6596), 9, + STATE(6831), 1, + aux_sym_type_argument_list_repeat1, + STATE(6827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725125,7 +753097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277538] = 14, + [291279] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725146,13 +753118,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8657), 1, - anon_sym_RBRACK, - ACTIONS(10063), 1, + ACTIONS(9668), 1, + anon_sym_RPAREN, + ACTIONS(9976), 1, + anon_sym_EQ, + ACTIONS(10346), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6597), 9, + STATE(6828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725162,7 +753134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277589] = 14, + [291330] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725183,13 +753155,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8657), 1, - anon_sym_RBRACK, - ACTIONS(10063), 1, + ACTIONS(10349), 1, anon_sym_COMMA, - STATE(6620), 1, - aux_sym_global_attribute_repeat1, - STATE(6598), 9, + ACTIONS(10352), 1, + anon_sym_RPAREN, + STATE(6829), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725199,7 +753169,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277640] = 14, + aux_sym_variable_declaration_repeat1, + [291379] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725220,13 +753191,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2631), 1, - anon_sym_RBRACK, - ACTIONS(10065), 1, + ACTIONS(10354), 1, + anon_sym_EQ, + ACTIONS(10267), 2, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6599), 9, + STATE(6830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725236,7 +753206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277691] = 14, + [291428] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725257,13 +753227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_RBRACE, - ACTIONS(10067), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6600), 9, + ACTIONS(10356), 1, + anon_sym_RBRACK, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725273,7 +753243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277742] = 14, + [291479] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725294,13 +753264,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(6911), 1, + anon_sym_DOT, + ACTIONS(3977), 2, anon_sym_COMMA, - ACTIONS(10069), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6601), 9, + anon_sym_GT, + STATE(6832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725310,7 +753279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277793] = 14, + [291528] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725331,13 +753300,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_COMMA, - ACTIONS(10071), 1, + ACTIONS(2667), 1, anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6602), 9, + ACTIONS(10358), 1, + anon_sym_COMMA, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(6833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725347,7 +753316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277844] = 14, + [291579] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725368,13 +753337,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10073), 1, + ACTIONS(10360), 1, anon_sym_RPAREN, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6603), 9, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725384,7 +753353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277895] = 14, + [291630] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725405,13 +753374,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10075), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6604), 9, + ACTIONS(7679), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725421,7 +753390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277946] = 14, + [291681] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725442,13 +753411,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2807), 1, + ACTIONS(2269), 1, anon_sym_RBRACE, - ACTIONS(10077), 1, + ACTIONS(10362), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6605), 9, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725458,7 +753427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [277997] = 14, + [291732] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725479,13 +753448,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10079), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10081), 1, - anon_sym_RBRACK, - STATE(6565), 1, - aux_sym_argument_list_repeat1, - STATE(6606), 9, + ACTIONS(10364), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725495,7 +753464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278048] = 14, + [291783] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725516,13 +753485,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10083), 1, - anon_sym_COMMA, - ACTIONS(10085), 1, - anon_sym_RBRACK, - STATE(6569), 1, - aux_sym_global_attribute_repeat1, - STATE(6607), 9, + ACTIONS(9310), 1, + anon_sym_LBRACE, + ACTIONS(10366), 1, + anon_sym_SEMI, + STATE(2666), 1, + sym_accessor_list, + STATE(6838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725532,7 +753501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278099] = 14, + [291834] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725553,13 +753522,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(9810), 1, - anon_sym_RPAREN, - ACTIONS(10087), 1, + ACTIONS(2311), 1, + anon_sym_RBRACK, + ACTIONS(10368), 1, anon_sym_COMMA, - STATE(6608), 9, + STATE(6945), 1, + aux_sym_list_pattern_repeat1, + STATE(6839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725569,7 +753538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278150] = 12, + [291885] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725590,11 +753559,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10090), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6609), 9, + ACTIONS(2697), 1, + anon_sym_COMMA, + ACTIONS(7741), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725604,7 +753575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278197] = 14, + [291936] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725625,13 +753596,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10321), 1, anon_sym_COMMA, - ACTIONS(10092), 1, + ACTIONS(10370), 1, anon_sym_RPAREN, - STATE(6622), 1, - aux_sym_argument_list_repeat1, - STATE(6610), 9, + STATE(6985), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725641,7 +753612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278248] = 14, + [291987] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725662,13 +753633,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACE, - STATE(6629), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6611), 9, + ACTIONS(10372), 1, + anon_sym_GT, + STATE(6850), 1, + aux_sym_type_argument_list_repeat2, + STATE(6842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725678,7 +753649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278299] = 14, + [292038] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725699,13 +753670,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2791), 1, - anon_sym_RBRACE, - ACTIONS(10098), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6612), 9, + ACTIONS(10372), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725715,7 +753686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278350] = 14, + [292089] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725736,13 +753707,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7334), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_SEMI, - STATE(6728), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6613), 9, + ACTIONS(10374), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725752,7 +753723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278401] = 12, + [292140] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725773,11 +753744,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10102), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6614), 9, + ACTIONS(5026), 1, + anon_sym_COMMA, + ACTIONS(10376), 1, + anon_sym_RBRACK, + STATE(6848), 1, + aux_sym_type_argument_list_repeat1, + STATE(6845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725787,7 +753760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278448] = 14, + [292191] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725808,13 +753781,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(2849), 1, + anon_sym_RBRACE, + ACTIONS(10378), 1, anon_sym_COMMA, - ACTIONS(10104), 1, - anon_sym_RPAREN, - STATE(6604), 1, - aux_sym_argument_list_repeat1, - STATE(6615), 9, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725824,7 +753797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278499] = 14, + [292242] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725845,13 +753818,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2271), 1, + anon_sym_RBRACE, + ACTIONS(10380), 1, anon_sym_COMMA, - ACTIONS(7640), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6616), 9, + STATE(6855), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(6847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725861,7 +753834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278550] = 14, + [292293] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725882,13 +753855,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10106), 1, - anon_sym_GT, - STATE(6645), 1, - aux_sym_type_argument_list_repeat2, - STATE(6617), 9, + ACTIONS(10382), 1, + anon_sym_RBRACK, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725898,7 +753871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278601] = 14, + [292344] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725919,13 +753892,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10384), 1, anon_sym_COMMA, - ACTIONS(10106), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6618), 9, + ACTIONS(10386), 1, + anon_sym_RBRACE, + STATE(6892), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725935,7 +753908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278652] = 14, + [292395] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725956,13 +753929,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10108), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10110), 1, - anon_sym_RBRACK, - STATE(6646), 1, - aux_sym_global_attribute_repeat1, - STATE(6619), 9, + ACTIONS(10388), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725972,7 +753945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278703] = 14, + [292446] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725993,13 +753966,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8653), 1, - anon_sym_RBRACK, - ACTIONS(10112), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6620), 9, + ACTIONS(10390), 1, + anon_sym_RPAREN, + STATE(6954), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726009,7 +753982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278754] = 13, + [292497] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726030,11 +754003,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym_RPAREN, - ACTIONS(10114), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6621), 10, + ACTIONS(10392), 1, + anon_sym_GT, + STATE(6877), 1, + aux_sym_type_argument_list_repeat2, + STATE(6852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726044,8 +754019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [278803] = 14, + [292548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726066,13 +754040,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10117), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6622), 9, + ACTIONS(10392), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726082,7 +754056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278854] = 12, + [292599] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726103,11 +754077,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10119), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6623), 9, + ACTIONS(10189), 1, + anon_sym_COMMA, + ACTIONS(10394), 1, + anon_sym_RBRACE, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726117,7 +754093,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278901] = 12, + [292650] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726138,11 +754114,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10121), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6624), 9, + ACTIONS(10396), 1, + anon_sym_COMMA, + ACTIONS(10399), 1, + anon_sym_RBRACE, + STATE(6855), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726152,7 +754128,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278948] = 14, + aux_sym_positional_pattern_clause_repeat1, + [292699] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726173,13 +754150,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_COMMA, - ACTIONS(10125), 1, + ACTIONS(8861), 1, anon_sym_RBRACK, - STATE(6571), 1, + ACTIONS(10401), 1, + anon_sym_COMMA, + STATE(6955), 1, aux_sym_global_attribute_repeat1, - STATE(6625), 9, + STATE(6856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726189,7 +754166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [278999] = 13, + [292750] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726210,11 +754187,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10127), 1, - anon_sym_COMMA, - ACTIONS(10130), 1, - anon_sym_GT, - STATE(6626), 10, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(9335), 1, + anon_sym_LBRACE, + STATE(7661), 1, + sym_declaration_list, + STATE(6857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726224,8 +754203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat2, - [279048] = 12, + [292801] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726246,11 +754224,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10132), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6627), 9, + ACTIONS(10193), 1, + anon_sym_COMMA, + ACTIONS(10403), 1, + anon_sym_GT, + STATE(6785), 1, + aux_sym_type_argument_list_repeat2, + STATE(6858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726260,7 +754240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279095] = 12, + [292852] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726281,11 +754261,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10134), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(6628), 9, + ACTIONS(10189), 1, + anon_sym_COMMA, + ACTIONS(10405), 1, + anon_sym_RBRACE, + STATE(6854), 1, + aux_sym__with_body_repeat1, + STATE(6859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726295,7 +754277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279142] = 14, + [292903] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726316,13 +754298,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2751), 1, - anon_sym_RBRACE, - ACTIONS(10136), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6629), 9, + ACTIONS(10407), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726332,7 +754314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279193] = 14, + [292954] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726353,13 +754335,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10138), 1, - anon_sym_COMMA, - ACTIONS(10140), 1, + ACTIONS(2771), 1, anon_sym_RBRACE, - STATE(6612), 1, + ACTIONS(10409), 1, + anon_sym_COMMA, + STATE(6809), 1, aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6630), 9, + STATE(6861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726369,7 +754351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279244] = 14, + [293005] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726390,13 +754372,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10142), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10144), 1, + ACTIONS(7779), 1, anon_sym_RBRACK, - STATE(6563), 1, - aux_sym_argument_list_repeat1, - STATE(6631), 9, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726406,7 +754388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279295] = 12, + [293056] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726427,11 +754409,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7652), 3, + ACTIONS(10411), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6632), 9, + ACTIONS(10414), 1, + anon_sym_GT, + STATE(6863), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726441,7 +754423,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279342] = 14, + aux_sym_type_argument_list_repeat2, + [293105] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726462,13 +754445,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, - anon_sym_COMMA, - ACTIONS(10146), 1, + ACTIONS(2923), 1, anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6633), 9, + ACTIONS(10416), 1, + anon_sym_COMMA, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726478,7 +754461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279393] = 14, + [293156] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726499,13 +754482,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10148), 1, - anon_sym_COMMA, - ACTIONS(10150), 1, - anon_sym_RPAREN, - STATE(6661), 1, - aux_sym_variable_declaration_repeat1, - STATE(6634), 9, + ACTIONS(5274), 1, + anon_sym_LBRACE, + ACTIONS(10215), 1, + anon_sym_LPAREN, + STATE(1975), 1, + sym_block, + STATE(6865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726515,7 +754498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279444] = 14, + [293207] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726536,13 +754519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - ACTIONS(10152), 1, + ACTIONS(10418), 1, anon_sym_RPAREN, - STATE(6738), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6635), 9, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726552,7 +754535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279495] = 14, + [293258] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726573,13 +754556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2127), 1, - anon_sym_RBRACE, - ACTIONS(10154), 1, - anon_sym_COMMA, - STATE(6665), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6636), 9, + ACTIONS(6956), 1, + anon_sym_COLON, + ACTIONS(10420), 1, + sym_interpolation_close_brace, + STATE(7697), 1, + sym_interpolation_format_clause, + STATE(6867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726589,7 +754572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279546] = 14, + [293309] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726610,13 +754593,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10156), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6637), 9, + ACTIONS(10403), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726626,7 +754609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279597] = 14, + [293360] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726647,13 +754630,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10158), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10160), 1, + ACTIONS(10422), 1, anon_sym_RBRACE, - STATE(6656), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6638), 9, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726663,7 +754646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279648] = 14, + [293411] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726684,13 +754667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10162), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10164), 1, - anon_sym_RPAREN, - STATE(6718), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6639), 9, + ACTIONS(10424), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726700,7 +754683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279699] = 14, + [293462] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726721,13 +754704,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(10166), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6640), 9, + ACTIONS(10428), 1, + anon_sym_RBRACK, + STATE(6815), 1, + aux_sym_global_attribute_repeat1, + STATE(6871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726737,7 +754720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279750] = 14, + [293513] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726758,13 +754741,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(10430), 1, anon_sym_COMMA, - ACTIONS(10168), 1, - anon_sym_RPAREN, - STATE(6547), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6641), 9, + ACTIONS(10432), 1, + anon_sym_RBRACE, + STATE(6890), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726774,7 +754757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279801] = 14, + [293564] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726795,13 +754778,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10434), 1, anon_sym_COMMA, - ACTIONS(10172), 1, + ACTIONS(10436), 1, anon_sym_RBRACE, - STATE(6660), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6642), 9, + STATE(6742), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726811,34 +754794,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279852] = 14, - ACTIONS(3), 1, + [293615] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(10438), 1, anon_sym_COMMA, - ACTIONS(10174), 1, - anon_sym_RPAREN, - STATE(6545), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6643), 9, + ACTIONS(10441), 1, + aux_sym_preproc_if_token2, + STATE(6874), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726848,7 +754829,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279903] = 14, + aux_sym_preproc_pragma_repeat1, + [293664] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726869,13 +754851,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10176), 1, + ACTIONS(10443), 1, anon_sym_RBRACE, - STATE(6663), 1, + STATE(6905), 1, aux_sym__with_body_repeat1, - STATE(6644), 9, + STATE(6875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726885,7 +754867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [279954] = 14, + [293715] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726906,50 +754888,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10178), 1, + ACTIONS(10445), 1, anon_sym_GT, - STATE(6626), 1, + STATE(6908), 1, aux_sym_type_argument_list_repeat2, - STATE(6645), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [280005] = 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(8645), 1, - anon_sym_RBRACK, - ACTIONS(10180), 1, - anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6646), 9, + STATE(6876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726959,7 +754904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280056] = 14, + [293766] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726980,13 +754925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6647), 9, + ACTIONS(10447), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726996,7 +754941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280107] = 14, + [293817] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727017,13 +754962,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10184), 1, - anon_sym_RBRACK, - STATE(6778), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6648), 9, + ACTIONS(10445), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727033,7 +754978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280158] = 14, + [293868] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727054,13 +754999,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(10449), 1, anon_sym_COMMA, - ACTIONS(10186), 1, + ACTIONS(10452), 1, anon_sym_RBRACK, - STATE(6777), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6649), 9, + STATE(6879), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727070,7 +755013,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280209] = 14, + aux_sym_calling_convention_repeat1, + [293917] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727091,13 +755035,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9287), 1, - anon_sym_LBRACE, - ACTIONS(9537), 1, + ACTIONS(10454), 1, anon_sym_COMMA, - STATE(6666), 1, - aux_sym_base_list_repeat1, - STATE(6650), 9, + ACTIONS(10456), 1, + anon_sym_RPAREN, + STATE(6907), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(6880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727107,7 +755051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280260] = 14, + [293968] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727128,13 +755072,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2277), 1, - anon_sym_RBRACK, - ACTIONS(10188), 1, + ACTIONS(10458), 1, + anon_sym_EQ, + ACTIONS(10001), 2, anon_sym_COMMA, - STATE(6706), 1, - aux_sym_list_pattern_repeat1, - STATE(6651), 9, + anon_sym_RBRACE, + STATE(6881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727144,7 +755087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280311] = 14, + [294017] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727165,13 +755108,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9287), 1, - anon_sym_LBRACE, - ACTIONS(9537), 1, - anon_sym_COMMA, - STATE(6667), 1, - aux_sym_base_list_repeat1, - STATE(6652), 9, + ACTIONS(10460), 3, + anon_sym_RBRACE, + anon_sym_case, + anon_sym_default, + STATE(6882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727181,7 +755122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280362] = 14, + [294064] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727202,13 +755143,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(10190), 1, - anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6653), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + ACTIONS(6716), 1, + anon_sym_QMARK, + STATE(6883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727218,7 +755159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280413] = 14, + [294115] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727239,13 +755180,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10192), 1, + ACTIONS(10462), 1, anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6654), 9, + STATE(6889), 1, + aux_sym_type_argument_list_repeat2, + STATE(6884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727255,7 +755196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280464] = 14, + [294166] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727276,13 +755217,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10192), 1, + ACTIONS(10462), 1, anon_sym_GT, - STATE(6640), 1, - aux_sym_type_argument_list_repeat2, - STATE(6655), 9, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727292,7 +755233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280515] = 14, + [294217] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727313,13 +755254,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2189), 1, - anon_sym_RBRACE, - ACTIONS(10194), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6656), 9, + ACTIONS(10464), 1, + anon_sym_RPAREN, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727329,7 +755270,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280566] = 14, + [294268] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727350,13 +755291,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2285), 1, + ACTIONS(2683), 1, anon_sym_RBRACK, - ACTIONS(10196), 1, + ACTIONS(10466), 1, anon_sym_COMMA, - STATE(6706), 1, - aux_sym_list_pattern_repeat1, - STATE(6657), 9, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(6887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727366,7 +755307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280617] = 14, + [294319] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727387,13 +755328,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7293), 1, - sym_declaration_list, - STATE(6658), 9, + ACTIONS(7580), 1, + anon_sym_COMMA, + ACTIONS(10468), 1, + anon_sym_RPAREN, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727403,7 +755344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280668] = 14, + [294370] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727424,13 +755365,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10162), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10198), 1, - anon_sym_RPAREN, - STATE(6718), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6659), 9, + ACTIONS(10470), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727440,7 +755381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280719] = 14, + [294421] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727461,13 +755402,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2231), 1, + ACTIONS(2267), 1, anon_sym_RBRACE, - ACTIONS(10200), 1, + ACTIONS(10472), 1, anon_sym_COMMA, - STATE(6665), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6660), 9, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727477,7 +755418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280770] = 14, + [294472] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727498,13 +755439,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10148), 1, + ACTIONS(10474), 1, + anon_sym_EQ, + ACTIONS(9987), 2, anon_sym_COMMA, - ACTIONS(10202), 1, anon_sym_RPAREN, - STATE(6700), 1, - aux_sym_variable_declaration_repeat1, - STATE(6661), 9, + STATE(6891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727514,7 +755454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280821] = 14, + [294521] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727535,13 +755475,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(2815), 1, + anon_sym_RBRACE, + ACTIONS(10476), 1, anon_sym_COMMA, - ACTIONS(10204), 1, - anon_sym_RPAREN, - STATE(6668), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6662), 9, + STATE(6809), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727551,7 +755491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280872] = 14, + [294572] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727572,13 +755512,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10478), 1, anon_sym_COMMA, - ACTIONS(10206), 1, - anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6663), 9, + ACTIONS(10481), 1, + anon_sym_RPAREN, + STATE(6893), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727588,7 +755526,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280923] = 14, + aux_sym_using_variable_declaration_repeat1, + [294621] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727609,13 +755548,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(7492), 1, + ACTIONS(10483), 1, anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6664), 9, + STATE(7033), 1, + aux_sym_type_argument_list_repeat1, + STATE(6894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727625,7 +755564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [280974] = 13, + [294672] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727646,11 +755585,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10208), 1, + ACTIONS(10485), 1, anon_sym_COMMA, - ACTIONS(10211), 1, + ACTIONS(10488), 1, anon_sym_RBRACE, - STATE(6665), 10, + STATE(6895), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727660,8 +755599,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [281023] = 14, + aux_sym__switch_expression_body_repeat1, + [294721] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727682,13 +755621,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9277), 1, - anon_sym_LBRACE, - ACTIONS(9537), 1, + ACTIONS(2337), 1, + anon_sym_RBRACK, + ACTIONS(10490), 1, anon_sym_COMMA, - STATE(6667), 1, - aux_sym_base_list_repeat1, - STATE(6666), 9, + STATE(6945), 1, + aux_sym_list_pattern_repeat1, + STATE(6896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727698,7 +755637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281074] = 13, + [294772] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727719,11 +755658,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9279), 1, - anon_sym_LBRACE, - ACTIONS(10213), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - STATE(6667), 10, + ACTIONS(10492), 1, + anon_sym_RPAREN, + STATE(6918), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727733,8 +755674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [281123] = 14, + [294823] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727755,13 +755695,13 @@ 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(10216), 1, - anon_sym_RPAREN, - STATE(6766), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6668), 9, + ACTIONS(10494), 1, + sym_integer_literal, + ACTIONS(10496), 1, + anon_sym_DQUOTE, + STATE(7321), 1, + sym_string_literal, + STATE(6898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727771,7 +755711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281174] = 14, + [294874] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727792,13 +755732,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10218), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6669), 9, + ACTIONS(10498), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727808,7 +755748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281225] = 12, + [294925] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727829,11 +755769,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10220), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6670), 9, + ACTIONS(10261), 1, + anon_sym_COMMA, + ACTIONS(10500), 1, + anon_sym_RPAREN, + STATE(6789), 1, + aux_sym_variable_declaration_repeat1, + STATE(6900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727843,7 +755785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281272] = 14, + [294976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727864,13 +755806,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(7633), 3, anon_sym_COMMA, - ACTIONS(10222), 1, anon_sym_RBRACK, - STATE(6602), 1, - aux_sym_type_argument_list_repeat1, - STATE(6671), 9, + anon_sym_RPAREN, + STATE(6901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727880,7 +755820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281323] = 14, + [295023] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727901,13 +755841,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10224), 1, - sym_integer_literal, - ACTIONS(10226), 1, - anon_sym_DQUOTE, - STATE(7161), 1, - sym_string_literal, - STATE(6672), 9, + ACTIONS(2333), 1, + anon_sym_RBRACK, + ACTIONS(10502), 1, + anon_sym_COMMA, + STATE(6945), 1, + aux_sym_list_pattern_repeat1, + STATE(6902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727917,7 +755857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281374] = 14, + [295074] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727938,13 +755878,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9861), 1, - anon_sym_COMMA, - ACTIONS(10228), 1, - anon_sym_RPAREN, - STATE(6579), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6673), 9, + ACTIONS(10504), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727954,7 +755892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281425] = 14, + [295121] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727975,13 +755913,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10506), 1, anon_sym_COMMA, - ACTIONS(7584), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6674), 9, + ACTIONS(10508), 1, + anon_sym_RBRACE, + STATE(6910), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727991,7 +755929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281476] = 14, + [295172] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728012,13 +755950,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9861), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10230), 1, - anon_sym_RPAREN, - STATE(6579), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6675), 9, + ACTIONS(10510), 1, + anon_sym_RBRACE, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728028,7 +755966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281527] = 12, + [295223] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728049,11 +755987,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10232), 3, - anon_sym_SEMI, + ACTIONS(10189), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6676), 9, + ACTIONS(10512), 1, + anon_sym_RBRACE, + STATE(6916), 1, + aux_sym__with_body_repeat1, + STATE(6906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728063,7 +756003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281574] = 14, + [295274] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728084,13 +756024,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(10514), 1, anon_sym_COMMA, - ACTIONS(10234), 1, + ACTIONS(10517), 1, anon_sym_RPAREN, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6677), 9, + STATE(6907), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728100,7 +756038,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281625] = 13, + aux_sym_attribute_argument_list_repeat1, + [295323] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728121,11 +756060,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10232), 1, - anon_sym_SEMI, - ACTIONS(10236), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6678), 10, + ACTIONS(10519), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728135,8 +756076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [281674] = 14, + [295374] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728157,13 +756097,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10521), 1, anon_sym_COMMA, - ACTIONS(10239), 1, + ACTIONS(10523), 1, anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6679), 9, + STATE(6958), 1, + aux_sym_global_attribute_repeat1, + STATE(6909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728173,7 +756113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281725] = 13, + [295425] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728194,11 +756134,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7861), 1, - anon_sym_RBRACK, - ACTIONS(10241), 1, + ACTIONS(2209), 1, + anon_sym_RBRACE, + ACTIONS(10525), 1, anon_sym_COMMA, - STATE(6680), 10, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728208,8 +756150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_array_rank_specifier_repeat1, - [281774] = 14, + [295476] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728230,13 +756171,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10244), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10246), 1, - anon_sym_RBRACE, - STATE(6653), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6681), 9, + ACTIONS(10527), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728246,7 +756187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281825] = 14, + [295527] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728267,13 +756208,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10248), 1, + ACTIONS(10529), 1, anon_sym_COMMA, - ACTIONS(10250), 1, - anon_sym_RBRACK, - STATE(6740), 1, - aux_sym_argument_list_repeat1, - STATE(6682), 9, + ACTIONS(10532), 1, + anon_sym_GT, + STATE(6912), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728283,34 +756222,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281876] = 14, - ACTIONS(3), 1, + aux_sym_type_parameter_list_repeat1, + [295576] = 14, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - ACTIONS(9882), 1, - anon_sym_LPAREN, - STATE(6903), 1, - sym_block, - STATE(6683), 9, + ACTIONS(10534), 1, + anon_sym_DQUOTE, + ACTIONS(10536), 1, + aux_sym_preproc_if_token2, + STATE(7420), 1, + sym_string_literal, + STATE(6913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728320,7 +756260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281927] = 14, + [295627] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728341,13 +756281,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10252), 1, + ACTIONS(10538), 1, anon_sym_COMMA, - ACTIONS(10254), 1, - anon_sym_RBRACE, - STATE(6636), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(6684), 9, + ACTIONS(10540), 1, + anon_sym_RBRACK, + STATE(6960), 1, + aux_sym_argument_list_repeat1, + STATE(6914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728357,7 +756297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [281978] = 14, + [295678] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728378,13 +756318,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10256), 1, - anon_sym_RBRACE, - STATE(6633), 1, - aux_sym__with_body_repeat1, - STATE(6685), 9, + ACTIONS(10542), 1, + anon_sym_GT, + STATE(6933), 1, + aux_sym_type_argument_list_repeat2, + STATE(6915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728394,7 +756334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282029] = 14, + [295729] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728415,13 +756355,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10258), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6686), 9, + ACTIONS(10544), 1, + anon_sym_RBRACE, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728431,7 +756371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282080] = 14, + [295780] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728452,13 +756392,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(10260), 1, - anon_sym_SEMI, - STATE(2644), 1, - sym_accessor_list, - STATE(6687), 9, + ACTIONS(5026), 1, + anon_sym_COMMA, + ACTIONS(10542), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728468,7 +756408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282131] = 14, + [295831] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728489,13 +756429,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10262), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(6698), 1, - aux_sym_global_attribute_repeat1, - STATE(6688), 9, + ACTIONS(10546), 1, + anon_sym_RPAREN, + STATE(6753), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728505,7 +756445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282182] = 14, + [295882] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728526,13 +756466,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10266), 1, + ACTIONS(10548), 1, anon_sym_COMMA, - ACTIONS(10268), 1, - anon_sym_RBRACK, - STATE(6701), 1, - aux_sym_argument_list_repeat1, - STATE(6689), 9, + ACTIONS(10551), 1, + anon_sym_RBRACE, + STATE(6919), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728542,7 +756480,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282233] = 14, + aux_sym_enum_member_declaration_list_repeat1, + [295931] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728563,13 +756502,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(9496), 1, + anon_sym_LBRACE, + ACTIONS(9828), 1, anon_sym_COMMA, - ACTIONS(10270), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6690), 9, + STATE(6922), 1, + aux_sym_base_list_repeat1, + STATE(6920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728579,7 +756518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282284] = 14, + [295982] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728600,13 +756539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10553), 1, anon_sym_COMMA, - ACTIONS(7485), 1, + ACTIONS(10555), 1, anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6691), 9, + STATE(7011), 1, + aux_sym_global_attribute_repeat1, + STATE(6921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728616,7 +756555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282335] = 14, + [296033] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728637,13 +756576,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(9491), 1, + anon_sym_LBRACE, + ACTIONS(10557), 1, anon_sym_COMMA, - ACTIONS(10272), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6692), 9, + STATE(6922), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728653,7 +756590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282386] = 14, + aux_sym_base_list_repeat1, + [296082] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728674,13 +756612,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10560), 1, anon_sym_COMMA, - ACTIONS(10274), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6693), 9, + ACTIONS(10562), 1, + anon_sym_RBRACK, + STATE(7015), 1, + aux_sym_argument_list_repeat1, + STATE(6923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728690,7 +756628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282437] = 13, + [296133] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728711,11 +756649,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10276), 1, + ACTIONS(10247), 1, anon_sym_COMMA, - ACTIONS(10279), 1, - anon_sym_RBRACE, - STATE(6694), 10, + ACTIONS(10564), 1, + anon_sym_RBRACK, + STATE(6879), 1, + aux_sym_calling_convention_repeat1, + STATE(6924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728725,8 +756665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__switch_expression_body_repeat1, - [282486] = 14, + [296184] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728747,13 +756686,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10566), 3, anon_sym_COMMA, - ACTIONS(10281), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6766), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6695), 9, + STATE(6925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728763,7 +756700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282537] = 14, + [296231] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728784,13 +756721,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10274), 1, - anon_sym_GT, - STATE(6690), 1, - aux_sym_type_argument_list_repeat2, - STATE(6696), 9, + ACTIONS(10568), 1, + anon_sym_RBRACE, + STATE(7025), 1, + aux_sym__with_body_repeat1, + STATE(6926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728800,7 +756737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282588] = 13, + [296282] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728821,12 +756758,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10285), 1, - anon_sym_EQ, - ACTIONS(10283), 2, - anon_sym_SEMI, + ACTIONS(10154), 1, anon_sym_COMMA, - STATE(6697), 9, + ACTIONS(10570), 1, + anon_sym_RPAREN, + STATE(6753), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728836,7 +756774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282637] = 14, + [296333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728857,13 +756795,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8671), 1, - anon_sym_RBRACK, - ACTIONS(10287), 1, - anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6698), 9, + ACTIONS(10572), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(6928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728873,7 +756809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282688] = 14, + [296380] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728894,13 +756830,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8671), 1, - anon_sym_RBRACK, - ACTIONS(10287), 1, + ACTIONS(7580), 1, anon_sym_COMMA, - STATE(6722), 1, - aux_sym_global_attribute_repeat1, - STATE(6699), 9, + ACTIONS(10574), 1, + anon_sym_RPAREN, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728910,7 +756846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282739] = 13, + [296431] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728931,11 +756867,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10232), 1, - anon_sym_RPAREN, - ACTIONS(10289), 1, + ACTIONS(10576), 1, anon_sym_COMMA, - STATE(6700), 10, + ACTIONS(10579), 1, + anon_sym_RPAREN, + STATE(6930), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728945,8 +756881,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [282788] = 14, + aux_sym_argument_list_repeat1, + [296480] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728967,13 +756903,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2605), 1, - anon_sym_RBRACK, - ACTIONS(10292), 1, + ACTIONS(10581), 1, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6701), 9, + ACTIONS(10583), 1, + anon_sym_RBRACK, + STATE(6772), 1, + aux_sym_global_attribute_repeat1, + STATE(6931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728983,7 +756919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282839] = 14, + [296531] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729004,13 +756940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10585), 1, anon_sym_COMMA, - ACTIONS(10294), 1, - anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6702), 9, + ACTIONS(10587), 1, + anon_sym_RBRACK, + STATE(6779), 1, + aux_sym_argument_list_repeat1, + STATE(6932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729020,7 +756956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282890] = 14, + [296582] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729041,13 +756977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_RPAREN, - STATE(6695), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6703), 9, + ACTIONS(10589), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729057,7 +756993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282941] = 14, + [296633] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729078,13 +757014,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(10298), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6704), 9, + ACTIONS(10591), 1, + anon_sym_RBRACK, + STATE(6661), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6934), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [296684] = 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(10219), 1, + anon_sym_COMMA, + ACTIONS(10593), 1, + aux_sym_preproc_if_token2, + STATE(6771), 1, + aux_sym_preproc_pragma_repeat1, + STATE(6935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729094,7 +757067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [282992] = 14, + [296735] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729115,13 +757088,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2295), 1, - anon_sym_RBRACK, - ACTIONS(10300), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - STATE(6706), 1, - aux_sym_list_pattern_repeat1, - STATE(6705), 9, + ACTIONS(10595), 1, + anon_sym_RBRACK, + STATE(6661), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729131,7 +757104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283043] = 13, + [296786] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729152,11 +757125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1909), 1, - anon_sym_RBRACK, - ACTIONS(10302), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6706), 10, + ACTIONS(10597), 1, + anon_sym_GT, + STATE(6939), 1, + aux_sym_type_argument_list_repeat2, + STATE(6937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729166,8 +757141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_list_pattern_repeat1, - [283092] = 14, + [296837] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729188,13 +757162,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2185), 1, - anon_sym_RBRACE, - ACTIONS(10305), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6707), 9, + ACTIONS(10597), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729204,7 +757178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283143] = 14, + [296888] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729225,13 +757199,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10307), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6708), 9, + ACTIONS(10599), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729241,7 +757215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283194] = 14, + [296939] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729262,13 +757236,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2865), 1, - anon_sym_RBRACE, - ACTIONS(10309), 1, + ACTIONS(10601), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6709), 9, + ACTIONS(10603), 1, + anon_sym_RBRACE, + STATE(6808), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729278,7 +757252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283245] = 14, + [296990] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729299,13 +757273,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10311), 1, + ACTIONS(10605), 1, anon_sym_RPAREN, - STATE(6725), 1, + STATE(6977), 1, aux_sym_argument_list_repeat1, - STATE(6710), 9, + STATE(6941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729315,7 +757289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283296] = 14, + [297041] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729336,13 +757310,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10313), 1, - anon_sym_COMMA, - ACTIONS(10315), 1, + ACTIONS(2869), 1, anon_sym_RBRACE, - STATE(6726), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6711), 9, + ACTIONS(10607), 1, + anon_sym_COMMA, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6942), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [297092] = 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(10609), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(6943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729352,7 +757361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283347] = 12, + [297139] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729373,11 +757382,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10211), 3, + ACTIONS(10339), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(6712), 9, + ACTIONS(10500), 1, + anon_sym_SEMI, + STATE(6822), 1, + aux_sym_variable_declaration_repeat1, + STATE(6944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729387,7 +757398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283394] = 14, + [297190] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729408,13 +757419,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(1913), 1, + anon_sym_RBRACK, + ACTIONS(10611), 1, anon_sym_COMMA, - ACTIONS(10317), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6713), 9, + STATE(6945), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729424,7 +757433,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283445] = 14, + aux_sym_list_pattern_repeat1, + [297239] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729445,13 +757455,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(7634), 1, + ACTIONS(10614), 1, anon_sym_RBRACK, - STATE(6680), 1, + STATE(6733), 1, aux_sym_array_rank_specifier_repeat1, - STATE(6714), 9, + STATE(6946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729461,7 +757471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283496] = 14, + [297290] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729482,13 +757492,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10319), 1, + ACTIONS(10616), 1, anon_sym_RPAREN, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6715), 9, + STATE(6743), 1, + aux_sym_argument_list_repeat1, + STATE(6947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729498,7 +757508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283547] = 14, + [297341] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729519,13 +757529,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(10321), 1, + ACTIONS(10618), 1, anon_sym_RPAREN, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6716), 9, + STATE(6813), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729535,7 +757545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283598] = 14, + [297392] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729556,13 +757566,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10174), 1, anon_sym_COMMA, - ACTIONS(10323), 1, - anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6717), 9, + ACTIONS(10620), 1, + anon_sym_RPAREN, + STATE(6749), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(6949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729572,7 +757582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283649] = 13, + [297443] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729593,11 +757603,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10211), 1, - anon_sym_RPAREN, - ACTIONS(10325), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - STATE(6718), 10, + ACTIONS(10622), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729607,8 +757619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [283698] = 14, + [297494] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729629,13 +757640,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(8847), 1, + anon_sym_RPAREN, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10328), 1, - anon_sym_GT, - STATE(6743), 1, - aux_sym_type_argument_list_repeat2, - STATE(6719), 9, + STATE(6811), 1, + aux_sym_tuple_pattern_repeat1, + STATE(6951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729645,7 +757656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283749] = 14, + [297545] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729666,13 +757677,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10624), 1, anon_sym_COMMA, - ACTIONS(10328), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6720), 9, + 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, @@ -729682,34 +757693,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283800] = 14, - ACTIONS(3), 1, + [297596] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_COMMA, - ACTIONS(10330), 1, - anon_sym_RBRACK, - STATE(6717), 1, - aux_sym_type_argument_list_repeat1, - STATE(6721), 9, + ACTIONS(10628), 1, + aux_sym_preproc_if_token2, + ACTIONS(10630), 2, + anon_sym_annotations, + anon_sym_warnings, + STATE(6953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729719,7 +757729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283851] = 14, + [297645] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729740,13 +757750,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8669), 1, - anon_sym_RBRACK, - ACTIONS(10332), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6722), 9, + ACTIONS(10632), 1, + anon_sym_RPAREN, + STATE(6753), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729756,7 +757766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283902] = 14, + [297696] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729777,13 +757787,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(10334), 1, - anon_sym_SEMI, - STATE(7085), 1, - sym_declaration_list, - STATE(6723), 9, + ACTIONS(10634), 1, + anon_sym_COMMA, + ACTIONS(10637), 1, + anon_sym_RBRACK, + STATE(6955), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729793,7 +757801,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [283953] = 14, + aux_sym_global_attribute_repeat1, + [297745] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729814,13 +757823,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(8869), 1, + anon_sym_RBRACK, + ACTIONS(10639), 1, anon_sym_COMMA, - ACTIONS(10336), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6724), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729830,7 +757839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284004] = 14, + [297796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729851,13 +757860,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10579), 3, anon_sym_COMMA, - ACTIONS(10338), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6725), 9, + STATE(6957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729867,7 +757874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284055] = 14, + [297843] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729888,13 +757895,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_RBRACE, - ACTIONS(10340), 1, + ACTIONS(8867), 1, + anon_sym_RBRACK, + ACTIONS(10641), 1, anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6726), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(6958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729904,34 +757911,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284106] = 14, - ACTIONS(8891), 1, + [297894] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9878), 1, + ACTIONS(8867), 1, + anon_sym_RBRACK, + ACTIONS(10641), 1, anon_sym_COMMA, - ACTIONS(10342), 1, - aux_sym_preproc_if_token2, - STATE(6566), 1, - aux_sym_preproc_pragma_repeat1, - STATE(6727), 9, + STATE(7003), 1, + aux_sym_global_attribute_repeat1, + STATE(6959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729941,7 +757948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284157] = 13, + [297945] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729962,11 +757969,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7600), 1, - anon_sym_SEMI, - ACTIONS(10344), 1, + ACTIONS(2675), 1, + anon_sym_RBRACK, + ACTIONS(10643), 1, anon_sym_COMMA, - STATE(6728), 10, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(6960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729976,8 +757985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [284206] = 14, + [297996] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729998,13 +758006,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10347), 1, - anon_sym_RBRACE, - STATE(6702), 1, - aux_sym__with_body_repeat1, - STATE(6729), 9, + ACTIONS(10645), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730014,7 +758022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284257] = 14, + [298047] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730035,13 +758043,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10202), 1, - anon_sym_SEMI, - ACTIONS(10349), 1, + ACTIONS(10579), 1, + anon_sym_RBRACK, + ACTIONS(10647), 1, anon_sym_COMMA, - STATE(6678), 1, - aux_sym_variable_declaration_repeat1, - STATE(6730), 9, + STATE(6962), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730051,7 +758057,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284308] = 14, + aux_sym_argument_list_repeat1, + [298096] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730072,13 +758079,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9076), 1, - anon_sym_LBRACE, - ACTIONS(10351), 1, - anon_sym_SEMI, - STATE(2762), 1, - sym_accessor_list, - STATE(6731), 9, + ACTIONS(10454), 1, + anon_sym_COMMA, + ACTIONS(10650), 1, + anon_sym_RPAREN, + STATE(6880), 1, + aux_sym_attribute_argument_list_repeat1, + STATE(6963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730088,7 +758095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284359] = 14, + [298147] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730109,13 +758116,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10399), 3, anon_sym_COMMA, - ACTIONS(10353), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6732), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(6964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730125,7 +758130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284410] = 12, + [298194] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730146,11 +758151,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10355), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6733), 9, + ACTIONS(10652), 1, + anon_sym_COMMA, + ACTIONS(10654), 1, + anon_sym_RBRACE, + STATE(6836), 1, + aux_sym__switch_expression_body_repeat1, + STATE(6965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730160,7 +758167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284457] = 14, + [298245] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730181,13 +758188,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10357), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10359), 1, - anon_sym_RBRACE, - STATE(6707), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6734), 9, + ACTIONS(10656), 1, + anon_sym_RPAREN, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(6966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730197,7 +758204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284508] = 14, + [298296] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730218,13 +758225,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10361), 1, - anon_sym_COMMA, - ACTIONS(10363), 1, + ACTIONS(2925), 1, anon_sym_RBRACE, - STATE(6754), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6735), 9, + ACTIONS(10658), 1, + anon_sym_COMMA, + STATE(6669), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(6967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730234,7 +758241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284559] = 14, + [298347] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730255,13 +758262,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6839), 1, - anon_sym_COLON, - ACTIONS(10365), 1, - sym_interpolation_close_brace, - STATE(7517), 1, - sym_interpolation_format_clause, - STATE(6736), 9, + ACTIONS(10160), 1, + anon_sym_COMMA, + ACTIONS(10660), 1, + anon_sym_RPAREN, + STATE(7008), 1, + aux_sym_argument_list_repeat1, + STATE(6968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730271,7 +758278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284610] = 14, + [298398] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730292,13 +758299,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10662), 1, anon_sym_COMMA, - ACTIONS(10367), 1, + ACTIONS(10664), 1, anon_sym_RBRACE, - STATE(6757), 1, - aux_sym__with_body_repeat1, - STATE(6737), 9, + STATE(7009), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730308,7 +758315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284661] = 14, + [298449] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730329,13 +758336,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10666), 1, anon_sym_COMMA, - ACTIONS(10369), 1, - anon_sym_RPAREN, - STATE(6766), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6738), 9, + ACTIONS(10668), 1, + anon_sym_RBRACE, + STATE(6745), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(6970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730345,7 +758352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284712] = 14, + [298500] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730366,13 +758373,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(10670), 1, anon_sym_COMMA, - ACTIONS(10371), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6739), 9, + ACTIONS(10672), 1, + anon_sym_GT, + STATE(6912), 1, + aux_sym_type_parameter_list_repeat1, + STATE(6971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730382,7 +758389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284763] = 14, + [298551] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730403,13 +758410,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2629), 1, - anon_sym_RBRACK, - ACTIONS(10373), 1, + ACTIONS(10352), 3, + anon_sym_SEMI, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6740), 9, + anon_sym_RPAREN, + STATE(6972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730419,7 +758424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284814] = 14, + [298598] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730440,13 +758445,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(10674), 1, anon_sym_COMMA, - ACTIONS(10375), 1, - anon_sym_RPAREN, - STATE(6528), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(6741), 9, + ACTIONS(10676), 1, + anon_sym_RBRACE, + STATE(7032), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(6973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730456,7 +758461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284865] = 13, + [298649] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730477,12 +758482,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10379), 1, - anon_sym_EQ, - ACTIONS(10377), 2, - anon_sym_SEMI, + ACTIONS(7837), 3, anon_sym_COMMA, - STATE(6742), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730492,7 +758496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284914] = 14, + [298696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730513,13 +758517,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, - anon_sym_COMMA, - ACTIONS(10381), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6743), 9, + ACTIONS(9310), 1, + anon_sym_LBRACE, + ACTIONS(10678), 1, + anon_sym_SEMI, + STATE(2830), 1, + sym_accessor_list, + STATE(6975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730529,7 +758533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [284965] = 14, + [298747] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730550,13 +758554,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8667), 1, - anon_sym_RBRACK, - ACTIONS(10383), 1, - anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6744), 9, + ACTIONS(9335), 1, + anon_sym_LBRACE, + ACTIONS(10680), 1, + anon_sym_SEMI, + STATE(7643), 1, + sym_declaration_list, + STATE(6976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730566,7 +758570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285016] = 14, + [298798] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730587,13 +758591,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10385), 1, - anon_sym_RBRACK, - STATE(6769), 1, - aux_sym_type_argument_list_repeat1, - STATE(6745), 9, + ACTIONS(10682), 1, + anon_sym_RPAREN, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(6977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730603,7 +758607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285067] = 14, + [298849] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730624,13 +758628,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10387), 1, + ACTIONS(7705), 1, anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6746), 9, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730640,7 +758644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285118] = 14, + [298900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730661,13 +758665,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10389), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6747), 9, + ACTIONS(7691), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(6979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730677,7 +758681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285169] = 14, + [298951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730698,13 +758702,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2809), 1, - anon_sym_RBRACE, - ACTIONS(10391), 1, + ACTIONS(10670), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6748), 9, + ACTIONS(10684), 1, + anon_sym_GT, + STATE(6971), 1, + aux_sym_type_parameter_list_repeat1, + STATE(6980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730714,7 +758718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285220] = 14, + [299002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730735,13 +758739,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(6611), 1, - anon_sym_STAR, - STATE(6749), 9, + ACTIONS(10193), 1, + anon_sym_COMMA, + ACTIONS(10686), 1, + anon_sym_GT, + STATE(6984), 1, + aux_sym_type_argument_list_repeat2, + STATE(6981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730751,7 +758755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285271] = 14, + [299053] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730772,13 +758776,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9923), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10393), 1, - anon_sym_RPAREN, - STATE(6540), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(6750), 9, + ACTIONS(10686), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730788,7 +758792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285322] = 12, + [299104] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730809,48 +758813,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7423), 3, + ACTIONS(10688), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6751), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [285369] = 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(2765), 1, - anon_sym_RBRACE, - ACTIONS(10395), 1, - anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6752), 9, + STATE(6983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730860,7 +758827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285420] = 14, + [299151] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730881,13 +758848,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10397), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6753), 9, + ACTIONS(10690), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730897,7 +758864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285471] = 14, + [299202] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730918,13 +758885,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2211), 1, - anon_sym_RBRACE, ACTIONS(10399), 1, + anon_sym_RPAREN, + ACTIONS(10692), 1, anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6754), 9, + STATE(6985), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730934,7 +758899,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285522] = 14, + aux_sym_positional_pattern_clause_repeat1, + [299251] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730955,13 +758921,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2273), 1, - anon_sym_RBRACK, - ACTIONS(10401), 1, + ACTIONS(10695), 3, anon_sym_COMMA, - STATE(6706), 1, - aux_sym_list_pattern_repeat1, - STATE(6755), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730971,7 +758935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285573] = 14, + [299298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730992,13 +758956,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10697), 3, anon_sym_COMMA, - ACTIONS(10403), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(6767), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6756), 9, + STATE(6987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731008,7 +758970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285624] = 14, + [299345] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731029,13 +758991,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, + ACTIONS(10352), 1, + anon_sym_SEMI, + ACTIONS(10699), 1, anon_sym_COMMA, - ACTIONS(10405), 1, - anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6757), 9, + STATE(6988), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731045,7 +759005,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285675] = 14, + aux_sym_variable_declaration_repeat1, + [299394] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731066,122 +759027,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10407), 1, + ACTIONS(10702), 1, anon_sym_COMMA, - ACTIONS(10409), 1, - anon_sym_RBRACE, - STATE(6805), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6758), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [285726] = 14, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(8649), 1, + ACTIONS(10704), 1, anon_sym_RBRACK, - ACTIONS(10411), 1, - anon_sym_COMMA, - STATE(6531), 1, + STATE(6731), 1, aux_sym_global_attribute_repeat1, - STATE(6759), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [285777] = 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(5129), 1, - anon_sym_COMMA, - ACTIONS(10413), 1, - anon_sym_RBRACK, - STATE(6746), 1, - aux_sym_type_argument_list_repeat1, - STATE(6760), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [285828] = 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(10415), 1, - anon_sym_COMMA, - ACTIONS(10418), 1, - anon_sym_RBRACE, - STATE(6761), 10, + STATE(6989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731191,8 +759043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__with_body_repeat1, - [285877] = 14, + [299445] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731213,13 +759064,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9861), 1, - anon_sym_COMMA, - ACTIONS(10420), 1, - anon_sym_RPAREN, - STATE(6673), 1, - aux_sym_tuple_pattern_repeat1, - STATE(6762), 9, + ACTIONS(10706), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731229,7 +759078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285928] = 14, + [299492] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731250,13 +759099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, - anon_sym_COMMA, - ACTIONS(10422), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6763), 9, + ACTIONS(9310), 1, + anon_sym_LBRACE, + ACTIONS(10708), 1, + anon_sym_SEMI, + STATE(2717), 1, + sym_accessor_list, + STATE(6991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731266,7 +759115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [285979] = 14, + [299543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731287,13 +759136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10422), 1, + ACTIONS(10710), 1, anon_sym_GT, - STATE(6724), 1, + STATE(6995), 1, aux_sym_type_argument_list_repeat2, - STATE(6764), 9, + STATE(6992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731303,7 +759152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286030] = 14, + [299594] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731324,13 +759173,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(7664), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6765), 9, + ACTIONS(10710), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(6993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731340,7 +759189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286081] = 13, + [299645] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731361,11 +759210,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10424), 1, + ACTIONS(10154), 1, anon_sym_COMMA, - ACTIONS(10427), 1, + ACTIONS(10712), 1, anon_sym_RPAREN, - STATE(6766), 10, + STATE(6753), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(6994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731375,8 +759226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parenthesized_variable_designation_repeat1, - [286130] = 14, + [299696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731397,13 +759247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9952), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10429), 1, - anon_sym_RPAREN, - STATE(6766), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(6767), 9, + ACTIONS(10714), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(6995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731413,7 +759263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286181] = 12, + [299747] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731434,11 +759284,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10431), 3, + ACTIONS(10317), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10716), 1, anon_sym_RPAREN, - STATE(6768), 9, + STATE(6816), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731448,7 +759300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286228] = 14, + [299798] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731469,48 +759321,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(10433), 1, + ACTIONS(10718), 1, anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6769), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [286279] = 12, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(10435), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6770), 9, + STATE(6934), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731520,7 +759337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286326] = 14, + [299849] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731541,13 +759358,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10317), 1, anon_sym_COMMA, - ACTIONS(9907), 1, - anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6771), 9, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(6936), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(6998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731557,7 +759374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286377] = 14, + [299900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731578,50 +759395,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9998), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(10437), 1, + ACTIONS(10722), 1, anon_sym_GT, - STATE(6581), 1, - aux_sym_type_parameter_list_repeat1, - STATE(6772), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [286428] = 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(2655), 1, - anon_sym_COMMA, - ACTIONS(7306), 1, - anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6773), 9, + STATE(7030), 1, + aux_sym_type_argument_list_repeat2, + STATE(6999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731631,7 +759411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286479] = 14, + [299951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731652,13 +759432,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8677), 1, - anon_sym_RBRACE, - ACTIONS(10439), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6514), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(6774), 9, + ACTIONS(10722), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(7000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731668,7 +759448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286530] = 13, + [300002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731689,12 +759469,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10441), 1, - anon_sym_EQ, - ACTIONS(9699), 2, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(10071), 1, + anon_sym_RPAREN, + ACTIONS(10724), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6775), 9, + STATE(7001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731704,7 +759485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286579] = 12, + [300053] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731725,11 +759506,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10443), 3, - anon_sym_SEMI, + ACTIONS(5771), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6776), 9, + ACTIONS(10215), 1, + anon_sym_LPAREN, + STATE(2096), 1, + sym_block, + STATE(7002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731739,7 +759522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286626] = 14, + [300104] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731760,13 +759543,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, - anon_sym_COMMA, - ACTIONS(10445), 1, + ACTIONS(8885), 1, anon_sym_RBRACK, - STATE(6382), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6777), 9, + ACTIONS(10727), 1, + anon_sym_COMMA, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(7003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731776,7 +759559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286677] = 14, + [300155] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731797,13 +759580,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(10729), 1, anon_sym_COMMA, - ACTIONS(10447), 1, - anon_sym_RBRACK, - STATE(6382), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(6778), 9, + ACTIONS(10732), 1, + anon_sym_RPAREN, + STATE(7004), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731813,7 +759594,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286728] = 14, + aux_sym_tuple_type_repeat1, + [300204] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731834,13 +759616,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - ACTIONS(9849), 1, + ACTIONS(10734), 1, anon_sym_GT, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6779), 9, + STATE(7007), 1, + aux_sym_type_argument_list_repeat2, + STATE(7005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731850,7 +759632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286779] = 14, + [300255] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731871,13 +759653,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6609), 1, - anon_sym_QMARK, - ACTIONS(9368), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6780), 9, + ACTIONS(10734), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(7006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731887,7 +759669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286830] = 14, + [300306] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731908,13 +759690,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - ACTIONS(9368), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6781), 9, + ACTIONS(10736), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(7007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731924,7 +759706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286881] = 13, + [300357] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731945,12 +759727,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10449), 1, - anon_sym_EQ, - ACTIONS(10283), 2, + ACTIONS(10160), 1, anon_sym_COMMA, + ACTIONS(10738), 1, anon_sym_RPAREN, - STATE(6782), 9, + STATE(6930), 1, + aux_sym_argument_list_repeat1, + STATE(7008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731960,7 +759743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286930] = 14, + [300408] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731981,13 +759764,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10451), 1, - anon_sym_COMMA, - ACTIONS(10453), 1, + ACTIONS(2805), 1, anon_sym_RBRACE, - STATE(6752), 1, + ACTIONS(10740), 1, + anon_sym_COMMA, + STATE(6809), 1, aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6783), 9, + STATE(7009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731997,7 +759780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [286981] = 14, + [300459] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732018,13 +759801,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, - anon_sym_LBRACE, - ACTIONS(9882), 1, + ACTIONS(10742), 3, anon_sym_LPAREN, - STATE(1885), 1, - sym_block, - STATE(6784), 9, + anon_sym_LBRACE, + anon_sym_when, + STATE(7010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732034,7 +759815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287032] = 14, + [300506] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732055,48 +759836,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(8891), 1, + anon_sym_RBRACK, + ACTIONS(10744), 1, anon_sym_COMMA, - ACTIONS(10455), 1, - anon_sym_RPAREN, - STATE(6753), 1, - aux_sym_argument_list_repeat1, - STATE(6785), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [287083] = 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(10457), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6786), 9, + STATE(6955), 1, + aux_sym_global_attribute_repeat1, + STATE(7011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732106,7 +759852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287130] = 12, + [300557] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732127,11 +759873,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10459), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(6787), 9, + ACTIONS(8891), 1, + anon_sym_RBRACK, + ACTIONS(10744), 1, + anon_sym_COMMA, + STATE(6760), 1, + aux_sym_global_attribute_repeat1, + STATE(7012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732141,7 +759889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287177] = 14, + [300608] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732162,13 +759910,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2871), 1, - anon_sym_RBRACE, - ACTIONS(10461), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6788), 9, + ACTIONS(10746), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732178,7 +759926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287228] = 14, + [300659] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732199,13 +759947,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10047), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(10463), 1, - anon_sym_RBRACK, - STATE(6590), 1, - aux_sym_calling_convention_repeat1, - STATE(6789), 9, + ACTIONS(10748), 1, + anon_sym_RPAREN, + STATE(6798), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732215,7 +759963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287279] = 14, + [300710] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732236,13 +759984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(2665), 1, + anon_sym_RBRACK, + ACTIONS(10750), 1, anon_sym_COMMA, - ACTIONS(10465), 1, - anon_sym_RPAREN, - STATE(6552), 1, - aux_sym_tuple_type_repeat1, - STATE(6790), 9, + STATE(6962), 1, + aux_sym_argument_list_repeat1, + STATE(7015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732252,7 +760000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287330] = 14, + [300761] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732273,13 +760021,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10467), 1, - anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6791), 9, + 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, @@ -732289,7 +760037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287381] = 14, + [300812] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732310,13 +760058,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - ACTIONS(10469), 1, - anon_sym_SEMI, - STATE(7337), 1, - sym_declaration_list, - STATE(6792), 9, + ACTIONS(2889), 1, + aux_sym_preproc_if_token3, + ACTIONS(2977), 1, + anon_sym_LBRACK, + STATE(7518), 1, + sym_attribute_list, + STATE(7017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732326,7 +760074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287432] = 13, + [300863] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732347,12 +760095,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10471), 1, - anon_sym_EQ, - ACTIONS(10377), 2, + ACTIONS(10754), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6793), 9, + ACTIONS(10756), 1, + anon_sym_RBRACE, + STATE(7035), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732362,7 +760111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287481] = 14, + [300914] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732383,13 +760132,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(2697), 1, anon_sym_COMMA, - ACTIONS(10473), 1, - anon_sym_RPAREN, - STATE(6621), 1, - aux_sym_argument_list_repeat1, - STATE(6794), 9, + ACTIONS(10758), 1, + anon_sym_RBRACK, + STATE(6733), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732399,7 +760148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287532] = 14, + [300965] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732420,13 +760169,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2613), 1, - anon_sym_RBRACK, - ACTIONS(10475), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6533), 1, - aux_sym_argument_list_repeat1, - STATE(6795), 9, + ACTIONS(10760), 1, + anon_sym_GT, + STATE(7024), 1, + aux_sym_type_argument_list_repeat2, + STATE(7020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732436,7 +760185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287583] = 13, + [301016] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732457,11 +760206,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10477), 1, + ACTIONS(7546), 3, anon_sym_COMMA, - ACTIONS(10480), 1, - anon_sym_RBRACE, - STATE(6796), 10, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732471,8 +760220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_anonymous_object_creation_expression_repeat1, - [287632] = 14, + [301063] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732493,13 +760241,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_RBRACK, - ACTIONS(10482), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - STATE(6759), 1, - aux_sym_global_attribute_repeat1, - STATE(6797), 9, + ACTIONS(10760), 1, + anon_sym_GT, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(7022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732509,7 +760257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287683] = 14, + [301114] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732530,13 +760278,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10484), 1, + ACTIONS(10762), 1, anon_sym_RPAREN, - STATE(6418), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(6798), 9, + STATE(7004), 1, + aux_sym_tuple_type_repeat1, + STATE(7023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732546,7 +760294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287734] = 14, + [301165] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732567,13 +760315,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8679), 1, - anon_sym_RBRACK, - ACTIONS(10482), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6531), 1, - aux_sym_global_attribute_repeat1, - STATE(6799), 9, + ACTIONS(10764), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(7024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732583,7 +760331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287785] = 14, + [301216] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732604,13 +760352,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10766), 1, anon_sym_COMMA, - ACTIONS(10486), 1, - anon_sym_RBRACK, - STATE(6791), 1, - aux_sym_type_argument_list_repeat1, - STATE(6800), 9, + ACTIONS(10769), 1, + anon_sym_RBRACE, + STATE(7025), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732620,7 +760366,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287836] = 14, + aux_sym__with_body_repeat1, + [301265] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732641,13 +760388,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7614), 1, + ACTIONS(2883), 1, + anon_sym_RBRACE, + ACTIONS(10771), 1, anon_sym_COMMA, - ACTIONS(10488), 1, - anon_sym_RPAREN, - STATE(6418), 1, + STATE(6669), 1, aux_sym__for_statement_conditions_repeat1, - STATE(6801), 9, + STATE(7026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732657,7 +760404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287887] = 14, + [301316] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732678,13 +760425,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - ACTIONS(10490), 1, - anon_sym_RBRACK, - STATE(6804), 1, - aux_sym_type_argument_list_repeat1, - STATE(6802), 9, + ACTIONS(10773), 1, + anon_sym_RPAREN, + STATE(6768), 1, + aux_sym_argument_list_repeat1, + STATE(7027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732694,7 +760441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [287938] = 13, + [301367] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732715,11 +760462,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10492), 1, + ACTIONS(10189), 1, anon_sym_COMMA, - ACTIONS(10495), 1, - anon_sym_RBRACK, - STATE(6803), 10, + ACTIONS(10775), 1, + anon_sym_RBRACE, + STATE(6926), 1, + aux_sym__with_body_repeat1, + STATE(7028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732729,8 +760478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_calling_convention_repeat1, - [287987] = 14, + [301418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732751,13 +760499,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5129), 1, + ACTIONS(10777), 3, anon_sym_COMMA, - ACTIONS(10497), 1, anon_sym_RBRACK, - STATE(6503), 1, - aux_sym_type_argument_list_repeat1, - STATE(6804), 9, + anon_sym_GT, + STATE(7029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732767,7 +760513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288038] = 14, + [301465] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732788,13 +760534,13 @@ 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(10499), 1, + ACTIONS(10193), 1, anon_sym_COMMA, - STATE(6796), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(6805), 9, + ACTIONS(10779), 1, + anon_sym_GT, + STATE(6863), 1, + aux_sym_type_argument_list_repeat2, + STATE(7030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732804,7 +760550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288089] = 14, + [301516] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732825,13 +760571,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10501), 1, + ACTIONS(10781), 1, anon_sym_COMMA, - ACTIONS(10503), 1, - anon_sym_RBRACK, - STATE(6799), 1, - aux_sym_global_attribute_repeat1, - STATE(6806), 9, + ACTIONS(10783), 1, + anon_sym_RBRACE, + STATE(6770), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732841,7 +760587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288140] = 14, + [301567] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732862,13 +760608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10150), 1, - anon_sym_SEMI, - ACTIONS(10349), 1, + ACTIONS(8808), 1, + anon_sym_RBRACE, + ACTIONS(10785), 1, anon_sym_COMMA, - STATE(6730), 1, - aux_sym_variable_declaration_repeat1, - STATE(6807), 9, + STATE(6919), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732878,7 +760624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288191] = 14, + [301618] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732899,13 +760645,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2655), 1, + ACTIONS(5026), 1, anon_sym_COMMA, - ACTIONS(10505), 1, + ACTIONS(10787), 1, anon_sym_RBRACK, - STATE(6680), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(6808), 9, + STATE(6679), 1, + aux_sym_type_argument_list_repeat1, + STATE(7033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732915,7 +760661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288242] = 14, + [301669] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732936,13 +760682,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10507), 1, - anon_sym_COMMA, - ACTIONS(10509), 1, - anon_sym_RBRACK, - STATE(6795), 1, - aux_sym_argument_list_repeat1, - STATE(6809), 9, + ACTIONS(10789), 3, + sym_interpolation_end_quote, + sym_interpolation_open_brace, + sym_interpolation_string_content, + STATE(7034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732952,7 +760696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288293] = 14, + [301716] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732973,13 +760717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, - anon_sym_COMMA, - ACTIONS(10511), 1, + ACTIONS(2137), 1, anon_sym_RBRACE, - STATE(6761), 1, - aux_sym__with_body_repeat1, - STATE(6810), 9, + ACTIONS(10791), 1, + anon_sym_COMMA, + STATE(6895), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732989,7 +760733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288344] = 14, + [301767] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733010,13 +760754,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(10513), 1, + ACTIONS(10793), 1, anon_sym_COMMA, - STATE(6694), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6811), 9, + ACTIONS(10795), 1, + anon_sym_RBRACK, + STATE(6796), 1, + aux_sym_global_attribute_repeat1, + STATE(7036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733026,7 +760770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288395] = 14, + [301818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733047,13 +760791,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10515), 1, - anon_sym_COMMA, - ACTIONS(10517), 1, - anon_sym_RBRACE, - STATE(6811), 1, - aux_sym__switch_expression_body_repeat1, - STATE(6812), 9, + ACTIONS(10797), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733063,7 +760805,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288446] = 14, + [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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [301911] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733084,13 +760860,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - ACTIONS(10519), 1, - anon_sym_GT, - STATE(6626), 1, - aux_sym_type_argument_list_repeat2, - STATE(6813), 9, + STATE(6966), 1, + aux_sym_tuple_type_repeat1, + STATE(7039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733100,7 +760874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288497] = 14, + [301959] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733121,13 +760895,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9874), 1, - anon_sym_COMMA, - ACTIONS(10521), 1, - anon_sym_RBRACE, - STATE(6810), 1, - aux_sym__with_body_repeat1, - STATE(6814), 9, + ACTIONS(9335), 1, + anon_sym_LBRACE, + STATE(7672), 1, + sym_declaration_list, + STATE(7040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733137,7 +760909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288548] = 12, + [302007] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733158,10 +760930,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10279), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6815), 9, + ACTIONS(3183), 2, + anon_sym_while, + anon_sym_else, + STATE(7041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733171,7 +760943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288594] = 13, + [302053] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733192,11 +760964,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10523), 1, + ACTIONS(5771), 1, anon_sym_LBRACE, - STATE(4644), 1, - sym__switch_expression_body, - STATE(6816), 9, + STATE(2124), 1, + sym_block, + STATE(7042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733206,7 +760978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288642] = 12, + [302101] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733227,10 +760999,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10525), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6817), 9, + ACTIONS(10801), 1, + anon_sym_LPAREN, + STATE(76), 1, + sym__for_statement_conditions, + STATE(7043), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [302149] = 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(10803), 1, + anon_sym_LBRACE, + STATE(2993), 1, + sym__switch_expression_body, + STATE(7044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733240,7 +761048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288688] = 13, + [302197] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733261,11 +761069,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(9335), 1, anon_sym_LBRACE, - STATE(2991), 1, - sym_initializer_expression, - STATE(6818), 9, + STATE(7499), 1, + sym_declaration_list, + STATE(7045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733275,32 +761083,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288736] = 13, - ACTIONS(8891), 1, + [302245] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10527), 1, - aux_sym_preproc_if_token2, - ACTIONS(10529), 1, - sym_preproc_arg, - STATE(6819), 9, + ACTIONS(3305), 2, + anon_sym_while, + anon_sym_else, + STATE(7046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733310,7 +761117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288784] = 13, + [302291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733331,11 +761138,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6207), 1, - sym_parameter_list, - STATE(6820), 9, + ACTIONS(3977), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733345,7 +761151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288832] = 13, + [302337] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733366,11 +761172,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10531), 1, - anon_sym_warning, - ACTIONS(10533), 1, - anon_sym_checksum, - STATE(6821), 9, + ACTIONS(4002), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733380,7 +761185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288880] = 13, + [302383] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733401,11 +761206,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7355), 1, - sym_enum_member_declaration_list, - STATE(6822), 9, + ACTIONS(10321), 1, + anon_sym_COMMA, + STATE(6841), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733415,7 +761220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288928] = 13, + [302431] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733436,11 +761241,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(10805), 1, anon_sym_LPAREN, - STATE(6205), 1, - sym_parameter_list, - STATE(6823), 9, + STATE(7226), 1, + sym_tuple_expression, + STATE(7050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733450,7 +761255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [288976] = 12, + [302479] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733471,10 +761276,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3157), 2, - anon_sym_while, - anon_sym_else, - STATE(6824), 9, + ACTIONS(5617), 1, + anon_sym_LBRACE, + STATE(6357), 1, + sym_block, + STATE(7051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733484,7 +761290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289022] = 12, + [302527] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733505,10 +761311,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10535), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6825), 9, + ACTIONS(10807), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733518,7 +761324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289068] = 12, + [302573] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733539,10 +761345,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3193), 2, - anon_sym_while, - anon_sym_else, - STATE(6826), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10809), 1, + anon_sym_SEMI, + STATE(7053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733552,7 +761359,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289114] = 12, + [302621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733573,10 +761380,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3185), 2, + ACTIONS(3281), 2, anon_sym_while, anon_sym_else, - STATE(6827), 9, + STATE(7054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733586,7 +761393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289160] = 12, + [302667] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733607,10 +761414,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3215), 2, + ACTIONS(3151), 2, anon_sym_while, anon_sym_else, - STATE(6828), 9, + STATE(7055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733620,7 +761427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289206] = 13, + [302713] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733641,11 +761448,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10537), 1, - anon_sym_SEMI, - STATE(6829), 9, + ACTIONS(10811), 1, + anon_sym_LBRACE, + STATE(2132), 1, + sym_switch_body, + STATE(7056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733655,7 +761462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289254] = 12, + [302761] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733676,10 +761483,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6830), 9, + ACTIONS(1633), 1, + anon_sym_LBRACE, + STATE(3714), 1, + sym_initializer_expression, + STATE(7057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733689,7 +761497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289300] = 13, + [302809] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733710,11 +761518,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10539), 1, - anon_sym_LBRACE, - STATE(1910), 1, - sym_switch_body, - STATE(6831), 9, + ACTIONS(3211), 2, + anon_sym_while, + anon_sym_else, + STATE(7058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733724,7 +761531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289348] = 12, + [302855] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733745,10 +761552,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3934), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6832), 9, + ACTIONS(10813), 2, + anon_sym_this, + anon_sym_base, + STATE(7059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733758,7 +761565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289394] = 12, + [302901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733779,10 +761586,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3938), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6833), 9, + ACTIONS(3253), 2, + anon_sym_while, + anon_sym_else, + STATE(7060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733792,7 +761599,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289440] = 13, + [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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [302993] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733813,11 +761654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(4608), 1, - sym_block, - STATE(6834), 9, + STATE(7572), 1, + sym_enum_member_declaration_list, + STATE(7062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733827,7 +761668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289488] = 13, + [303041] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733848,11 +761689,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10226), 1, - anon_sym_DQUOTE, - STATE(7207), 1, - sym_string_literal, - STATE(6835), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6690), 1, + sym_bracketed_parameter_list, + STATE(7063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733862,7 +761703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289536] = 12, + [303089] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733883,10 +761724,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3153), 2, - anon_sym_while, - anon_sym_else, - STATE(6836), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6396), 1, + sym_parameter_list, + STATE(7064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733896,31 +761738,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289582] = 12, - ACTIONS(3), 1, + [303137] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(3231), 2, - anon_sym_while, - anon_sym_else, - STATE(6837), 9, + ACTIONS(10819), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733930,7 +761772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289628] = 13, + [303183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733951,11 +761793,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3269), 2, anon_sym_while, - ACTIONS(10541), 1, anon_sym_else, - STATE(6838), 9, + STATE(7066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733965,7 +761806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289676] = 12, + [303229] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733986,10 +761827,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3907), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6839), 9, + ACTIONS(1397), 1, + anon_sym_LBRACE, + STATE(4665), 1, + sym_initializer_expression, + STATE(7067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733999,7 +761841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289722] = 12, + [303277] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734020,10 +761862,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10495), 2, + ACTIONS(10170), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6840), 9, + STATE(6837), 1, + aux_sym_tuple_type_repeat1, + STATE(7068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734033,7 +761876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289768] = 13, + [303325] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734054,11 +761897,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10543), 1, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(4624), 1, - sym__with_body, - STATE(6841), 9, + STATE(7327), 1, + sym_enum_member_declaration_list, + STATE(7069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734068,7 +761911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289816] = 12, + [303373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734089,10 +761932,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9903), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6842), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734102,7 +761980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289862] = 12, + [303467] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734123,10 +762001,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3117), 2, - anon_sym_while, - anon_sym_else, - STATE(6843), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6301), 1, + sym_parameter_list, + STATE(7072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734136,7 +762015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289908] = 12, + [303515] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734157,10 +762036,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3125), 2, - anon_sym_while, - anon_sym_else, - STATE(6844), 9, + ACTIONS(1159), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_initializer_expression, + STATE(7073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734170,7 +762050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [289954] = 12, + [303563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734191,10 +762071,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3129), 2, - anon_sym_while, - anon_sym_else, - STATE(6845), 9, + ACTIONS(10825), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734204,7 +762084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290000] = 12, + [303609] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734225,10 +762105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3137), 2, - anon_sym_while, - anon_sym_else, - STATE(6846), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6421), 1, + sym_parameter_list, + STATE(7075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734238,7 +762119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290046] = 12, + [303657] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734259,10 +762140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3145), 2, - anon_sym_while, - anon_sym_else, - STATE(6847), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(7052), 1, + sym_parameter_list, + STATE(7076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734272,7 +762154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290092] = 12, + [303705] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734293,10 +762175,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3165), 2, - anon_sym_while, - anon_sym_else, - STATE(6848), 9, + ACTIONS(9830), 1, + anon_sym_LBRACE, + STATE(3016), 1, + sym_block, + STATE(7077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734306,7 +762189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290138] = 12, + [303753] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734327,10 +762210,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3097), 2, - anon_sym_while, - anon_sym_else, - STATE(6849), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10827), 1, + anon_sym_SEMI, + STATE(7078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734340,7 +762224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290184] = 13, + [303801] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734361,11 +762245,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, + ACTIONS(1159), 1, anon_sym_LBRACE, - STATE(7252), 1, - sym_enum_member_declaration_list, - STATE(6850), 9, + STATE(3330), 1, + sym_initializer_expression, + STATE(7079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734375,7 +762259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290232] = 13, + [303849] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734396,11 +762280,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(3171), 2, + anon_sym_while, + anon_sym_else, + STATE(7080), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [303895] = 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(9950), 1, anon_sym_LBRACE, - STATE(3008), 1, - sym_block, - STATE(6851), 9, + STATE(7532), 1, + sym_enum_member_declaration_list, + STATE(7081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734410,7 +762328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290280] = 13, + [303943] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734431,11 +762349,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10545), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(6831), 1, - sym_tuple_expression, - STATE(6852), 9, + STATE(6405), 1, + sym_parameter_list, + STATE(7082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734445,7 +762363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290328] = 13, + [303991] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734466,11 +762384,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1147), 1, + ACTIONS(1397), 1, anon_sym_LBRACE, - STATE(3228), 1, + STATE(4637), 1, sym_initializer_expression, - STATE(6853), 9, + STATE(7083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734480,31 +762398,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290376] = 12, - ACTIONS(8891), 1, + [304039] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10547), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(6854), 9, + ACTIONS(3179), 2, + anon_sym_while, + anon_sym_else, + STATE(7084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734514,7 +762432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290422] = 13, + [304085] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734535,11 +762453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10549), 1, - anon_sym_LPAREN, - STATE(61), 1, - sym__for_statement_conditions, - STATE(6855), 9, + ACTIONS(10829), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734549,7 +762466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290470] = 13, + [304131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734570,11 +762487,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6209), 1, - sym_parameter_list, - STATE(6856), 9, + ACTIONS(3261), 2, + anon_sym_while, + anon_sym_else, + STATE(7086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734584,7 +762500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290518] = 13, + [304177] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734605,11 +762521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10551), 1, - anon_sym_LPAREN, - STATE(7061), 1, - sym_tuple_expression, - STATE(6857), 9, + ACTIONS(3155), 2, + anon_sym_while, + anon_sym_else, + STATE(7087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734619,7 +762534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290566] = 12, + [304223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734640,10 +762555,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3105), 2, + ACTIONS(3221), 2, anon_sym_while, anon_sym_else, - STATE(6858), 9, + STATE(7088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734653,7 +762568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290612] = 12, + [304269] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734674,10 +762589,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3263), 2, + ACTIONS(3225), 2, anon_sym_while, anon_sym_else, - STATE(6859), 9, + STATE(7089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734687,7 +762602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290658] = 12, + [304315] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734708,10 +762623,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3211), 2, + ACTIONS(3159), 2, anon_sym_while, anon_sym_else, - STATE(6860), 9, + STATE(7090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734721,7 +762636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290704] = 12, + [304361] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734742,10 +762657,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3259), 2, - anon_sym_while, - anon_sym_else, - STATE(6861), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7178), 1, + sym_string_literal, + STATE(7091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734755,7 +762671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290750] = 12, + [304409] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734776,10 +762692,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3235), 2, - anon_sym_while, - anon_sym_else, - STATE(6862), 9, + ACTIONS(9715), 1, + anon_sym_LBRACE, + STATE(3279), 1, + sym_block, + STATE(7092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734789,7 +762706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290796] = 12, + [304457] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734810,10 +762727,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3141), 2, - anon_sym_while, - anon_sym_else, - STATE(6863), 9, + ACTIONS(10831), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734823,7 +762740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290842] = 13, + [304503] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734844,11 +762761,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10170), 1, anon_sym_COMMA, - STATE(6794), 1, - aux_sym_argument_list_repeat1, - STATE(6864), 9, + STATE(6748), 1, + aux_sym_tuple_type_repeat1, + STATE(7094), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [304551] = 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(3241), 2, + anon_sym_while, + anon_sym_else, + STATE(7095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734858,7 +762809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290890] = 13, + [304597] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734879,11 +762830,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(1849), 1, - sym_block, - STATE(6865), 9, + STATE(3045), 1, + sym_initializer_expression, + STATE(7096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734893,7 +762844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290938] = 13, + [304645] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734914,11 +762865,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6790), 1, - aux_sym_tuple_type_repeat1, - STATE(6866), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6423), 1, + sym_parameter_list, + STATE(7097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734928,7 +762879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [290986] = 13, + [304693] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734949,11 +762900,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + 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, - STATE(6601), 1, - aux_sym_tuple_type_repeat1, - STATE(6867), 9, + anon_sym_GT, + STATE(7099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734963,7 +762948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291034] = 12, + [304787] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734984,10 +762969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3227), 2, - anon_sym_while, - anon_sym_else, - STATE(6868), 9, + ACTIONS(10833), 1, + anon_sym_LBRACE, + STATE(7089), 1, + sym_switch_body, + STATE(7100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734997,7 +762983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291080] = 13, + [304835] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735018,11 +763004,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_COMMA, - STATE(6508), 1, - aux_sym_argument_list_repeat1, - STATE(6869), 9, + ACTIONS(10835), 1, + anon_sym_LBRACK, + STATE(3264), 1, + sym_array_rank_specifier, + STATE(7101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735032,7 +763018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291128] = 12, + [304883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735053,10 +763039,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3239), 2, - anon_sym_while, - anon_sym_else, - STATE(6870), 9, + ACTIONS(10837), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735066,7 +763052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291174] = 13, + [304929] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735087,11 +763073,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, + ACTIONS(10839), 1, anon_sym_LBRACK, - STATE(6408), 1, - sym_bracketed_parameter_list, - STATE(6871), 9, + STATE(2386), 1, + sym_array_rank_specifier, + STATE(7103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735101,7 +763087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291222] = 13, + [304977] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735122,11 +763108,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1309), 1, - anon_sym_LBRACE, - STATE(3384), 1, - sym_initializer_expression, - STATE(6872), 9, + ACTIONS(3187), 2, + anon_sym_while, + anon_sym_else, + STATE(7104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735136,7 +763121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291270] = 12, + [305023] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735157,10 +763142,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3043), 2, + ACTIONS(3215), 1, anon_sym_while, + ACTIONS(10841), 1, anon_sym_else, - STATE(6873), 9, + STATE(7105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735170,7 +763156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291316] = 12, + [305071] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735191,10 +763177,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9912), 2, + ACTIONS(10170), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6874), 9, + STATE(6834), 1, + aux_sym_tuple_type_repeat1, + STATE(7106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735204,7 +763191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291362] = 13, + [305119] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735225,11 +763212,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7360), 1, - sym_enum_member_declaration_list, - STATE(6875), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(7120), 1, + sym_parameter_list, + STATE(7107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735239,7 +763226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291410] = 12, + [305167] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735260,10 +763247,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3177), 2, - anon_sym_while, - anon_sym_else, - STATE(6876), 9, + ACTIONS(10843), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735273,7 +763260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291456] = 12, + [305213] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735294,10 +763281,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3271), 2, - anon_sym_while, - anon_sym_else, - STATE(6877), 9, + ACTIONS(9848), 1, + anon_sym_LBRACE, + STATE(3729), 1, + sym_block, + STATE(7109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735307,7 +763295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291502] = 12, + [305261] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735328,10 +763316,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10480), 2, + ACTIONS(4010), 2, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6878), 9, + anon_sym_GT, + STATE(7110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735341,7 +763329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291548] = 12, + [305307] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735362,10 +763350,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3113), 2, - anon_sym_while, - anon_sym_else, - STATE(6879), 9, + ACTIONS(10801), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym__for_statement_conditions, + STATE(7111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735375,7 +763364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291594] = 12, + [305355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735396,10 +763385,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3133), 2, - anon_sym_while, - anon_sym_else, - STATE(6880), 9, + ACTIONS(5274), 1, + anon_sym_LBRACE, + STATE(1914), 1, + sym_block, + STATE(7112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735409,7 +763399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291640] = 12, + [305403] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735430,10 +763420,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3093), 2, - anon_sym_while, - anon_sym_else, - STATE(6881), 9, + ACTIONS(5293), 1, + anon_sym_LBRACE, + STATE(1921), 1, + sym_block, + STATE(7113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735443,7 +763434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291686] = 13, + [305451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735464,11 +763455,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10549), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym__for_statement_conditions, - STATE(6882), 9, + ACTIONS(3229), 2, + anon_sym_while, + anon_sym_else, + STATE(7114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735478,7 +763468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291734] = 12, + [305497] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735499,10 +763489,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3189), 2, - anon_sym_while, - anon_sym_else, - STATE(6883), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10845), 1, + anon_sym_SEMI, + STATE(7115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735512,7 +763503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291780] = 12, + [305545] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735533,10 +763524,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10555), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6884), 9, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7732), 1, + sym_enum_member_declaration_list, + STATE(7116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735546,7 +763538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291826] = 13, + [305593] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735567,11 +763559,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, + ACTIONS(10847), 1, anon_sym_LBRACE, - STATE(7322), 1, - sym_enum_member_declaration_list, - STATE(6885), 9, + STATE(1951), 1, + sym_switch_body, + STATE(7117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735581,7 +763573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291874] = 13, + [305641] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735602,11 +763594,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7340), 1, - sym_declaration_list, - STATE(6886), 9, + ACTIONS(3301), 2, + anon_sym_while, + anon_sym_else, + STATE(7118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735616,7 +763607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291922] = 13, + [305687] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735637,11 +763628,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, + ACTIONS(9950), 1, anon_sym_LBRACE, - STATE(7341), 1, - sym_declaration_list, - STATE(6887), 9, + STATE(7336), 1, + sym_enum_member_declaration_list, + STATE(7119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735651,7 +763642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [291970] = 13, + [305735] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735672,11 +763663,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, - anon_sym_LBRACK, - STATE(6421), 1, - sym_bracketed_parameter_list, - STATE(6888), 9, + ACTIONS(10849), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735686,7 +763676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292018] = 13, + [305781] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735707,11 +763697,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, - anon_sym_LBRACE, - STATE(1846), 1, - sym_block, - STATE(6889), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6721), 1, + sym_parameter_list, + STATE(7121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735721,31 +763711,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292066] = 12, - ACTIONS(8891), 1, + [305829] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10557), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(6890), 9, + ACTIONS(10851), 1, + anon_sym_LBRACK, + STATE(2926), 1, + sym_array_rank_specifier, + STATE(7122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735755,7 +763746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292112] = 12, + [305877] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735776,10 +763767,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3219), 2, - anon_sym_while, - anon_sym_else, - STATE(6891), 9, + ACTIONS(10488), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735789,31 +763780,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292158] = 12, - ACTIONS(3), 1, + [305923] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(3121), 2, - anon_sym_while, - anon_sym_else, - STATE(6892), 9, + ACTIONS(10441), 1, + aux_sym_preproc_if_token2, + ACTIONS(10853), 1, + anon_sym_COMMA, + STATE(7124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735823,7 +763815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292204] = 12, + [305971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735844,10 +763836,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3251), 2, - anon_sym_while, - anon_sym_else, - STATE(6893), 9, + ACTIONS(10855), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735857,7 +763849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292250] = 12, + [306017] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735878,10 +763870,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3243), 2, + ACTIONS(3237), 2, anon_sym_while, anon_sym_else, - STATE(6894), 9, + STATE(7126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735891,7 +763883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292296] = 12, + [306063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735912,10 +763904,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3161), 2, - anon_sym_while, - anon_sym_else, - STATE(6895), 9, + ACTIONS(10857), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735925,7 +763917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292342] = 13, + [306109] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735946,11 +763938,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(4530), 1, - sym_initializer_expression, - STATE(6896), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6637), 1, + sym_bracketed_parameter_list, + STATE(7128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735960,32 +763952,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292390] = 13, - ACTIONS(8891), 1, + [306157] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10559), 1, - aux_sym_preproc_if_token2, - ACTIONS(10561), 1, - sym_preproc_arg, - STATE(6897), 9, + ACTIONS(3167), 2, + anon_sym_while, + anon_sym_else, + STATE(7129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735995,7 +763986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292438] = 12, + [306203] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736016,10 +764007,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3109), 2, - anon_sym_while, - anon_sym_else, - STATE(6898), 9, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7389), 1, + sym_enum_member_declaration_list, + STATE(7130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736029,7 +764021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292484] = 12, + [306251] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736050,10 +764042,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3101), 2, - anon_sym_while, - anon_sym_else, - STATE(6899), 9, + ACTIONS(9715), 1, + anon_sym_LBRACE, + STATE(3352), 1, + sym_block, + STATE(7131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736063,7 +764056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292530] = 13, + [306299] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736084,11 +764077,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10563), 1, - anon_sym_LPAREN, - STATE(6949), 1, - sym_tuple_expression, - STATE(6900), 9, + ACTIONS(10452), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736098,7 +764090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292578] = 12, + [306345] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736119,10 +764111,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3267), 2, - anon_sym_while, - anon_sym_else, - STATE(6901), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6383), 1, + sym_parameter_list, + STATE(7133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736132,7 +764125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292624] = 13, + [306393] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736153,11 +764146,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACE, - STATE(3233), 1, - sym_block, - STATE(6902), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6315), 1, + sym_parameter_list, + STATE(7134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736167,7 +764160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292672] = 12, + [306441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736188,10 +764181,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3181), 2, + ACTIONS(3309), 2, anon_sym_while, anon_sym_else, - STATE(6903), 9, + STATE(7135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736201,7 +764194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292718] = 12, + [306487] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736222,10 +764215,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10565), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6904), 9, + ACTIONS(10801), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__for_statement_conditions, + STATE(7136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736235,7 +764229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292764] = 13, + [306535] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736256,11 +764250,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(10859), 1, anon_sym_LBRACE, - STATE(1908), 1, - sym_block, - STATE(6905), 9, + STATE(2996), 1, + sym__with_body, + STATE(7137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736270,7 +764264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292812] = 12, + [306583] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736291,10 +764285,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10567), 2, + ACTIONS(1159), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6906), 9, + STATE(3229), 1, + sym_initializer_expression, + STATE(7138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736304,7 +764299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292858] = 13, + [306631] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736325,11 +764320,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(4441), 1, - sym_initializer_expression, - STATE(6907), 9, + ACTIONS(6678), 1, + anon_sym_LBRACK, + ACTIONS(6680), 1, + anon_sym_STAR, + STATE(7139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736339,7 +764334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292906] = 13, + [306679] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736360,11 +764355,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6223), 1, - sym_parameter_list, - STATE(6908), 9, + ACTIONS(10481), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736374,7 +764368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [292954] = 12, + [306725] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736395,10 +764389,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3223), 2, + ACTIONS(3199), 2, anon_sym_while, anon_sym_else, - STATE(6909), 9, + STATE(7141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736408,7 +764402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293000] = 12, + [306771] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736429,10 +764423,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 2, - anon_sym_while, - anon_sym_else, - STATE(6910), 9, + ACTIONS(5293), 1, + anon_sym_LBRACE, + STATE(2029), 1, + sym_block, + STATE(7142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736442,7 +764437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293046] = 12, + [306819] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736463,10 +764458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3169), 2, - anon_sym_while, - anon_sym_else, - STATE(6911), 9, + ACTIONS(10160), 1, + anon_sym_COMMA, + STATE(6911), 1, + aux_sym_argument_list_repeat1, + STATE(7143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736476,7 +764472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293092] = 13, + [306867] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736497,11 +764493,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9521), 1, - anon_sym_LBRACE, - STATE(3390), 1, - sym_block, - STATE(6912), 9, + ACTIONS(3203), 2, + anon_sym_while, + anon_sym_else, + STATE(7144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736511,7 +764506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293140] = 12, + [306913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736532,10 +764527,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3173), 2, - anon_sym_while, - anon_sym_else, - STATE(6913), 9, + ACTIONS(10861), 1, + anon_sym_on, + STATE(6286), 1, + sym__join_body, + STATE(7145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736545,7 +764541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293186] = 12, + [306961] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736566,10 +764562,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9934), 2, + ACTIONS(10170), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6914), 9, + STATE(6950), 1, + aux_sym_tuple_type_repeat1, + STATE(7146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736579,7 +764576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293232] = 12, + [307009] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736600,10 +764597,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10569), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6915), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6608), 1, + sym_bracketed_parameter_list, + STATE(7147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736613,7 +764611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293278] = 12, + [307057] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736634,10 +764632,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9963), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6916), 9, + ACTIONS(10496), 1, + anon_sym_DQUOTE, + STATE(7322), 1, + sym_string_literal, + STATE(7148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736647,7 +764646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293324] = 13, + [307105] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736668,11 +764667,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7467), 1, - sym_declaration_list, - STATE(6917), 9, + ACTIONS(3249), 2, + anon_sym_while, + anon_sym_else, + STATE(7149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736682,7 +764680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293372] = 13, + [307151] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736703,11 +764701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6210), 1, - sym_parameter_list, - STATE(6918), 9, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7476), 1, + sym_enum_member_declaration_list, + STATE(7150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736717,7 +764715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293420] = 12, + [307199] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736738,10 +764736,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3149), 2, - anon_sym_while, - anon_sym_else, - STATE(6919), 9, + ACTIONS(10517), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736751,7 +764749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293466] = 13, + [307245] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736772,11 +764770,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1309), 1, - anon_sym_LBRACE, - STATE(3419), 1, - sym_initializer_expression, - STATE(6920), 9, + ACTIONS(10863), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736786,7 +764783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293514] = 13, + [307291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736807,11 +764804,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6101), 1, - sym_parameter_list, - STATE(6921), 9, + ACTIONS(3265), 2, + anon_sym_while, + anon_sym_else, + STATE(7153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736821,7 +764817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293562] = 12, + [307337] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736842,10 +764838,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10571), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6922), 9, + ACTIONS(10865), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736855,7 +764851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293608] = 13, + [307383] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736876,11 +764872,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7468), 1, - sym_declaration_list, - STATE(6923), 9, + ACTIONS(10867), 1, + anon_sym_LBRACK, + STATE(4351), 1, + sym_array_rank_specifier, + STATE(7155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736890,7 +764886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293656] = 13, + [307431] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736911,11 +764907,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10549), 1, - anon_sym_LPAREN, - STATE(90), 1, - sym__for_statement_conditions, - STATE(6924), 9, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(10869), 1, + anon_sym_in, + STATE(7156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736925,7 +764921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293704] = 13, + [307479] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736946,11 +764942,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1309), 1, - anon_sym_LBRACE, - STATE(3427), 1, - sym_initializer_expression, - STATE(6925), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6683), 1, + sym_bracketed_parameter_list, + STATE(7157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736960,7 +764956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293752] = 13, + [307527] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736981,11 +764977,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(1947), 1, - sym_block, - STATE(6926), 9, + ACTIONS(3097), 2, + anon_sym_while, + anon_sym_else, + STATE(7158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736995,7 +764990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293800] = 13, + [307573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737016,11 +765011,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6183), 1, - sym_parameter_list, - STATE(6927), 9, + ACTIONS(3285), 2, + anon_sym_while, + anon_sym_else, + STATE(7159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737030,7 +765024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293848] = 13, + [307619] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737051,11 +765045,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6179), 1, - sym_parameter_list, - STATE(6928), 9, + ACTIONS(10532), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737065,7 +765058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293896] = 12, + [307665] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737086,10 +765079,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10573), 2, + ACTIONS(10871), 2, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6929), 9, + anon_sym_GT, + STATE(7161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737099,7 +765092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293942] = 13, + [307711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737120,11 +765113,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, + ACTIONS(10873), 1, anon_sym_LBRACK, - STATE(6411), 1, - sym_bracketed_parameter_list, - STATE(6930), 9, + STATE(4279), 1, + sym_array_rank_specifier, + STATE(7162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737134,32 +765127,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [293990] = 13, - ACTIONS(3), 1, + [307759] = 13, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10575), 1, - anon_sym_LBRACE, - STATE(2996), 1, - sym__with_body, - STATE(6931), 9, + ACTIONS(10875), 1, + aux_sym_preproc_if_token2, + ACTIONS(10877), 1, + sym_preproc_arg, + STATE(7163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737169,7 +765162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294038] = 13, + [307807] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737190,11 +765183,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6103), 1, - sym_parameter_list, - STATE(6932), 9, + ACTIONS(10551), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737204,7 +765196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294086] = 12, + [307853] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737225,10 +765217,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10577), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6933), 9, + ACTIONS(9807), 1, + anon_sym_LBRACE, + STATE(3364), 1, + sym_block, + STATE(7165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737238,7 +765231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294132] = 13, + [307901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737259,11 +765252,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10579), 1, - anon_sym_LBRACK, - STATE(2955), 1, - sym_array_rank_specifier, - STATE(6934), 9, + ACTIONS(3191), 2, + anon_sym_while, + anon_sym_else, + STATE(7166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737273,7 +765265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294180] = 13, + [307947] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737294,11 +765286,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10581), 1, - anon_sym_LBRACK, - STATE(2851), 1, - sym_array_rank_specifier, - STATE(6935), 9, + ACTIONS(1487), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_initializer_expression, + STATE(7167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737308,7 +765300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294228] = 12, + [307995] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737329,45 +765321,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10583), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6936), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [294274] = 13, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(9994), 1, - aux_sym_preproc_if_token2, - ACTIONS(10585), 1, - anon_sym_COMMA, - STATE(6937), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6685), 1, + sym_bracketed_parameter_list, + STATE(7168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737377,7 +765335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294322] = 13, + [308043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737398,11 +765356,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6455), 1, - sym_parameter_list, - STATE(6938), 9, + ACTIONS(10879), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7169), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737412,7 +765369,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294370] = 12, + [308089] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737433,10 +765390,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10587), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6939), 9, + ACTIONS(3297), 2, + anon_sym_while, + anon_sym_else, + STATE(7170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737446,7 +765403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294416] = 13, + [308135] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737467,11 +765424,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10589), 1, - anon_sym_LBRACK, - ACTIONS(10591), 1, - anon_sym_LT, - STATE(6940), 9, + ACTIONS(3163), 2, + anon_sym_while, + anon_sym_else, + STATE(7171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737481,7 +765437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294464] = 13, + [308181] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737502,11 +765458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7184), 1, - sym_enum_member_declaration_list, - STATE(6941), 9, + ACTIONS(10881), 1, + anon_sym_LPAREN, + STATE(7190), 1, + sym_tuple_expression, + STATE(7172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737516,7 +765472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294512] = 13, + [308229] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737537,11 +765493,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10593), 1, - anon_sym_LBRACK, - STATE(2775), 1, - sym_array_rank_specifier, - STATE(6942), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6691), 1, + sym_parameter_list, + STATE(7173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737551,7 +765507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294560] = 12, + [308277] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737572,10 +765528,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10032), 2, + ACTIONS(10160), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(6943), 9, + STATE(6961), 1, + aux_sym_argument_list_repeat1, + STATE(7174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737585,7 +765542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294606] = 13, + [308325] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737606,11 +765563,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6094), 1, - sym_parameter_list, - STATE(6944), 9, + ACTIONS(10883), 1, + anon_sym_LBRACE, + STATE(3395), 1, + sym__switch_expression_body, + STATE(7175), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737620,7 +765577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294654] = 13, + [308373] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737641,11 +765598,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10595), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(3391), 1, - sym__with_body, - STATE(6945), 9, + STATE(3101), 1, + sym_block, + STATE(7176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737655,7 +765612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294702] = 13, + [308421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737676,11 +765633,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9596), 1, + ACTIONS(10885), 2, anon_sym_LBRACE, - STATE(3791), 1, - sym_block, - STATE(6946), 9, + anon_sym_EQ_GT, + STATE(7177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737690,7 +765646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294750] = 13, + [308467] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737711,11 +765667,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10597), 1, - anon_sym_LBRACK, - STATE(4239), 1, - sym_array_rank_specifier, - STATE(6947), 9, + ACTIONS(10496), 1, + anon_sym_DQUOTE, + STATE(7513), 1, + sym_string_literal, + STATE(7178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737725,7 +765681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294798] = 12, + [308515] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737746,10 +765702,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10599), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6948), 9, + ACTIONS(10887), 1, + anon_sym_LBRACE, + STATE(3698), 1, + sym__switch_expression_body, + STATE(7179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737759,7 +765716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294844] = 13, + [308563] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737780,11 +765737,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10601), 1, + ACTIONS(1633), 1, anon_sym_LBRACE, - STATE(2058), 1, - sym_switch_body, - STATE(6949), 9, + STATE(3708), 1, + sym_initializer_expression, + STATE(7180), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737794,7 +765751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294892] = 12, + [308611] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737815,44 +765772,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9870), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6950), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [294938] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10603), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(6951), 9, + ACTIONS(10889), 1, + anon_sym_LBRACE, + STATE(3429), 1, + sym__with_body, + STATE(7181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737862,7 +765786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [294984] = 13, + [308659] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737883,11 +765807,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(10605), 1, - anon_sym_in, - STATE(6952), 9, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7585), 1, + sym_enum_member_declaration_list, + STATE(7182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737897,7 +765821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295032] = 13, + [308707] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737918,11 +765842,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10607), 1, + ACTIONS(9775), 1, anon_sym_LBRACE, - STATE(3342), 1, - sym__switch_expression_body, - STATE(6953), 9, + STATE(4641), 1, + sym_block, + STATE(7183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737932,7 +765856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295080] = 13, + [308755] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737953,11 +765877,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9579), 1, - anon_sym_LBRACE, - STATE(4410), 1, - sym_block, - STATE(6954), 9, + ACTIONS(10891), 1, + anon_sym_warning, + ACTIONS(10893), 1, + anon_sym_checksum, + STATE(7184), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737967,7 +765891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295128] = 13, + [308803] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737988,11 +765912,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10609), 1, - anon_sym_LBRACE, - STATE(3676), 1, - sym__with_body, - STATE(6955), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6439), 1, + sym_parameter_list, + STATE(7185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738002,7 +765926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295176] = 13, + [308851] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738023,11 +765947,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3950), 1, - anon_sym_GT, - ACTIONS(9368), 1, - anon_sym_COMMA, - STATE(6956), 9, + ACTIONS(9335), 1, + anon_sym_LBRACE, + STATE(7505), 1, + sym_declaration_list, + STATE(7186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738037,7 +765961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295224] = 13, + [308899] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738058,11 +765982,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6607), 1, - anon_sym_LBRACK, - ACTIONS(6611), 1, - anon_sym_STAR, - STATE(6957), 9, + ACTIONS(9950), 1, + anon_sym_LBRACE, + STATE(7432), 1, + sym_enum_member_declaration_list, + STATE(7187), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738072,7 +765996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295272] = 13, + [308947] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738093,11 +766017,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7507), 1, - sym_enum_member_declaration_list, - STATE(6958), 9, + ACTIONS(10895), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738107,7 +766030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295320] = 13, + [308993] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738128,11 +766051,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10160), 1, anon_sym_COMMA, - STATE(6564), 1, + STATE(7016), 1, aux_sym_argument_list_repeat1, - STATE(6959), 9, + STATE(7189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738142,7 +766065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295368] = 12, + [309041] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738163,10 +766086,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10611), 2, - anon_sym_disable, - anon_sym_restore, - STATE(6960), 9, + ACTIONS(10847), 1, + anon_sym_LBRACE, + STATE(1961), 1, + sym_switch_body, + STATE(7190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738176,7 +766100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295414] = 13, + [309089] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738197,11 +766121,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, + ACTIONS(10897), 2, anon_sym_COMMA, - STATE(6560), 1, - aux_sym_tuple_type_repeat1, - STATE(6961), 9, + anon_sym_RPAREN, + STATE(7191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738211,7 +766134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295462] = 13, + [309135] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738232,11 +766155,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(7038), 1, - sym_string_literal, - STATE(6962), 9, + ACTIONS(10170), 1, + anon_sym_COMMA, + STATE(7023), 1, + aux_sym_tuple_type_repeat1, + STATE(7192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738246,32 +766169,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295510] = 13, - ACTIONS(3), 1, + [309183] = 13, + ACTIONS(4879), 1, + aux_sym_preproc_if_token2, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(1147), 1, - anon_sym_LBRACE, - STATE(3244), 1, - sym_initializer_expression, - STATE(6963), 9, + ACTIONS(10899), 1, + sym_string_literal_encoding, + STATE(7193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738281,7 +766204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295558] = 12, + [309231] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738302,44 +766225,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6964), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [295604] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10613), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(6965), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6324), 1, + sym_parameter_list, + STATE(7194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738349,7 +766239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295650] = 13, + [309279] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738370,11 +766260,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6884), 1, - sym_parameter_list, - STATE(6966), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10901), 1, + anon_sym_SEMI, + STATE(7195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738384,7 +766274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295698] = 13, + [309327] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738405,11 +766295,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1393), 1, - anon_sym_LBRACE, - STATE(4527), 1, - sym_initializer_expression, - STATE(6967), 9, + ACTIONS(10903), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738419,7 +766308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295746] = 12, + [309373] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738440,10 +766329,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10615), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6968), 9, + ACTIONS(10905), 1, + anon_sym_LPAREN, + STATE(7214), 1, + sym_tuple_expression, + STATE(7197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738453,7 +766343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295792] = 13, + [309421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738474,11 +766364,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10617), 1, - anon_sym_on, - STATE(6106), 1, - sym__join_body, - STATE(6969), 9, + ACTIONS(3293), 2, + anon_sym_while, + anon_sym_else, + STATE(7198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738488,7 +766377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295840] = 12, + [309467] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738509,10 +766398,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10619), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6970), 9, + ACTIONS(10907), 2, + anon_sym_disable, + anon_sym_restore, + STATE(7199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738522,7 +766411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295886] = 13, + [309513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738543,11 +766432,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10539), 1, - anon_sym_LBRACE, - STATE(1868), 1, - sym_switch_body, - STATE(6971), 9, + ACTIONS(3325), 2, + anon_sym_while, + anon_sym_else, + STATE(7200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738557,7 +766445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295934] = 13, + [309559] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738578,11 +766466,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1147), 1, - anon_sym_LBRACE, - STATE(3257), 1, - sym_initializer_expression, - STATE(6972), 9, + ACTIONS(4018), 1, + anon_sym_GT, + ACTIONS(9653), 1, + anon_sym_COMMA, + STATE(7201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738592,7 +766480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [295982] = 12, + [309607] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738613,10 +766501,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10621), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6973), 9, + ACTIONS(145), 1, + anon_sym_DQUOTE, + STATE(7091), 1, + sym_string_literal, + STATE(7202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738626,7 +766515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296028] = 13, + [309655] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738647,11 +766536,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10623), 1, - anon_sym_SEMI, - STATE(6974), 9, + ACTIONS(10909), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738661,7 +766549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296076] = 13, + [309701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738682,11 +766570,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LBRACE, - STATE(3003), 1, - sym_initializer_expression, - STATE(6975), 9, + ACTIONS(10637), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738696,7 +766583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296124] = 13, + [309747] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738717,11 +766604,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9521), 1, + ACTIONS(10911), 2, anon_sym_LBRACE, - STATE(3410), 1, - sym_block, - STATE(6976), 9, + anon_sym_EQ_GT, + STATE(7205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738731,32 +766617,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296172] = 13, - ACTIONS(3), 1, + [309793] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(1601), 1, - anon_sym_LBRACE, - STATE(3773), 1, - sym_initializer_expression, - STATE(6977), 9, + ACTIONS(10913), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738766,7 +766651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296220] = 13, + [309839] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738787,11 +766672,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10625), 1, + ACTIONS(1487), 1, anon_sym_LBRACE, - STATE(1961), 1, - sym_switch_body, - STATE(6978), 9, + STATE(3097), 1, + sym_initializer_expression, + STATE(7207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738801,7 +766686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296268] = 13, + [309887] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738822,11 +766707,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(9830), 1, anon_sym_LBRACE, - STATE(2054), 1, + STATE(3050), 1, sym_block, - STATE(6979), 9, + STATE(7208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738836,7 +766721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296316] = 13, + [309935] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738857,11 +766742,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10627), 1, + ACTIONS(9335), 1, anon_sym_LBRACE, - STATE(3690), 1, - sym__switch_expression_body, - STATE(6980), 9, + STATE(7580), 1, + sym_declaration_list, + STATE(7209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738871,7 +766756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296364] = 13, + [309983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738892,46 +766777,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10629), 1, - anon_sym_SEMI, - STATE(6981), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [296412] = 13, - ACTIONS(4730), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10631), 1, - sym_string_literal_encoding, - STATE(6982), 9, + ACTIONS(10915), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738941,7 +766790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296460] = 12, + [310029] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738962,10 +766811,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10633), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6983), 9, + ACTIONS(9335), 1, + anon_sym_LBRACE, + STATE(7601), 1, + sym_declaration_list, + STATE(7211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738975,7 +766825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296506] = 13, + [310077] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738996,11 +766846,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6922), 1, - sym_parameter_list, - STATE(6984), 9, + ACTIONS(3245), 2, + anon_sym_while, + anon_sym_else, + STATE(7212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739010,7 +766859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296554] = 13, + [310123] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739031,11 +766880,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9596), 1, + ACTIONS(10917), 1, anon_sym_LBRACE, - STATE(3762), 1, - sym_block, - STATE(6985), 9, + STATE(3304), 1, + sym__switch_expression_body, + STATE(7213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739045,7 +766894,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296602] = 13, + [310171] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739066,11 +766915,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10635), 1, - anon_sym_SEMI, - STATE(6986), 9, + ACTIONS(10833), 1, + anon_sym_LBRACE, + STATE(7086), 1, + sym_switch_body, + STATE(7214), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739080,7 +766929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296650] = 13, + [310219] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739101,11 +766950,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6708), 1, - aux_sym_tuple_type_repeat1, - STATE(6987), 9, + ACTIONS(5274), 1, + anon_sym_LBRACE, + STATE(1943), 1, + sym_block, + STATE(7215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739115,7 +766964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296698] = 12, + [310267] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739136,10 +766985,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10637), 2, - anon_sym_this, - anon_sym_base, - STATE(6988), 9, + ACTIONS(1313), 1, + anon_sym_LBRACE, + STATE(3452), 1, + sym_initializer_expression, + STATE(7216), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739149,7 +766999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296744] = 12, + [310315] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739170,10 +767020,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10639), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(6989), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6294), 1, + sym_parameter_list, + STATE(7217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739183,7 +767034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296790] = 13, + [310363] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739204,11 +767055,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1601), 1, + ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(3771), 1, + STATE(3051), 1, sym_initializer_expression, - STATE(6990), 9, + STATE(7218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739218,7 +767069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296838] = 12, + [310411] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739239,10 +767090,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10130), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6991), 9, + ACTIONS(1313), 1, + anon_sym_LBRACE, + STATE(3464), 1, + sym_initializer_expression, + STATE(7219), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739252,7 +767104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296884] = 13, + [310459] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739273,11 +767125,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10601), 1, + ACTIONS(10919), 1, anon_sym_LBRACE, - STATE(2048), 1, - sym_switch_body, - STATE(6992), 9, + STATE(4772), 1, + sym__switch_expression_body, + STATE(7220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739287,7 +767139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296932] = 13, + [310507] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739308,11 +767160,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - ACTIONS(10641), 1, - anon_sym_in, - STATE(6993), 9, + ACTIONS(3147), 2, + anon_sym_while, + anon_sym_else, + STATE(7221), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739322,7 +767173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [296980] = 13, + [310553] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739343,11 +767194,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_COMMA, - STATE(6704), 1, - aux_sym_argument_list_repeat1, - STATE(6994), 9, + ACTIONS(10811), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym_switch_body, + STATE(7222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739357,7 +767208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297028] = 12, + [310601] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739378,10 +767229,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10643), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6995), 9, + ACTIONS(10921), 1, + anon_sym_LBRACE, + STATE(3081), 1, + sym__switch_expression_body, + STATE(7223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739391,7 +767243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297074] = 13, + [310649] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739412,11 +767264,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10645), 1, - anon_sym_LBRACK, - STATE(4403), 1, - sym_array_rank_specifier, - STATE(6996), 9, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + ACTIONS(10923), 1, + anon_sym_in, + STATE(7224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739426,7 +767278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297122] = 13, + [310697] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739447,11 +767299,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1601), 1, + ACTIONS(10925), 1, anon_sym_LBRACE, - STATE(3704), 1, - sym_initializer_expression, - STATE(6997), 9, + STATE(3078), 1, + sym__with_body, + STATE(7225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739461,7 +767313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297170] = 13, + [310745] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739482,11 +767334,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, - anon_sym_LBRACK, - STATE(6501), 1, - sym_bracketed_parameter_list, - STATE(6998), 9, + ACTIONS(10927), 1, + anon_sym_LBRACE, + STATE(2011), 1, + sym_switch_body, + STATE(7226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739496,7 +767348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297218] = 13, + [310793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739517,46 +767369,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10929), 2, anon_sym_COMMA, - STATE(6544), 1, - aux_sym_argument_list_repeat1, - STATE(6999), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [297266] = 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(8689), 1, - anon_sym_LPAREN, - STATE(6989), 1, - sym_parameter_list, - STATE(7000), 9, + anon_sym_RPAREN, + STATE(7227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739566,7 +767382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297314] = 13, + [310839] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739587,11 +767403,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6541), 1, - aux_sym_tuple_type_repeat1, - STATE(7001), 9, + ACTIONS(10931), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym_LT, + STATE(7228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739601,7 +767417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297362] = 13, + [310887] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739622,11 +767438,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10647), 1, - anon_sym_SEMI, - STATE(7002), 9, + ACTIONS(9335), 1, + anon_sym_LBRACE, + STATE(7459), 1, + sym_declaration_list, + STATE(7229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739636,7 +767452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297410] = 13, + [310935] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739657,11 +767473,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10649), 1, - anon_sym_LBRACE, - STATE(3265), 1, - sym__with_body, - STATE(7003), 9, + ACTIONS(10935), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739671,7 +767486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297458] = 13, + [310981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739692,11 +767507,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6245), 1, - sym_parameter_list, - STATE(7004), 9, + ACTIONS(3277), 2, + anon_sym_while, + anon_sym_else, + STATE(7231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739706,32 +767520,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297506] = 13, - ACTIONS(3), 1, + [311027] = 13, + ACTIONS(4892), 1, + aux_sym_preproc_if_token2, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_LBRACE, - STATE(6844), 1, - sym_switch_body, - STATE(7005), 9, + ACTIONS(10937), 1, + sym_string_literal_encoding, + STATE(7232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739741,7 +767555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297554] = 12, + [311075] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739762,10 +767576,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10653), 2, + ACTIONS(10939), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7006), 9, + STATE(4809), 1, + sym__with_body, + STATE(7233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739775,7 +767590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297600] = 13, + [311123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739796,11 +767611,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6111), 1, - sym_parameter_list, - STATE(7007), 9, + ACTIONS(10307), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739810,7 +767624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297648] = 13, + [311169] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739831,11 +767645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10655), 1, - anon_sym_LBRACK, - STATE(3160), 1, - sym_array_rank_specifier, - STATE(7008), 9, + ACTIONS(10321), 1, + anon_sym_COMMA, + STATE(6814), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739845,7 +767659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297696] = 13, + [311217] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739866,11 +767680,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10657), 1, + ACTIONS(10941), 1, anon_sym_LBRACE, - STATE(3146), 1, - sym__switch_expression_body, - STATE(7009), 9, + STATE(3700), 1, + sym__with_body, + STATE(7236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739880,7 +767694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297744] = 13, + [311265] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739901,11 +767715,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1243), 1, + ACTIONS(10943), 1, anon_sym_LBRACE, - STATE(2918), 1, - sym_initializer_expression, - STATE(7010), 9, + STATE(3315), 1, + sym__with_body, + STATE(7237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739915,31 +767729,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297792] = 12, - ACTIONS(8891), 1, + [311313] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10659), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7011), 9, + ACTIONS(5617), 1, + anon_sym_LBRACE, + STATE(3116), 1, + sym_block, + STATE(7238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739949,7 +767764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297838] = 13, + [311361] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739970,11 +767785,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - STATE(6776), 1, - sym_argument_list, - STATE(7012), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10945), 1, + anon_sym_SEMI, + STATE(7239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739984,7 +767799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297886] = 13, + [311409] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740005,11 +767820,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, + ACTIONS(9848), 1, anon_sym_LBRACE, - STATE(3009), 1, + STATE(3895), 1, sym_block, - STATE(7013), 9, + STATE(7240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740019,7 +767834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297934] = 13, + [311457] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740040,11 +767855,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(6263), 1, + STATE(6616), 1, sym_parameter_list, - STATE(7014), 9, + STATE(7241), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740054,7 +767869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [297982] = 13, + [311505] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740075,11 +767890,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6262), 1, - sym_parameter_list, - STATE(7015), 9, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(10947), 1, + anon_sym_SEMI, + STATE(7242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740089,7 +767904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298030] = 13, + [311553] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740110,11 +767925,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6261), 1, - sym_parameter_list, - STATE(7016), 9, + ACTIONS(10949), 1, + anon_sym_LBRACK, + STATE(2777), 1, + sym_array_rank_specifier, + STATE(7243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740124,7 +767939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298078] = 13, + [311601] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740145,11 +767960,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(6413), 1, + STATE(6433), 1, sym_parameter_list, - STATE(7017), 9, + STATE(7244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740159,7 +767974,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298126] = 13, + [311649] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740180,11 +767995,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7088), 1, - sym_declaration_list, - STATE(7018), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6404), 1, + sym_parameter_list, + STATE(7245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740194,7 +768009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298174] = 13, + [311697] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740215,11 +768030,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6747), 1, - aux_sym_tuple_type_repeat1, - STATE(7019), 9, + ACTIONS(10951), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740229,7 +768043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298222] = 12, + [311743] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740250,10 +768064,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10661), 2, + ACTIONS(10160), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7020), 9, + STATE(6781), 1, + aux_sym_argument_list_repeat1, + STATE(7247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740263,7 +768078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298268] = 13, + [311791] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740284,11 +768099,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9101), 1, - anon_sym_LBRACE, - STATE(7089), 1, - sym_declaration_list, - STATE(7021), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6458), 1, + sym_parameter_list, + STATE(7248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740298,7 +768113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298316] = 13, + [311839] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740319,11 +768134,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7173), 1, - sym_enum_member_declaration_list, - STATE(7022), 9, + ACTIONS(3175), 2, + anon_sym_while, + anon_sym_else, + STATE(7249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740333,7 +768147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298364] = 13, + [311885] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740354,11 +768168,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(10663), 1, + ACTIONS(10953), 1, anon_sym_SEMI, - STATE(7023), 9, + STATE(7250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740368,7 +768182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298412] = 13, + [311933] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740389,11 +768203,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, + ACTIONS(9807), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(3503), 1, sym_block, - STATE(7024), 9, + STATE(7251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740403,7 +768217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298460] = 13, + [311981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740424,45 +768238,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6096), 1, - sym_parameter_list, - STATE(7025), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [298508] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10665), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7026), 9, + ACTIONS(3207), 2, + anon_sym_while, + anon_sym_else, + STATE(7252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740472,7 +768251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298554] = 12, + [312027] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740493,10 +768272,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10667), 2, + ACTIONS(10732), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(7027), 9, + STATE(7253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740506,7 +768285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298600] = 13, + [312073] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740527,46 +768306,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1479), 1, - anon_sym_LBRACE, - STATE(3004), 1, - sym_initializer_expression, - STATE(7028), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [298648] = 13, - ACTIONS(4793), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10669), 1, - sym_string_literal_encoding, - STATE(7029), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(7169), 1, + sym_parameter_list, + STATE(7254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740576,7 +768320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298696] = 13, + [312121] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740597,11 +768341,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10671), 1, - anon_sym_LPAREN, - STATE(7058), 1, - sym_tuple_expression, - STATE(7030), 9, + ACTIONS(10170), 1, + anon_sym_COMMA, + STATE(6786), 1, + aux_sym_tuple_type_repeat1, + STATE(7255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740611,7 +768355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298744] = 13, + [312169] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740632,11 +768376,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10226), 1, - anon_sym_DQUOTE, - STATE(7162), 1, - sym_string_literal, - STATE(7031), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6289), 1, + sym_parameter_list, + STATE(7256), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740646,7 +768390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298792] = 12, + [312217] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740667,10 +768411,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10673), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7032), 9, + ACTIONS(5617), 1, + anon_sym_LBRACE, + STATE(7141), 1, + sym_block, + STATE(7257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740680,7 +768425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298838] = 13, + [312265] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740701,11 +768446,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10675), 1, - anon_sym_LBRACE, - STATE(3033), 1, - sym__switch_expression_body, - STATE(7033), 9, + ACTIONS(3289), 2, + anon_sym_while, + anon_sym_else, + STATE(7258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740715,7 +768459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298886] = 13, + [312311] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740736,11 +768480,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6196), 1, - sym_parameter_list, - STATE(7034), 9, + ACTIONS(10955), 1, + anon_sym_LBRACK, + STATE(3172), 1, + sym_array_rank_specifier, + STATE(7259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740750,7 +768494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298934] = 13, + [312359] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740771,11 +768515,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10677), 1, - anon_sym_LBRACK, - STATE(3083), 1, - sym_array_rank_specifier, - STATE(7035), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6308), 1, + sym_parameter_list, + STATE(7260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740785,7 +768529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [298982] = 13, + [312407] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740806,11 +768550,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6108), 1, - sym_parameter_list, - STATE(7036), 9, + ACTIONS(1313), 1, + anon_sym_LBRACE, + STATE(3505), 1, + sym_initializer_expression, + STATE(7261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740820,7 +768564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299030] = 12, + [312455] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740841,10 +768585,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10679), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7037), 9, + ACTIONS(10801), 1, + anon_sym_LPAREN, + STATE(96), 1, + sym__for_statement_conditions, + STATE(7262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740854,7 +768599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299076] = 13, + [312503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740875,11 +768620,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(6835), 1, - sym_string_literal, - STATE(7038), 9, + ACTIONS(10957), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740889,7 +768633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299124] = 13, + [312549] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740910,11 +768654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, - anon_sym_LBRACK, - STATE(6491), 1, - sym_bracketed_parameter_list, - STATE(7039), 9, + ACTIONS(5771), 1, + anon_sym_LBRACE, + STATE(2015), 1, + sym_block, + STATE(7264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740924,7 +768668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299172] = 13, + [312597] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740945,11 +768689,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1243), 1, + ACTIONS(1247), 1, anon_sym_LBRACE, - STATE(2952), 1, + STATE(2973), 1, sym_initializer_expression, - STATE(7040), 9, + STATE(7265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740959,7 +768703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299220] = 13, + [312645] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740980,11 +768724,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - STATE(6859), 1, - sym_block, - STATE(7041), 9, + ACTIONS(4018), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -740994,7 +768737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299268] = 12, + [312691] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741015,10 +768758,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10681), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7042), 9, + ACTIONS(10959), 1, + anon_sym_LBRACK, + STATE(2989), 1, + sym_array_rank_specifier, + STATE(7267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741028,7 +768772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299314] = 13, + [312739] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741049,11 +768793,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_LBRACE, - STATE(1980), 1, - sym_block, - STATE(7043), 9, + ACTIONS(10769), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741063,7 +768806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299362] = 13, + [312785] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741084,11 +768827,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10549), 1, - anon_sym_LPAREN, - STATE(62), 1, - sym__for_statement_conditions, - STATE(7044), 9, + ACTIONS(1633), 1, + anon_sym_LBRACE, + STATE(3735), 1, + sym_initializer_expression, + STATE(7269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741098,7 +768841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299410] = 13, + [312833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741119,11 +768862,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5481), 1, - anon_sym_LBRACE, - STATE(6154), 1, - sym_block, - STATE(7045), 9, + ACTIONS(3257), 2, + anon_sym_while, + anon_sym_else, + STATE(7270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741133,7 +768875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299458] = 13, + [312879] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741154,11 +768896,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, + ACTIONS(8916), 1, anon_sym_LPAREN, - STATE(6188), 1, + STATE(6406), 1, sym_parameter_list, - STATE(7046), 9, + STATE(7271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741168,7 +768910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299506] = 13, + [312927] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741189,11 +768931,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10162), 1, - anon_sym_COMMA, - STATE(6639), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7047), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6409), 1, + sym_parameter_list, + STATE(7272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741203,7 +768945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299554] = 13, + [312975] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741224,11 +768966,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1243), 1, - anon_sym_LBRACE, - STATE(2962), 1, - sym_initializer_expression, - STATE(7048), 9, + ACTIONS(10160), 1, + anon_sym_COMMA, + STATE(6817), 1, + aux_sym_argument_list_repeat1, + STATE(7273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741238,7 +768980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299602] = 13, + [313023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741259,11 +769001,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10683), 1, - anon_sym_LBRACK, - STATE(2297), 1, - sym_array_rank_specifier, - STATE(7049), 9, + ACTIONS(3233), 2, + anon_sym_while, + anon_sym_else, + STATE(7274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741273,7 +769014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299650] = 13, + [313069] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741294,11 +769035,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACE, - STATE(3266), 1, - sym_block, - STATE(7050), 9, + ACTIONS(10961), 1, + anon_sym_LPAREN, + STATE(7222), 1, + sym_tuple_expression, + STATE(7275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741308,7 +769049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299698] = 12, + [313117] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741329,10 +769070,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10685), 2, + ACTIONS(1397), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7051), 9, + STATE(4833), 1, + sym_initializer_expression, + STATE(7276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741342,7 +769084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299744] = 13, + [313165] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741363,11 +769105,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, - anon_sym_LBRACE, - STATE(7245), 1, - sym_enum_member_declaration_list, - STATE(7052), 9, + ACTIONS(10817), 1, + anon_sym_LBRACK, + STATE(6613), 1, + sym_bracketed_parameter_list, + STATE(7277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741377,7 +769119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299792] = 13, + [313213] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741398,11 +769140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9695), 1, + ACTIONS(1487), 1, anon_sym_LBRACE, - STATE(7181), 1, - sym_enum_member_declaration_list, - STATE(7053), 9, + STATE(3073), 1, + sym_initializer_expression, + STATE(7278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741412,32 +769154,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299840] = 13, - ACTIONS(3), 1, + [313261] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6669), 1, - aux_sym_tuple_type_repeat1, - STATE(7054), 9, + ACTIONS(10963), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741447,7 +769188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299888] = 12, + [313307] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741468,10 +769209,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10687), 2, + ACTIONS(9775), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7055), 9, + STATE(4620), 1, + sym_block, + STATE(7280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741481,7 +769223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299934] = 13, + [313355] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741502,11 +769244,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9632), 1, - anon_sym_LBRACE, - STATE(2904), 1, - sym_block, - STATE(7056), 9, + ACTIONS(5264), 1, + anon_sym_LPAREN, + STATE(6990), 1, + sym_argument_list, + STATE(7281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741516,7 +769258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [299982] = 13, + [313403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741537,11 +769279,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6454), 1, - sym_parameter_list, - STATE(7057), 9, + ACTIONS(3273), 2, + anon_sym_while, + anon_sym_else, + STATE(7282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741551,7 +769292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300030] = 13, + [313449] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741572,11 +769313,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10651), 1, - anon_sym_LBRACE, - STATE(6877), 1, - sym_switch_body, - STATE(7058), 9, + ACTIONS(10170), 1, + anon_sym_COMMA, + STATE(6821), 1, + aux_sym_tuple_type_repeat1, + STATE(7283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741586,7 +769327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300078] = 13, + [313497] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741607,11 +769348,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10553), 1, - anon_sym_LBRACK, - STATE(6424), 1, - sym_bracketed_parameter_list, - STATE(7059), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6394), 1, + sym_parameter_list, + STATE(7284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741621,7 +769362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300126] = 13, + [313545] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741642,11 +769383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6186), 1, - sym_parameter_list, - STATE(7060), 9, + ACTIONS(10927), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym_switch_body, + STATE(7285), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741656,32 +769397,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300174] = 13, - ACTIONS(3), 1, + [313593] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10625), 1, - anon_sym_LBRACE, - STATE(1945), 1, - sym_switch_body, - STATE(7061), 9, + ACTIONS(10965), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741691,7 +769431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300222] = 13, + [313639] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741712,11 +769452,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10689), 1, - anon_sym_LBRACE, - STATE(2929), 1, - sym__switch_expression_body, - STATE(7062), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6416), 1, + sym_parameter_list, + STATE(7287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741726,7 +769466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300270] = 13, + [313687] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741747,11 +769487,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10691), 1, - anon_sym_LBRACE, - STATE(2898), 1, - sym__with_body, - STATE(7063), 9, + ACTIONS(8916), 1, + anon_sym_LPAREN, + STATE(6402), 1, + sym_parameter_list, + STATE(7288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741761,7 +769501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300318] = 13, + [313735] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741782,11 +769522,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9936), 1, - anon_sym_COMMA, - STATE(6713), 1, - aux_sym_tuple_type_repeat1, - STATE(7064), 9, + ACTIONS(10967), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741796,7 +769535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300366] = 13, + [313781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741817,11 +769556,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7916), 1, - anon_sym_DOT, - ACTIONS(10693), 1, - anon_sym_SEMI, - STATE(7065), 9, + ACTIONS(9908), 1, + anon_sym_STAR, + STATE(7290), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741831,7 +769568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300414] = 13, + [313826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741852,11 +769589,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8689), 1, - anon_sym_LPAREN, - STATE(6234), 1, - sym_parameter_list, - STATE(7066), 9, + ACTIONS(10969), 1, + aux_sym_preproc_if_token3, + STATE(7291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741866,7 +769601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300462] = 13, + [313871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741887,11 +769622,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10162), 1, - anon_sym_COMMA, - STATE(6659), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7067), 9, + ACTIONS(10971), 1, + sym_integer_literal, + STATE(7292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741901,7 +769634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300510] = 12, + [313916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741922,9 +769655,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10695), 1, - aux_sym_preproc_if_token3, - STATE(7068), 9, + ACTIONS(10603), 1, + anon_sym_RBRACE, + STATE(7293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741934,7 +769667,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300555] = 12, + [313961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741955,9 +769688,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10697), 1, - anon_sym_RBRACK, - STATE(7069), 9, + ACTIONS(10973), 1, + anon_sym_RPAREN, + STATE(7294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741967,7 +769700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300600] = 12, + [314006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741988,9 +769721,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10699), 1, - anon_sym_EQ_GT, - STATE(7070), 9, + ACTIONS(10975), 1, + anon_sym_RPAREN, + STATE(7295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742000,7 +769733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300645] = 12, + [314051] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742021,9 +769754,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10701), 1, - anon_sym_EQ_GT, - STATE(7071), 9, + ACTIONS(10144), 1, + anon_sym_RBRACE, + STATE(7296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742033,7 +769766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300690] = 12, + [314096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742054,9 +769787,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10703), 1, - anon_sym_while, - STATE(7072), 9, + ACTIONS(10977), 1, + anon_sym_COMMA, + STATE(7297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742066,7 +769799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300735] = 12, + [314141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742087,9 +769820,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8340), 1, + ACTIONS(10979), 1, anon_sym_RPAREN, - STATE(7073), 9, + STATE(7298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742099,7 +769832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300780] = 12, + [314186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742120,9 +769853,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10705), 1, - anon_sym_SEMI, - STATE(7074), 9, + ACTIONS(10981), 1, + aux_sym_preproc_if_token3, + STATE(7299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742132,7 +769865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300825] = 12, + [314231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742153,9 +769886,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10707), 1, - anon_sym_EQ_GT, - STATE(7075), 9, + ACTIONS(10233), 1, + anon_sym_RBRACE, + STATE(7300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742165,7 +769898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300870] = 12, + [314276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742186,9 +769919,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10709), 1, - anon_sym_EQ_GT, - STATE(7076), 9, + ACTIONS(10983), 1, + sym__optional_semi, + STATE(7301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742198,7 +769931,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300915] = 12, + [314321] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742219,9 +769952,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_RPAREN, - STATE(7077), 9, + ACTIONS(10985), 1, + anon_sym_LPAREN, + STATE(7302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742231,7 +769964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [300960] = 12, + [314366] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742252,9 +769985,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10713), 1, - anon_sym_SEMI, - STATE(7078), 9, + ACTIONS(10987), 1, + anon_sym_LPAREN, + STATE(7303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742264,7 +769997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301005] = 12, + [314411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742285,9 +770018,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10715), 1, - anon_sym_SEMI, - STATE(7079), 9, + ACTIONS(10989), 1, + anon_sym_LPAREN, + STATE(7304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742297,7 +770030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301050] = 12, + [314456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742318,9 +770051,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10717), 1, - anon_sym_LPAREN, - STATE(7080), 9, + ACTIONS(10991), 1, + anon_sym_SEMI, + STATE(7305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742330,7 +770063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301095] = 12, + [314501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742351,9 +770084,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10719), 1, - anon_sym_SEMI, - STATE(7081), 9, + ACTIONS(10993), 1, + anon_sym_LPAREN, + STATE(7306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742363,7 +770096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301140] = 12, + [314546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742384,9 +770117,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10721), 1, - anon_sym_SEMI, - STATE(7082), 9, + ACTIONS(10995), 1, + anon_sym_LPAREN, + STATE(7307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742396,7 +770129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301185] = 12, + [314591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742417,9 +770150,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10723), 1, - anon_sym_SEMI, - STATE(7083), 9, + ACTIONS(10997), 1, + anon_sym_LPAREN, + STATE(7308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742429,7 +770162,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301230] = 12, + [314636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742450,9 +770183,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10725), 1, - anon_sym_GT, - STATE(7084), 9, + ACTIONS(10999), 1, + anon_sym_LPAREN, + STATE(7309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742462,7 +770195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301275] = 12, + [314681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742483,9 +770216,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10727), 1, - sym__optional_semi, - STATE(7085), 9, + ACTIONS(11001), 1, + anon_sym_RPAREN, + STATE(7310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742495,7 +770228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301320] = 12, + [314726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742516,9 +770249,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10729), 1, - sym__optional_semi, - STATE(7086), 9, + ACTIONS(11003), 1, + anon_sym_EQ_GT, + STATE(7311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742528,7 +770261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301365] = 12, + [314771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742549,9 +770282,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10731), 1, - anon_sym_GT, - STATE(7087), 9, + ACTIONS(11005), 1, + anon_sym_COLON, + STATE(7312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742561,7 +770294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301410] = 12, + [314816] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742582,9 +770315,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10733), 1, - sym__optional_semi, - STATE(7088), 9, + ACTIONS(11007), 1, + anon_sym_EQ, + STATE(7313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742594,7 +770327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301455] = 12, + [314861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742615,9 +770348,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10735), 1, - sym__optional_semi, - STATE(7089), 9, + ACTIONS(11009), 1, + anon_sym_LPAREN, + STATE(7314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742627,7 +770360,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301500] = 12, + [314906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742648,9 +770381,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10737), 1, - anon_sym_GT, - STATE(7090), 9, + ACTIONS(8718), 1, + anon_sym_RPAREN, + STATE(7315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742660,7 +770393,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301545] = 12, + [314951] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742681,9 +770414,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10739), 1, - anon_sym_SQUOTE, - STATE(7091), 9, + ACTIONS(11011), 1, + anon_sym_EQ_GT, + STATE(7316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742693,7 +770426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301590] = 12, + [314996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742714,9 +770447,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10741), 1, - anon_sym_EQ_GT, - STATE(7092), 9, + ACTIONS(11013), 1, + aux_sym_preproc_if_token3, + STATE(7317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742726,7 +770459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301635] = 12, + [315041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742747,9 +770480,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10743), 1, - anon_sym_EQ_GT, - STATE(7093), 9, + ACTIONS(11015), 1, + anon_sym_GT, + STATE(7318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742759,7 +770492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301680] = 12, + [315086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742780,9 +770513,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10745), 1, - anon_sym_RPAREN, - STATE(7094), 9, + ACTIONS(11017), 1, + anon_sym_RBRACE, + STATE(7319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742792,7 +770525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301725] = 12, + [315131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742813,9 +770546,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10747), 1, - anon_sym_SEMI, - STATE(7095), 9, + ACTIONS(11019), 1, + anon_sym_EQ_GT, + STATE(7320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742825,30 +770558,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301770] = 12, - ACTIONS(3), 1, + [315176] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10749), 1, - anon_sym_EQ_GT, - STATE(7096), 9, + ACTIONS(11021), 1, + aux_sym_preproc_if_token2, + STATE(7321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742858,30 +770591,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301815] = 12, - ACTIONS(3), 1, + [315221] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10751), 1, - anon_sym_EQ_GT, - STATE(7097), 9, + ACTIONS(11023), 1, + aux_sym_preproc_if_token2, + STATE(7322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742891,7 +770624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301860] = 12, + [315266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742912,9 +770645,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7564), 1, - anon_sym_RBRACE, - STATE(7098), 9, + ACTIONS(11025), 1, + anon_sym_EQ_GT, + STATE(7323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742924,7 +770657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301905] = 12, + [315311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742945,9 +770678,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10753), 1, - anon_sym_EQ_GT, - STATE(7099), 9, + ACTIONS(11027), 1, + anon_sym_LPAREN, + STATE(7324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742957,7 +770690,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301950] = 12, + [315356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742978,9 +770711,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10755), 1, - anon_sym_RPAREN, - STATE(7100), 9, + ACTIONS(11029), 1, + anon_sym_LPAREN, + STATE(7325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742990,7 +770723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [301995] = 12, + [315401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743011,9 +770744,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10757), 1, - anon_sym_EQ_GT, - STATE(7101), 9, + ACTIONS(11031), 1, + sym__optional_semi, + STATE(7326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743023,7 +770756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302040] = 12, + [315446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743044,9 +770777,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10759), 1, - sym_interpolation_start_quote, - STATE(7102), 9, + ACTIONS(11033), 1, + sym__optional_semi, + STATE(7327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743056,7 +770789,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302085] = 12, + [315491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743077,9 +770810,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10761), 1, - anon_sym_LPAREN, - STATE(7103), 9, + ACTIONS(11035), 1, + aux_sym_preproc_if_token3, + STATE(7328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743089,7 +770822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302130] = 12, + [315536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743110,9 +770843,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10763), 1, - sym__optional_semi, - STATE(7104), 9, + ACTIONS(10508), 1, + anon_sym_RBRACE, + STATE(7329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743122,7 +770855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302175] = 12, + [315581] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743143,9 +770876,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10765), 1, - sym__optional_semi, - STATE(7105), 9, + ACTIONS(11037), 1, + aux_sym_preproc_if_token3, + STATE(7330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743155,7 +770888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302220] = 12, + [315626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743176,9 +770909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10767), 1, - sym_raw_string_end, - STATE(7106), 9, + ACTIONS(11039), 1, + anon_sym_GT, + STATE(7331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743188,7 +770921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302265] = 12, + [315671] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743209,9 +770942,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10769), 1, - sym__optional_semi, - STATE(7107), 9, + ACTIONS(11041), 1, + anon_sym_SEMI, + STATE(7332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743221,7 +770954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302310] = 12, + [315716] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743242,9 +770975,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10771), 1, - sym__optional_semi, - STATE(7108), 9, + ACTIONS(11043), 1, + anon_sym_STAR, + STATE(7333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743254,7 +770987,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302355] = 12, + [315761] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743275,9 +771008,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10773), 1, + ACTIONS(11045), 1, anon_sym_EQ_GT, - STATE(7109), 9, + STATE(7334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743287,7 +771020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302400] = 12, + [315806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743308,9 +771041,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10775), 1, - anon_sym_in, - STATE(7110), 9, + ACTIONS(11047), 1, + sym_raw_string_end, + STATE(7335), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743320,7 +771053,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302445] = 12, + [315851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743341,9 +771074,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10777), 1, - anon_sym_EQ_GT, - STATE(7111), 9, + ACTIONS(11049), 1, + sym__optional_semi, + STATE(7336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743353,7 +771086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302490] = 12, + [315896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743374,9 +771107,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10779), 1, - anon_sym_EQ, - STATE(7112), 9, + ACTIONS(11051), 1, + anon_sym_EQ_GT, + STATE(7337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743386,7 +771119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302535] = 12, + [315941] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743407,9 +771140,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10781), 1, - anon_sym_EQ_GT, - STATE(7113), 9, + ACTIONS(11053), 1, + anon_sym_SEMI, + STATE(7338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743419,7 +771152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302580] = 12, + [315986] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743440,9 +771173,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10783), 1, - anon_sym_STAR, - STATE(7114), 9, + ACTIONS(11055), 1, + anon_sym_SEMI, + STATE(7339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743452,7 +771185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302625] = 12, + [316031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743473,9 +771206,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10785), 1, - sym_interpolation_start_quote, - STATE(7115), 9, + ACTIONS(9643), 1, + anon_sym_EQ, + STATE(7340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743485,7 +771218,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302670] = 12, + [316076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743506,9 +771239,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10787), 1, - anon_sym_SEMI, - STATE(7116), 9, + ACTIONS(11057), 1, + anon_sym_EQ_GT, + STATE(7341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743518,7 +771251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302715] = 12, + [316121] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743539,9 +771272,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7612), 1, - anon_sym_RBRACE, - STATE(7117), 9, + ACTIONS(11059), 1, + sym_raw_string_end, + STATE(7342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743551,7 +771284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302760] = 12, + [316166] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743572,9 +771305,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10789), 1, - sym__optional_semi, - STATE(7118), 9, + ACTIONS(11061), 1, + anon_sym_LT, + STATE(7343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743584,7 +771317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302805] = 12, + [316211] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743605,9 +771338,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10791), 1, - anon_sym_RBRACE, - STATE(7119), 9, + ACTIONS(11063), 1, + anon_sym_SEMI, + STATE(7344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743617,7 +771350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302850] = 12, + [316256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743638,9 +771371,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10793), 1, - anon_sym_RPAREN, - STATE(7120), 9, + ACTIONS(10420), 1, + sym_interpolation_close_brace, + STATE(7345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743650,7 +771383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302895] = 12, + [316301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743671,9 +771404,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10795), 1, - anon_sym_EQ_GT, - STATE(7121), 9, + ACTIONS(11065), 1, + sym_raw_string_end, + STATE(7346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743683,7 +771416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302940] = 12, + [316346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743704,9 +771437,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10797), 1, - sym_interpolation_start_quote, - STATE(7122), 9, + ACTIONS(11067), 1, + anon_sym_SEMI, + STATE(7347), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743716,7 +771449,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [302985] = 12, + [316391] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743737,9 +771470,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10315), 1, - anon_sym_RBRACE, - STATE(7123), 9, + ACTIONS(11069), 1, + sym__optional_semi, + STATE(7348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743749,7 +771482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303030] = 12, + [316436] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743770,9 +771503,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10799), 1, - sym_raw_string_content, - STATE(7124), 9, + ACTIONS(11071), 1, + anon_sym_SEMI, + STATE(7349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743782,7 +771515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303075] = 12, + [316481] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743803,9 +771536,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10801), 1, - anon_sym_SEMI, - STATE(7125), 9, + ACTIONS(11073), 1, + anon_sym_RPAREN, + STATE(7350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743815,7 +771548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303120] = 12, + [316526] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743836,9 +771569,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10803), 1, - anon_sym_EQ_GT, - STATE(7126), 9, + ACTIONS(11075), 1, + anon_sym_RPAREN, + STATE(7351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743848,7 +771581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303165] = 12, + [316571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743869,9 +771602,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10805), 1, - anon_sym_SEMI, - STATE(7127), 9, + ACTIONS(11077), 1, + anon_sym_EQ, + STATE(7352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743881,7 +771614,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303210] = 12, + [316616] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743902,9 +771635,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10807), 1, - anon_sym_SEMI, - STATE(7128), 9, + ACTIONS(11079), 1, + anon_sym_GT, + STATE(7353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743914,7 +771647,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303255] = 12, + [316661] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743935,9 +771668,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10809), 1, - anon_sym_COMMA, - STATE(7129), 9, + ACTIONS(11081), 1, + anon_sym_GT, + STATE(7354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743947,7 +771680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303300] = 12, + [316706] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743968,9 +771701,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10811), 1, - anon_sym_GT, - STATE(7130), 9, + ACTIONS(9689), 1, + anon_sym_EQ, + STATE(7355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743980,7 +771713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303345] = 12, + [316751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744001,9 +771734,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10246), 1, - anon_sym_RBRACE, - STATE(7131), 9, + ACTIONS(11083), 1, + anon_sym_RPAREN, + STATE(7356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744013,7 +771746,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303390] = 12, + [316796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744034,9 +771767,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10140), 1, - anon_sym_RBRACE, - STATE(7132), 9, + ACTIONS(11085), 1, + aux_sym_preproc_if_token3, + STATE(7357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744046,7 +771779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303435] = 12, + [316841] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744067,9 +771800,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10813), 1, - anon_sym_SEMI, - STATE(7133), 9, + ACTIONS(11087), 1, + aux_sym_preproc_if_token3, + STATE(7358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744079,7 +771812,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303480] = 12, + [316886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744100,9 +771833,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10815), 1, - anon_sym_LPAREN, - STATE(7134), 9, + ACTIONS(11089), 1, + aux_sym_preproc_if_token3, + STATE(7359), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744112,30 +771845,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303525] = 12, - ACTIONS(8891), 1, + [316931] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10817), 1, - aux_sym_preproc_if_token2, - STATE(7135), 9, + ACTIONS(11091), 1, + aux_sym_preproc_if_token3, + STATE(7360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744145,7 +771878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303570] = 12, + [316976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744166,9 +771899,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_EQ_GT, - STATE(7136), 9, + ACTIONS(11093), 1, + aux_sym_preproc_if_token3, + STATE(7361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744178,7 +771911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303615] = 12, + [317021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744199,9 +771932,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10821), 1, - anon_sym_COMMA, - STATE(7137), 9, + ACTIONS(11095), 1, + anon_sym_EQ_GT, + STATE(7362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744211,7 +771944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303660] = 12, + [317066] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744232,9 +771965,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10823), 1, - anon_sym_RPAREN, - STATE(7138), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744244,7 +772010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303705] = 12, + [317156] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744265,9 +772031,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10825), 1, - aux_sym_preproc_if_token3, - STATE(7139), 9, + ACTIONS(11099), 1, + anon_sym_GT, + STATE(7365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744277,7 +772043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303750] = 12, + [317201] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744298,9 +772064,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10827), 1, - aux_sym_preproc_if_token3, - STATE(7140), 9, + ACTIONS(11101), 1, + anon_sym_COLON, + STATE(7366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744310,7 +772076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303795] = 12, + [317246] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744331,9 +772097,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10829), 1, - anon_sym_RPAREN, - STATE(7141), 9, + ACTIONS(11103), 1, + anon_sym_SEMI, + STATE(7367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744343,7 +772109,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303840] = 12, + [317291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744364,9 +772130,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10831), 1, - anon_sym_EQ_GT, - STATE(7142), 9, + ACTIONS(11105), 1, + anon_sym_SQUOTE, + STATE(7368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744376,7 +772142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303885] = 12, + [317336] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744397,9 +772163,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10833), 1, - anon_sym_RPAREN, - STATE(7143), 9, + ACTIONS(11107), 1, + sym__optional_semi, + STATE(7369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744409,7 +772175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303930] = 12, + [317381] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744430,9 +772196,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10835), 1, - anon_sym_LPAREN, - STATE(7144), 9, + ACTIONS(11109), 1, + sym_interpolation_start_quote, + STATE(7370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744442,7 +772208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [303975] = 12, + [317426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744463,9 +772229,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10837), 1, - anon_sym_EQ_GT, - STATE(7145), 9, + ACTIONS(11111), 1, + anon_sym_SEMI, + STATE(7371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744475,7 +772241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304020] = 12, + [317471] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744496,9 +772262,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10839), 1, - anon_sym_SEMI, - STATE(7146), 9, + ACTIONS(11113), 1, + anon_sym_GT, + STATE(7372), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744508,7 +772274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304065] = 12, + [317516] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744529,9 +772295,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10841), 1, - aux_sym_preproc_if_token3, - STATE(7147), 9, + ACTIONS(11115), 1, + anon_sym_SEMI, + STATE(7373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744541,7 +772307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304110] = 12, + [317561] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744562,9 +772328,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10843), 1, - anon_sym_STAR, - STATE(7148), 9, + ACTIONS(11117), 1, + sym_interpolation_start_quote, + STATE(7374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744574,7 +772340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304155] = 12, + [317606] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744595,9 +772361,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10845), 1, - aux_sym_preproc_if_token3, - STATE(7149), 9, + ACTIONS(11119), 1, + anon_sym_SEMI, + STATE(7375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744607,7 +772373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304200] = 12, + [317651] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744628,9 +772394,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10847), 1, - sym_integer_literal, - STATE(7150), 9, + ACTIONS(11121), 1, + anon_sym_RPAREN, + STATE(7376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744640,7 +772406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304245] = 12, + [317696] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744661,9 +772427,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10849), 1, - anon_sym_EQ_GT, - STATE(7151), 9, + ACTIONS(11123), 1, + anon_sym_SEMI, + STATE(7377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744673,7 +772439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304290] = 12, + [317741] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744694,9 +772460,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10851), 1, - anon_sym_SEMI, - STATE(7152), 9, + ACTIONS(11125), 1, + aux_sym_preproc_if_token3, + STATE(7378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744706,7 +772472,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304335] = 12, + [317786] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744727,42 +772493,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10853), 1, + ACTIONS(11127), 1, aux_sym_preproc_if_token3, - STATE(7153), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [304380] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10855), 1, - aux_sym_preproc_if_token2, - STATE(7154), 9, + STATE(7379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744772,7 +772505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304425] = 12, + [317831] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744793,9 +772526,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10857), 1, - anon_sym_EQ_GT, - STATE(7155), 9, + ACTIONS(7663), 1, + anon_sym_RBRACE, + STATE(7380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744805,7 +772538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304470] = 12, + [317876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744826,9 +772559,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10859), 1, - anon_sym_RPAREN, - STATE(7156), 9, + ACTIONS(11129), 1, + anon_sym_EQ_GT, + STATE(7381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744838,7 +772571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304515] = 12, + [317921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744859,9 +772592,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10861), 1, + ACTIONS(11131), 1, aux_sym_preproc_if_token3, - STATE(7157), 9, + STATE(7382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744871,7 +772604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304560] = 12, + [317966] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744892,9 +772625,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10863), 1, + ACTIONS(11133), 1, aux_sym_preproc_if_token3, - STATE(7158), 9, + STATE(7383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744904,7 +772637,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304605] = 12, + [318011] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744925,9 +772658,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10865), 1, - anon_sym_RPAREN, - STATE(7159), 9, + ACTIONS(11135), 1, + anon_sym_EQ_GT, + STATE(7384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744937,7 +772670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304650] = 12, + [318056] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744958,42 +772691,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10867), 1, - anon_sym_SEMI, - STATE(7160), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [304695] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10869), 1, - aux_sym_preproc_if_token2, - STATE(7161), 9, + ACTIONS(11137), 1, + sym__optional_semi, + STATE(7385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745003,30 +772703,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304740] = 12, - ACTIONS(8891), 1, + [318101] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10871), 1, - aux_sym_preproc_if_token2, - STATE(7162), 9, + ACTIONS(11139), 1, + anon_sym_GT, + STATE(7386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745036,7 +772736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304785] = 12, + [318146] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745057,9 +772757,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10873), 1, - anon_sym_while, - STATE(7163), 9, + ACTIONS(11141), 1, + sym__optional_semi, + STATE(7387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745069,7 +772769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304830] = 12, + [318191] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745090,9 +772790,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10875), 1, - anon_sym_LPAREN, - STATE(7164), 9, + ACTIONS(11143), 1, + anon_sym_in, + STATE(7388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745102,7 +772802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304875] = 12, + [318236] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745123,9 +772823,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10877), 1, + ACTIONS(11145), 1, sym__optional_semi, - STATE(7165), 9, + STATE(7389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745135,7 +772835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304920] = 12, + [318281] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745156,9 +772856,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10879), 1, - anon_sym_DOT, - STATE(7166), 9, + ACTIONS(7607), 1, + anon_sym_RBRACE, + STATE(7390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745168,7 +772868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [304965] = 12, + [318326] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745189,9 +772889,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10881), 1, + ACTIONS(11147), 1, aux_sym_preproc_if_token3, - STATE(7167), 9, + STATE(7391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745201,7 +772901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305010] = 12, + [318371] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745222,9 +772922,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10883), 1, - anon_sym_SEMI, - STATE(7168), 9, + ACTIONS(8388), 1, + anon_sym_RPAREN, + STATE(7392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745234,7 +772934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305055] = 12, + [318416] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745255,9 +772955,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10885), 1, - anon_sym_DOT, - STATE(7169), 9, + ACTIONS(11149), 1, + anon_sym_EQ_GT, + STATE(7393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745267,7 +772967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305100] = 12, + [318461] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745288,9 +772988,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10887), 1, - anon_sym_EQ_GT, - STATE(7170), 9, + ACTIONS(11151), 1, + sym__optional_semi, + STATE(7394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745300,7 +773000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305145] = 12, + [318506] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745321,9 +773021,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10889), 1, - anon_sym_GT, - STATE(7171), 9, + ACTIONS(11153), 1, + aux_sym_preproc_if_token3, + STATE(7395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745333,7 +773033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305190] = 12, + [318551] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745354,9 +773054,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10891), 1, - anon_sym_SEMI, - STATE(7172), 9, + ACTIONS(11155), 1, + sym_interpolation_start_quote, + STATE(7396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745366,7 +773066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305235] = 12, + [318596] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745387,9 +773087,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10893), 1, - sym__optional_semi, - STATE(7173), 9, + ACTIONS(11157), 1, + sym_interpolation_start_quote, + STATE(7397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745399,7 +773099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305280] = 12, + [318641] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745420,9 +773120,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8488), 1, - anon_sym_RPAREN, - STATE(7174), 9, + ACTIONS(11159), 1, + anon_sym_LT, + STATE(7398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745432,7 +773132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305325] = 12, + [318686] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745453,9 +773153,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10895), 1, - anon_sym_SEMI, - STATE(7175), 9, + ACTIONS(11161), 1, + sym_interpolation_start_quote, + STATE(7399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745465,7 +773165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305370] = 12, + [318731] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745486,9 +773186,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10897), 1, + ACTIONS(11163), 1, anon_sym_GT, - STATE(7176), 9, + STATE(7400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745498,7 +773198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305415] = 12, + [318776] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745519,9 +773219,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10899), 1, - anon_sym_LPAREN, - STATE(7177), 9, + ACTIONS(11165), 1, + anon_sym_EQ_GT, + STATE(7401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745531,7 +773231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305460] = 12, + [318821] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745552,9 +773252,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10901), 1, - anon_sym_RBRACK, - STATE(7178), 9, + ACTIONS(8573), 1, + anon_sym_RPAREN, + STATE(7402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745564,7 +773264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305505] = 12, + [318866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745585,9 +773285,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10903), 1, - anon_sym_SEMI, - STATE(7179), 9, + ACTIONS(11167), 1, + sym_raw_string_content, + STATE(7403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745597,7 +773297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305550] = 12, + [318911] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745618,9 +773318,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10905), 1, - sym__optional_semi, - STATE(7180), 9, + ACTIONS(11169), 1, + anon_sym_GT, + STATE(7404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745630,7 +773330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305595] = 12, + [318956] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745651,9 +773351,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10907), 1, - sym__optional_semi, - STATE(7181), 9, + ACTIONS(11171), 1, + sym_interpolation_start_quote, + STATE(7405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745663,7 +773363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305640] = 12, + [319001] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745684,9 +773384,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10909), 1, - anon_sym_RPAREN, - STATE(7182), 9, + ACTIONS(11173), 1, + sym_raw_string_content, + STATE(7406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745696,7 +773396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305685] = 12, + [319046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745717,9 +773417,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10911), 1, - aux_sym_preproc_if_token3, - STATE(7183), 9, + ACTIONS(11175), 1, + anon_sym_EQ_GT, + STATE(7407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745729,7 +773429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305730] = 12, + [319091] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745750,9 +773450,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10913), 1, - sym__optional_semi, - STATE(7184), 9, + ACTIONS(11177), 1, + anon_sym_COLON, + STATE(7408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745762,7 +773462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305775] = 12, + [319136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745783,9 +773483,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10915), 1, - anon_sym_EQ_GT, - STATE(7185), 9, + ACTIONS(11179), 1, + anon_sym_SQUOTE, + STATE(7409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745795,7 +773495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305820] = 12, + [319181] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745816,9 +773516,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10917), 1, - anon_sym_EQ_GT, - STATE(7186), 9, + ACTIONS(11181), 1, + anon_sym_RPAREN, + STATE(7410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745828,7 +773528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305865] = 12, + [319226] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745849,9 +773549,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10919), 1, - aux_sym_preproc_if_token3, - STATE(7187), 9, + ACTIONS(11183), 1, + anon_sym_LPAREN, + STATE(7411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745861,7 +773561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305910] = 12, + [319271] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745882,9 +773582,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10921), 1, - anon_sym_EQ_GT, - STATE(7188), 9, + ACTIONS(11185), 1, + anon_sym_SEMI, + STATE(7412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745894,7 +773594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [305955] = 12, + [319316] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745915,9 +773615,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10923), 1, + ACTIONS(11187), 1, anon_sym_STAR, - STATE(7189), 9, + STATE(7413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745927,7 +773627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306000] = 12, + [319361] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745948,9 +773648,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10925), 1, - anon_sym_GT, - STATE(7190), 9, + ACTIONS(11189), 1, + anon_sym_RPAREN, + STATE(7414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745960,7 +773660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306045] = 12, + [319406] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745981,9 +773681,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10927), 1, - aux_sym_preproc_if_token3, - STATE(7191), 9, + ACTIONS(11191), 1, + anon_sym_EQ_GT, + STATE(7415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745993,7 +773693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306090] = 12, + [319451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746014,9 +773714,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10929), 1, - anon_sym_SEMI, - STATE(7192), 9, + ACTIONS(8464), 1, + anon_sym_RPAREN, + STATE(7416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746026,7 +773726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306135] = 12, + [319496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746047,9 +773747,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10931), 1, + ACTIONS(11193), 1, aux_sym_preproc_if_token3, - STATE(7193), 9, + STATE(7417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746059,7 +773759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306180] = 12, + [319541] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746080,9 +773780,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7226), 1, - anon_sym_RBRACE, - STATE(7194), 9, + ACTIONS(11195), 1, + anon_sym_SEMI, + STATE(7418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746092,7 +773792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306225] = 12, + [319586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746113,9 +773813,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10933), 1, - anon_sym_EQ_GT, - STATE(7195), 9, + ACTIONS(11197), 1, + anon_sym_RPAREN, + STATE(7419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746125,30 +773825,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306270] = 12, - ACTIONS(3), 1, + [319631] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(10935), 1, - anon_sym_SEMI, - STATE(7196), 9, + ACTIONS(11199), 1, + aux_sym_preproc_if_token2, + STATE(7420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746158,7 +773858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306315] = 12, + [319676] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746179,9 +773879,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10937), 1, - anon_sym_RPAREN, - STATE(7197), 9, + ACTIONS(11201), 1, + anon_sym_LPAREN, + STATE(7421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746191,7 +773891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306360] = 12, + [319721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746212,9 +773912,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10939), 1, - anon_sym_GT, - STATE(7198), 9, + ACTIONS(11203), 1, + aux_sym_preproc_if_token3, + STATE(7422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746224,7 +773924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306405] = 12, + [319766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746245,9 +773945,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10941), 1, - sym_integer_literal, - STATE(7199), 9, + ACTIONS(11205), 1, + anon_sym_RPAREN, + STATE(7423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746257,7 +773957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306450] = 12, + [319811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746278,9 +773978,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10943), 1, + ACTIONS(11207), 1, anon_sym_GT, - STATE(7200), 9, + STATE(7424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746290,7 +773990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306495] = 12, + [319856] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746311,9 +774011,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10945), 1, - anon_sym_SEMI, - STATE(7201), 9, + ACTIONS(11209), 1, + anon_sym_LPAREN, + STATE(7425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746323,7 +774023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306540] = 12, + [319901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746344,9 +774044,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7332), 1, + ACTIONS(11211), 1, anon_sym_SEMI, - STATE(7202), 9, + STATE(7426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746356,7 +774056,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306585] = 12, + [319946] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746377,9 +774077,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10947), 1, - anon_sym_SQUOTE, - STATE(7203), 9, + ACTIONS(11213), 1, + anon_sym_SEMI, + STATE(7427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746389,7 +774089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306630] = 12, + [319991] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746410,9 +774110,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10949), 1, - anon_sym_SEMI, - STATE(7204), 9, + ACTIONS(11215), 1, + anon_sym_EQ_GT, + STATE(7428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746422,7 +774122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306675] = 12, + [320036] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746443,9 +774143,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10951), 1, + ACTIONS(11217), 1, sym__optional_semi, - STATE(7205), 9, + STATE(7429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746455,7 +774155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306720] = 12, + [320081] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746476,9 +774176,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10953), 1, - anon_sym_EQ_GT, - STATE(7206), 9, + ACTIONS(11219), 1, + anon_sym_GT, + STATE(7430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746488,30 +774188,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306765] = 12, - ACTIONS(8891), 1, + [320126] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10342), 1, - aux_sym_preproc_if_token2, - STATE(7207), 9, + ACTIONS(11221), 1, + sym__optional_semi, + STATE(7431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746521,7 +774221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306810] = 12, + [320171] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746542,9 +774242,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10955), 1, - anon_sym_LPAREN, - STATE(7208), 9, + ACTIONS(11223), 1, + sym__optional_semi, + STATE(7432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746554,7 +774254,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306855] = 12, + [320216] = 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(11225), 1, + aux_sym_preproc_if_token2, + STATE(7433), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [320261] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746575,9 +774308,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8140), 1, - anon_sym_RPAREN, - STATE(7209), 9, + ACTIONS(11227), 1, + sym_integer_literal, + STATE(7434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746587,7 +774320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306900] = 12, + [320306] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746608,9 +774341,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10957), 1, - anon_sym_EQ_GT, - STATE(7210), 9, + ACTIONS(11229), 1, + anon_sym_SEMI, + STATE(7435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746620,7 +774353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306945] = 12, + [320351] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746641,9 +774374,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10959), 1, - anon_sym_SEMI, - STATE(7211), 9, + ACTIONS(11231), 1, + aux_sym_preproc_if_token3, + STATE(7436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746653,7 +774386,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [306990] = 12, + [320396] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746674,9 +774407,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10961), 1, - anon_sym_while, - STATE(7212), 9, + ACTIONS(11233), 1, + anon_sym_SEMI, + STATE(7437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746686,7 +774419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307035] = 12, + [320441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746707,9 +774440,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10963), 1, - anon_sym_LPAREN, - STATE(7213), 9, + ACTIONS(7814), 1, + anon_sym_RBRACE, + STATE(7438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746719,7 +774452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307080] = 12, + [320486] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746740,9 +774473,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10965), 1, - aux_sym_preproc_if_token3, - STATE(7214), 9, + ACTIONS(11235), 1, + sym__optional_semi, + STATE(7439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746752,7 +774485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307125] = 12, + [320531] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746773,9 +774506,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10967), 1, - anon_sym_RBRACE, - STATE(7215), 9, + ACTIONS(11237), 1, + aux_sym_preproc_if_token3, + STATE(7440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746785,7 +774518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307170] = 12, + [320576] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746806,9 +774539,9 @@ 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(7216), 9, + ACTIONS(11239), 1, + anon_sym_DOT, + STATE(7441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746818,7 +774551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307215] = 12, + [320621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746839,9 +774572,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10971), 1, - anon_sym_RBRACK, - STATE(7217), 9, + ACTIONS(11241), 1, + sym__optional_semi, + STATE(7442), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746851,7 +774584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307260] = 12, + [320666] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746872,9 +774605,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10973), 1, - anon_sym_LPAREN, - STATE(7218), 9, + ACTIONS(11243), 1, + anon_sym_SEMI, + STATE(7443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746884,7 +774617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307305] = 12, + [320711] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746905,9 +774638,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10975), 1, - anon_sym_LPAREN, - STATE(7219), 9, + ACTIONS(11245), 1, + anon_sym_EQ_GT, + STATE(7444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746917,7 +774650,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307350] = 12, + [320756] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746938,9 +774671,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10977), 1, - anon_sym_LPAREN, - STATE(7220), 9, + ACTIONS(11247), 1, + sym__optional_semi, + STATE(7445), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746950,7 +774683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307395] = 12, + [320801] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746971,9 +774704,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10979), 1, - anon_sym_EQ_GT, - STATE(7221), 9, + ACTIONS(11249), 1, + anon_sym_STAR, + STATE(7446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746983,7 +774716,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307440] = 12, + [320846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747004,9 +774737,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10981), 1, - anon_sym_LPAREN, - STATE(7222), 9, + ACTIONS(11251), 1, + aux_sym_preproc_if_token3, + STATE(7447), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747016,7 +774749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307485] = 12, + [320891] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747037,9 +774770,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10983), 1, - anon_sym_LPAREN, - STATE(7223), 9, + ACTIONS(11253), 1, + anon_sym_EQ_GT, + STATE(7448), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747049,7 +774782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307530] = 12, + [320936] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747070,9 +774803,9 @@ 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(7224), 9, + ACTIONS(11255), 1, + anon_sym_SEMI, + STATE(7449), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747082,7 +774815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307575] = 12, + [320981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747103,9 +774836,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10987), 1, + ACTIONS(10215), 1, anon_sym_LPAREN, - STATE(7225), 9, + STATE(7450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747115,7 +774848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307620] = 12, + [321026] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747136,9 +774869,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10160), 1, - anon_sym_RBRACE, - STATE(7226), 9, + ACTIONS(11257), 1, + sym__optional_semi, + STATE(7451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747148,7 +774881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307665] = 12, + [321071] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747169,9 +774902,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10989), 1, - aux_sym_preproc_if_token3, - STATE(7227), 9, + ACTIONS(11259), 1, + anon_sym_EQ_GT, + STATE(7452), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747181,7 +774914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307710] = 12, + [321116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747202,9 +774935,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10991), 1, - anon_sym_RBRACE, - STATE(7228), 9, + ACTIONS(11261), 1, + anon_sym_RBRACK, + STATE(7453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747214,7 +774947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307755] = 12, + [321161] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747235,9 +774968,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10993), 1, - anon_sym_COLON, - STATE(7229), 9, + ACTIONS(11263), 1, + anon_sym_SEMI, + STATE(7454), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747247,7 +774980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307800] = 12, + [321206] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747268,9 +775001,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10995), 1, - aux_sym_preproc_if_token3, - STATE(7230), 9, + ACTIONS(11265), 1, + anon_sym_LPAREN, + STATE(7455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747280,7 +775013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307845] = 12, + [321251] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747301,9 +775034,9 @@ 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(7231), 9, + ACTIONS(11267), 1, + anon_sym_SEMI, + STATE(7456), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747313,7 +775046,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307890] = 12, + [321296] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747334,9 +775067,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10999), 1, - aux_sym_preproc_if_token3, - STATE(7232), 9, + ACTIONS(11269), 1, + sym__optional_semi, + STATE(7457), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747346,7 +775079,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307935] = 12, + [321341] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747367,9 +775100,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11001), 1, + ACTIONS(11271), 1, anon_sym_SEMI, - STATE(7233), 9, + STATE(7458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747379,7 +775112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [307980] = 12, + [321386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747400,9 +775133,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11003), 1, - anon_sym_GT, - STATE(7234), 9, + ACTIONS(11273), 1, + sym__optional_semi, + STATE(7459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747412,7 +775145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308025] = 12, + [321431] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747433,9 +775166,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11005), 1, - aux_sym_preproc_if_token3, - STATE(7235), 9, + ACTIONS(11275), 1, + anon_sym_COLON, + STATE(7460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747445,7 +775178,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308070] = 12, + [321476] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747466,9 +775199,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8235), 1, - anon_sym_RPAREN, - STATE(7236), 9, + ACTIONS(7629), 1, + anon_sym_RBRACE, + STATE(7461), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747478,7 +775211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308115] = 12, + [321521] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747499,9 +775232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10254), 1, - anon_sym_RBRACE, - STATE(7237), 9, + ACTIONS(11277), 1, + sym__optional_semi, + STATE(7462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747511,7 +775244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308160] = 12, + [321566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747532,9 +775265,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11007), 1, - anon_sym_SEMI, - STATE(7238), 9, + ACTIONS(11279), 1, + anon_sym_RPAREN, + STATE(7463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747544,30 +775277,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308205] = 12, - ACTIONS(8891), 1, + [321611] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11009), 1, - aux_sym_interpolation_format_clause_token1, - STATE(7239), 9, + ACTIONS(11281), 1, + sym__optional_semi, + STATE(7464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747577,7 +775310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308250] = 12, + [321656] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747598,9 +775331,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_RBRACE, - STATE(7240), 9, + ACTIONS(11283), 1, + sym_interpolation_start_quote, + STATE(7465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747610,7 +775343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308295] = 12, + [321701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747631,9 +775364,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10359), 1, - anon_sym_RBRACE, - STATE(7241), 9, + ACTIONS(11285), 1, + aux_sym_preproc_if_token3, + STATE(7466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747643,7 +775376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308340] = 12, + [321746] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747664,9 +775397,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11011), 1, - anon_sym_STAR, - STATE(7242), 9, + ACTIONS(11287), 1, + anon_sym_EQ, + STATE(7467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747676,7 +775409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308385] = 12, + [321791] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747697,9 +775430,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11013), 1, + ACTIONS(11289), 1, anon_sym_EQ_GT, - STATE(7243), 9, + STATE(7468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747709,7 +775442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308430] = 12, + [321836] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747730,9 +775463,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11015), 1, - sym__optional_semi, - STATE(7244), 9, + ACTIONS(11291), 1, + anon_sym_GT, + STATE(7469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747742,7 +775475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308475] = 12, + [321881] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747763,9 +775496,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11017), 1, - sym__optional_semi, - STATE(7245), 9, + ACTIONS(11293), 1, + anon_sym_SEMI, + STATE(7470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747775,7 +775508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308520] = 12, + [321926] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747796,9 +775529,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9882), 1, - anon_sym_LPAREN, - STATE(7246), 9, + ACTIONS(10869), 1, + anon_sym_in, + STATE(7471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747808,7 +775541,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308565] = 12, + [321971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747829,9 +775562,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11019), 1, + ACTIONS(10386), 1, anon_sym_RBRACE, - STATE(7247), 9, + STATE(7472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747841,7 +775574,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308610] = 12, + [322016] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747862,9 +775595,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10641), 1, - anon_sym_in, - STATE(7248), 9, + ACTIONS(11295), 1, + anon_sym_EQ_GT, + STATE(7473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747874,7 +775607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308655] = 12, + [322061] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747895,9 +775628,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11021), 1, - anon_sym_COLON, - STATE(7249), 9, + ACTIONS(11297), 1, + anon_sym_SEMI, + STATE(7474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747907,7 +775640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308700] = 12, + [322106] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747928,9 +775661,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11023), 1, - anon_sym_COLON, - STATE(7250), 9, + ACTIONS(11299), 1, + anon_sym_SEMI, + STATE(7475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747940,7 +775673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308745] = 12, + [322151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747961,9 +775694,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11025), 1, - anon_sym_GT, - STATE(7251), 9, + ACTIONS(11301), 1, + sym__optional_semi, + STATE(7476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747973,7 +775706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308790] = 12, + [322196] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747994,9 +775727,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11027), 1, + ACTIONS(11303), 1, sym__optional_semi, - STATE(7252), 9, + STATE(7477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748006,7 +775739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308835] = 12, + [322241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748027,9 +775760,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11029), 1, + ACTIONS(11305), 1, anon_sym_EQ_GT, - STATE(7253), 9, + STATE(7478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748039,7 +775772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308880] = 12, + [322286] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748060,9 +775793,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11031), 1, + ACTIONS(11307), 1, anon_sym_SEMI, - STATE(7254), 9, + STATE(7479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748072,7 +775805,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308925] = 12, + [322331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748093,9 +775826,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11033), 1, - anon_sym_SEMI, - STATE(7255), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748105,7 +775871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [308970] = 12, + [322421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748126,9 +775892,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8148), 1, - anon_sym_RPAREN, - STATE(7256), 9, + ACTIONS(11313), 1, + anon_sym_EQ, + STATE(7482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748138,7 +775904,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309015] = 12, + [322466] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748159,9 +775925,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9441), 1, - anon_sym_EQ, - STATE(7257), 9, + ACTIONS(11315), 1, + aux_sym_preproc_if_token3, + STATE(7483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748171,7 +775937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309060] = 12, + [322511] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748192,9 +775958,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10365), 1, - sym_interpolation_close_brace, - STATE(7258), 9, + ACTIONS(11317), 1, + anon_sym_SEMI, + STATE(7484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748204,7 +775970,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309105] = 12, + [322556] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748225,9 +775991,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11035), 1, - anon_sym_LT, - STATE(7259), 9, + ACTIONS(7789), 1, + anon_sym_RBRACE, + STATE(7485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748237,7 +776003,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309150] = 12, + [322601] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748258,9 +776024,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11037), 1, - anon_sym_SEMI, - STATE(7260), 9, + ACTIONS(11319), 1, + anon_sym_COLON, + STATE(7486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748270,7 +776036,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309195] = 12, + [322646] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748291,9 +776057,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11039), 1, - anon_sym_SEMI, - STATE(7261), 9, + ACTIONS(11321), 1, + aux_sym_preproc_if_token3, + STATE(7487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748303,7 +776069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309240] = 12, + [322691] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748324,9 +776090,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11041), 1, + ACTIONS(11323), 1, anon_sym_SEMI, - STATE(7262), 9, + STATE(7488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748336,7 +776102,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309285] = 12, + [322736] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748357,9 +776123,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11043), 1, - aux_sym_preproc_if_token3, - STATE(7263), 9, + ACTIONS(11325), 1, + anon_sym_EQ_GT, + STATE(7489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748369,7 +776135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309330] = 12, + [322781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748390,9 +776156,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11045), 1, - anon_sym_RBRACK, - STATE(7264), 9, + ACTIONS(10654), 1, + anon_sym_RBRACE, + STATE(7490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748402,30 +776168,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309375] = 12, - ACTIONS(4730), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [322826] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - STATE(7265), 9, + ACTIONS(11327), 1, + sym_interpolation_start_quote, + STATE(7491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748435,7 +776201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309420] = 12, + [322871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748456,9 +776222,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11047), 1, + ACTIONS(11329), 1, aux_sym_preproc_if_token3, - STATE(7266), 9, + STATE(7492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748468,7 +776234,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309465] = 12, + [322916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748489,9 +776255,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11049), 1, + ACTIONS(11331), 1, anon_sym_EQ_GT, - STATE(7267), 9, + STATE(7493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748501,7 +776267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309510] = 12, + [322961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748522,9 +776288,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, - STATE(7268), 9, + ACTIONS(11333), 1, + aux_sym_preproc_if_token3, + STATE(7494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748534,7 +776300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309555] = 12, + [323006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748555,9 +776321,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11053), 1, + ACTIONS(11335), 1, sym__optional_semi, - STATE(7269), 9, + STATE(7495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748567,7 +776333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309600] = 12, + [323051] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748588,9 +776354,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11055), 1, - sym_raw_string_end, - STATE(7270), 9, + ACTIONS(11337), 1, + sym__optional_semi, + STATE(7496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748600,7 +776366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309645] = 12, + [323096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748621,9 +776387,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11057), 1, + ACTIONS(11339), 1, anon_sym_SEMI, - STATE(7271), 9, + STATE(7497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748633,7 +776399,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309690] = 12, + [323141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748654,9 +776420,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11059), 1, - anon_sym_RPAREN, - STATE(7272), 9, + ACTIONS(11341), 1, + sym__optional_semi, + STATE(7498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748666,7 +776432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309735] = 12, + [323186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748687,9 +776453,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11061), 1, - anon_sym_LPAREN, - STATE(7273), 9, + ACTIONS(11343), 1, + sym__optional_semi, + STATE(7499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748699,7 +776465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309780] = 12, + [323231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748720,9 +776486,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11063), 1, + ACTIONS(11345), 1, anon_sym_GT, - STATE(7274), 9, + STATE(7500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748732,7 +776498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309825] = 12, + [323276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748753,9 +776519,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11065), 1, - anon_sym_RPAREN, - STATE(7275), 9, + ACTIONS(11347), 1, + anon_sym_SEMI, + STATE(7501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748765,7 +776531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309870] = 12, + [323321] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748786,9 +776552,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5483), 1, - anon_sym_STAR, - STATE(7276), 9, + ACTIONS(11349), 1, + anon_sym_RBRACK, + STATE(7502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748798,7 +776564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309915] = 12, + [323366] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748819,9 +776585,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11067), 1, + ACTIONS(11351), 1, anon_sym_SEMI, - STATE(7277), 9, + STATE(7503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748831,7 +776597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [309960] = 12, + [323411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748852,9 +776618,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11069), 1, - anon_sym_SEMI, - STATE(7278), 9, + ACTIONS(11353), 1, + sym_raw_string_end, + STATE(7504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748864,7 +776630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310005] = 12, + [323456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748885,9 +776651,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11071), 1, - anon_sym_COLON, - STATE(7279), 9, + ACTIONS(11355), 1, + sym__optional_semi, + STATE(7505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748897,7 +776663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310050] = 12, + [323501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748918,9 +776684,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11073), 1, - anon_sym_RPAREN, - STATE(7280), 9, + ACTIONS(11357), 1, + sym__optional_semi, + STATE(7506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748930,7 +776696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310095] = 12, + [323546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748951,9 +776717,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11075), 1, + ACTIONS(11359), 1, anon_sym_EQ_GT, - STATE(7281), 9, + STATE(7507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748963,7 +776729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310140] = 12, + [323591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748984,9 +776750,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9378), 1, - anon_sym_EQ, - STATE(7282), 9, + ACTIONS(11361), 1, + anon_sym_GT, + STATE(7508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748996,7 +776762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310185] = 12, + [323636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749017,9 +776783,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8368), 1, - anon_sym_RPAREN, - STATE(7283), 9, + ACTIONS(11363), 1, + aux_sym_preproc_if_token3, + STATE(7509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749029,7 +776795,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310230] = 12, + [323681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749050,9 +776816,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11077), 1, - anon_sym_RPAREN, - STATE(7284), 9, + ACTIONS(10668), 1, + anon_sym_RBRACE, + STATE(7510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749062,7 +776828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310275] = 12, + [323726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749083,9 +776849,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10096), 1, - anon_sym_RBRACE, - STATE(7285), 9, + ACTIONS(11365), 1, + anon_sym_EQ_GT, + STATE(7511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749095,7 +776861,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310320] = 12, + [323771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749116,9 +776882,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11079), 1, + ACTIONS(11367), 1, sym__optional_semi, - STATE(7286), 9, + STATE(7512), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [323816] = 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(10221), 1, + aux_sym_preproc_if_token2, + STATE(7513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749128,7 +776927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310365] = 12, + [323861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749149,9 +776948,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11081), 1, + ACTIONS(11369), 1, anon_sym_GT, - STATE(7287), 9, + STATE(7514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749161,7 +776960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310410] = 12, + [323906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749182,9 +776981,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11083), 1, - anon_sym_COLON, - STATE(7288), 9, + ACTIONS(10676), 1, + anon_sym_RBRACE, + STATE(7515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749194,7 +776993,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310455] = 12, + [323951] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749215,9 +777014,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11085), 1, - anon_sym_RPAREN, - STATE(7289), 9, + ACTIONS(11371), 1, + anon_sym_EQ_GT, + STATE(7516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749227,7 +777026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310500] = 12, + [323996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749248,9 +777047,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7658), 1, - anon_sym_RBRACE, - STATE(7290), 9, + ACTIONS(11373), 1, + anon_sym_SEMI, + STATE(7517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749260,7 +777059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310545] = 12, + [324041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749281,9 +777080,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11087), 1, - sym__optional_semi, - STATE(7291), 9, + ACTIONS(4885), 1, + aux_sym_preproc_if_token3, + STATE(7518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749293,7 +777092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310590] = 12, + [324086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749314,9 +777113,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11089), 1, - sym__optional_semi, - STATE(7292), 9, + ACTIONS(10432), 1, + anon_sym_RBRACE, + STATE(7519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749326,7 +777125,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310635] = 12, + [324131] = 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(11375), 1, + aux_sym_preproc_if_token2, + STATE(7520), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [324176] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749347,9 +777179,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11091), 1, - sym__optional_semi, - STATE(7293), 9, + ACTIONS(11377), 1, + ts_builtin_sym_end, + STATE(7521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749359,7 +777191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310680] = 12, + [324221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749380,9 +777212,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11093), 1, - anon_sym_SQUOTE, - STATE(7294), 9, + ACTIONS(11379), 1, + anon_sym_EQ_GT, + STATE(7522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749392,7 +777224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310725] = 12, + [324266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749413,9 +777245,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11095), 1, - anon_sym_RPAREN, - STATE(7295), 9, + ACTIONS(11381), 1, + anon_sym_EQ_GT, + STATE(7523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749425,7 +777257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310770] = 12, + [324311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749446,9 +777278,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(7296), 9, + ACTIONS(11383), 1, + anon_sym_RPAREN, + STATE(7524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749458,7 +777290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310815] = 12, + [324356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749479,9 +777311,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11099), 1, + ACTIONS(11385), 1, anon_sym_SEMI, - STATE(7297), 9, + STATE(7525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749491,7 +777323,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310860] = 12, + [324401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749512,9 +777344,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11101), 1, - anon_sym_SEMI, - STATE(7298), 9, + ACTIONS(11387), 1, + anon_sym_RPAREN, + STATE(7526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749524,7 +777356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310905] = 12, + [324446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749545,9 +777377,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(7299), 9, + ACTIONS(11389), 1, + anon_sym_EQ_GT, + STATE(7527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749557,7 +777389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310950] = 12, + [324491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749578,9 +777410,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8150), 1, - anon_sym_RPAREN, - STATE(7300), 9, + ACTIONS(10664), 1, + anon_sym_RBRACE, + STATE(7528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749590,7 +777422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [310995] = 12, + [324536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749611,9 +777443,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11105), 1, - sym_interpolation_start_quote, - STATE(7301), 9, + ACTIONS(11391), 1, + anon_sym_EQ_GT, + STATE(7529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749623,30 +777455,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311040] = 12, - ACTIONS(8891), 1, + [324581] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11107), 1, - aux_sym_preproc_if_token2, - STATE(7302), 9, + ACTIONS(11393), 1, + anon_sym_EQ_GT, + STATE(7530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749656,7 +777488,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311085] = 12, + [324626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749677,9 +777509,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11109), 1, - anon_sym_SEMI, - STATE(7303), 9, + ACTIONS(11395), 1, + anon_sym_EQ_GT, + STATE(7531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749689,7 +777521,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311130] = 12, + [324671] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749710,9 +777542,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11111), 1, - anon_sym_EQ_GT, - STATE(7304), 9, + ACTIONS(11397), 1, + sym__optional_semi, + STATE(7532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749722,7 +777554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311175] = 12, + [324716] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749743,9 +777575,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11113), 1, - aux_sym_preproc_if_token3, - STATE(7305), 9, + ACTIONS(11399), 1, + anon_sym_EQ_GT, + STATE(7533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749755,7 +777587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311220] = 12, + [324761] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749776,9 +777608,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11115), 1, - sym_raw_string_end, - STATE(7306), 9, + ACTIONS(11401), 1, + anon_sym_while, + STATE(7534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749788,7 +777620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311265] = 12, + [324806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749809,9 +777641,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11117), 1, - anon_sym_EQ_GT, - STATE(7307), 9, + ACTIONS(11403), 1, + anon_sym_RPAREN, + STATE(7535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749821,7 +777653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311310] = 12, + [324851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749842,9 +777674,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11119), 1, - aux_sym_preproc_if_token3, - STATE(7308), 9, + ACTIONS(11405), 1, + anon_sym_EQ_GT, + STATE(7536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749854,7 +777686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311355] = 12, + [324896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749875,9 +777707,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10409), 1, - anon_sym_RBRACE, - STATE(7309), 9, + ACTIONS(11407), 1, + anon_sym_RPAREN, + STATE(7537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749887,7 +777719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311400] = 12, + [324941] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749908,9 +777740,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11121), 1, - anon_sym_EQ, - STATE(7310), 9, + ACTIONS(11409), 1, + anon_sym_EQ_GT, + STATE(7538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749920,7 +777752,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311445] = 12, + [324986] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749941,9 +777773,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(7311), 9, + ACTIONS(7280), 1, + anon_sym_RBRACE, + STATE(7539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749953,30 +777785,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311490] = 12, - ACTIONS(8891), 1, + [325031] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11125), 1, - aux_sym_preproc_if_token2, - STATE(7312), 9, + ACTIONS(11411), 1, + sym__optional_semi, + STATE(7540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749986,30 +777818,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311535] = 12, - ACTIONS(8891), 1, + [325076] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11127), 1, - aux_sym_preproc_if_token2, - STATE(7313), 9, + ACTIONS(11413), 1, + anon_sym_RPAREN, + STATE(7541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750019,7 +777851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311580] = 12, + [325121] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750040,9 +777872,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11129), 1, - anon_sym_RBRACK, - STATE(7314), 9, + ACTIONS(10923), 1, + anon_sym_in, + STATE(7542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750052,30 +777884,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311625] = 12, - ACTIONS(8891), 1, + [325166] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11131), 1, - aux_sym_preproc_if_token2, - STATE(7315), 9, + ACTIONS(10296), 1, + anon_sym_RBRACE, + STATE(7543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750085,7 +777917,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311670] = 12, + [325211] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750106,9 +777938,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11133), 1, - anon_sym_RPAREN, - STATE(7316), 9, + ACTIONS(11415), 1, + anon_sym_GT, + STATE(7544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750118,7 +777950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311715] = 12, + [325256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750139,9 +777971,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11135), 1, - sym__optional_semi, - STATE(7317), 9, + ACTIONS(11417), 1, + anon_sym_STAR, + STATE(7545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750151,7 +777983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311760] = 12, + [325301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750172,9 +778004,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11137), 1, - anon_sym_COMMA, - STATE(7318), 9, + ACTIONS(11419), 1, + anon_sym_STAR, + STATE(7546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750184,7 +778016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311805] = 12, + [325346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750205,9 +778037,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11139), 1, - anon_sym_COMMA, - STATE(7319), 9, + ACTIONS(11421), 1, + anon_sym_EQ_GT, + STATE(7547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750217,7 +778049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311850] = 12, + [325391] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750238,9 +778070,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11141), 1, - anon_sym_GT, - STATE(7320), 9, + ACTIONS(11423), 1, + anon_sym_SEMI, + STATE(7548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750250,7 +778082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311895] = 12, + [325436] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750271,9 +778103,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11143), 1, + ACTIONS(11425), 1, anon_sym_EQ_GT, - STATE(7321), 9, + STATE(7549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750283,7 +778115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [311940] = 12, + [325481] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750304,42 +778136,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(7322), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [311985] = 12, - ACTIONS(8891), 1, - aux_sym_preproc_region_token1, - ACTIONS(8893), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, - aux_sym_preproc_line_token1, - ACTIONS(8897), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, - aux_sym_preproc_error_token1, - ACTIONS(8903), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, - aux_sym_preproc_define_token1, - ACTIONS(8907), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, - sym_comment, - ACTIONS(10053), 1, - aux_sym_preproc_if_token2, - STATE(7323), 9, + ACTIONS(11427), 1, + anon_sym_DASH, + STATE(7550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750349,7 +778148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312030] = 12, + [325526] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750370,9 +778169,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11147), 1, - sym_integer_literal, - STATE(7324), 9, + ACTIONS(10436), 1, + anon_sym_RBRACE, + STATE(7551), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750382,7 +778181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312075] = 12, + [325571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750403,9 +778202,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11149), 1, - anon_sym_GT, - STATE(7325), 9, + ACTIONS(11429), 1, + anon_sym_EQ_GT, + STATE(7552), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750415,30 +778214,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312120] = 12, - ACTIONS(8891), 1, + [325616] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11151), 1, - aux_sym_preproc_if_token2, - STATE(7326), 9, + ACTIONS(11431), 1, + aux_sym_preproc_if_token3, + STATE(7553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750448,7 +778247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312165] = 12, + [325661] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750469,9 +778268,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11153), 1, - anon_sym_while, - STATE(7327), 9, + ACTIONS(11433), 1, + anon_sym_LPAREN, + STATE(7554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750481,30 +778280,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312210] = 12, - ACTIONS(8891), 1, + [325706] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11155), 1, - aux_sym_preproc_if_token2, - STATE(7328), 9, + ACTIONS(11435), 1, + anon_sym_LPAREN, + STATE(7555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750514,7 +778313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312255] = 12, + [325751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750535,9 +778334,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11157), 1, + ACTIONS(11437), 1, anon_sym_LPAREN, - STATE(7329), 9, + STATE(7556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750547,7 +778346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312300] = 12, + [325796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750568,9 +778367,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(7330), 9, + ACTIONS(11439), 1, + anon_sym_LPAREN, + STATE(7557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750580,7 +778379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312345] = 12, + [325841] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750601,9 +778400,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11161), 1, - anon_sym_EQ_GT, - STATE(7331), 9, + ACTIONS(11441), 1, + anon_sym_LPAREN, + STATE(7558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750613,7 +778412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312390] = 12, + [325886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750634,9 +778433,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11163), 1, - anon_sym_EQ_GT, - STATE(7332), 9, + ACTIONS(11443), 1, + anon_sym_LPAREN, + STATE(7559), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750646,7 +778445,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312435] = 12, + [325931] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750667,9 +778466,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11165), 1, - sym__optional_semi, - STATE(7333), 9, + ACTIONS(9653), 1, + anon_sym_COMMA, + STATE(7560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750679,7 +778478,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312480] = 12, + [325976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750700,9 +778499,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11167), 1, - anon_sym_SEMI, - STATE(7334), 9, + ACTIONS(11445), 1, + anon_sym_LPAREN, + STATE(7561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750712,7 +778511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312525] = 12, + [326021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750733,9 +778532,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(7335), 9, + ACTIONS(11447), 1, + anon_sym_RBRACE, + STATE(7562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750745,7 +778544,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312570] = 12, + [326066] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750766,9 +778565,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11171), 1, - anon_sym_SEMI, - STATE(7336), 9, + ACTIONS(11449), 1, + anon_sym_EQ_GT, + STATE(7563), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750778,7 +778577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312615] = 12, + [326111] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750799,9 +778598,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11173), 1, - sym__optional_semi, - STATE(7337), 9, + ACTIONS(11451), 1, + anon_sym_EQ_GT, + STATE(7564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750811,7 +778610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312660] = 12, + [326156] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750832,9 +778631,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11175), 1, - sym__optional_semi, - STATE(7338), 9, + ACTIONS(10933), 1, + anon_sym_LT, + STATE(7565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750844,7 +778643,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312705] = 12, + [326201] = 12, + ACTIONS(5152), 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(7566), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [326246] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750865,9 +778697,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11177), 1, - anon_sym_EQ_GT, - STATE(7339), 9, + ACTIONS(11453), 1, + anon_sym_LPAREN, + STATE(7567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750877,7 +778709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312750] = 12, + [326291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750898,9 +778730,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11179), 1, - sym__optional_semi, - STATE(7340), 9, + ACTIONS(11455), 1, + anon_sym_SEMI, + STATE(7568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750910,7 +778742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312795] = 12, + [326336] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750931,9 +778763,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11181), 1, - sym__optional_semi, - STATE(7341), 9, + ACTIONS(11457), 1, + anon_sym_SQUOTE, + STATE(7569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750943,7 +778775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312840] = 12, + [326381] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750964,9 +778796,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11183), 1, - anon_sym_LT, - STATE(7342), 9, + ACTIONS(11459), 1, + anon_sym_SEMI, + STATE(7570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750976,7 +778808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312885] = 12, + [326426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750997,9 +778829,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11185), 1, - anon_sym_EQ_GT, - STATE(7343), 9, + ACTIONS(9641), 1, + anon_sym_EQ, + STATE(7571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751009,7 +778841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312930] = 12, + [326471] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751030,9 +778862,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11187), 1, - anon_sym_EQ_GT, - STATE(7344), 9, + ACTIONS(11461), 1, + sym__optional_semi, + STATE(7572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751042,7 +778874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [312975] = 12, + [326516] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751063,9 +778895,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11189), 1, - anon_sym_SQUOTE, - STATE(7345), 9, + ACTIONS(11463), 1, + anon_sym_LT, + STATE(7573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751075,7 +778907,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313020] = 12, + [326561] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751096,9 +778928,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11191), 1, - sym__optional_semi, - STATE(7346), 9, + ACTIONS(11465), 1, + anon_sym_COMMA, + STATE(7574), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751108,7 +778940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313065] = 12, + [326606] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751129,9 +778961,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11193), 1, + ACTIONS(11467), 1, anon_sym_EQ_GT, - STATE(7347), 9, + STATE(7575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751141,7 +778973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313110] = 12, + [326651] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751162,9 +778994,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11195), 1, - anon_sym_GT, - STATE(7348), 9, + ACTIONS(11469), 1, + sym__optional_semi, + STATE(7576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751174,7 +779006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313155] = 12, + [326696] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751195,9 +779027,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11197), 1, + ACTIONS(11471), 1, + anon_sym_EQ, + STATE(7577), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [326741] = 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(11473), 1, + sym_preproc_arg, + STATE(7578), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [326786] = 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(11475), 1, anon_sym_SEMI, - STATE(7349), 9, + STATE(7579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751207,7 +779105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313200] = 12, + [326831] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751228,9 +779126,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11199), 1, - anon_sym_STAR, - STATE(7350), 9, + ACTIONS(11477), 1, + sym__optional_semi, + STATE(7580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751240,7 +779138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313245] = 12, + [326876] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751261,9 +779159,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11201), 1, - sym_raw_string_content, - STATE(7351), 9, + ACTIONS(11479), 1, + anon_sym_in, + STATE(7581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751273,7 +779171,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313290] = 12, + [326921] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751294,9 +779192,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11203), 1, - sym_interpolation_start_quote, - STATE(7352), 9, + ACTIONS(11481), 1, + anon_sym_LT, + STATE(7582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751306,7 +779204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313335] = 12, + [326966] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751327,9 +779225,108 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9368), 1, + ACTIONS(11483), 1, anon_sym_COMMA, - STATE(7353), 9, + STATE(7583), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [327011] = 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(11485), 1, + sym__optional_semi, + STATE(7584), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [327056] = 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(11487), 1, + sym__optional_semi, + STATE(7585), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [327101] = 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(11489), 1, + sym__optional_semi, + STATE(7586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751339,7 +779336,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313380] = 12, + [327146] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751360,9 +779357,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7582), 1, - anon_sym_RBRACE, - STATE(7354), 9, + ACTIONS(11491), 1, + anon_sym_EQ_GT, + STATE(7587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751372,30 +779369,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313425] = 12, - ACTIONS(3), 1, + [327191] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11205), 1, - sym__optional_semi, - STATE(7355), 9, + ACTIONS(11493), 1, + sym_preproc_arg, + STATE(7588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751405,7 +779402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313470] = 12, + [327236] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751426,9 +779423,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11207), 1, - sym_interpolation_start_quote, - STATE(7356), 9, + ACTIONS(11495), 1, + anon_sym_LPAREN, + STATE(7589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751438,7 +779435,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313515] = 12, + [327281] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751459,9 +779456,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10591), 1, - anon_sym_LT, - STATE(7357), 9, + ACTIONS(11497), 1, + anon_sym_GT, + STATE(7590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751471,7 +779468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313560] = 12, + [327326] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751492,9 +779489,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11209), 1, - anon_sym_SEMI, - STATE(7358), 9, + ACTIONS(11499), 1, + anon_sym_LPAREN, + STATE(7591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751504,7 +779501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313605] = 12, + [327371] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751525,9 +779522,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11211), 1, - anon_sym_SQUOTE, - STATE(7359), 9, + ACTIONS(11501), 1, + anon_sym_LPAREN, + STATE(7592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751537,7 +779534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313650] = 12, + [327416] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751558,9 +779555,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11213), 1, - sym__optional_semi, - STATE(7360), 9, + ACTIONS(11503), 1, + anon_sym_LPAREN, + STATE(7593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751570,7 +779567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313695] = 12, + [327461] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751591,9 +779588,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11215), 1, - anon_sym_SEMI, - STATE(7361), 9, + ACTIONS(11505), 1, + anon_sym_LPAREN, + STATE(7594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751603,7 +779600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313740] = 12, + [327506] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751624,9 +779621,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11217), 1, - sym_raw_string_end, - STATE(7362), 9, + ACTIONS(11507), 1, + anon_sym_LPAREN, + STATE(7595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751636,7 +779633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313785] = 12, + [327551] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751657,9 +779654,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11219), 1, - anon_sym_DASH, - STATE(7363), 9, + ACTIONS(11509), 1, + anon_sym_LPAREN, + STATE(7596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751669,7 +779666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313830] = 12, + [327596] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751690,9 +779687,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(7364), 9, + ACTIONS(11511), 1, + anon_sym_LPAREN, + STATE(7597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751702,7 +779699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313875] = 12, + [327641] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751723,9 +779720,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10010), 1, - anon_sym_RBRACE, - STATE(7365), 9, + ACTIONS(11513), 1, + anon_sym_EQ_GT, + STATE(7598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751735,7 +779732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313920] = 12, + [327686] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751756,9 +779753,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11223), 1, - anon_sym_EQ_GT, - STATE(7366), 9, + ACTIONS(11515), 1, + anon_sym_LPAREN, + STATE(7599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751768,7 +779765,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [313965] = 12, + [327731] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751789,9 +779786,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11225), 1, - anon_sym_EQ_GT, - STATE(7367), 9, + ACTIONS(11517), 1, + anon_sym_DOT, + STATE(7600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751801,7 +779798,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314010] = 12, + [327776] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751822,9 +779819,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11227), 1, + ACTIONS(11519), 1, sym__optional_semi, - STATE(7368), 9, + STATE(7601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751834,30 +779831,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314055] = 12, - ACTIONS(3), 1, + [327821] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11229), 1, - sym__optional_semi, - STATE(7369), 9, + ACTIONS(11521), 1, + aux_sym_preproc_if_token2, + STATE(7602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751867,7 +779864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314100] = 12, + [327866] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751888,9 +779885,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11231), 1, - anon_sym_STAR, - STATE(7370), 9, + ACTIONS(11523), 1, + anon_sym_SEMI, + STATE(7603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751900,7 +779897,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314145] = 12, + [327911] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751921,9 +779918,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11233), 1, - anon_sym_LPAREN, - STATE(7371), 9, + ACTIONS(11525), 1, + aux_sym_preproc_if_token3, + STATE(7604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751933,7 +779930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314190] = 12, + [327956] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751954,9 +779951,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11235), 1, - anon_sym_LPAREN, - STATE(7372), 9, + ACTIONS(11527), 1, + anon_sym_RBRACE, + STATE(7605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751966,7 +779963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314235] = 12, + [328001] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751987,9 +779984,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11237), 1, - anon_sym_LPAREN, - STATE(7373), 9, + ACTIONS(11529), 1, + sym__optional_semi, + STATE(7606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751999,7 +779996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314280] = 12, + [328046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752020,9 +780017,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11239), 1, - anon_sym_LPAREN, - STATE(7374), 9, + ACTIONS(11531), 1, + anon_sym_SEMI, + STATE(7607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752032,7 +780029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314325] = 12, + [328091] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752053,9 +780050,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11241), 1, - anon_sym_LPAREN, - STATE(7375), 9, + ACTIONS(11533), 1, + anon_sym_LT, + STATE(7608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752065,7 +780062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314370] = 12, + [328136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752086,9 +780083,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11243), 1, - anon_sym_LPAREN, - STATE(7376), 9, + ACTIONS(11535), 1, + anon_sym_GT, + STATE(7609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752098,7 +780095,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314415] = 12, + [328181] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752119,9 +780116,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11245), 1, - anon_sym_LPAREN, - STATE(7377), 9, + ACTIONS(11537), 1, + sym__optional_semi, + STATE(7610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752131,7 +780128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314460] = 12, + [328226] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752152,9 +780149,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11247), 1, - anon_sym_EQ_GT, - STATE(7378), 9, + ACTIONS(11539), 1, + anon_sym_SQUOTE, + STATE(7611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752164,7 +780161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314505] = 12, + [328271] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752185,9 +780182,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11249), 1, - anon_sym_LPAREN, - STATE(7379), 9, + ACTIONS(11541), 1, + anon_sym_SEMI, + STATE(7612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752197,7 +780194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314550] = 12, + [328316] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752218,9 +780215,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11251), 1, - anon_sym_EQ_GT, - STATE(7380), 9, + ACTIONS(11543), 1, + anon_sym_SEMI, + STATE(7613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752230,7 +780227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314595] = 12, + [328361] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752251,9 +780248,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11253), 1, - anon_sym_SEMI, - STATE(7381), 9, + ACTIONS(8356), 1, + anon_sym_RPAREN, + STATE(7614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752263,7 +780260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314640] = 12, + [328406] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752284,9 +780281,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(7382), 9, + ACTIONS(8555), 1, + anon_sym_RPAREN, + STATE(7615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752296,7 +780293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314685] = 12, + [328451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752317,9 +780314,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11257), 1, - anon_sym_EQ_GT, - STATE(7383), 9, + ACTIONS(11545), 1, + sym__optional_semi, + STATE(7616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752329,7 +780326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314730] = 12, + [328496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752350,9 +780347,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11259), 1, - anon_sym_SEMI, - STATE(7384), 9, + ACTIONS(11547), 1, + anon_sym_RPAREN, + STATE(7617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752362,30 +780359,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314775] = 12, - ACTIONS(8891), 1, + [328541] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11261), 1, - sym_preproc_arg, - STATE(7385), 9, + ACTIONS(11549), 1, + anon_sym_SEMI, + STATE(7618), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752395,7 +780392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314820] = 12, + [328586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752416,9 +780413,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11263), 1, - sym__optional_semi, - STATE(7386), 9, + ACTIONS(11551), 1, + anon_sym_EQ_GT, + STATE(7619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752428,7 +780425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314865] = 12, + [328631] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752449,9 +780446,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11265), 1, - anon_sym_SEMI, - STATE(7387), 9, + ACTIONS(11553), 1, + sym_interpolation_close_brace, + STATE(7620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752461,7 +780458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314910] = 12, + [328676] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752482,9 +780479,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9443), 1, - anon_sym_EQ, - STATE(7388), 9, + ACTIONS(11555), 1, + anon_sym_LPAREN, + STATE(7621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752494,7 +780491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [314955] = 12, + [328721] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752515,9 +780512,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11267), 1, - anon_sym_LT, - STATE(7389), 9, + ACTIONS(11557), 1, + anon_sym_LPAREN, + STATE(7622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752527,7 +780524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315000] = 12, + [328766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752548,9 +780545,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11269), 1, - anon_sym_COLON, - STATE(7390), 9, + ACTIONS(11559), 1, + anon_sym_LPAREN, + STATE(7623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752560,7 +780557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315045] = 12, + [328811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752581,9 +780578,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11271), 1, - anon_sym_GT, - STATE(7391), 9, + ACTIONS(11561), 1, + anon_sym_LPAREN, + STATE(7624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752593,7 +780590,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315090] = 12, + [328856] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752614,9 +780611,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(7392), 9, + ACTIONS(11563), 1, + anon_sym_LPAREN, + STATE(7625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752626,7 +780623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315135] = 12, + [328901] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752647,9 +780644,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11275), 1, - anon_sym_EQ, - STATE(7393), 9, + ACTIONS(3667), 1, + anon_sym_EQ_GT, + STATE(7626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752659,7 +780656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315180] = 12, + [328946] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752680,9 +780677,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11277), 1, - anon_sym_EQ_GT, - STATE(7394), 9, + ACTIONS(11565), 1, + anon_sym_LPAREN, + STATE(7627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752692,7 +780689,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315225] = 12, + [328991] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752713,9 +780710,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11279), 1, - anon_sym_SEMI, - STATE(7395), 9, + ACTIONS(8728), 1, + anon_sym_RPAREN, + STATE(7628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752725,7 +780722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315270] = 12, + [329036] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752746,9 +780743,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11281), 1, - anon_sym_SEMI, - STATE(7396), 9, + ACTIONS(11567), 1, + sym_interpolation_start_quote, + STATE(7629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752758,7 +780755,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315315] = 12, + [329081] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752779,9 +780776,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11283), 1, - anon_sym_SEMI, - STATE(7397), 9, + ACTIONS(11569), 1, + sym_interpolation_start_quote, + STATE(7630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752791,7 +780788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315360] = 12, + [329126] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752812,9 +780809,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11285), 1, - anon_sym_SEMI, - STATE(7398), 9, + ACTIONS(11571), 1, + sym__optional_semi, + STATE(7631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752824,7 +780821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315405] = 12, + [329171] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752845,9 +780842,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9969), 1, - anon_sym_RBRACE, - STATE(7399), 9, + ACTIONS(11573), 1, + anon_sym_RBRACK, + STATE(7632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752857,30 +780854,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315450] = 12, - ACTIONS(4847), 1, - aux_sym_preproc_if_token2, - ACTIONS(8891), 1, + [329216] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - STATE(7400), 9, + ACTIONS(11575), 1, + anon_sym_RPAREN, + STATE(7633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752890,7 +780887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315495] = 12, + [329261] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752911,9 +780908,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11287), 1, + ACTIONS(11577), 1, sym__optional_semi, - STATE(7401), 9, + STATE(7634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752923,7 +780920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315540] = 12, + [329306] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752944,9 +780941,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11289), 1, - anon_sym_RPAREN, - STATE(7402), 9, + ACTIONS(11579), 1, + anon_sym_LT, + STATE(7635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752956,7 +780953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315585] = 12, + [329351] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752977,9 +780974,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11291), 1, - anon_sym_SEMI, - STATE(7403), 9, + ACTIONS(11581), 1, + anon_sym_EQ_GT, + STATE(7636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752989,7 +780986,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315630] = 12, + [329396] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753010,9 +781007,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11293), 1, - anon_sym_RPAREN, - STATE(7404), 9, + ACTIONS(11583), 1, + anon_sym_LPAREN, + STATE(7637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753022,7 +781019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315675] = 12, + [329441] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753043,9 +781040,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11295), 1, - anon_sym_RPAREN, - STATE(7405), 9, + ACTIONS(11585), 1, + anon_sym_SEMI, + STATE(7638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753055,7 +781052,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315720] = 12, + [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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [329531] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753076,9 +781106,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11297), 1, + ACTIONS(11589), 1, + anon_sym_EQ_GT, + STATE(7640), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [329576] = 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(11591), 1, anon_sym_SEMI, - STATE(7406), 9, + STATE(7641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753088,7 +781151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315765] = 12, + [329621] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753109,9 +781172,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11299), 1, - anon_sym_LPAREN, - STATE(7407), 9, + ACTIONS(11593), 1, + anon_sym_LT, + STATE(7642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753121,7 +781184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315810] = 12, + [329666] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753142,9 +781205,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11301), 1, - anon_sym_LPAREN, - STATE(7408), 9, + ACTIONS(11595), 1, + sym__optional_semi, + STATE(7643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753154,7 +781217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315855] = 12, + [329711] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753175,9 +781238,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11303), 1, + ACTIONS(11597), 1, anon_sym_LPAREN, - STATE(7409), 9, + STATE(7644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753187,7 +781250,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315900] = 12, + [329756] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753208,9 +781271,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(11599), 1, anon_sym_LPAREN, - STATE(7410), 9, + STATE(7645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753220,7 +781283,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315945] = 12, + [329801] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753241,9 +781304,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11307), 1, + ACTIONS(11601), 1, anon_sym_LPAREN, - STATE(7411), 9, + STATE(7646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753253,7 +781316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [315990] = 12, + [329846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753274,9 +781337,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11309), 1, - anon_sym_LPAREN, - STATE(7412), 9, + ACTIONS(11603), 1, + anon_sym_SEMI, + STATE(7647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753286,7 +781349,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316035] = 12, + [329891] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753307,9 +781370,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11311), 1, - anon_sym_LPAREN, - STATE(7413), 9, + ACTIONS(11605), 1, + anon_sym_COLON, + STATE(7648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753319,7 +781382,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316080] = 12, + [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, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [329981] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753340,9 +781436,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11313), 1, - sym_interpolation_start_quote, - STATE(7414), 9, + ACTIONS(11609), 1, + anon_sym_SEMI, + STATE(7650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753352,7 +781448,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316125] = 12, + [330026] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753373,9 +781469,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11315), 1, - anon_sym_LPAREN, - STATE(7415), 9, + ACTIONS(11611), 1, + anon_sym_LT, + STATE(7651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753385,7 +781481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316170] = 12, + [330071] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753406,9 +781502,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10172), 1, + ACTIONS(10138), 1, anon_sym_RBRACE, - STATE(7416), 9, + STATE(7652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753418,7 +781514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316215] = 12, + [330116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753439,9 +781535,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11317), 1, - anon_sym_RPAREN, - STATE(7417), 9, + ACTIONS(11613), 1, + anon_sym_EQ_GT, + STATE(7653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753451,7 +781547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316260] = 12, + [330161] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753472,9 +781568,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11319), 1, - sym__optional_semi, - STATE(7418), 9, + 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753484,7 +781613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316305] = 12, + [330251] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753505,9 +781634,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11321), 1, - sym_interpolation_close_brace, - STATE(7419), 9, + ACTIONS(11619), 1, + anon_sym_RBRACK, + STATE(7656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753517,7 +781646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316350] = 12, + [330296] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753538,9 +781667,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11323), 1, - ts_builtin_sym_end, - STATE(7420), 9, + ACTIONS(11621), 1, + anon_sym_SEMI, + STATE(7657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753550,7 +781679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316395] = 12, + [330341] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753571,9 +781700,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11325), 1, - sym_interpolation_start_quote, - STATE(7421), 9, + ACTIONS(11623), 1, + anon_sym_GT, + STATE(7658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753583,7 +781712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316440] = 12, + [330386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753604,9 +781733,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11327), 1, - anon_sym_LT, - STATE(7422), 9, + ACTIONS(11625), 1, + anon_sym_SEMI, + STATE(7659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753616,7 +781745,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316485] = 12, + [330431] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753637,9 +781766,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11329), 1, - anon_sym_STAR, - STATE(7423), 9, + ACTIONS(11627), 1, + sym_raw_string_content, + STATE(7660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753649,7 +781778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316530] = 12, + [330476] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753670,9 +781799,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11331), 1, - anon_sym_RPAREN, - STATE(7424), 9, + ACTIONS(11629), 1, + sym__optional_semi, + STATE(7661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753682,7 +781811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316575] = 12, + [330521] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753703,9 +781832,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11333), 1, - sym_raw_string_content, - STATE(7425), 9, + ACTIONS(11631), 1, + anon_sym_STAR, + STATE(7662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753715,7 +781844,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316620] = 12, + [330566] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753736,9 +781865,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11335), 1, - anon_sym_COMMA, - STATE(7426), 9, + ACTIONS(5619), 1, + anon_sym_STAR, + STATE(7663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753748,7 +781877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316665] = 12, + [330611] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753769,9 +781898,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(7427), 9, + ACTIONS(11633), 1, + anon_sym_LT, + STATE(7664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753781,7 +781910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316710] = 12, + [330656] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753802,9 +781931,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11339), 1, - anon_sym_in, - STATE(7428), 9, + ACTIONS(11635), 1, + anon_sym_SEMI, + STATE(7665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753814,7 +781943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316755] = 12, + [330701] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753835,9 +781964,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11341), 1, + ACTIONS(11637), 1, anon_sym_GT, - STATE(7429), 9, + STATE(7666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753847,7 +781976,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316800] = 12, + [330746] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753868,9 +781997,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11343), 1, - anon_sym_SEMI, - STATE(7430), 9, + ACTIONS(11639), 1, + anon_sym_RPAREN, + STATE(7667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753880,7 +782009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316845] = 12, + [330791] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753901,9 +782030,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11345), 1, - anon_sym_RPAREN, - STATE(7431), 9, + ACTIONS(11641), 1, + anon_sym_SEMI, + STATE(7668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753913,7 +782042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316890] = 12, + [330836] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753934,9 +782063,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11347), 1, - aux_sym_preproc_if_token3, - STATE(7432), 9, + ACTIONS(8354), 1, + anon_sym_RPAREN, + STATE(7669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753946,7 +782075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316935] = 12, + [330881] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753967,9 +782096,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11349), 1, - aux_sym_preproc_if_token3, - STATE(7433), 9, + ACTIONS(11643), 1, + anon_sym_SEMI, + STATE(7670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753979,7 +782108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [316980] = 12, + [330926] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754000,9 +782129,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11351), 1, - anon_sym_EQ_GT, - STATE(7434), 9, + ACTIONS(11645), 1, + anon_sym_SEMI, + STATE(7671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754012,7 +782141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317025] = 12, + [330971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754033,9 +782162,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11353), 1, - aux_sym_preproc_if_token3, - STATE(7435), 9, + ACTIONS(11647), 1, + sym__optional_semi, + STATE(7672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754045,7 +782174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317070] = 12, + [331016] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754066,9 +782195,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11355), 1, - anon_sym_LPAREN, - STATE(7436), 9, + ACTIONS(11649), 1, + aux_sym_preproc_if_token3, + STATE(7673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754078,7 +782207,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317115] = 12, + [331061] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754099,9 +782228,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11357), 1, - anon_sym_LPAREN, - STATE(7437), 9, + ACTIONS(11651), 1, + anon_sym_EQ_GT, + STATE(7674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754111,7 +782240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317160] = 12, + [331106] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754132,9 +782261,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11359), 1, + ACTIONS(11653), 1, anon_sym_LPAREN, - STATE(7438), 9, + STATE(7675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754144,7 +782273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317205] = 12, + [331151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754165,9 +782294,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11361), 1, - anon_sym_LPAREN, - STATE(7439), 9, + ACTIONS(11655), 1, + anon_sym_LT, + STATE(7676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754177,7 +782306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317250] = 12, + [331196] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754198,9 +782327,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11363), 1, - anon_sym_LPAREN, - STATE(7440), 9, + ACTIONS(11657), 1, + aux_sym_preproc_if_token3, + STATE(7677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754210,7 +782339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317295] = 12, + [331241] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754231,9 +782360,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10453), 1, - anon_sym_RBRACE, - STATE(7441), 9, + ACTIONS(11659), 1, + aux_sym_preproc_if_token3, + STATE(7678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754243,7 +782372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317340] = 12, + [331286] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754264,9 +782393,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9519), 1, - anon_sym_STAR, - STATE(7442), 9, + ACTIONS(11661), 1, + anon_sym_SEMI, + STATE(7679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754276,7 +782405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317385] = 12, + [331331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754297,9 +782426,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11365), 1, + ACTIONS(7745), 1, anon_sym_SEMI, - STATE(7443), 9, + STATE(7680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754309,30 +782438,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317430] = 12, - ACTIONS(3), 1, + [331376] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11367), 1, - anon_sym_LPAREN, - STATE(7444), 9, + ACTIONS(11663), 1, + sym_preproc_arg, + STATE(7681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754342,7 +782471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317475] = 12, + [331421] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754363,9 +782492,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11369), 1, - anon_sym_SEMI, - STATE(7445), 9, + ACTIONS(11665), 1, + aux_sym_preproc_if_token3, + STATE(7682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754375,7 +782504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317520] = 12, + [331466] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754396,9 +782525,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11371), 1, - anon_sym_LT, - STATE(7446), 9, + ACTIONS(11667), 1, + aux_sym_preproc_if_token3, + STATE(7683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754408,7 +782537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317565] = 12, + [331511] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754429,9 +782558,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11373), 1, + ACTIONS(11669), 1, anon_sym_EQ_GT, - STATE(7447), 9, + STATE(7684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754441,7 +782570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317610] = 12, + [331556] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754462,9 +782591,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11375), 1, - anon_sym_LPAREN, - STATE(7448), 9, + ACTIONS(11671), 1, + anon_sym_SEMI, + STATE(7685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754474,7 +782603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317655] = 12, + [331601] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754495,9 +782624,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11377), 1, - anon_sym_GT, - STATE(7449), 9, + ACTIONS(11673), 1, + anon_sym_SEMI, + STATE(7686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754507,7 +782636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317700] = 12, + [331646] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754528,9 +782657,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11379), 1, - anon_sym_RPAREN, - STATE(7450), 9, + ACTIONS(11675), 1, + sym__optional_semi, + STATE(7687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754540,7 +782669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317745] = 12, + [331691] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754561,9 +782690,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11381), 1, - aux_sym_preproc_if_token3, - STATE(7451), 9, + ACTIONS(11677), 1, + anon_sym_GT, + STATE(7688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754573,7 +782702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317790] = 12, + [331736] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754594,9 +782723,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11383), 1, + ACTIONS(11679), 1, anon_sym_SEMI, - STATE(7452), 9, + STATE(7689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754606,7 +782735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317835] = 12, + [331781] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754627,9 +782756,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11385), 1, - anon_sym_STAR, - STATE(7453), 9, + ACTIONS(11681), 1, + anon_sym_RPAREN, + STATE(7690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754639,7 +782768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317880] = 12, + [331826] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754660,9 +782789,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11387), 1, - anon_sym_LPAREN, - STATE(7454), 9, + ACTIONS(11683), 1, + sym__optional_semi, + STATE(7691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754672,7 +782801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317925] = 12, + [331871] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754693,9 +782822,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11389), 1, + ACTIONS(11685), 1, anon_sym_LPAREN, - STATE(7455), 9, + STATE(7692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754705,7 +782834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [317970] = 12, + [331916] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754726,9 +782855,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11391), 1, - anon_sym_LPAREN, - STATE(7456), 9, + ACTIONS(11687), 1, + anon_sym_STAR, + STATE(7693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754738,7 +782867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318015] = 12, + [331961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754759,9 +782888,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11393), 1, - anon_sym_LPAREN, - STATE(7457), 9, + ACTIONS(11689), 1, + anon_sym_RPAREN, + STATE(7694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754771,7 +782900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318060] = 12, + [332006] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754792,9 +782921,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11395), 1, - anon_sym_RBRACK, - STATE(7458), 9, + ACTIONS(11691), 1, + anon_sym_EQ_GT, + STATE(7695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754804,7 +782933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318105] = 12, + [332051] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754825,9 +782954,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11397), 1, - anon_sym_GT, - STATE(7459), 9, + ACTIONS(10756), 1, + anon_sym_RBRACE, + STATE(7696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754837,7 +782966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318150] = 12, + [332096] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754858,9 +782987,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11399), 1, - anon_sym_LPAREN, - STATE(7460), 9, + ACTIONS(11693), 1, + sym_interpolation_close_brace, + STATE(7697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754870,7 +782999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318195] = 12, + [332141] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754891,9 +783020,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11401), 1, - anon_sym_LPAREN, - STATE(7461), 9, + ACTIONS(11695), 1, + anon_sym_RBRACK, + STATE(7698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754903,7 +783032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318240] = 12, + [332186] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754924,9 +783053,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11403), 1, - anon_sym_EQ_GT, - STATE(7462), 9, + ACTIONS(11697), 1, + anon_sym_SEMI, + STATE(7699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754936,7 +783065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318285] = 12, + [332231] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754957,9 +783086,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11405), 1, - anon_sym_LT, - STATE(7463), 9, + ACTIONS(11699), 1, + sym__optional_semi, + STATE(7700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754969,7 +783098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318330] = 12, + [332276] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754990,9 +783119,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11407), 1, + ACTIONS(11701), 1, anon_sym_EQ_GT, - STATE(7464), 9, + STATE(7701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755002,7 +783131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318375] = 12, + [332321] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755023,9 +783152,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11409), 1, - sym__optional_semi, - STATE(7465), 9, + ACTIONS(11703), 1, + anon_sym_RPAREN, + STATE(7702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755035,7 +783164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318420] = 12, + [332366] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755056,9 +783185,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10605), 1, - anon_sym_in, - STATE(7466), 9, + ACTIONS(11705), 1, + anon_sym_EQ_GT, + STATE(7703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755068,7 +783197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318465] = 12, + [332411] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755089,9 +783218,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(7467), 9, + ACTIONS(11707), 1, + anon_sym_STAR, + STATE(7704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755101,7 +783230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318510] = 12, + [332456] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755122,9 +783251,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11413), 1, - sym__optional_semi, - STATE(7468), 9, + ACTIONS(11709), 1, + aux_sym_preproc_if_token3, + STATE(7705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755134,7 +783263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318555] = 12, + [332501] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755155,9 +783284,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11415), 1, - aux_sym_preproc_if_token3, - STATE(7469), 9, + ACTIONS(11711), 1, + anon_sym_LPAREN, + STATE(7706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755167,7 +783296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318600] = 12, + [332546] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755188,9 +783317,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11417), 1, - anon_sym_SEMI, - STATE(7470), 9, + ACTIONS(11713), 1, + anon_sym_RPAREN, + STATE(7707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755200,7 +783329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318645] = 12, + [332591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755221,9 +783350,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11419), 1, - anon_sym_LPAREN, - STATE(7471), 9, + ACTIONS(11715), 1, + anon_sym_SEMI, + STATE(7708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755233,7 +783362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318690] = 12, + [332636] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755254,9 +783383,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3617), 1, - anon_sym_EQ_GT, - STATE(7472), 9, + ACTIONS(11717), 1, + anon_sym_SEMI, + STATE(7709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755266,7 +783395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318735] = 12, + [332681] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755287,9 +783416,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11421), 1, - anon_sym_LPAREN, - STATE(7473), 9, + ACTIONS(11719), 1, + anon_sym_COMMA, + STATE(7710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755299,7 +783428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318780] = 12, + [332726] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755320,9 +783449,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11423), 1, - anon_sym_RPAREN, - STATE(7474), 9, + ACTIONS(11721), 1, + anon_sym_LPAREN, + STATE(7711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755332,7 +783461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318825] = 12, + [332771] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755353,9 +783482,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11425), 1, - sym_raw_string_end, - STATE(7475), 9, + ACTIONS(11723), 1, + sym_integer_literal, + STATE(7712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755365,7 +783494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318870] = 12, + [332816] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755386,9 +783515,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11427), 1, - anon_sym_LT, - STATE(7476), 9, + ACTIONS(11725), 1, + anon_sym_GT, + STATE(7713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755398,7 +783527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318915] = 12, + [332861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755419,9 +783548,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11429), 1, - anon_sym_SEMI, - STATE(7477), 9, + ACTIONS(11727), 1, + aux_sym_preproc_if_token3, + STATE(7714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755431,7 +783560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [318960] = 12, + [332906] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755452,9 +783581,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(7478), 9, + ACTIONS(11729), 1, + anon_sym_RBRACE, + STATE(7715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755464,30 +783593,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319005] = 12, - ACTIONS(3), 1, + [332951] = 12, + ACTIONS(4892), 1, + aux_sym_preproc_if_token2, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11433), 1, - sym__optional_semi, - STATE(7479), 9, + STATE(7716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755497,7 +783626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319050] = 12, + [332996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755518,9 +783647,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11435), 1, - sym__optional_semi, - STATE(7480), 9, + ACTIONS(11731), 1, + anon_sym_STAR, + STATE(7717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755530,7 +783659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319095] = 12, + [333041] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755551,9 +783680,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11437), 1, - sym__optional_semi, - STATE(7481), 9, + ACTIONS(11733), 1, + anon_sym_SEMI, + STATE(7718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755563,7 +783692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319140] = 12, + [333086] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755584,9 +783713,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8422), 1, + ACTIONS(11735), 1, anon_sym_RPAREN, - STATE(7482), 9, + STATE(7719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755596,7 +783725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319185] = 12, + [333131] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755617,9 +783746,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11439), 1, - anon_sym_EQ_GT, - STATE(7483), 9, + ACTIONS(11737), 1, + anon_sym_RPAREN, + STATE(7720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755629,7 +783758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319230] = 12, + [333176] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755650,9 +783779,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9886), 1, - anon_sym_RBRACE, - STATE(7484), 9, + ACTIONS(11739), 1, + anon_sym_EQ_GT, + STATE(7721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755662,7 +783791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319275] = 12, + [333221] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755683,9 +783812,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(7485), 9, + ACTIONS(11741), 1, + anon_sym_EQ_GT, + STATE(7722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755695,7 +783824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319320] = 12, + [333266] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755716,9 +783845,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11443), 1, - aux_sym_preproc_if_token3, - STATE(7486), 9, + ACTIONS(11743), 1, + anon_sym_GT, + STATE(7723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755728,7 +783857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319365] = 12, + [333311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755749,9 +783878,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11445), 1, - anon_sym_EQ_GT, - STATE(7487), 9, + ACTIONS(11745), 1, + sym_interpolation_start_quote, + STATE(7724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755761,7 +783890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319410] = 12, + [333356] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755782,9 +783911,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11447), 1, - anon_sym_LT, - STATE(7488), 9, + ACTIONS(11747), 1, + sym_interpolation_start_quote, + STATE(7725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755794,7 +783923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319455] = 12, + [333401] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755815,9 +783944,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11449), 1, - anon_sym_LPAREN, - STATE(7489), 9, + ACTIONS(11749), 1, + anon_sym_EQ_GT, + STATE(7726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755827,7 +783956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319500] = 12, + [333446] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755848,9 +783977,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(7490), 9, + ACTIONS(11751), 1, + aux_sym_preproc_if_token3, + STATE(7727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755860,7 +783989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319545] = 12, + [333491] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755881,9 +784010,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11453), 1, - anon_sym_GT, - STATE(7491), 9, + ACTIONS(11753), 1, + sym_interpolation_start_quote, + STATE(7728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755893,7 +784022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319590] = 12, + [333536] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755914,9 +784043,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11455), 1, - sym_integer_literal, - STATE(7492), 9, + ACTIONS(11755), 1, + anon_sym_SQUOTE, + STATE(7729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755926,7 +784055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319635] = 12, + [333581] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755947,9 +784076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11457), 1, - anon_sym_STAR, - STATE(7493), 9, + ACTIONS(11757), 1, + anon_sym_RPAREN, + STATE(7730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755959,7 +784088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319680] = 12, + [333626] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755980,9 +784109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11459), 1, - anon_sym_LT, - STATE(7494), 9, + ACTIONS(11759), 1, + sym_raw_string_content, + STATE(7731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755992,7 +784121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319725] = 12, + [333671] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756013,9 +784142,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11461), 1, - anon_sym_SEMI, - STATE(7495), 9, + ACTIONS(11761), 1, + sym__optional_semi, + STATE(7732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756025,7 +784154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319770] = 12, + [333716] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756046,9 +784175,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11463), 1, - anon_sym_SEMI, - STATE(7496), 9, + ACTIONS(10783), 1, + anon_sym_RBRACE, + STATE(7733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756058,7 +784187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319815] = 12, + [333761] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756079,9 +784208,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11465), 1, - anon_sym_GT, - STATE(7497), 9, + ACTIONS(11763), 1, + anon_sym_SEMI, + STATE(7734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756091,7 +784220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319860] = 12, + [333806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756112,9 +784241,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11467), 1, - sym_interpolation_start_quote, - STATE(7498), 9, + ACTIONS(11765), 1, + aux_sym_preproc_if_token3, + STATE(7735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756124,7 +784253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319905] = 12, + [333851] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756145,9 +784274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11469), 1, - anon_sym_EQ_GT, - STATE(7499), 9, + ACTIONS(11767), 1, + sym_integer_literal, + STATE(7736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756157,7 +784286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319950] = 12, + [333896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756178,9 +784307,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11471), 1, - sym__optional_semi, - STATE(7500), 9, + ACTIONS(11769), 1, + anon_sym_GT, + STATE(7737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756190,7 +784319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [319995] = 12, + [333941] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756211,9 +784340,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11473), 1, - sym_raw_string_content, - STATE(7501), 9, + ACTIONS(11771), 1, + anon_sym_RBRACK, + STATE(7738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756223,7 +784352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320040] = 12, + [333986] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756244,9 +784373,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11475), 1, - sym_interpolation_start_quote, - STATE(7502), 9, + ACTIONS(11773), 1, + sym_raw_string_end, + STATE(7739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756256,7 +784385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320085] = 12, + [334031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756277,9 +784406,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11477), 1, + ACTIONS(11775), 1, sym_interpolation_start_quote, - STATE(7503), 9, + STATE(7740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756289,7 +784418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320130] = 12, + [334076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756310,9 +784439,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11479), 1, - sym_interpolation_start_quote, - STATE(7504), 9, + ACTIONS(11777), 1, + aux_sym_preproc_if_token3, + STATE(7741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756322,7 +784451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320175] = 12, + [334121] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756343,9 +784472,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10517), 1, - anon_sym_RBRACE, - STATE(7505), 9, + ACTIONS(11779), 1, + anon_sym_SEMI, + STATE(7742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756355,7 +784484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320220] = 12, + [334166] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756376,9 +784505,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11481), 1, - anon_sym_SEMI, - STATE(7506), 9, + ACTIONS(11781), 1, + anon_sym_COMMA, + STATE(7743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756388,7 +784517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320265] = 12, + [334211] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756409,9 +784538,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11483), 1, - sym__optional_semi, - STATE(7507), 9, + ACTIONS(11783), 1, + aux_sym_preproc_if_token3, + STATE(7744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756421,7 +784550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320310] = 12, + [334256] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756442,9 +784571,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11485), 1, - aux_sym_preproc_if_token3, - STATE(7508), 9, + ACTIONS(11785), 1, + anon_sym_STAR, + STATE(7745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756454,30 +784583,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320355] = 12, - ACTIONS(8891), 1, + [334301] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11487), 1, - sym_preproc_arg, - STATE(7509), 9, + ACTIONS(11787), 1, + anon_sym_RPAREN, + STATE(7746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756487,7 +784616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320400] = 12, + [334346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756508,9 +784637,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7624), 1, - anon_sym_RBRACE, - STATE(7510), 9, + ACTIONS(11789), 1, + aux_sym_preproc_if_token3, + STATE(7747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756520,7 +784649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320445] = 12, + [334391] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756541,9 +784670,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11489), 1, - anon_sym_EQ_GT, - STATE(7511), 9, + ACTIONS(11791), 1, + anon_sym_LPAREN, + STATE(7748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756553,7 +784682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320490] = 12, + [334436] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756574,9 +784703,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11491), 1, + ACTIONS(11793), 1, anon_sym_STAR, - STATE(7512), 9, + STATE(7749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756586,7 +784715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320535] = 12, + [334481] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756607,9 +784736,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11493), 1, - anon_sym_RPAREN, - STATE(7513), 9, + ACTIONS(11795), 1, + aux_sym_preproc_if_token3, + STATE(7750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756619,7 +784748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320580] = 12, + [334526] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756640,9 +784769,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11495), 1, - anon_sym_STAR, - STATE(7514), 9, + ACTIONS(11797), 1, + aux_sym_preproc_if_token3, + STATE(7751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756652,7 +784781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320625] = 12, + [334571] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756673,9 +784802,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11497), 1, - anon_sym_EQ, - STATE(7515), 9, + ACTIONS(11799), 1, + anon_sym_LPAREN, + STATE(7752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756685,7 +784814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320670] = 12, + [334616] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756706,9 +784835,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11499), 1, - sym__optional_semi, - STATE(7516), 9, + ACTIONS(11801), 1, + anon_sym_STAR, + STATE(7753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756718,7 +784847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320715] = 12, + [334661] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756739,9 +784868,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11501), 1, - sym_interpolation_close_brace, - STATE(7517), 9, + ACTIONS(11803), 1, + anon_sym_LPAREN, + STATE(7754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756751,7 +784880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320760] = 12, + [334706] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756772,9 +784901,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11503), 1, - anon_sym_SEMI, - STATE(7518), 9, + ACTIONS(11805), 1, + sym_raw_string_content, + STATE(7755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756784,7 +784913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320805] = 12, + [334751] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756805,9 +784934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11505), 1, - sym_raw_string_content, - STATE(7519), 9, + ACTIONS(11807), 1, + anon_sym_STAR, + STATE(7756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756817,7 +784946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320850] = 12, + [334796] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756838,9 +784967,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11507), 1, - aux_sym_preproc_if_token3, - STATE(7520), 9, + ACTIONS(11809), 1, + anon_sym_SEMI, + STATE(7757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756850,7 +784979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320895] = 12, + [334841] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756871,9 +785000,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11509), 1, - anon_sym_LPAREN, - STATE(7521), 9, + ACTIONS(11811), 1, + anon_sym_STAR, + STATE(7758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756883,7 +785012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320940] = 12, + [334886] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756904,9 +785033,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11511), 1, - anon_sym_RPAREN, - STATE(7522), 9, + ACTIONS(11813), 1, + anon_sym_SEMI, + STATE(7759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756916,7 +785045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [320985] = 12, + [334931] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756937,9 +785066,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11513), 1, - sym_interpolation_start_quote, - STATE(7523), 9, + ACTIONS(11815), 1, + aux_sym_preproc_if_token3, + STATE(7760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756949,7 +785078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321030] = 12, + [334976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756970,9 +785099,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11515), 1, - anon_sym_RPAREN, - STATE(7524), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN, + STATE(7761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756982,7 +785111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321075] = 12, + [335021] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757003,9 +785132,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11517), 1, - anon_sym_SQUOTE, - STATE(7525), 9, + ACTIONS(11819), 1, + anon_sym_while, + STATE(7762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757015,7 +785144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321120] = 12, + [335066] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757036,9 +785165,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11519), 1, + ACTIONS(11821), 1, aux_sym_preproc_if_token3, - STATE(7526), 9, + STATE(7763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757048,30 +785177,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321165] = 12, - ACTIONS(3), 1, + [335111] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11521), 1, - anon_sym_GT, - STATE(7527), 9, + ACTIONS(11823), 1, + aux_sym_preproc_if_token2, + STATE(7764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757081,7 +785210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321210] = 12, + [335156] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757102,9 +785231,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(7528), 9, + ACTIONS(11825), 1, + anon_sym_EQ_GT, + STATE(7765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757114,7 +785243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321255] = 12, + [335201] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757135,9 +785264,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11525), 1, - sym_interpolation_start_quote, - STATE(7529), 9, + ACTIONS(11827), 1, + anon_sym_LPAREN, + STATE(7766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757147,7 +785276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321300] = 12, + [335246] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757168,9 +785297,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11527), 1, - anon_sym_STAR, - STATE(7530), 9, + ACTIONS(11829), 1, + anon_sym_while, + STATE(7767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757180,7 +785309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321345] = 12, + [335291] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757201,9 +785330,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11529), 1, - sym_interpolation_start_quote, - STATE(7531), 9, + ACTIONS(11831), 1, + anon_sym_LPAREN, + STATE(7768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757213,7 +785342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321390] = 12, + [335336] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757234,9 +785363,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11531), 1, - sym__optional_semi, - STATE(7532), 9, + ACTIONS(11833), 1, + anon_sym_while, + STATE(7769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757246,7 +785375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321435] = 12, + [335381] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757267,9 +785396,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11533), 1, + ACTIONS(11835), 1, anon_sym_LPAREN, - STATE(7533), 9, + STATE(7770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757279,7 +785408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321480] = 12, + [335426] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757300,9 +785429,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11535), 1, - anon_sym_STAR, - STATE(7534), 9, + ACTIONS(11837), 1, + anon_sym_LPAREN, + STATE(7771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757312,30 +785441,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321525] = 12, - ACTIONS(8891), 1, + [335471] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11537), 1, - sym_preproc_arg, - STATE(7535), 9, + ACTIONS(11839), 1, + anon_sym_EQ_GT, + STATE(7772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757345,7 +785474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321570] = 12, + [335516] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757366,9 +785495,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11539), 1, - anon_sym_LPAREN, - STATE(7536), 9, + ACTIONS(11841), 1, + anon_sym_EQ_GT, + STATE(7773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757378,30 +785507,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321615] = 12, - ACTIONS(3), 1, + [335561] = 12, + ACTIONS(9097), 1, aux_sym_preproc_region_token1, - ACTIONS(5), 1, + ACTIONS(9099), 1, aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, + ACTIONS(9101), 1, aux_sym_preproc_line_token1, - ACTIONS(9), 1, + ACTIONS(9103), 1, aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, + ACTIONS(9105), 1, aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, + ACTIONS(9107), 1, aux_sym_preproc_error_token1, - ACTIONS(15), 1, + ACTIONS(9109), 1, aux_sym_preproc_warning_token1, - ACTIONS(17), 1, + ACTIONS(9111), 1, aux_sym_preproc_define_token1, - ACTIONS(19), 1, + ACTIONS(9113), 1, aux_sym_preproc_undef_token1, - ACTIONS(21), 1, + ACTIONS(9115), 1, sym_comment, - ACTIONS(11541), 1, - anon_sym_STAR, - STATE(7537), 9, + ACTIONS(11843), 1, + aux_sym_preproc_if_token2, + STATE(7774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757411,30 +785540,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321660] = 12, - ACTIONS(8891), 1, + [335606] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8893), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8895), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8897), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8899), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8901), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8903), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8905), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8907), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8909), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11543), 1, - sym_preproc_arg, - STATE(7538), 9, + ACTIONS(11845), 1, + anon_sym_LPAREN, + STATE(7775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757444,9348 +785573,9648 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [321705] = 1, - ACTIONS(11545), 1, + [335651] = 1, + ACTIONS(11847), 1, ts_builtin_sym_end, - [321709] = 1, - ACTIONS(11547), 1, + [335655] = 1, + ACTIONS(11849), 1, ts_builtin_sym_end, - [321713] = 1, - ACTIONS(11549), 1, + [335659] = 1, + ACTIONS(11851), 1, ts_builtin_sym_end, - [321717] = 1, - ACTIONS(11551), 1, + [335663] = 1, + ACTIONS(11853), 1, ts_builtin_sym_end, - [321721] = 1, - ACTIONS(11553), 1, + [335667] = 1, + ACTIONS(11855), 1, ts_builtin_sym_end, - [321725] = 1, - ACTIONS(11555), 1, + [335671] = 1, + ACTIONS(11857), 1, ts_builtin_sym_end, - [321729] = 1, - ACTIONS(11557), 1, + [335675] = 1, + ACTIONS(11859), 1, ts_builtin_sym_end, - [321733] = 1, - ACTIONS(11559), 1, + [335679] = 1, + ACTIONS(11861), 1, ts_builtin_sym_end, - [321737] = 1, - ACTIONS(11561), 1, + [335683] = 1, + ACTIONS(11863), 1, ts_builtin_sym_end, - [321741] = 1, - ACTIONS(11563), 1, + [335687] = 1, + ACTIONS(11865), 1, ts_builtin_sym_end, - [321745] = 1, - ACTIONS(11565), 1, + [335691] = 1, + ACTIONS(11867), 1, ts_builtin_sym_end, - [321749] = 1, - ACTIONS(11567), 1, + [335695] = 1, + ACTIONS(11869), 1, ts_builtin_sym_end, - [321753] = 1, - ACTIONS(11569), 1, + [335699] = 1, + ACTIONS(11871), 1, ts_builtin_sym_end, - [321757] = 1, - ACTIONS(11571), 1, + [335703] = 1, + ACTIONS(11873), 1, ts_builtin_sym_end, - [321761] = 1, - ACTIONS(11573), 1, + [335707] = 1, + ACTIONS(11875), 1, ts_builtin_sym_end, - [321765] = 1, - ACTIONS(11575), 1, + [335711] = 1, + ACTIONS(11877), 1, ts_builtin_sym_end, - [321769] = 1, - ACTIONS(11577), 1, + [335715] = 1, + ACTIONS(11879), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3816)] = 0, - [SMALL_STATE(3817)] = 117, - [SMALL_STATE(3818)] = 244, - [SMALL_STATE(3819)] = 371, - [SMALL_STATE(3820)] = 498, - [SMALL_STATE(3821)] = 625, - [SMALL_STATE(3822)] = 770, - [SMALL_STATE(3823)] = 917, - [SMALL_STATE(3824)] = 1044, - [SMALL_STATE(3825)] = 1171, - [SMALL_STATE(3826)] = 1298, - [SMALL_STATE(3827)] = 1425, - [SMALL_STATE(3828)] = 1552, - [SMALL_STATE(3829)] = 1679, - [SMALL_STATE(3830)] = 1806, - [SMALL_STATE(3831)] = 1933, - [SMALL_STATE(3832)] = 2060, - [SMALL_STATE(3833)] = 2169, - [SMALL_STATE(3834)] = 2296, - [SMALL_STATE(3835)] = 2423, - [SMALL_STATE(3836)] = 2550, - [SMALL_STATE(3837)] = 2677, - [SMALL_STATE(3838)] = 2804, - [SMALL_STATE(3839)] = 2931, - [SMALL_STATE(3840)] = 3058, - [SMALL_STATE(3841)] = 3185, - [SMALL_STATE(3842)] = 3312, - [SMALL_STATE(3843)] = 3459, - [SMALL_STATE(3844)] = 3606, - [SMALL_STATE(3845)] = 3753, - [SMALL_STATE(3846)] = 3900, - [SMALL_STATE(3847)] = 4027, - [SMALL_STATE(3848)] = 4154, - [SMALL_STATE(3849)] = 4301, - [SMALL_STATE(3850)] = 4428, - [SMALL_STATE(3851)] = 4573, - [SMALL_STATE(3852)] = 4700, - [SMALL_STATE(3853)] = 4835, - [SMALL_STATE(3854)] = 4962, - [SMALL_STATE(3855)] = 5099, - [SMALL_STATE(3856)] = 5226, - [SMALL_STATE(3857)] = 5353, - [SMALL_STATE(3858)] = 5500, - [SMALL_STATE(3859)] = 5627, - [SMALL_STATE(3860)] = 5774, - [SMALL_STATE(3861)] = 5919, - [SMALL_STATE(3862)] = 6046, - [SMALL_STATE(3863)] = 6193, - [SMALL_STATE(3864)] = 6338, - [SMALL_STATE(3865)] = 6485, - [SMALL_STATE(3866)] = 6612, - [SMALL_STATE(3867)] = 6739, - [SMALL_STATE(3868)] = 6866, - [SMALL_STATE(3869)] = 6993, - [SMALL_STATE(3870)] = 7120, - [SMALL_STATE(3871)] = 7247, - [SMALL_STATE(3872)] = 7374, - [SMALL_STATE(3873)] = 7501, - [SMALL_STATE(3874)] = 7628, - [SMALL_STATE(3875)] = 7751, - [SMALL_STATE(3876)] = 7868, - [SMALL_STATE(3877)] = 7981, - [SMALL_STATE(3878)] = 8116, - [SMALL_STATE(3879)] = 8253, - [SMALL_STATE(3880)] = 8386, - [SMALL_STATE(3881)] = 8519, - [SMALL_STATE(3882)] = 8650, - [SMALL_STATE(3883)] = 8777, - [SMALL_STATE(3884)] = 8896, - [SMALL_STATE(3885)] = 9023, - [SMALL_STATE(3886)] = 9118, - [SMALL_STATE(3887)] = 9257, - [SMALL_STATE(3888)] = 9388, - [SMALL_STATE(3889)] = 9527, - [SMALL_STATE(3890)] = 9668, - [SMALL_STATE(3891)] = 9761, - [SMALL_STATE(3892)] = 9888, - [SMALL_STATE(3893)] = 9983, - [SMALL_STATE(3894)] = 10110, - [SMALL_STATE(3895)] = 10255, - [SMALL_STATE(3896)] = 10382, - [SMALL_STATE(3897)] = 10509, - [SMALL_STATE(3898)] = 10636, - [SMALL_STATE(3899)] = 10763, - [SMALL_STATE(3900)] = 10890, - [SMALL_STATE(3901)] = 11017, - [SMALL_STATE(3902)] = 11144, - [SMALL_STATE(3903)] = 11285, - [SMALL_STATE(3904)] = 11430, - [SMALL_STATE(3905)] = 11539, - [SMALL_STATE(3906)] = 11634, - [SMALL_STATE(3907)] = 11761, - [SMALL_STATE(3908)] = 11860, - [SMALL_STATE(3909)] = 11987, - [SMALL_STATE(3910)] = 12114, - [SMALL_STATE(3911)] = 12261, - [SMALL_STATE(3912)] = 12388, - [SMALL_STATE(3913)] = 12515, - [SMALL_STATE(3914)] = 12610, - [SMALL_STATE(3915)] = 12737, - [SMALL_STATE(3916)] = 12846, - [SMALL_STATE(3917)] = 12991, - [SMALL_STATE(3918)] = 13118, - [SMALL_STATE(3919)] = 13265, - [SMALL_STATE(3920)] = 13392, - [SMALL_STATE(3921)] = 13519, - [SMALL_STATE(3922)] = 13646, - [SMALL_STATE(3923)] = 13793, - [SMALL_STATE(3924)] = 13920, - [SMALL_STATE(3925)] = 14047, - [SMALL_STATE(3926)] = 14174, - [SMALL_STATE(3927)] = 14301, - [SMALL_STATE(3928)] = 14428, - [SMALL_STATE(3929)] = 14555, - [SMALL_STATE(3930)] = 14682, - [SMALL_STATE(3931)] = 14829, - [SMALL_STATE(3932)] = 14974, - [SMALL_STATE(3933)] = 15085, - [SMALL_STATE(3934)] = 15212, - [SMALL_STATE(3935)] = 15353, - [SMALL_STATE(3936)] = 15492, - [SMALL_STATE(3937)] = 15591, - [SMALL_STATE(3938)] = 15718, - [SMALL_STATE(3939)] = 15827, - [SMALL_STATE(3940)] = 15936, - [SMALL_STATE(3941)] = 16063, - [SMALL_STATE(3942)] = 16190, - [SMALL_STATE(3943)] = 16317, - [SMALL_STATE(3944)] = 16444, - [SMALL_STATE(3945)] = 16539, - [SMALL_STATE(3946)] = 16648, - [SMALL_STATE(3947)] = 16775, - [SMALL_STATE(3948)] = 16902, - [SMALL_STATE(3949)] = 17029, - [SMALL_STATE(3950)] = 17122, - [SMALL_STATE(3951)] = 17217, - [SMALL_STATE(3952)] = 17348, - [SMALL_STATE(3953)] = 17475, - [SMALL_STATE(3954)] = 17622, - [SMALL_STATE(3955)] = 17749, - [SMALL_STATE(3956)] = 17844, - [SMALL_STATE(3957)] = 17963, - [SMALL_STATE(3958)] = 18090, - [SMALL_STATE(3959)] = 18217, - [SMALL_STATE(3960)] = 18350, - [SMALL_STATE(3961)] = 18443, - [SMALL_STATE(3962)] = 18580, - [SMALL_STATE(3963)] = 18707, - [SMALL_STATE(3964)] = 18834, - [SMALL_STATE(3965)] = 18969, - [SMALL_STATE(3966)] = 19096, - [SMALL_STATE(3967)] = 19209, - [SMALL_STATE(3968)] = 19304, - [SMALL_STATE(3969)] = 19431, - [SMALL_STATE(3970)] = 19578, - [SMALL_STATE(3971)] = 19705, - [SMALL_STATE(3972)] = 19832, - [SMALL_STATE(3973)] = 19959, - [SMALL_STATE(3974)] = 20076, - [SMALL_STATE(3975)] = 20199, - [SMALL_STATE(3976)] = 20326, - [SMALL_STATE(3977)] = 20453, - [SMALL_STATE(3978)] = 20580, - [SMALL_STATE(3979)] = 20707, - [SMALL_STATE(3980)] = 20834, - [SMALL_STATE(3981)] = 20961, - [SMALL_STATE(3982)] = 21088, - [SMALL_STATE(3983)] = 21211, - [SMALL_STATE(3984)] = 21338, - [SMALL_STATE(3985)] = 21465, - [SMALL_STATE(3986)] = 21578, - [SMALL_STATE(3987)] = 21697, - [SMALL_STATE(3988)] = 21824, - [SMALL_STATE(3989)] = 21951, - [SMALL_STATE(3990)] = 22046, - [SMALL_STATE(3991)] = 22173, - [SMALL_STATE(3992)] = 22300, - [SMALL_STATE(3993)] = 22427, - [SMALL_STATE(3994)] = 22554, - [SMALL_STATE(3995)] = 22681, - [SMALL_STATE(3996)] = 22776, - [SMALL_STATE(3997)] = 22903, - [SMALL_STATE(3998)] = 23043, - [SMALL_STATE(3999)] = 23149, - [SMALL_STATE(4000)] = 23239, - [SMALL_STATE(4001)] = 23361, - [SMALL_STATE(4002)] = 23455, - [SMALL_STATE(4003)] = 23561, - [SMALL_STATE(4004)] = 23677, - [SMALL_STATE(4005)] = 23771, - [SMALL_STATE(4006)] = 23883, - [SMALL_STATE(4007)] = 24001, - [SMALL_STATE(4008)] = 24091, - [SMALL_STATE(4009)] = 24197, - [SMALL_STATE(4010)] = 24289, - [SMALL_STATE(4011)] = 24433, - [SMALL_STATE(4012)] = 24579, - [SMALL_STATE(4013)] = 24717, - [SMALL_STATE(4014)] = 24847, - [SMALL_STATE(4015)] = 24943, - [SMALL_STATE(4016)] = 25033, - [SMALL_STATE(4017)] = 25165, - [SMALL_STATE(4018)] = 25299, - [SMALL_STATE(4019)] = 25435, - [SMALL_STATE(4020)] = 25545, - [SMALL_STATE(4021)] = 25639, - [SMALL_STATE(4022)] = 25747, - [SMALL_STATE(4023)] = 25841, - [SMALL_STATE(4024)] = 25987, - [SMALL_STATE(4025)] = 26081, - [SMALL_STATE(4026)] = 26227, - [SMALL_STATE(4027)] = 26373, - [SMALL_STATE(4028)] = 26465, - [SMALL_STATE(4029)] = 26555, - [SMALL_STATE(4030)] = 26653, - [SMALL_STATE(4031)] = 26745, - [SMALL_STATE(4032)] = 26839, - [SMALL_STATE(4033)] = 26929, - [SMALL_STATE(4034)] = 27075, - [SMALL_STATE(4035)] = 27169, - [SMALL_STATE(4036)] = 27277, - [SMALL_STATE(4037)] = 27367, - [SMALL_STATE(4038)] = 27459, - [SMALL_STATE(4039)] = 27553, - [SMALL_STATE(4040)] = 27643, - [SMALL_STATE(4041)] = 27789, - [SMALL_STATE(4042)] = 27878, - [SMALL_STATE(4043)] = 27967, - [SMALL_STATE(4044)] = 28110, - [SMALL_STATE(4045)] = 28203, - [SMALL_STATE(4046)] = 28292, - [SMALL_STATE(4047)] = 28381, - [SMALL_STATE(4048)] = 28470, - [SMALL_STATE(4049)] = 28563, - [SMALL_STATE(4050)] = 28674, - [SMALL_STATE(4051)] = 28789, - [SMALL_STATE(4052)] = 28878, - [SMALL_STATE(4053)] = 28999, - [SMALL_STATE(4054)] = 29088, - [SMALL_STATE(4055)] = 29177, - [SMALL_STATE(4056)] = 29266, - [SMALL_STATE(4057)] = 29409, - [SMALL_STATE(4058)] = 29498, - [SMALL_STATE(4059)] = 29587, - [SMALL_STATE(4060)] = 29676, - [SMALL_STATE(4061)] = 29809, - [SMALL_STATE(4062)] = 29952, - [SMALL_STATE(4063)] = 30095, - [SMALL_STATE(4064)] = 30184, - [SMALL_STATE(4065)] = 30291, - [SMALL_STATE(4066)] = 30380, - [SMALL_STATE(4067)] = 30523, - [SMALL_STATE(4068)] = 30616, - [SMALL_STATE(4069)] = 30751, - [SMALL_STATE(4070)] = 30844, - [SMALL_STATE(4071)] = 30987, - [SMALL_STATE(4072)] = 31118, - [SMALL_STATE(4073)] = 31207, - [SMALL_STATE(4074)] = 31296, - [SMALL_STATE(4075)] = 31403, - [SMALL_STATE(4076)] = 31492, - [SMALL_STATE(4077)] = 31609, - [SMALL_STATE(4078)] = 31738, - [SMALL_STATE(4079)] = 31875, - [SMALL_STATE(4080)] = 32014, - [SMALL_STATE(4081)] = 32103, - [SMALL_STATE(4082)] = 32214, - [SMALL_STATE(4083)] = 32357, - [SMALL_STATE(4084)] = 32500, - [SMALL_STATE(4085)] = 32589, - [SMALL_STATE(4086)] = 32678, - [SMALL_STATE(4087)] = 32767, - [SMALL_STATE(4088)] = 32856, - [SMALL_STATE(4089)] = 32947, - [SMALL_STATE(4090)] = 33090, - [SMALL_STATE(4091)] = 33197, - [SMALL_STATE(4092)] = 33339, - [SMALL_STATE(4093)] = 33481, - [SMALL_STATE(4094)] = 33623, - [SMALL_STATE(4095)] = 33765, - [SMALL_STATE(4096)] = 33907, - [SMALL_STATE(4097)] = 34049, - [SMALL_STATE(4098)] = 34183, - [SMALL_STATE(4099)] = 34289, - [SMALL_STATE(4100)] = 34395, - [SMALL_STATE(4101)] = 34537, - [SMALL_STATE(4102)] = 34667, - [SMALL_STATE(4103)] = 34777, - [SMALL_STATE(4104)] = 34919, - [SMALL_STATE(4105)] = 35035, - [SMALL_STATE(4106)] = 35127, - [SMALL_STATE(4107)] = 35219, - [SMALL_STATE(4108)] = 35325, - [SMALL_STATE(4109)] = 35417, - [SMALL_STATE(4110)] = 35559, - [SMALL_STATE(4111)] = 35679, - [SMALL_STATE(4112)] = 35799, - [SMALL_STATE(4113)] = 35913, - [SMALL_STATE(4114)] = 36023, - [SMALL_STATE(4115)] = 36155, - [SMALL_STATE(4116)] = 36289, - [SMALL_STATE(4117)] = 36419, - [SMALL_STATE(4118)] = 36535, - [SMALL_STATE(4119)] = 36663, - [SMALL_STATE(4120)] = 36755, - [SMALL_STATE(4121)] = 36891, - [SMALL_STATE(4122)] = 37029, - [SMALL_STATE(4123)] = 37171, - [SMALL_STATE(4124)] = 37277, - [SMALL_STATE(4125)] = 37365, - [SMALL_STATE(4126)] = 37507, - [SMALL_STATE(4127)] = 37649, - [SMALL_STATE(4128)] = 37739, - [SMALL_STATE(4129)] = 37869, - [SMALL_STATE(4130)] = 37989, - [SMALL_STATE(4131)] = 38103, - [SMALL_STATE(4132)] = 38217, - [SMALL_STATE(4133)] = 38359, - [SMALL_STATE(4134)] = 38455, - [SMALL_STATE(4135)] = 38587, - [SMALL_STATE(4136)] = 38729, - [SMALL_STATE(4137)] = 38871, - [SMALL_STATE(4138)] = 38961, - [SMALL_STATE(4139)] = 39067, - [SMALL_STATE(4140)] = 39161, - [SMALL_STATE(4141)] = 39281, - [SMALL_STATE(4142)] = 39423, - [SMALL_STATE(4143)] = 39565, - [SMALL_STATE(4144)] = 39657, - [SMALL_STATE(4145)] = 39799, - [SMALL_STATE(4146)] = 39941, - [SMALL_STATE(4147)] = 40075, - [SMALL_STATE(4148)] = 40213, - [SMALL_STATE(4149)] = 40355, - [SMALL_STATE(4150)] = 40497, - [SMALL_STATE(4151)] = 40639, - [SMALL_STATE(4152)] = 40731, - [SMALL_STATE(4153)] = 40867, - [SMALL_STATE(4154)] = 40973, - [SMALL_STATE(4155)] = 41105, - [SMALL_STATE(4156)] = 41215, - [SMALL_STATE(4157)] = 41307, - [SMALL_STATE(4158)] = 41449, - [SMALL_STATE(4159)] = 41591, - [SMALL_STATE(4160)] = 41733, - [SMALL_STATE(4161)] = 41875, - [SMALL_STATE(4162)] = 42013, - [SMALL_STATE(4163)] = 42149, - [SMALL_STATE(4164)] = 42277, - [SMALL_STATE(4165)] = 42405, - [SMALL_STATE(4166)] = 42497, - [SMALL_STATE(4167)] = 42589, - [SMALL_STATE(4168)] = 42705, - [SMALL_STATE(4169)] = 42832, - [SMALL_STATE(4170)] = 42921, - [SMALL_STATE(4171)] = 43062, - [SMALL_STATE(4172)] = 43157, - [SMALL_STATE(4173)] = 43248, - [SMALL_STATE(4174)] = 43351, - [SMALL_STATE(4175)] = 43438, - [SMALL_STATE(4176)] = 43543, - [SMALL_STATE(4177)] = 43684, - [SMALL_STATE(4178)] = 43771, - [SMALL_STATE(4179)] = 43886, - [SMALL_STATE(4180)] = 44027, - [SMALL_STATE(4181)] = 44142, - [SMALL_STATE(4182)] = 44247, - [SMALL_STATE(4183)] = 44360, - [SMALL_STATE(4184)] = 44451, - [SMALL_STATE(4185)] = 44556, - [SMALL_STATE(4186)] = 44651, - [SMALL_STATE(4187)] = 44738, - [SMALL_STATE(4188)] = 44879, - [SMALL_STATE(4189)] = 44968, - [SMALL_STATE(4190)] = 45109, - [SMALL_STATE(4191)] = 45250, - [SMALL_STATE(4192)] = 45391, - [SMALL_STATE(4193)] = 45478, - [SMALL_STATE(4194)] = 45565, - [SMALL_STATE(4195)] = 45706, - [SMALL_STATE(4196)] = 45847, - [SMALL_STATE(4197)] = 45956, - [SMALL_STATE(4198)] = 46047, - [SMALL_STATE(4199)] = 46178, - [SMALL_STATE(4200)] = 46265, - [SMALL_STATE(4201)] = 46406, - [SMALL_STATE(4202)] = 46539, - [SMALL_STATE(4203)] = 46680, - [SMALL_STATE(4204)] = 46821, - [SMALL_STATE(4205)] = 46962, - [SMALL_STATE(4206)] = 47067, - [SMALL_STATE(4207)] = 47160, - [SMALL_STATE(4208)] = 47289, - [SMALL_STATE(4209)] = 47392, - [SMALL_STATE(4210)] = 47511, - [SMALL_STATE(4211)] = 47626, - [SMALL_STATE(4212)] = 47731, - [SMALL_STATE(4213)] = 47818, - [SMALL_STATE(4214)] = 47959, - [SMALL_STATE(4215)] = 48090, - [SMALL_STATE(4216)] = 48223, - [SMALL_STATE(4217)] = 48338, - [SMALL_STATE(4218)] = 48479, - [SMALL_STATE(4219)] = 48614, - [SMALL_STATE(4220)] = 48751, - [SMALL_STATE(4221)] = 48880, - [SMALL_STATE(4222)] = 49007, - [SMALL_STATE(4223)] = 49148, - [SMALL_STATE(4224)] = 49253, - [SMALL_STATE(4225)] = 49372, - [SMALL_STATE(4226)] = 49485, - [SMALL_STATE(4227)] = 49626, - [SMALL_STATE(4228)] = 49761, - [SMALL_STATE(4229)] = 49892, - [SMALL_STATE(4230)] = 50029, - [SMALL_STATE(4231)] = 50138, - [SMALL_STATE(4232)] = 50229, - [SMALL_STATE(4233)] = 50370, - [SMALL_STATE(4234)] = 50511, - [SMALL_STATE(4235)] = 50652, - [SMALL_STATE(4236)] = 50767, - [SMALL_STATE(4237)] = 50900, - [SMALL_STATE(4238)] = 51041, - [SMALL_STATE(4239)] = 51156, - [SMALL_STATE(4240)] = 51243, - [SMALL_STATE(4241)] = 51346, - [SMALL_STATE(4242)] = 51487, - [SMALL_STATE(4243)] = 51592, - [SMALL_STATE(4244)] = 51721, - [SMALL_STATE(4245)] = 51834, - [SMALL_STATE(4246)] = 51925, - [SMALL_STATE(4247)] = 52040, - [SMALL_STATE(4248)] = 52159, - [SMALL_STATE(4249)] = 52250, - [SMALL_STATE(4250)] = 52377, - [SMALL_STATE(4251)] = 52470, - [SMALL_STATE(4252)] = 52575, - [SMALL_STATE(4253)] = 52666, - [SMALL_STATE(4254)] = 52801, - [SMALL_STATE(4255)] = 52916, - [SMALL_STATE(4256)] = 53053, - [SMALL_STATE(4257)] = 53144, - [SMALL_STATE(4258)] = 53259, - [SMALL_STATE(4259)] = 53368, - [SMALL_STATE(4260)] = 53509, - [SMALL_STATE(4261)] = 53597, - [SMALL_STATE(4262)] = 53683, - [SMALL_STATE(4263)] = 53769, - [SMALL_STATE(4264)] = 53857, - [SMALL_STATE(4265)] = 53949, - [SMALL_STATE(4266)] = 54089, - [SMALL_STATE(4267)] = 54175, - [SMALL_STATE(4268)] = 54261, - [SMALL_STATE(4269)] = 54351, - [SMALL_STATE(4270)] = 54465, - [SMALL_STATE(4271)] = 54569, - [SMALL_STATE(4272)] = 54715, - [SMALL_STATE(4273)] = 54805, - [SMALL_STATE(4274)] = 54945, - [SMALL_STATE(4275)] = 55091, - [SMALL_STATE(4276)] = 55231, - [SMALL_STATE(4277)] = 55321, - [SMALL_STATE(4278)] = 55461, - [SMALL_STATE(4279)] = 55579, - [SMALL_STATE(4280)] = 55683, - [SMALL_STATE(4281)] = 55823, - [SMALL_STATE(4282)] = 55909, - [SMALL_STATE(4283)] = 56049, - [SMALL_STATE(4284)] = 56157, - [SMALL_STATE(4285)] = 56297, - [SMALL_STATE(4286)] = 56437, - [SMALL_STATE(4287)] = 56577, - [SMALL_STATE(4288)] = 56663, - [SMALL_STATE(4289)] = 56803, - [SMALL_STATE(4290)] = 56943, - [SMALL_STATE(4291)] = 57033, - [SMALL_STATE(4292)] = 57147, - [SMALL_STATE(4293)] = 57261, - [SMALL_STATE(4294)] = 57369, - [SMALL_STATE(4295)] = 57481, - [SMALL_STATE(4296)] = 57599, - [SMALL_STATE(4297)] = 57685, - [SMALL_STATE(4298)] = 57825, - [SMALL_STATE(4299)] = 57913, - [SMALL_STATE(4300)] = 58003, - [SMALL_STATE(4301)] = 58111, - [SMALL_STATE(4302)] = 58223, - [SMALL_STATE(4303)] = 58317, - [SMALL_STATE(4304)] = 58431, - [SMALL_STATE(4305)] = 58535, - [SMALL_STATE(4306)] = 58639, - [SMALL_STATE(4307)] = 58729, - [SMALL_STATE(4308)] = 58869, - [SMALL_STATE(4309)] = 59015, - [SMALL_STATE(4310)] = 59105, - [SMALL_STATE(4311)] = 59209, - [SMALL_STATE(4312)] = 59295, - [SMALL_STATE(4313)] = 59441, - [SMALL_STATE(4314)] = 59527, - [SMALL_STATE(4315)] = 59613, - [SMALL_STATE(4316)] = 59703, - [SMALL_STATE(4317)] = 59793, - [SMALL_STATE(4318)] = 59885, - [SMALL_STATE(4319)] = 59977, - [SMALL_STATE(4320)] = 60117, - [SMALL_STATE(4321)] = 60257, - [SMALL_STATE(4322)] = 60343, - [SMALL_STATE(4323)] = 60483, - [SMALL_STATE(4324)] = 60569, - [SMALL_STATE(4325)] = 60709, - [SMALL_STATE(4326)] = 60795, - [SMALL_STATE(4327)] = 60883, - [SMALL_STATE(4328)] = 61023, - [SMALL_STATE(4329)] = 61109, - [SMALL_STATE(4330)] = 61239, - [SMALL_STATE(4331)] = 61327, - [SMALL_STATE(4332)] = 61413, - [SMALL_STATE(4333)] = 61545, - [SMALL_STATE(4334)] = 61631, - [SMALL_STATE(4335)] = 61759, - [SMALL_STATE(4336)] = 61885, - [SMALL_STATE(4337)] = 62025, - [SMALL_STATE(4338)] = 62159, - [SMALL_STATE(4339)] = 62249, - [SMALL_STATE(4340)] = 62335, - [SMALL_STATE(4341)] = 62421, - [SMALL_STATE(4342)] = 62511, - [SMALL_STATE(4343)] = 62597, - [SMALL_STATE(4344)] = 62737, - [SMALL_STATE(4345)] = 62877, - [SMALL_STATE(4346)] = 63017, - [SMALL_STATE(4347)] = 63163, - [SMALL_STATE(4348)] = 63303, - [SMALL_STATE(4349)] = 63443, - [SMALL_STATE(4350)] = 63589, - [SMALL_STATE(4351)] = 63725, - [SMALL_STATE(4352)] = 63859, - [SMALL_STATE(4353)] = 63985, - [SMALL_STATE(4354)] = 64089, - [SMALL_STATE(4355)] = 64201, - [SMALL_STATE(4356)] = 64295, - [SMALL_STATE(4357)] = 64409, - [SMALL_STATE(4358)] = 64521, - [SMALL_STATE(4359)] = 64667, - [SMALL_STATE(4360)] = 64795, - [SMALL_STATE(4361)] = 64943, - [SMALL_STATE(4362)] = 65075, - [SMALL_STATE(4363)] = 65179, - [SMALL_STATE(4364)] = 65297, - [SMALL_STATE(4365)] = 65427, - [SMALL_STATE(4366)] = 65515, - [SMALL_STATE(4367)] = 65655, - [SMALL_STATE(4368)] = 65795, - [SMALL_STATE(4369)] = 65899, - [SMALL_STATE(4370)] = 66039, - [SMALL_STATE(4371)] = 66179, - [SMALL_STATE(4372)] = 66319, - [SMALL_STATE(4373)] = 66423, - [SMALL_STATE(4374)] = 66559, - [SMALL_STATE(4375)] = 66645, - [SMALL_STATE(4376)] = 66749, - [SMALL_STATE(4377)] = 66835, - [SMALL_STATE(4378)] = 66921, - [SMALL_STATE(4379)] = 67061, - [SMALL_STATE(4380)] = 67201, - [SMALL_STATE(4381)] = 67337, - [SMALL_STATE(4382)] = 67471, - [SMALL_STATE(4383)] = 67597, - [SMALL_STATE(4384)] = 67711, - [SMALL_STATE(4385)] = 67797, - [SMALL_STATE(4386)] = 67937, - [SMALL_STATE(4387)] = 68073, - [SMALL_STATE(4388)] = 68207, - [SMALL_STATE(4389)] = 68333, - [SMALL_STATE(4390)] = 68461, - [SMALL_STATE(4391)] = 68593, - [SMALL_STATE(4392)] = 68681, - [SMALL_STATE(4393)] = 68811, - [SMALL_STATE(4394)] = 68897, - [SMALL_STATE(4395)] = 69025, - [SMALL_STATE(4396)] = 69157, - [SMALL_STATE(4397)] = 69287, - [SMALL_STATE(4398)] = 69395, - [SMALL_STATE(4399)] = 69507, - [SMALL_STATE(4400)] = 69625, - [SMALL_STATE(4401)] = 69713, - [SMALL_STATE(4402)] = 69803, - [SMALL_STATE(4403)] = 69891, - [SMALL_STATE(4404)] = 69977, - [SMALL_STATE(4405)] = 70063, - [SMALL_STATE(4406)] = 70203, - [SMALL_STATE(4407)] = 70291, - [SMALL_STATE(4408)] = 70394, - [SMALL_STATE(4409)] = 70479, - [SMALL_STATE(4410)] = 70582, - [SMALL_STATE(4411)] = 70667, - [SMALL_STATE(4412)] = 70754, - [SMALL_STATE(4413)] = 70893, - [SMALL_STATE(4414)] = 70978, - [SMALL_STATE(4415)] = 71117, - [SMALL_STATE(4416)] = 71256, - [SMALL_STATE(4417)] = 71395, - [SMALL_STATE(4418)] = 71534, - [SMALL_STATE(4419)] = 71673, - [SMALL_STATE(4420)] = 71812, - [SMALL_STATE(4421)] = 71951, - [SMALL_STATE(4422)] = 72086, - [SMALL_STATE(4423)] = 72219, - [SMALL_STATE(4424)] = 72344, - [SMALL_STATE(4425)] = 72471, - [SMALL_STATE(4426)] = 72610, - [SMALL_STATE(4427)] = 72741, - [SMALL_STATE(4428)] = 72870, - [SMALL_STATE(4429)] = 73009, - [SMALL_STATE(4430)] = 73094, - [SMALL_STATE(4431)] = 73179, - [SMALL_STATE(4432)] = 73296, - [SMALL_STATE(4433)] = 73407, - [SMALL_STATE(4434)] = 73536, - [SMALL_STATE(4435)] = 73667, - [SMALL_STATE(4436)] = 73794, - [SMALL_STATE(4437)] = 73907, - [SMALL_STATE(4438)] = 74032, - [SMALL_STATE(4439)] = 74165, - [SMALL_STATE(4440)] = 74300, - [SMALL_STATE(4441)] = 74439, - [SMALL_STATE(4442)] = 74524, - [SMALL_STATE(4443)] = 74609, - [SMALL_STATE(4444)] = 74748, - [SMALL_STATE(4445)] = 74855, - [SMALL_STATE(4446)] = 74958, - [SMALL_STATE(4447)] = 75097, - [SMALL_STATE(4448)] = 75182, - [SMALL_STATE(4449)] = 75267, - [SMALL_STATE(4450)] = 75360, - [SMALL_STATE(4451)] = 75445, - [SMALL_STATE(4452)] = 75584, - [SMALL_STATE(4453)] = 75719, - [SMALL_STATE(4454)] = 75852, - [SMALL_STATE(4455)] = 75977, - [SMALL_STATE(4456)] = 76090, - [SMALL_STATE(4457)] = 76217, - [SMALL_STATE(4458)] = 76324, - [SMALL_STATE(4459)] = 76455, - [SMALL_STATE(4460)] = 76584, - [SMALL_STATE(4461)] = 76695, - [SMALL_STATE(4462)] = 76812, - [SMALL_STATE(4463)] = 76951, - [SMALL_STATE(4464)] = 77090, - [SMALL_STATE(4465)] = 77229, - [SMALL_STATE(4466)] = 77332, - [SMALL_STATE(4467)] = 77471, - [SMALL_STATE(4468)] = 77556, - [SMALL_STATE(4469)] = 77659, - [SMALL_STATE(4470)] = 77766, - [SMALL_STATE(4471)] = 77853, - [SMALL_STATE(4472)] = 77992, - [SMALL_STATE(4473)] = 78093, - [SMALL_STATE(4474)] = 78210, - [SMALL_STATE(4475)] = 78349, - [SMALL_STATE(4476)] = 78488, - [SMALL_STATE(4477)] = 78577, - [SMALL_STATE(4478)] = 78716, - [SMALL_STATE(4479)] = 78803, - [SMALL_STATE(4480)] = 78892, - [SMALL_STATE(4481)] = 79003, - [SMALL_STATE(4482)] = 79116, - [SMALL_STATE(4483)] = 79219, - [SMALL_STATE(4484)] = 79308, - [SMALL_STATE(4485)] = 79421, - [SMALL_STATE(4486)] = 79532, - [SMALL_STATE(4487)] = 79621, - [SMALL_STATE(4488)] = 79760, - [SMALL_STATE(4489)] = 79877, - [SMALL_STATE(4490)] = 79966, - [SMALL_STATE(4491)] = 80051, - [SMALL_STATE(4492)] = 80140, - [SMALL_STATE(4493)] = 80243, - [SMALL_STATE(4494)] = 80332, - [SMALL_STATE(4495)] = 80421, - [SMALL_STATE(4496)] = 80508, - [SMALL_STATE(4497)] = 80647, - [SMALL_STATE(4498)] = 80782, - [SMALL_STATE(4499)] = 80915, - [SMALL_STATE(4500)] = 81018, - [SMALL_STATE(4501)] = 81105, - [SMALL_STATE(4502)] = 81230, - [SMALL_STATE(4503)] = 81343, - [SMALL_STATE(4504)] = 81470, - [SMALL_STATE(4505)] = 81555, - [SMALL_STATE(4506)] = 81686, - [SMALL_STATE(4507)] = 81815, - [SMALL_STATE(4508)] = 81922, - [SMALL_STATE(4509)] = 82033, - [SMALL_STATE(4510)] = 82172, - [SMALL_STATE(4511)] = 82301, - [SMALL_STATE(4512)] = 82432, - [SMALL_STATE(4513)] = 82559, - [SMALL_STATE(4514)] = 82684, - [SMALL_STATE(4515)] = 82787, - [SMALL_STATE(4516)] = 82920, - [SMALL_STATE(4517)] = 83055, - [SMALL_STATE(4518)] = 83194, - [SMALL_STATE(4519)] = 83333, - [SMALL_STATE(4520)] = 83472, - [SMALL_STATE(4521)] = 83557, - [SMALL_STATE(4522)] = 83696, - [SMALL_STATE(4523)] = 83835, - [SMALL_STATE(4524)] = 83922, - [SMALL_STATE(4525)] = 84039, - [SMALL_STATE(4526)] = 84178, - [SMALL_STATE(4527)] = 84263, - [SMALL_STATE(4528)] = 84348, - [SMALL_STATE(4529)] = 84433, - [SMALL_STATE(4530)] = 84518, - [SMALL_STATE(4531)] = 84603, - [SMALL_STATE(4532)] = 84688, - [SMALL_STATE(4533)] = 84805, - [SMALL_STATE(4534)] = 84894, - [SMALL_STATE(4535)] = 84983, - [SMALL_STATE(4536)] = 85122, - [SMALL_STATE(4537)] = 85211, - [SMALL_STATE(4538)] = 85322, - [SMALL_STATE(4539)] = 85429, - [SMALL_STATE(4540)] = 85558, - [SMALL_STATE(4541)] = 85647, - [SMALL_STATE(4542)] = 85736, - [SMALL_STATE(4543)] = 85825, - [SMALL_STATE(4544)] = 85910, - [SMALL_STATE(4545)] = 85995, - [SMALL_STATE(4546)] = 86124, - [SMALL_STATE(4547)] = 86255, - [SMALL_STATE(4548)] = 86382, - [SMALL_STATE(4549)] = 86469, - [SMALL_STATE(4550)] = 86594, - [SMALL_STATE(4551)] = 86733, - [SMALL_STATE(4552)] = 86866, - [SMALL_STATE(4553)] = 87001, - [SMALL_STATE(4554)] = 87140, - [SMALL_STATE(4555)] = 87229, - [SMALL_STATE(4556)] = 87360, - [SMALL_STATE(4557)] = 87499, - [SMALL_STATE(4558)] = 87638, - [SMALL_STATE(4559)] = 87765, - [SMALL_STATE(4560)] = 87878, - [SMALL_STATE(4561)] = 87981, - [SMALL_STATE(4562)] = 88088, - [SMALL_STATE(4563)] = 88173, - [SMALL_STATE(4564)] = 88298, - [SMALL_STATE(4565)] = 88401, - [SMALL_STATE(4566)] = 88534, - [SMALL_STATE(4567)] = 88669, - [SMALL_STATE(4568)] = 88808, - [SMALL_STATE(4569)] = 88893, - [SMALL_STATE(4570)] = 88978, - [SMALL_STATE(4571)] = 89123, - [SMALL_STATE(4572)] = 89262, - [SMALL_STATE(4573)] = 89347, - [SMALL_STATE(4574)] = 89432, - [SMALL_STATE(4575)] = 89517, - [SMALL_STATE(4576)] = 89618, - [SMALL_STATE(4577)] = 89703, - [SMALL_STATE(4578)] = 89788, - [SMALL_STATE(4579)] = 89873, - [SMALL_STATE(4580)] = 89958, - [SMALL_STATE(4581)] = 90061, - [SMALL_STATE(4582)] = 90146, - [SMALL_STATE(4583)] = 90231, - [SMALL_STATE(4584)] = 90316, - [SMALL_STATE(4585)] = 90455, - [SMALL_STATE(4586)] = 90594, - [SMALL_STATE(4587)] = 90679, - [SMALL_STATE(4588)] = 90818, - [SMALL_STATE(4589)] = 90903, - [SMALL_STATE(4590)] = 91006, - [SMALL_STATE(4591)] = 91091, - [SMALL_STATE(4592)] = 91192, - [SMALL_STATE(4593)] = 91277, - [SMALL_STATE(4594)] = 91362, - [SMALL_STATE(4595)] = 91501, - [SMALL_STATE(4596)] = 91640, - [SMALL_STATE(4597)] = 91729, - [SMALL_STATE(4598)] = 91814, - [SMALL_STATE(4599)] = 91899, - [SMALL_STATE(4600)] = 91984, - [SMALL_STATE(4601)] = 92069, - [SMALL_STATE(4602)] = 92154, - [SMALL_STATE(4603)] = 92243, - [SMALL_STATE(4604)] = 92350, - [SMALL_STATE(4605)] = 92463, - [SMALL_STATE(4606)] = 92574, - [SMALL_STATE(4607)] = 92691, - [SMALL_STATE(4608)] = 92776, - [SMALL_STATE(4609)] = 92861, - [SMALL_STATE(4610)] = 93000, - [SMALL_STATE(4611)] = 93139, - [SMALL_STATE(4612)] = 93278, - [SMALL_STATE(4613)] = 93417, - [SMALL_STATE(4614)] = 93502, - [SMALL_STATE(4615)] = 93641, - [SMALL_STATE(4616)] = 93780, - [SMALL_STATE(4617)] = 93865, - [SMALL_STATE(4618)] = 94004, - [SMALL_STATE(4619)] = 94089, - [SMALL_STATE(4620)] = 94228, - [SMALL_STATE(4621)] = 94363, - [SMALL_STATE(4622)] = 94504, - [SMALL_STATE(4623)] = 94637, - [SMALL_STATE(4624)] = 94762, - [SMALL_STATE(4625)] = 94847, - [SMALL_STATE(4626)] = 94974, - [SMALL_STATE(4627)] = 95105, - [SMALL_STATE(4628)] = 95190, - [SMALL_STATE(4629)] = 95329, - [SMALL_STATE(4630)] = 95458, - [SMALL_STATE(4631)] = 95543, - [SMALL_STATE(4632)] = 95682, - [SMALL_STATE(4633)] = 95767, - [SMALL_STATE(4634)] = 95852, - [SMALL_STATE(4635)] = 95937, - [SMALL_STATE(4636)] = 96022, - [SMALL_STATE(4637)] = 96107, - [SMALL_STATE(4638)] = 96192, - [SMALL_STATE(4639)] = 96331, - [SMALL_STATE(4640)] = 96470, - [SMALL_STATE(4641)] = 96573, - [SMALL_STATE(4642)] = 96658, - [SMALL_STATE(4643)] = 96761, - [SMALL_STATE(4644)] = 96900, - [SMALL_STATE(4645)] = 96985, - [SMALL_STATE(4646)] = 97088, - [SMALL_STATE(4647)] = 97173, - [SMALL_STATE(4648)] = 97312, - [SMALL_STATE(4649)] = 97451, - [SMALL_STATE(4650)] = 97590, - [SMALL_STATE(4651)] = 97729, - [SMALL_STATE(4652)] = 97868, - [SMALL_STATE(4653)] = 98007, - [SMALL_STATE(4654)] = 98092, - [SMALL_STATE(4655)] = 98231, - [SMALL_STATE(4656)] = 98332, - [SMALL_STATE(4657)] = 98471, - [SMALL_STATE(4658)] = 98578, - [SMALL_STATE(4659)] = 98663, - [SMALL_STATE(4660)] = 98780, - [SMALL_STATE(4661)] = 98865, - [SMALL_STATE(4662)] = 98976, - [SMALL_STATE(4663)] = 99061, - [SMALL_STATE(4664)] = 99174, - [SMALL_STATE(4665)] = 99259, - [SMALL_STATE(4666)] = 99344, - [SMALL_STATE(4667)] = 99483, - [SMALL_STATE(4668)] = 99622, - [SMALL_STATE(4669)] = 99713, - [SMALL_STATE(4670)] = 99800, - [SMALL_STATE(4671)] = 99885, - [SMALL_STATE(4672)] = 99970, - [SMALL_STATE(4673)] = 100059, - [SMALL_STATE(4674)] = 100198, - [SMALL_STATE(4675)] = 100315, - [SMALL_STATE(4676)] = 100454, - [SMALL_STATE(4677)] = 100539, - [SMALL_STATE(4678)] = 100646, - [SMALL_STATE(4679)] = 100757, - [SMALL_STATE(4680)] = 100860, - [SMALL_STATE(4681)] = 100945, - [SMALL_STATE(4682)] = 101084, - [SMALL_STATE(4683)] = 101219, - [SMALL_STATE(4684)] = 101352, - [SMALL_STATE(4685)] = 101455, - [SMALL_STATE(4686)] = 101580, - [SMALL_STATE(4687)] = 101693, - [SMALL_STATE(4688)] = 101820, - [SMALL_STATE(4689)] = 101951, - [SMALL_STATE(4690)] = 102080, - [SMALL_STATE(4691)] = 102187, - [SMALL_STATE(4692)] = 102300, - [SMALL_STATE(4693)] = 102411, - [SMALL_STATE(4694)] = 102528, - [SMALL_STATE(4695)] = 102613, - [SMALL_STATE(4696)] = 102744, - [SMALL_STATE(4697)] = 102829, - [SMALL_STATE(4698)] = 102932, - [SMALL_STATE(4699)] = 103017, - [SMALL_STATE(4700)] = 103102, - [SMALL_STATE(4701)] = 103187, - [SMALL_STATE(4702)] = 103274, - [SMALL_STATE(4703)] = 103413, - [SMALL_STATE(4704)] = 103552, - [SMALL_STATE(4705)] = 103691, - [SMALL_STATE(4706)] = 103776, - [SMALL_STATE(4707)] = 103861, - [SMALL_STATE(4708)] = 104000, - [SMALL_STATE(4709)] = 104085, - [SMALL_STATE(4710)] = 104186, - [SMALL_STATE(4711)] = 104325, - [SMALL_STATE(4712)] = 104410, - [SMALL_STATE(4713)] = 104539, - [SMALL_STATE(4714)] = 104678, - [SMALL_STATE(4715)] = 104813, - [SMALL_STATE(4716)] = 104898, - [SMALL_STATE(4717)] = 104983, - [SMALL_STATE(4718)] = 105086, - [SMALL_STATE(4719)] = 105225, - [SMALL_STATE(4720)] = 105310, - [SMALL_STATE(4721)] = 105395, - [SMALL_STATE(4722)] = 105480, - [SMALL_STATE(4723)] = 105565, - [SMALL_STATE(4724)] = 105650, - [SMALL_STATE(4725)] = 105783, - [SMALL_STATE(4726)] = 105868, - [SMALL_STATE(4727)] = 105993, - [SMALL_STATE(4728)] = 106120, - [SMALL_STATE(4729)] = 106258, - [SMALL_STATE(4730)] = 106342, - [SMALL_STATE(4731)] = 106484, - [SMALL_STATE(4732)] = 106572, - [SMALL_STATE(4733)] = 106688, - [SMALL_STATE(4734)] = 106820, - [SMALL_STATE(4735)] = 106952, - [SMALL_STATE(4736)] = 107062, - [SMALL_STATE(4737)] = 107168, - [SMALL_STATE(4738)] = 107296, - [SMALL_STATE(4739)] = 107426, - [SMALL_STATE(4740)] = 107552, - [SMALL_STATE(4741)] = 107664, - [SMALL_STATE(4742)] = 107788, - [SMALL_STATE(4743)] = 107930, - [SMALL_STATE(4744)] = 108032, - [SMALL_STATE(4745)] = 108164, - [SMALL_STATE(4746)] = 108298, - [SMALL_STATE(4747)] = 108436, - [SMALL_STATE(4748)] = 108552, - [SMALL_STATE(4749)] = 108690, - [SMALL_STATE(4750)] = 108828, - [SMALL_STATE(4751)] = 108940, - [SMALL_STATE(4752)] = 109042, - [SMALL_STATE(4753)] = 109180, - [SMALL_STATE(4754)] = 109318, - [SMALL_STATE(4755)] = 109452, - [SMALL_STATE(4756)] = 109564, - [SMALL_STATE(4757)] = 109698, - [SMALL_STATE(4758)] = 109836, - [SMALL_STATE(4759)] = 109974, - [SMALL_STATE(4760)] = 110112, - [SMALL_STATE(4761)] = 110250, - [SMALL_STATE(4762)] = 110356, - [SMALL_STATE(4763)] = 110494, - [SMALL_STATE(4764)] = 110596, - [SMALL_STATE(4765)] = 110708, - [SMALL_STATE(4766)] = 110846, - [SMALL_STATE(4767)] = 110984, - [SMALL_STATE(4768)] = 111096, - [SMALL_STATE(4769)] = 111182, - [SMALL_STATE(4770)] = 111270, - [SMALL_STATE(4771)] = 111356, - [SMALL_STATE(4772)] = 111494, - [SMALL_STATE(4773)] = 111632, - [SMALL_STATE(4774)] = 111770, - [SMALL_STATE(4775)] = 111908, - [SMALL_STATE(4776)] = 111994, - [SMALL_STATE(4777)] = 112080, - [SMALL_STATE(4778)] = 112192, - [SMALL_STATE(4779)] = 112316, - [SMALL_STATE(4780)] = 112432, - [SMALL_STATE(4781)] = 112570, - [SMALL_STATE(4782)] = 112708, - [SMALL_STATE(4783)] = 112796, - [SMALL_STATE(4784)] = 112898, - [SMALL_STATE(4785)] = 112986, - [SMALL_STATE(4786)] = 113102, - [SMALL_STATE(4787)] = 113214, - [SMALL_STATE(4788)] = 113352, - [SMALL_STATE(4789)] = 113440, - [SMALL_STATE(4790)] = 113578, - [SMALL_STATE(4791)] = 113690, - [SMALL_STATE(4792)] = 113800, - [SMALL_STATE(4793)] = 113888, - [SMALL_STATE(4794)] = 113976, - [SMALL_STATE(4795)] = 114104, - [SMALL_STATE(4796)] = 114234, - [SMALL_STATE(4797)] = 114346, - [SMALL_STATE(4798)] = 114448, - [SMALL_STATE(4799)] = 114586, - [SMALL_STATE(4800)] = 114728, - [SMALL_STATE(4801)] = 114814, - [SMALL_STATE(4802)] = 114926, - [SMALL_STATE(4803)] = 115064, - [SMALL_STATE(4804)] = 115170, - [SMALL_STATE(4805)] = 115308, - [SMALL_STATE(4806)] = 115450, - [SMALL_STATE(4807)] = 115552, - [SMALL_STATE(4808)] = 115662, - [SMALL_STATE(4809)] = 115764, - [SMALL_STATE(4810)] = 115890, - [SMALL_STATE(4811)] = 115996, - [SMALL_STATE(4812)] = 116134, - [SMALL_STATE(4813)] = 116250, - [SMALL_STATE(4814)] = 116360, - [SMALL_STATE(4815)] = 116448, - [SMALL_STATE(4816)] = 116576, - [SMALL_STATE(4817)] = 116706, - [SMALL_STATE(4818)] = 116832, - [SMALL_STATE(4819)] = 116944, - [SMALL_STATE(4820)] = 117056, - [SMALL_STATE(4821)] = 117180, - [SMALL_STATE(4822)] = 117312, - [SMALL_STATE(4823)] = 117446, - [SMALL_STATE(4824)] = 117584, - [SMALL_STATE(4825)] = 117726, - [SMALL_STATE(4826)] = 117850, - [SMALL_STATE(4827)] = 117982, - [SMALL_STATE(4828)] = 118116, - [SMALL_STATE(4829)] = 118254, - [SMALL_STATE(4830)] = 118392, - [SMALL_STATE(4831)] = 118530, - [SMALL_STATE(4832)] = 118668, - [SMALL_STATE(4833)] = 118780, - [SMALL_STATE(4834)] = 118918, - [SMALL_STATE(4835)] = 119056, - [SMALL_STATE(4836)] = 119198, - [SMALL_STATE(4837)] = 119340, - [SMALL_STATE(4838)] = 119474, - [SMALL_STATE(4839)] = 119612, - [SMALL_STATE(4840)] = 119744, - [SMALL_STATE(4841)] = 119868, - [SMALL_STATE(4842)] = 119970, - [SMALL_STATE(4843)] = 120082, - [SMALL_STATE(4844)] = 120220, - [SMALL_STATE(4845)] = 120346, - [SMALL_STATE(4846)] = 120484, - [SMALL_STATE(4847)] = 120614, - [SMALL_STATE(4848)] = 120742, - [SMALL_STATE(4849)] = 120880, - [SMALL_STATE(4850)] = 120968, - [SMALL_STATE(4851)] = 121078, - [SMALL_STATE(4852)] = 121194, - [SMALL_STATE(4853)] = 121328, - [SMALL_STATE(4854)] = 121440, - [SMALL_STATE(4855)] = 121566, - [SMALL_STATE(4856)] = 121704, - [SMALL_STATE(4857)] = 121842, - [SMALL_STATE(4858)] = 121954, - [SMALL_STATE(4859)] = 122094, - [SMALL_STATE(4860)] = 122232, - [SMALL_STATE(4861)] = 122364, - [SMALL_STATE(4862)] = 122466, - [SMALL_STATE(4863)] = 122552, - [SMALL_STATE(4864)] = 122654, - [SMALL_STATE(4865)] = 122784, - [SMALL_STATE(4866)] = 122922, - [SMALL_STATE(4867)] = 123060, - [SMALL_STATE(4868)] = 123166, - [SMALL_STATE(4869)] = 123268, - [SMALL_STATE(4870)] = 123392, - [SMALL_STATE(4871)] = 123484, - [SMALL_STATE(4872)] = 123622, - [SMALL_STATE(4873)] = 123724, - [SMALL_STATE(4874)] = 123836, - [SMALL_STATE(4875)] = 123924, - [SMALL_STATE(4876)] = 124050, - [SMALL_STATE(4877)] = 124180, - [SMALL_STATE(4878)] = 124318, - [SMALL_STATE(4879)] = 124458, - [SMALL_STATE(4880)] = 124596, - [SMALL_STATE(4881)] = 124708, - [SMALL_STATE(4882)] = 124846, - [SMALL_STATE(4883)] = 124952, - [SMALL_STATE(4884)] = 125090, - [SMALL_STATE(4885)] = 125218, - [SMALL_STATE(4886)] = 125330, - [SMALL_STATE(4887)] = 125472, - [SMALL_STATE(4888)] = 125578, - [SMALL_STATE(4889)] = 125720, - [SMALL_STATE(4890)] = 125808, - [SMALL_STATE(4891)] = 125946, - [SMALL_STATE(4892)] = 126088, - [SMALL_STATE(4893)] = 126194, - [SMALL_STATE(4894)] = 126304, - [SMALL_STATE(4895)] = 126416, - [SMALL_STATE(4896)] = 126554, - [SMALL_STATE(4897)] = 126642, - [SMALL_STATE(4898)] = 126758, - [SMALL_STATE(4899)] = 126900, - [SMALL_STATE(4900)] = 127012, - [SMALL_STATE(4901)] = 127100, - [SMALL_STATE(4902)] = 127210, - [SMALL_STATE(4903)] = 127348, - [SMALL_STATE(4904)] = 127460, - [SMALL_STATE(4905)] = 127602, - [SMALL_STATE(4906)] = 127714, - [SMALL_STATE(4907)] = 127842, - [SMALL_STATE(4908)] = 127980, - [SMALL_STATE(4909)] = 128090, - [SMALL_STATE(4910)] = 128206, - [SMALL_STATE(4911)] = 128318, - [SMALL_STATE(4912)] = 128456, - [SMALL_STATE(4913)] = 128598, - [SMALL_STATE(4914)] = 128710, - [SMALL_STATE(4915)] = 128822, - [SMALL_STATE(4916)] = 128924, - [SMALL_STATE(4917)] = 129066, - [SMALL_STATE(4918)] = 129194, - [SMALL_STATE(4919)] = 129296, - [SMALL_STATE(4920)] = 129408, - [SMALL_STATE(4921)] = 129546, - [SMALL_STATE(4922)] = 129684, - [SMALL_STATE(4923)] = 129796, - [SMALL_STATE(4924)] = 129902, - [SMALL_STATE(4925)] = 130040, - [SMALL_STATE(4926)] = 130150, - [SMALL_STATE(4927)] = 130288, - [SMALL_STATE(4928)] = 130426, - [SMALL_STATE(4929)] = 130564, - [SMALL_STATE(4930)] = 130652, - [SMALL_STATE(4931)] = 130790, - [SMALL_STATE(4932)] = 130928, - [SMALL_STATE(4933)] = 131062, - [SMALL_STATE(4934)] = 131194, - [SMALL_STATE(4935)] = 131318, - [SMALL_STATE(4936)] = 131430, - [SMALL_STATE(4937)] = 131568, - [SMALL_STATE(4938)] = 131694, - [SMALL_STATE(4939)] = 131782, - [SMALL_STATE(4940)] = 131912, - [SMALL_STATE(4941)] = 132040, - [SMALL_STATE(4942)] = 132150, - [SMALL_STATE(4943)] = 132288, - [SMALL_STATE(4944)] = 132404, - [SMALL_STATE(4945)] = 132492, - [SMALL_STATE(4946)] = 132620, - [SMALL_STATE(4947)] = 132708, - [SMALL_STATE(4948)] = 132832, - [SMALL_STATE(4949)] = 132920, - [SMALL_STATE(4950)] = 133062, - [SMALL_STATE(4951)] = 133204, - [SMALL_STATE(4952)] = 133342, - [SMALL_STATE(4953)] = 133484, - [SMALL_STATE(4954)] = 133572, - [SMALL_STATE(4955)] = 133710, - [SMALL_STATE(4956)] = 133798, - [SMALL_STATE(4957)] = 133940, - [SMALL_STATE(4958)] = 134032, - [SMALL_STATE(4959)] = 134120, - [SMALL_STATE(4960)] = 134250, - [SMALL_STATE(4961)] = 134390, - [SMALL_STATE(4962)] = 134516, - [SMALL_STATE(4963)] = 134654, - [SMALL_STATE(4964)] = 134740, - [SMALL_STATE(4965)] = 134842, - [SMALL_STATE(4966)] = 134984, - [SMALL_STATE(4967)] = 135122, - [SMALL_STATE(4968)] = 135208, - [SMALL_STATE(4969)] = 135294, - [SMALL_STATE(4970)] = 135382, - [SMALL_STATE(4971)] = 135470, - [SMALL_STATE(4972)] = 135572, - [SMALL_STATE(4973)] = 135710, - [SMALL_STATE(4974)] = 135798, - [SMALL_STATE(4975)] = 135910, - [SMALL_STATE(4976)] = 136048, - [SMALL_STATE(4977)] = 136190, - [SMALL_STATE(4978)] = 136324, - [SMALL_STATE(4979)] = 136426, - [SMALL_STATE(4980)] = 136564, - [SMALL_STATE(4981)] = 136676, - [SMALL_STATE(4982)] = 136788, - [SMALL_STATE(4983)] = 136912, - [SMALL_STATE(4984)] = 137024, - [SMALL_STATE(4985)] = 137166, - [SMALL_STATE(4986)] = 137268, - [SMALL_STATE(4987)] = 137370, - [SMALL_STATE(4988)] = 137500, - [SMALL_STATE(4989)] = 137638, - [SMALL_STATE(4990)] = 137750, - [SMALL_STATE(4991)] = 137882, - [SMALL_STATE(4992)] = 138020, - [SMALL_STATE(4993)] = 138146, - [SMALL_STATE(4994)] = 138284, - [SMALL_STATE(4995)] = 138422, - [SMALL_STATE(4996)] = 138560, - [SMALL_STATE(4997)] = 138697, - [SMALL_STATE(4998)] = 138836, - [SMALL_STATE(4999)] = 138935, - [SMALL_STATE(5000)] = 139034, - [SMALL_STATE(5001)] = 139135, - [SMALL_STATE(5002)] = 139272, - [SMALL_STATE(5003)] = 139359, - [SMALL_STATE(5004)] = 139458, - [SMALL_STATE(5005)] = 139597, - [SMALL_STATE(5006)] = 139696, - [SMALL_STATE(5007)] = 139795, - [SMALL_STATE(5008)] = 139894, - [SMALL_STATE(5009)] = 139979, - [SMALL_STATE(5010)] = 140090, - [SMALL_STATE(5011)] = 140195, - [SMALL_STATE(5012)] = 140332, - [SMALL_STATE(5013)] = 140419, - [SMALL_STATE(5014)] = 140556, - [SMALL_STATE(5015)] = 140641, - [SMALL_STATE(5016)] = 140740, - [SMALL_STATE(5017)] = 140849, - [SMALL_STATE(5018)] = 140964, - [SMALL_STATE(5019)] = 141065, - [SMALL_STATE(5020)] = 141202, - [SMALL_STATE(5021)] = 141293, - [SMALL_STATE(5022)] = 141378, - [SMALL_STATE(5023)] = 141477, - [SMALL_STATE(5024)] = 141562, - [SMALL_STATE(5025)] = 141699, - [SMALL_STATE(5026)] = 141798, - [SMALL_STATE(5027)] = 141937, - [SMALL_STATE(5028)] = 142036, - [SMALL_STATE(5029)] = 142173, - [SMALL_STATE(5030)] = 142310, - [SMALL_STATE(5031)] = 142447, - [SMALL_STATE(5032)] = 142584, - [SMALL_STATE(5033)] = 142683, - [SMALL_STATE(5034)] = 142820, - [SMALL_STATE(5035)] = 142919, - [SMALL_STATE(5036)] = 143056, - [SMALL_STATE(5037)] = 143193, - [SMALL_STATE(5038)] = 143330, - [SMALL_STATE(5039)] = 143467, - [SMALL_STATE(5040)] = 143566, - [SMALL_STATE(5041)] = 143703, - [SMALL_STATE(5042)] = 143790, - [SMALL_STATE(5043)] = 143875, - [SMALL_STATE(5044)] = 143984, - [SMALL_STATE(5045)] = 144121, - [SMALL_STATE(5046)] = 144258, - [SMALL_STATE(5047)] = 144357, - [SMALL_STATE(5048)] = 144466, - [SMALL_STATE(5049)] = 144551, - [SMALL_STATE(5050)] = 144688, - [SMALL_STATE(5051)] = 144825, - [SMALL_STATE(5052)] = 144910, - [SMALL_STATE(5053)] = 145047, - [SMALL_STATE(5054)] = 145184, - [SMALL_STATE(5055)] = 145283, - [SMALL_STATE(5056)] = 145382, - [SMALL_STATE(5057)] = 145483, - [SMALL_STATE(5058)] = 145620, - [SMALL_STATE(5059)] = 145707, - [SMALL_STATE(5060)] = 145806, - [SMALL_STATE(5061)] = 145893, - [SMALL_STATE(5062)] = 146008, - [SMALL_STATE(5063)] = 146117, - [SMALL_STATE(5064)] = 146254, - [SMALL_STATE(5065)] = 146359, - [SMALL_STATE(5066)] = 146486, - [SMALL_STATE(5067)] = 146615, - [SMALL_STATE(5068)] = 146752, - [SMALL_STATE(5069)] = 146855, - [SMALL_STATE(5070)] = 146992, - [SMALL_STATE(5071)] = 147129, - [SMALL_STATE(5072)] = 147254, - [SMALL_STATE(5073)] = 147353, - [SMALL_STATE(5074)] = 147490, - [SMALL_STATE(5075)] = 147601, - [SMALL_STATE(5076)] = 147738, - [SMALL_STATE(5077)] = 147839, - [SMALL_STATE(5078)] = 147976, - [SMALL_STATE(5079)] = 148075, - [SMALL_STATE(5080)] = 148214, - [SMALL_STATE(5081)] = 148351, - [SMALL_STATE(5082)] = 148452, - [SMALL_STATE(5083)] = 148575, - [SMALL_STATE(5084)] = 148706, - [SMALL_STATE(5085)] = 148839, - [SMALL_STATE(5086)] = 148976, - [SMALL_STATE(5087)] = 149075, - [SMALL_STATE(5088)] = 149208, - [SMALL_STATE(5089)] = 149339, - [SMALL_STATE(5090)] = 149426, - [SMALL_STATE(5091)] = 149563, - [SMALL_STATE(5092)] = 149700, - [SMALL_STATE(5093)] = 149787, - [SMALL_STATE(5094)] = 149920, - [SMALL_STATE(5095)] = 150051, - [SMALL_STATE(5096)] = 150138, - [SMALL_STATE(5097)] = 150261, - [SMALL_STATE(5098)] = 150398, - [SMALL_STATE(5099)] = 150509, - [SMALL_STATE(5100)] = 150634, - [SMALL_STATE(5101)] = 150763, - [SMALL_STATE(5102)] = 150890, - [SMALL_STATE(5103)] = 150977, - [SMALL_STATE(5104)] = 151078, - [SMALL_STATE(5105)] = 151215, - [SMALL_STATE(5106)] = 151320, - [SMALL_STATE(5107)] = 151407, - [SMALL_STATE(5108)] = 151516, - [SMALL_STATE(5109)] = 151653, - [SMALL_STATE(5110)] = 151768, - [SMALL_STATE(5111)] = 151891, - [SMALL_STATE(5112)] = 151978, - [SMALL_STATE(5113)] = 152077, - [SMALL_STATE(5114)] = 152214, - [SMALL_STATE(5115)] = 152351, - [SMALL_STATE(5116)] = 152488, - [SMALL_STATE(5117)] = 152589, - [SMALL_STATE(5118)] = 152726, - [SMALL_STATE(5119)] = 152863, - [SMALL_STATE(5120)] = 153000, - [SMALL_STATE(5121)] = 153125, - [SMALL_STATE(5122)] = 153262, - [SMALL_STATE(5123)] = 153363, - [SMALL_STATE(5124)] = 153500, - [SMALL_STATE(5125)] = 153585, - [SMALL_STATE(5126)] = 153722, - [SMALL_STATE(5127)] = 153825, - [SMALL_STATE(5128)] = 153954, - [SMALL_STATE(5129)] = 154081, - [SMALL_STATE(5130)] = 154180, - [SMALL_STATE(5131)] = 154317, - [SMALL_STATE(5132)] = 154454, - [SMALL_STATE(5133)] = 154569, - [SMALL_STATE(5134)] = 154678, - [SMALL_STATE(5135)] = 154783, - [SMALL_STATE(5136)] = 154910, - [SMALL_STATE(5137)] = 155039, - [SMALL_STATE(5138)] = 155164, - [SMALL_STATE(5139)] = 155275, - [SMALL_STATE(5140)] = 155398, - [SMALL_STATE(5141)] = 155529, - [SMALL_STATE(5142)] = 155662, - [SMALL_STATE(5143)] = 155799, - [SMALL_STATE(5144)] = 155936, - [SMALL_STATE(5145)] = 156073, - [SMALL_STATE(5146)] = 156172, - [SMALL_STATE(5147)] = 156257, - [SMALL_STATE(5148)] = 156350, - [SMALL_STATE(5149)] = 156435, - [SMALL_STATE(5150)] = 156572, - [SMALL_STATE(5151)] = 156709, - [SMALL_STATE(5152)] = 156846, - [SMALL_STATE(5153)] = 156933, - [SMALL_STATE(5154)] = 157018, - [SMALL_STATE(5155)] = 157111, - [SMALL_STATE(5156)] = 157210, - [SMALL_STATE(5157)] = 157309, - [SMALL_STATE(5158)] = 157418, - [SMALL_STATE(5159)] = 157517, - [SMALL_STATE(5160)] = 157616, - [SMALL_STATE(5161)] = 157753, - [SMALL_STATE(5162)] = 157840, - [SMALL_STATE(5163)] = 157979, - [SMALL_STATE(5164)] = 158093, - [SMALL_STATE(5165)] = 158229, - [SMALL_STATE(5166)] = 158365, - [SMALL_STATE(5167)] = 158451, - [SMALL_STATE(5168)] = 158587, - [SMALL_STATE(5169)] = 158673, - [SMALL_STATE(5170)] = 158759, - [SMALL_STATE(5171)] = 158895, - [SMALL_STATE(5172)] = 159031, - [SMALL_STATE(5173)] = 159167, - [SMALL_STATE(5174)] = 159303, - [SMALL_STATE(5175)] = 159395, - [SMALL_STATE(5176)] = 159531, - [SMALL_STATE(5177)] = 159667, - [SMALL_STATE(5178)] = 159751, - [SMALL_STATE(5179)] = 159887, - [SMALL_STATE(5180)] = 160023, - [SMALL_STATE(5181)] = 160159, - [SMALL_STATE(5182)] = 160243, - [SMALL_STATE(5183)] = 160327, - [SMALL_STATE(5184)] = 160413, - [SMALL_STATE(5185)] = 160499, - [SMALL_STATE(5186)] = 160635, - [SMALL_STATE(5187)] = 160771, - [SMALL_STATE(5188)] = 160855, - [SMALL_STATE(5189)] = 160991, - [SMALL_STATE(5190)] = 161095, - [SMALL_STATE(5191)] = 161179, - [SMALL_STATE(5192)] = 161315, - [SMALL_STATE(5193)] = 161415, - [SMALL_STATE(5194)] = 161551, - [SMALL_STATE(5195)] = 161687, - [SMALL_STATE(5196)] = 161773, - [SMALL_STATE(5197)] = 161909, - [SMALL_STATE(5198)] = 161995, - [SMALL_STATE(5199)] = 162131, - [SMALL_STATE(5200)] = 162267, - [SMALL_STATE(5201)] = 162403, - [SMALL_STATE(5202)] = 162489, - [SMALL_STATE(5203)] = 162625, - [SMALL_STATE(5204)] = 162761, - [SMALL_STATE(5205)] = 162897, - [SMALL_STATE(5206)] = 162997, - [SMALL_STATE(5207)] = 163081, - [SMALL_STATE(5208)] = 163217, - [SMALL_STATE(5209)] = 163353, - [SMALL_STATE(5210)] = 163437, - [SMALL_STATE(5211)] = 163573, - [SMALL_STATE(5212)] = 163709, - [SMALL_STATE(5213)] = 163845, - [SMALL_STATE(5214)] = 163981, - [SMALL_STATE(5215)] = 164117, - [SMALL_STATE(5216)] = 164203, - [SMALL_STATE(5217)] = 164339, - [SMALL_STATE(5218)] = 164475, - [SMALL_STATE(5219)] = 164611, - [SMALL_STATE(5220)] = 164697, - [SMALL_STATE(5221)] = 164779, - [SMALL_STATE(5222)] = 164915, - [SMALL_STATE(5223)] = 165051, - [SMALL_STATE(5224)] = 165187, - [SMALL_STATE(5225)] = 165269, - [SMALL_STATE(5226)] = 165405, - [SMALL_STATE(5227)] = 165541, - [SMALL_STATE(5228)] = 165677, - [SMALL_STATE(5229)] = 165813, - [SMALL_STATE(5230)] = 165949, - [SMALL_STATE(5231)] = 166053, - [SMALL_STATE(5232)] = 166189, - [SMALL_STATE(5233)] = 166325, - [SMALL_STATE(5234)] = 166411, - [SMALL_STATE(5235)] = 166547, - [SMALL_STATE(5236)] = 166683, - [SMALL_STATE(5237)] = 166819, - [SMALL_STATE(5238)] = 166903, - [SMALL_STATE(5239)] = 167039, - [SMALL_STATE(5240)] = 167125, - [SMALL_STATE(5241)] = 167261, - [SMALL_STATE(5242)] = 167397, - [SMALL_STATE(5243)] = 167533, - [SMALL_STATE(5244)] = 167669, - [SMALL_STATE(5245)] = 167805, - [SMALL_STATE(5246)] = 167941, - [SMALL_STATE(5247)] = 168077, - [SMALL_STATE(5248)] = 168209, - [SMALL_STATE(5249)] = 168339, - [SMALL_STATE(5250)] = 168475, - [SMALL_STATE(5251)] = 168611, - [SMALL_STATE(5252)] = 168711, - [SMALL_STATE(5253)] = 168833, - [SMALL_STATE(5254)] = 168969, - [SMALL_STATE(5255)] = 169079, - [SMALL_STATE(5256)] = 169203, - [SMALL_STATE(5257)] = 169339, - [SMALL_STATE(5258)] = 169467, - [SMALL_STATE(5259)] = 169593, - [SMALL_STATE(5260)] = 169697, - [SMALL_STATE(5261)] = 169833, - [SMALL_STATE(5262)] = 169969, - [SMALL_STATE(5263)] = 170101, - [SMALL_STATE(5264)] = 170237, - [SMALL_STATE(5265)] = 170367, - [SMALL_STATE(5266)] = 170503, - [SMALL_STATE(5267)] = 170639, - [SMALL_STATE(5268)] = 170747, - [SMALL_STATE(5269)] = 170869, - [SMALL_STATE(5270)] = 170983, - [SMALL_STATE(5271)] = 171119, - [SMALL_STATE(5272)] = 171255, - [SMALL_STATE(5273)] = 171363, - [SMALL_STATE(5274)] = 171467, - [SMALL_STATE(5275)] = 171593, - [SMALL_STATE(5276)] = 171721, - [SMALL_STATE(5277)] = 171845, - [SMALL_STATE(5278)] = 171955, - [SMALL_STATE(5279)] = 172077, - [SMALL_STATE(5280)] = 172163, - [SMALL_STATE(5281)] = 172263, - [SMALL_STATE(5282)] = 172393, - [SMALL_STATE(5283)] = 172525, - [SMALL_STATE(5284)] = 172661, - [SMALL_STATE(5285)] = 172785, - [SMALL_STATE(5286)] = 172921, - [SMALL_STATE(5287)] = 173057, - [SMALL_STATE(5288)] = 173185, - [SMALL_STATE(5289)] = 173321, - [SMALL_STATE(5290)] = 173457, - [SMALL_STATE(5291)] = 173593, - [SMALL_STATE(5292)] = 173719, - [SMALL_STATE(5293)] = 173855, - [SMALL_STATE(5294)] = 173991, - [SMALL_STATE(5295)] = 174127, - [SMALL_STATE(5296)] = 174263, - [SMALL_STATE(5297)] = 174399, - [SMALL_STATE(5298)] = 174499, - [SMALL_STATE(5299)] = 174585, - [SMALL_STATE(5300)] = 174669, - [SMALL_STATE(5301)] = 174805, - [SMALL_STATE(5302)] = 174891, - [SMALL_STATE(5303)] = 174977, - [SMALL_STATE(5304)] = 175063, - [SMALL_STATE(5305)] = 175199, - [SMALL_STATE(5306)] = 175335, - [SMALL_STATE(5307)] = 175421, - [SMALL_STATE(5308)] = 175557, - [SMALL_STATE(5309)] = 175643, - [SMALL_STATE(5310)] = 175743, - [SMALL_STATE(5311)] = 175853, - [SMALL_STATE(5312)] = 175989, - [SMALL_STATE(5313)] = 176075, - [SMALL_STATE(5314)] = 176211, - [SMALL_STATE(5315)] = 176347, - [SMALL_STATE(5316)] = 176483, - [SMALL_STATE(5317)] = 176619, - [SMALL_STATE(5318)] = 176705, - [SMALL_STATE(5319)] = 176841, - [SMALL_STATE(5320)] = 176977, - [SMALL_STATE(5321)] = 177113, - [SMALL_STATE(5322)] = 177249, - [SMALL_STATE(5323)] = 177333, - [SMALL_STATE(5324)] = 177469, - [SMALL_STATE(5325)] = 177605, - [SMALL_STATE(5326)] = 177741, - [SMALL_STATE(5327)] = 177877, - [SMALL_STATE(5328)] = 178013, - [SMALL_STATE(5329)] = 178117, - [SMALL_STATE(5330)] = 178225, - [SMALL_STATE(5331)] = 178339, - [SMALL_STATE(5332)] = 178475, - [SMALL_STATE(5333)] = 178561, - [SMALL_STATE(5334)] = 178697, - [SMALL_STATE(5335)] = 178833, - [SMALL_STATE(5336)] = 178947, - [SMALL_STATE(5337)] = 179083, - [SMALL_STATE(5338)] = 179219, - [SMALL_STATE(5339)] = 179355, - [SMALL_STATE(5340)] = 179491, - [SMALL_STATE(5341)] = 179627, - [SMALL_STATE(5342)] = 179763, - [SMALL_STATE(5343)] = 179847, - [SMALL_STATE(5344)] = 179955, - [SMALL_STATE(5345)] = 180091, - [SMALL_STATE(5346)] = 180175, - [SMALL_STATE(5347)] = 180311, - [SMALL_STATE(5348)] = 180415, - [SMALL_STATE(5349)] = 180551, - [SMALL_STATE(5350)] = 180687, - [SMALL_STATE(5351)] = 180813, - [SMALL_STATE(5352)] = 180949, - [SMALL_STATE(5353)] = 181037, - [SMALL_STATE(5354)] = 181165, - [SMALL_STATE(5355)] = 181251, - [SMALL_STATE(5356)] = 181375, - [SMALL_STATE(5357)] = 181485, - [SMALL_STATE(5358)] = 181621, - [SMALL_STATE(5359)] = 181757, - [SMALL_STATE(5360)] = 181893, - [SMALL_STATE(5361)] = 182029, - [SMALL_STATE(5362)] = 182165, - [SMALL_STATE(5363)] = 182301, - [SMALL_STATE(5364)] = 182437, - [SMALL_STATE(5365)] = 182573, - [SMALL_STATE(5366)] = 182709, - [SMALL_STATE(5367)] = 182845, - [SMALL_STATE(5368)] = 182981, - [SMALL_STATE(5369)] = 183117, - [SMALL_STATE(5370)] = 183249, - [SMALL_STATE(5371)] = 183371, - [SMALL_STATE(5372)] = 183471, - [SMALL_STATE(5373)] = 183601, - [SMALL_STATE(5374)] = 183733, - [SMALL_STATE(5375)] = 183817, - [SMALL_STATE(5376)] = 183953, - [SMALL_STATE(5377)] = 184089, - [SMALL_STATE(5378)] = 184219, - [SMALL_STATE(5379)] = 184355, - [SMALL_STATE(5380)] = 184491, - [SMALL_STATE(5381)] = 184627, - [SMALL_STATE(5382)] = 184763, - [SMALL_STATE(5383)] = 184847, - [SMALL_STATE(5384)] = 184947, - [SMALL_STATE(5385)] = 185047, - [SMALL_STATE(5386)] = 185183, - [SMALL_STATE(5387)] = 185319, - [SMALL_STATE(5388)] = 185455, - [SMALL_STATE(5389)] = 185577, - [SMALL_STATE(5390)] = 185713, - [SMALL_STATE(5391)] = 185823, - [SMALL_STATE(5392)] = 185959, - [SMALL_STATE(5393)] = 186095, - [SMALL_STATE(5394)] = 186231, - [SMALL_STATE(5395)] = 186367, - [SMALL_STATE(5396)] = 186503, - [SMALL_STATE(5397)] = 186639, - [SMALL_STATE(5398)] = 186775, - [SMALL_STATE(5399)] = 186911, - [SMALL_STATE(5400)] = 187047, - [SMALL_STATE(5401)] = 187183, - [SMALL_STATE(5402)] = 187281, - [SMALL_STATE(5403)] = 187405, - [SMALL_STATE(5404)] = 187491, - [SMALL_STATE(5405)] = 187627, - [SMALL_STATE(5406)] = 187763, - [SMALL_STATE(5407)] = 187877, - [SMALL_STATE(5408)] = 188013, - [SMALL_STATE(5409)] = 188149, - [SMALL_STATE(5410)] = 188285, - [SMALL_STATE(5411)] = 188421, - [SMALL_STATE(5412)] = 188557, - [SMALL_STATE(5413)] = 188693, - [SMALL_STATE(5414)] = 188829, - [SMALL_STATE(5415)] = 188965, - [SMALL_STATE(5416)] = 189101, - [SMALL_STATE(5417)] = 189237, - [SMALL_STATE(5418)] = 189373, - [SMALL_STATE(5419)] = 189477, - [SMALL_STATE(5420)] = 189613, - [SMALL_STATE(5421)] = 189749, - [SMALL_STATE(5422)] = 189885, - [SMALL_STATE(5423)] = 190021, - [SMALL_STATE(5424)] = 190121, - [SMALL_STATE(5425)] = 190257, - [SMALL_STATE(5426)] = 190393, - [SMALL_STATE(5427)] = 190529, - [SMALL_STATE(5428)] = 190637, - [SMALL_STATE(5429)] = 190773, - [SMALL_STATE(5430)] = 190909, - [SMALL_STATE(5431)] = 191013, - [SMALL_STATE(5432)] = 191097, - [SMALL_STATE(5433)] = 191233, - [SMALL_STATE(5434)] = 191369, - [SMALL_STATE(5435)] = 191505, - [SMALL_STATE(5436)] = 191641, - [SMALL_STATE(5437)] = 191725, - [SMALL_STATE(5438)] = 191853, - [SMALL_STATE(5439)] = 191979, - [SMALL_STATE(5440)] = 192107, - [SMALL_STATE(5441)] = 192231, - [SMALL_STATE(5442)] = 192367, - [SMALL_STATE(5443)] = 192503, - [SMALL_STATE(5444)] = 192589, - [SMALL_STATE(5445)] = 192675, - [SMALL_STATE(5446)] = 192785, - [SMALL_STATE(5447)] = 192907, - [SMALL_STATE(5448)] = 193043, - [SMALL_STATE(5449)] = 193179, - [SMALL_STATE(5450)] = 193263, - [SMALL_STATE(5451)] = 193389, - [SMALL_STATE(5452)] = 193525, - [SMALL_STATE(5453)] = 193661, - [SMALL_STATE(5454)] = 193797, - [SMALL_STATE(5455)] = 193933, - [SMALL_STATE(5456)] = 194019, - [SMALL_STATE(5457)] = 194123, - [SMALL_STATE(5458)] = 194259, - [SMALL_STATE(5459)] = 194367, - [SMALL_STATE(5460)] = 194503, - [SMALL_STATE(5461)] = 194639, - [SMALL_STATE(5462)] = 194775, - [SMALL_STATE(5463)] = 194911, - [SMALL_STATE(5464)] = 195047, - [SMALL_STATE(5465)] = 195161, - [SMALL_STATE(5466)] = 195297, - [SMALL_STATE(5467)] = 195433, - [SMALL_STATE(5468)] = 195533, - [SMALL_STATE(5469)] = 195669, - [SMALL_STATE(5470)] = 195805, - [SMALL_STATE(5471)] = 195941, - [SMALL_STATE(5472)] = 196077, - [SMALL_STATE(5473)] = 196213, - [SMALL_STATE(5474)] = 196349, - [SMALL_STATE(5475)] = 196485, - [SMALL_STATE(5476)] = 196621, - [SMALL_STATE(5477)] = 196753, - [SMALL_STATE(5478)] = 196883, - [SMALL_STATE(5479)] = 197019, - [SMALL_STATE(5480)] = 197155, - [SMALL_STATE(5481)] = 197291, - [SMALL_STATE(5482)] = 197391, - [SMALL_STATE(5483)] = 197527, - [SMALL_STATE(5484)] = 197663, - [SMALL_STATE(5485)] = 197749, - [SMALL_STATE(5486)] = 197846, - [SMALL_STATE(5487)] = 197979, - [SMALL_STATE(5488)] = 198112, - [SMALL_STATE(5489)] = 198245, - [SMALL_STATE(5490)] = 198378, - [SMALL_STATE(5491)] = 198469, - [SMALL_STATE(5492)] = 198560, - [SMALL_STATE(5493)] = 198693, - [SMALL_STATE(5494)] = 198786, - [SMALL_STATE(5495)] = 198867, - [SMALL_STATE(5496)] = 199000, - [SMALL_STATE(5497)] = 199133, - [SMALL_STATE(5498)] = 199266, - [SMALL_STATE(5499)] = 199363, - [SMALL_STATE(5500)] = 199496, - [SMALL_STATE(5501)] = 199629, - [SMALL_STATE(5502)] = 199762, - [SMALL_STATE(5503)] = 199895, - [SMALL_STATE(5504)] = 200028, - [SMALL_STATE(5505)] = 200161, - [SMALL_STATE(5506)] = 200294, - [SMALL_STATE(5507)] = 200427, - [SMALL_STATE(5508)] = 200508, - [SMALL_STATE(5509)] = 200641, - [SMALL_STATE(5510)] = 200774, - [SMALL_STATE(5511)] = 200865, - [SMALL_STATE(5512)] = 200966, - [SMALL_STATE(5513)] = 201099, - [SMALL_STATE(5514)] = 201182, - [SMALL_STATE(5515)] = 201315, - [SMALL_STATE(5516)] = 201448, - [SMALL_STATE(5517)] = 201581, - [SMALL_STATE(5518)] = 201682, - [SMALL_STATE(5519)] = 201779, - [SMALL_STATE(5520)] = 201912, - [SMALL_STATE(5521)] = 202003, - [SMALL_STATE(5522)] = 202136, - [SMALL_STATE(5523)] = 202225, - [SMALL_STATE(5524)] = 202308, - [SMALL_STATE(5525)] = 202441, - [SMALL_STATE(5526)] = 202522, - [SMALL_STATE(5527)] = 202655, - [SMALL_STATE(5528)] = 202746, - [SMALL_STATE(5529)] = 202879, - [SMALL_STATE(5530)] = 202976, - [SMALL_STATE(5531)] = 203109, - [SMALL_STATE(5532)] = 203190, - [SMALL_STATE(5533)] = 203323, - [SMALL_STATE(5534)] = 203404, - [SMALL_STATE(5535)] = 203537, - [SMALL_STATE(5536)] = 203670, - [SMALL_STATE(5537)] = 203761, - [SMALL_STATE(5538)] = 203894, - [SMALL_STATE(5539)] = 203984, - [SMALL_STATE(5540)] = 204074, - [SMALL_STATE(5541)] = 204172, - [SMALL_STATE(5542)] = 204268, - [SMALL_STATE(5543)] = 204358, - [SMALL_STATE(5544)] = 204456, - [SMALL_STATE(5545)] = 204554, - [SMALL_STATE(5546)] = 204650, - [SMALL_STATE(5547)] = 204740, - [SMALL_STATE(5548)] = 204830, - [SMALL_STATE(5549)] = 204912, - [SMALL_STATE(5550)] = 204994, - [SMALL_STATE(5551)] = 205094, - [SMALL_STATE(5552)] = 205184, - [SMALL_STATE(5553)] = 205280, - [SMALL_STATE(5554)] = 205370, - [SMALL_STATE(5555)] = 205470, - [SMALL_STATE(5556)] = 205560, - [SMALL_STATE(5557)] = 205650, - [SMALL_STATE(5558)] = 205744, - [SMALL_STATE(5559)] = 205837, - [SMALL_STATE(5560)] = 205922, - [SMALL_STATE(5561)] = 206009, - [SMALL_STATE(5562)] = 206104, - [SMALL_STATE(5563)] = 206197, - [SMALL_STATE(5564)] = 206290, - [SMALL_STATE(5565)] = 206385, - [SMALL_STATE(5566)] = 206476, - [SMALL_STATE(5567)] = 206569, - [SMALL_STATE(5568)] = 206664, - [SMALL_STATE(5569)] = 206755, - [SMALL_STATE(5570)] = 206850, - [SMALL_STATE(5571)] = 206931, - [SMALL_STATE(5572)] = 207024, - [SMALL_STATE(5573)] = 207115, - [SMALL_STATE(5574)] = 207208, - [SMALL_STATE(5575)] = 207303, - [SMALL_STATE(5576)] = 207394, - [SMALL_STATE(5577)] = 207489, - [SMALL_STATE(5578)] = 207586, - [SMALL_STATE(5579)] = 207681, - [SMALL_STATE(5580)] = 207768, - [SMALL_STATE(5581)] = 207863, - [SMALL_STATE(5582)] = 207950, - [SMALL_STATE(5583)] = 208042, - [SMALL_STATE(5584)] = 208128, - [SMALL_STATE(5585)] = 208220, - [SMALL_STATE(5586)] = 208312, - [SMALL_STATE(5587)] = 208392, - [SMALL_STATE(5588)] = 208484, - [SMALL_STATE(5589)] = 208576, - [SMALL_STATE(5590)] = 208668, - [SMALL_STATE(5591)] = 208760, - [SMALL_STATE(5592)] = 208852, - [SMALL_STATE(5593)] = 208944, - [SMALL_STATE(5594)] = 209036, - [SMALL_STATE(5595)] = 209130, - [SMALL_STATE(5596)] = 209222, - [SMALL_STATE(5597)] = 209314, - [SMALL_STATE(5598)] = 209406, - [SMALL_STATE(5599)] = 209498, - [SMALL_STATE(5600)] = 209590, - [SMALL_STATE(5601)] = 209682, - [SMALL_STATE(5602)] = 209774, - [SMALL_STATE(5603)] = 209866, - [SMALL_STATE(5604)] = 209960, - [SMALL_STATE(5605)] = 210052, - [SMALL_STATE(5606)] = 210144, - [SMALL_STATE(5607)] = 210229, - [SMALL_STATE(5608)] = 210320, - [SMALL_STATE(5609)] = 210409, - [SMALL_STATE(5610)] = 210490, - [SMALL_STATE(5611)] = 210579, - [SMALL_STATE(5612)] = 210664, - [SMALL_STATE(5613)] = 210755, - [SMALL_STATE(5614)] = 210844, - [SMALL_STATE(5615)] = 210933, - [SMALL_STATE(5616)] = 211024, - [SMALL_STATE(5617)] = 211113, - [SMALL_STATE(5618)] = 211202, - [SMALL_STATE(5619)] = 211291, - [SMALL_STATE(5620)] = 211380, - [SMALL_STATE(5621)] = 211457, - [SMALL_STATE(5622)] = 211546, - [SMALL_STATE(5623)] = 211636, - [SMALL_STATE(5624)] = 211726, - [SMALL_STATE(5625)] = 211816, - [SMALL_STATE(5626)] = 211906, - [SMALL_STATE(5627)] = 211996, - [SMALL_STATE(5628)] = 212086, - [SMALL_STATE(5629)] = 212176, - [SMALL_STATE(5630)] = 212266, - [SMALL_STATE(5631)] = 212356, - [SMALL_STATE(5632)] = 212446, - [SMALL_STATE(5633)] = 212536, - [SMALL_STATE(5634)] = 212626, - [SMALL_STATE(5635)] = 212716, - [SMALL_STATE(5636)] = 212806, - [SMALL_STATE(5637)] = 212896, - [SMALL_STATE(5638)] = 212986, - [SMALL_STATE(5639)] = 213076, - [SMALL_STATE(5640)] = 213166, - [SMALL_STATE(5641)] = 213256, - [SMALL_STATE(5642)] = 213346, - [SMALL_STATE(5643)] = 213432, - [SMALL_STATE(5644)] = 213522, - [SMALL_STATE(5645)] = 213612, - [SMALL_STATE(5646)] = 213702, - [SMALL_STATE(5647)] = 213792, - [SMALL_STATE(5648)] = 213882, - [SMALL_STATE(5649)] = 213972, - [SMALL_STATE(5650)] = 214062, - [SMALL_STATE(5651)] = 214140, - [SMALL_STATE(5652)] = 214230, - [SMALL_STATE(5653)] = 214320, - [SMALL_STATE(5654)] = 214410, - [SMALL_STATE(5655)] = 214500, - [SMALL_STATE(5656)] = 214590, - [SMALL_STATE(5657)] = 214680, - [SMALL_STATE(5658)] = 214770, - [SMALL_STATE(5659)] = 214860, - [SMALL_STATE(5660)] = 214950, - [SMALL_STATE(5661)] = 215040, - [SMALL_STATE(5662)] = 215130, - [SMALL_STATE(5663)] = 215220, - [SMALL_STATE(5664)] = 215310, - [SMALL_STATE(5665)] = 215400, - [SMALL_STATE(5666)] = 215490, - [SMALL_STATE(5667)] = 215576, - [SMALL_STATE(5668)] = 215666, - [SMALL_STATE(5669)] = 215756, - [SMALL_STATE(5670)] = 215846, - [SMALL_STATE(5671)] = 215936, - [SMALL_STATE(5672)] = 216026, - [SMALL_STATE(5673)] = 216116, - [SMALL_STATE(5674)] = 216206, - [SMALL_STATE(5675)] = 216296, - [SMALL_STATE(5676)] = 216382, - [SMALL_STATE(5677)] = 216468, - [SMALL_STATE(5678)] = 216554, - [SMALL_STATE(5679)] = 216632, - [SMALL_STATE(5680)] = 216722, - [SMALL_STATE(5681)] = 216812, - [SMALL_STATE(5682)] = 216902, - [SMALL_STATE(5683)] = 216992, - [SMALL_STATE(5684)] = 217082, - [SMALL_STATE(5685)] = 217170, - [SMALL_STATE(5686)] = 217260, - [SMALL_STATE(5687)] = 217350, - [SMALL_STATE(5688)] = 217440, - [SMALL_STATE(5689)] = 217525, - [SMALL_STATE(5690)] = 217610, - [SMALL_STATE(5691)] = 217695, - [SMALL_STATE(5692)] = 217780, - [SMALL_STATE(5693)] = 217865, - [SMALL_STATE(5694)] = 217950, - [SMALL_STATE(5695)] = 218035, - [SMALL_STATE(5696)] = 218120, - [SMALL_STATE(5697)] = 218207, - [SMALL_STATE(5698)] = 218292, - [SMALL_STATE(5699)] = 218375, - [SMALL_STATE(5700)] = 218450, - [SMALL_STATE(5701)] = 218535, - [SMALL_STATE(5702)] = 218620, - [SMALL_STATE(5703)] = 218705, - [SMALL_STATE(5704)] = 218790, - [SMALL_STATE(5705)] = 218875, - [SMALL_STATE(5706)] = 218960, - [SMALL_STATE(5707)] = 219045, - [SMALL_STATE(5708)] = 219130, - [SMALL_STATE(5709)] = 219215, - [SMALL_STATE(5710)] = 219300, - [SMALL_STATE(5711)] = 219381, - [SMALL_STATE(5712)] = 219466, - [SMALL_STATE(5713)] = 219549, - [SMALL_STATE(5714)] = 219634, - [SMALL_STATE(5715)] = 219721, - [SMALL_STATE(5716)] = 219808, - [SMALL_STATE(5717)] = 219893, - [SMALL_STATE(5718)] = 219978, - [SMALL_STATE(5719)] = 220063, - [SMALL_STATE(5720)] = 220150, - [SMALL_STATE(5721)] = 220225, - [SMALL_STATE(5722)] = 220310, - [SMALL_STATE(5723)] = 220391, - [SMALL_STATE(5724)] = 220474, - [SMALL_STATE(5725)] = 220549, - [SMALL_STATE(5726)] = 220634, - [SMALL_STATE(5727)] = 220717, - [SMALL_STATE(5728)] = 220802, - [SMALL_STATE(5729)] = 220887, - [SMALL_STATE(5730)] = 220971, - [SMALL_STATE(5731)] = 221055, - [SMALL_STATE(5732)] = 221139, - [SMALL_STATE(5733)] = 221223, - [SMALL_STATE(5734)] = 221307, - [SMALL_STATE(5735)] = 221391, - [SMALL_STATE(5736)] = 221475, - [SMALL_STATE(5737)] = 221559, - [SMALL_STATE(5738)] = 221635, - [SMALL_STATE(5739)] = 221719, - [SMALL_STATE(5740)] = 221803, - [SMALL_STATE(5741)] = 221887, - [SMALL_STATE(5742)] = 221971, - [SMALL_STATE(5743)] = 222055, - [SMALL_STATE(5744)] = 222139, - [SMALL_STATE(5745)] = 222223, - [SMALL_STATE(5746)] = 222304, - [SMALL_STATE(5747)] = 222383, - [SMALL_STATE(5748)] = 222464, - [SMALL_STATE(5749)] = 222545, - [SMALL_STATE(5750)] = 222626, - [SMALL_STATE(5751)] = 222707, - [SMALL_STATE(5752)] = 222788, - [SMALL_STATE(5753)] = 222869, - [SMALL_STATE(5754)] = 222950, - [SMALL_STATE(5755)] = 223031, - [SMALL_STATE(5756)] = 223112, - [SMALL_STATE(5757)] = 223191, - [SMALL_STATE(5758)] = 223270, - [SMALL_STATE(5759)] = 223351, - [SMALL_STATE(5760)] = 223430, - [SMALL_STATE(5761)] = 223511, - [SMALL_STATE(5762)] = 223592, - [SMALL_STATE(5763)] = 223673, - [SMALL_STATE(5764)] = 223754, - [SMALL_STATE(5765)] = 223835, - [SMALL_STATE(5766)] = 223916, - [SMALL_STATE(5767)] = 223997, - [SMALL_STATE(5768)] = 224078, - [SMALL_STATE(5769)] = 224159, - [SMALL_STATE(5770)] = 224240, - [SMALL_STATE(5771)] = 224321, - [SMALL_STATE(5772)] = 224402, - [SMALL_STATE(5773)] = 224483, - [SMALL_STATE(5774)] = 224564, - [SMALL_STATE(5775)] = 224645, - [SMALL_STATE(5776)] = 224726, - [SMALL_STATE(5777)] = 224807, - [SMALL_STATE(5778)] = 224888, - [SMALL_STATE(5779)] = 224969, - [SMALL_STATE(5780)] = 225050, - [SMALL_STATE(5781)] = 225131, - [SMALL_STATE(5782)] = 225212, - [SMALL_STATE(5783)] = 225293, - [SMALL_STATE(5784)] = 225374, - [SMALL_STATE(5785)] = 225455, - [SMALL_STATE(5786)] = 225536, - [SMALL_STATE(5787)] = 225617, - [SMALL_STATE(5788)] = 225698, - [SMALL_STATE(5789)] = 225779, - [SMALL_STATE(5790)] = 225860, - [SMALL_STATE(5791)] = 225941, - [SMALL_STATE(5792)] = 226022, - [SMALL_STATE(5793)] = 226103, - [SMALL_STATE(5794)] = 226184, - [SMALL_STATE(5795)] = 226265, - [SMALL_STATE(5796)] = 226346, - [SMALL_STATE(5797)] = 226427, - [SMALL_STATE(5798)] = 226508, - [SMALL_STATE(5799)] = 226589, - [SMALL_STATE(5800)] = 226670, - [SMALL_STATE(5801)] = 226749, - [SMALL_STATE(5802)] = 226830, - [SMALL_STATE(5803)] = 226911, - [SMALL_STATE(5804)] = 226992, - [SMALL_STATE(5805)] = 227073, - [SMALL_STATE(5806)] = 227154, - [SMALL_STATE(5807)] = 227235, - [SMALL_STATE(5808)] = 227316, - [SMALL_STATE(5809)] = 227397, - [SMALL_STATE(5810)] = 227478, - [SMALL_STATE(5811)] = 227559, - [SMALL_STATE(5812)] = 227640, - [SMALL_STATE(5813)] = 227721, - [SMALL_STATE(5814)] = 227802, - [SMALL_STATE(5815)] = 227883, - [SMALL_STATE(5816)] = 227964, - [SMALL_STATE(5817)] = 228045, - [SMALL_STATE(5818)] = 228126, - [SMALL_STATE(5819)] = 228207, - [SMALL_STATE(5820)] = 228288, - [SMALL_STATE(5821)] = 228369, - [SMALL_STATE(5822)] = 228448, - [SMALL_STATE(5823)] = 228529, - [SMALL_STATE(5824)] = 228610, - [SMALL_STATE(5825)] = 228691, - [SMALL_STATE(5826)] = 228772, - [SMALL_STATE(5827)] = 228853, - [SMALL_STATE(5828)] = 228934, - [SMALL_STATE(5829)] = 229015, - [SMALL_STATE(5830)] = 229096, - [SMALL_STATE(5831)] = 229177, - [SMALL_STATE(5832)] = 229258, - [SMALL_STATE(5833)] = 229339, - [SMALL_STATE(5834)] = 229420, - [SMALL_STATE(5835)] = 229501, - [SMALL_STATE(5836)] = 229582, - [SMALL_STATE(5837)] = 229663, - [SMALL_STATE(5838)] = 229744, - [SMALL_STATE(5839)] = 229825, - [SMALL_STATE(5840)] = 229906, - [SMALL_STATE(5841)] = 229987, - [SMALL_STATE(5842)] = 230068, - [SMALL_STATE(5843)] = 230149, - [SMALL_STATE(5844)] = 230230, - [SMALL_STATE(5845)] = 230311, - [SMALL_STATE(5846)] = 230392, - [SMALL_STATE(5847)] = 230473, - [SMALL_STATE(5848)] = 230554, - [SMALL_STATE(5849)] = 230635, - [SMALL_STATE(5850)] = 230716, - [SMALL_STATE(5851)] = 230797, - [SMALL_STATE(5852)] = 230878, - [SMALL_STATE(5853)] = 230959, - [SMALL_STATE(5854)] = 231040, - [SMALL_STATE(5855)] = 231119, - [SMALL_STATE(5856)] = 231200, - [SMALL_STATE(5857)] = 231281, - [SMALL_STATE(5858)] = 231362, - [SMALL_STATE(5859)] = 231443, - [SMALL_STATE(5860)] = 231524, - [SMALL_STATE(5861)] = 231605, - [SMALL_STATE(5862)] = 231686, - [SMALL_STATE(5863)] = 231765, - [SMALL_STATE(5864)] = 231846, - [SMALL_STATE(5865)] = 231927, - [SMALL_STATE(5866)] = 232008, - [SMALL_STATE(5867)] = 232089, - [SMALL_STATE(5868)] = 232170, - [SMALL_STATE(5869)] = 232251, - [SMALL_STATE(5870)] = 232332, - [SMALL_STATE(5871)] = 232413, - [SMALL_STATE(5872)] = 232491, - [SMALL_STATE(5873)] = 232563, - [SMALL_STATE(5874)] = 232641, - [SMALL_STATE(5875)] = 232719, - [SMALL_STATE(5876)] = 232791, - [SMALL_STATE(5877)] = 232863, - [SMALL_STATE(5878)] = 232935, - [SMALL_STATE(5879)] = 233013, - [SMALL_STATE(5880)] = 233085, - [SMALL_STATE(5881)] = 233157, - [SMALL_STATE(5882)] = 233235, - [SMALL_STATE(5883)] = 233310, - [SMALL_STATE(5884)] = 233385, - [SMALL_STATE(5885)] = 233460, - [SMALL_STATE(5886)] = 233535, - [SMALL_STATE(5887)] = 233610, - [SMALL_STATE(5888)] = 233685, - [SMALL_STATE(5889)] = 233760, - [SMALL_STATE(5890)] = 233835, - [SMALL_STATE(5891)] = 233910, - [SMALL_STATE(5892)] = 233985, - [SMALL_STATE(5893)] = 234060, - [SMALL_STATE(5894)] = 234135, - [SMALL_STATE(5895)] = 234210, - [SMALL_STATE(5896)] = 234285, - [SMALL_STATE(5897)] = 234360, - [SMALL_STATE(5898)] = 234435, - [SMALL_STATE(5899)] = 234510, - [SMALL_STATE(5900)] = 234585, - [SMALL_STATE(5901)] = 234660, - [SMALL_STATE(5902)] = 234735, - [SMALL_STATE(5903)] = 234810, - [SMALL_STATE(5904)] = 234885, - [SMALL_STATE(5905)] = 234960, - [SMALL_STATE(5906)] = 235035, - [SMALL_STATE(5907)] = 235110, - [SMALL_STATE(5908)] = 235185, - [SMALL_STATE(5909)] = 235260, - [SMALL_STATE(5910)] = 235335, - [SMALL_STATE(5911)] = 235410, - [SMALL_STATE(5912)] = 235485, - [SMALL_STATE(5913)] = 235560, - [SMALL_STATE(5914)] = 235635, - [SMALL_STATE(5915)] = 235710, - [SMALL_STATE(5916)] = 235785, - [SMALL_STATE(5917)] = 235860, - [SMALL_STATE(5918)] = 235935, - [SMALL_STATE(5919)] = 236010, - [SMALL_STATE(5920)] = 236085, - [SMALL_STATE(5921)] = 236160, - [SMALL_STATE(5922)] = 236235, - [SMALL_STATE(5923)] = 236310, - [SMALL_STATE(5924)] = 236385, - [SMALL_STATE(5925)] = 236460, - [SMALL_STATE(5926)] = 236535, - [SMALL_STATE(5927)] = 236610, - [SMALL_STATE(5928)] = 236685, - [SMALL_STATE(5929)] = 236760, - [SMALL_STATE(5930)] = 236835, - [SMALL_STATE(5931)] = 236910, - [SMALL_STATE(5932)] = 236979, - [SMALL_STATE(5933)] = 237054, - [SMALL_STATE(5934)] = 237129, - [SMALL_STATE(5935)] = 237204, - [SMALL_STATE(5936)] = 237279, - [SMALL_STATE(5937)] = 237354, - [SMALL_STATE(5938)] = 237429, - [SMALL_STATE(5939)] = 237504, - [SMALL_STATE(5940)] = 237579, - [SMALL_STATE(5941)] = 237654, - [SMALL_STATE(5942)] = 237729, - [SMALL_STATE(5943)] = 237804, - [SMALL_STATE(5944)] = 237879, - [SMALL_STATE(5945)] = 237954, - [SMALL_STATE(5946)] = 238029, - [SMALL_STATE(5947)] = 238104, - [SMALL_STATE(5948)] = 238176, - [SMALL_STATE(5949)] = 238248, - [SMALL_STATE(5950)] = 238320, - [SMALL_STATE(5951)] = 238392, - [SMALL_STATE(5952)] = 238464, - [SMALL_STATE(5953)] = 238536, - [SMALL_STATE(5954)] = 238605, - [SMALL_STATE(5955)] = 238672, - [SMALL_STATE(5956)] = 238741, - [SMALL_STATE(5957)] = 238810, - [SMALL_STATE(5958)] = 238879, - [SMALL_STATE(5959)] = 238948, - [SMALL_STATE(5960)] = 239017, - [SMALL_STATE(5961)] = 239103, - [SMALL_STATE(5962)] = 239189, - [SMALL_STATE(5963)] = 239275, - [SMALL_STATE(5964)] = 239361, - [SMALL_STATE(5965)] = 239447, - [SMALL_STATE(5966)] = 239533, - [SMALL_STATE(5967)] = 239619, - [SMALL_STATE(5968)] = 239705, - [SMALL_STATE(5969)] = 239791, - [SMALL_STATE(5970)] = 239877, - [SMALL_STATE(5971)] = 239963, - [SMALL_STATE(5972)] = 240049, - [SMALL_STATE(5973)] = 240135, - [SMALL_STATE(5974)] = 240221, - [SMALL_STATE(5975)] = 240307, - [SMALL_STATE(5976)] = 240393, - [SMALL_STATE(5977)] = 240479, - [SMALL_STATE(5978)] = 240565, - [SMALL_STATE(5979)] = 240651, - [SMALL_STATE(5980)] = 240737, - [SMALL_STATE(5981)] = 240823, - [SMALL_STATE(5982)] = 240909, - [SMALL_STATE(5983)] = 240995, - [SMALL_STATE(5984)] = 241081, - [SMALL_STATE(5985)] = 241167, - [SMALL_STATE(5986)] = 241253, - [SMALL_STATE(5987)] = 241339, - [SMALL_STATE(5988)] = 241425, - [SMALL_STATE(5989)] = 241511, - [SMALL_STATE(5990)] = 241597, - [SMALL_STATE(5991)] = 241683, - [SMALL_STATE(5992)] = 241769, - [SMALL_STATE(5993)] = 241855, - [SMALL_STATE(5994)] = 241941, - [SMALL_STATE(5995)] = 242027, - [SMALL_STATE(5996)] = 242113, - [SMALL_STATE(5997)] = 242196, - [SMALL_STATE(5998)] = 242279, - [SMALL_STATE(5999)] = 242362, - [SMALL_STATE(6000)] = 242445, - [SMALL_STATE(6001)] = 242528, - [SMALL_STATE(6002)] = 242611, - [SMALL_STATE(6003)] = 242694, - [SMALL_STATE(6004)] = 242777, - [SMALL_STATE(6005)] = 242860, - [SMALL_STATE(6006)] = 242943, - [SMALL_STATE(6007)] = 243026, - [SMALL_STATE(6008)] = 243109, - [SMALL_STATE(6009)] = 243192, - [SMALL_STATE(6010)] = 243275, - [SMALL_STATE(6011)] = 243358, - [SMALL_STATE(6012)] = 243441, - [SMALL_STATE(6013)] = 243524, - [SMALL_STATE(6014)] = 243607, - [SMALL_STATE(6015)] = 243690, - [SMALL_STATE(6016)] = 243773, - [SMALL_STATE(6017)] = 243856, - [SMALL_STATE(6018)] = 243939, - [SMALL_STATE(6019)] = 244022, - [SMALL_STATE(6020)] = 244105, - [SMALL_STATE(6021)] = 244188, - [SMALL_STATE(6022)] = 244271, - [SMALL_STATE(6023)] = 244354, - [SMALL_STATE(6024)] = 244437, - [SMALL_STATE(6025)] = 244520, - [SMALL_STATE(6026)] = 244603, - [SMALL_STATE(6027)] = 244686, - [SMALL_STATE(6028)] = 244769, - [SMALL_STATE(6029)] = 244852, - [SMALL_STATE(6030)] = 244935, - [SMALL_STATE(6031)] = 245018, - [SMALL_STATE(6032)] = 245101, - [SMALL_STATE(6033)] = 245184, - [SMALL_STATE(6034)] = 245267, - [SMALL_STATE(6035)] = 245350, - [SMALL_STATE(6036)] = 245433, - [SMALL_STATE(6037)] = 245516, - [SMALL_STATE(6038)] = 245599, - [SMALL_STATE(6039)] = 245682, - [SMALL_STATE(6040)] = 245765, - [SMALL_STATE(6041)] = 245848, - [SMALL_STATE(6042)] = 245931, - [SMALL_STATE(6043)] = 246014, - [SMALL_STATE(6044)] = 246097, - [SMALL_STATE(6045)] = 246180, - [SMALL_STATE(6046)] = 246263, - [SMALL_STATE(6047)] = 246346, - [SMALL_STATE(6048)] = 246429, - [SMALL_STATE(6049)] = 246512, - [SMALL_STATE(6050)] = 246595, - [SMALL_STATE(6051)] = 246678, - [SMALL_STATE(6052)] = 246761, - [SMALL_STATE(6053)] = 246844, - [SMALL_STATE(6054)] = 246927, - [SMALL_STATE(6055)] = 247010, - [SMALL_STATE(6056)] = 247093, - [SMALL_STATE(6057)] = 247181, - [SMALL_STATE(6058)] = 247269, - [SMALL_STATE(6059)] = 247357, - [SMALL_STATE(6060)] = 247429, - [SMALL_STATE(6061)] = 247503, - [SMALL_STATE(6062)] = 247577, - [SMALL_STATE(6063)] = 247651, - [SMALL_STATE(6064)] = 247725, - [SMALL_STATE(6065)] = 247799, - [SMALL_STATE(6066)] = 247873, - [SMALL_STATE(6067)] = 247947, - [SMALL_STATE(6068)] = 248021, - [SMALL_STATE(6069)] = 248095, - [SMALL_STATE(6070)] = 248169, - [SMALL_STATE(6071)] = 248233, - [SMALL_STATE(6072)] = 248307, - [SMALL_STATE(6073)] = 248381, - [SMALL_STATE(6074)] = 248455, - [SMALL_STATE(6075)] = 248529, - [SMALL_STATE(6076)] = 248600, - [SMALL_STATE(6077)] = 248671, - [SMALL_STATE(6078)] = 248746, - [SMALL_STATE(6079)] = 248821, - [SMALL_STATE(6080)] = 248896, - [SMALL_STATE(6081)] = 248967, - [SMALL_STATE(6082)] = 249026, - [SMALL_STATE(6083)] = 249097, - [SMALL_STATE(6084)] = 249168, - [SMALL_STATE(6085)] = 249225, - [SMALL_STATE(6086)] = 249296, - [SMALL_STATE(6087)] = 249355, - [SMALL_STATE(6088)] = 249426, - [SMALL_STATE(6089)] = 249497, - [SMALL_STATE(6090)] = 249559, - [SMALL_STATE(6091)] = 249629, - [SMALL_STATE(6092)] = 249688, - [SMALL_STATE(6093)] = 249757, - [SMALL_STATE(6094)] = 249826, - [SMALL_STATE(6095)] = 249895, - [SMALL_STATE(6096)] = 249964, - [SMALL_STATE(6097)] = 250033, - [SMALL_STATE(6098)] = 250102, - [SMALL_STATE(6099)] = 250171, - [SMALL_STATE(6100)] = 250240, - [SMALL_STATE(6101)] = 250307, - [SMALL_STATE(6102)] = 250376, - [SMALL_STATE(6103)] = 250445, - [SMALL_STATE(6104)] = 250514, - [SMALL_STATE(6105)] = 250583, - [SMALL_STATE(6106)] = 250652, - [SMALL_STATE(6107)] = 250709, - [SMALL_STATE(6108)] = 250778, - [SMALL_STATE(6109)] = 250847, - [SMALL_STATE(6110)] = 250916, - [SMALL_STATE(6111)] = 250973, - [SMALL_STATE(6112)] = 251042, - [SMALL_STATE(6113)] = 251111, - [SMALL_STATE(6114)] = 251180, - [SMALL_STATE(6115)] = 251241, - [SMALL_STATE(6116)] = 251310, - [SMALL_STATE(6117)] = 251379, - [SMALL_STATE(6118)] = 251448, - [SMALL_STATE(6119)] = 251517, - [SMALL_STATE(6120)] = 251586, - [SMALL_STATE(6121)] = 251655, - [SMALL_STATE(6122)] = 251724, - [SMALL_STATE(6123)] = 251793, - [SMALL_STATE(6124)] = 251862, - [SMALL_STATE(6125)] = 251931, - [SMALL_STATE(6126)] = 252000, - [SMALL_STATE(6127)] = 252069, - [SMALL_STATE(6128)] = 252130, - [SMALL_STATE(6129)] = 252187, - [SMALL_STATE(6130)] = 252242, - [SMALL_STATE(6131)] = 252303, - [SMALL_STATE(6132)] = 252372, - [SMALL_STATE(6133)] = 252438, - [SMALL_STATE(6134)] = 252504, - [SMALL_STATE(6135)] = 252570, - [SMALL_STATE(6136)] = 252636, - [SMALL_STATE(6137)] = 252698, - [SMALL_STATE(6138)] = 252764, - [SMALL_STATE(6139)] = 252816, - [SMALL_STATE(6140)] = 252882, - [SMALL_STATE(6141)] = 252938, - [SMALL_STATE(6142)] = 252990, - [SMALL_STATE(6143)] = 253050, - [SMALL_STATE(6144)] = 253111, - [SMALL_STATE(6145)] = 253172, - [SMALL_STATE(6146)] = 253233, - [SMALL_STATE(6147)] = 253292, - [SMALL_STATE(6148)] = 253343, - [SMALL_STATE(6149)] = 253394, - [SMALL_STATE(6150)] = 253445, - [SMALL_STATE(6151)] = 253506, - [SMALL_STATE(6152)] = 253567, - [SMALL_STATE(6153)] = 253618, - [SMALL_STATE(6154)] = 253679, - [SMALL_STATE(6155)] = 253740, - [SMALL_STATE(6156)] = 253801, - [SMALL_STATE(6157)] = 253852, - [SMALL_STATE(6158)] = 253913, - [SMALL_STATE(6159)] = 253974, - [SMALL_STATE(6160)] = 254027, - [SMALL_STATE(6161)] = 254088, - [SMALL_STATE(6162)] = 254149, - [SMALL_STATE(6163)] = 254210, - [SMALL_STATE(6164)] = 254265, - [SMALL_STATE(6165)] = 254326, - [SMALL_STATE(6166)] = 254379, - [SMALL_STATE(6167)] = 254434, - [SMALL_STATE(6168)] = 254495, - [SMALL_STATE(6169)] = 254550, - [SMALL_STATE(6170)] = 254611, - [SMALL_STATE(6171)] = 254666, - [SMALL_STATE(6172)] = 254717, - [SMALL_STATE(6173)] = 254778, - [SMALL_STATE(6174)] = 254829, - [SMALL_STATE(6175)] = 254880, - [SMALL_STATE(6176)] = 254931, - [SMALL_STATE(6177)] = 254992, - [SMALL_STATE(6178)] = 255053, - [SMALL_STATE(6179)] = 255114, - [SMALL_STATE(6180)] = 255174, - [SMALL_STATE(6181)] = 255228, - [SMALL_STATE(6182)] = 255288, - [SMALL_STATE(6183)] = 255348, - [SMALL_STATE(6184)] = 255408, - [SMALL_STATE(6185)] = 255462, - [SMALL_STATE(6186)] = 255512, - [SMALL_STATE(6187)] = 255572, - [SMALL_STATE(6188)] = 255632, - [SMALL_STATE(6189)] = 255692, - [SMALL_STATE(6190)] = 255750, - [SMALL_STATE(6191)] = 255810, - [SMALL_STATE(6192)] = 255868, - [SMALL_STATE(6193)] = 255928, - [SMALL_STATE(6194)] = 255988, - [SMALL_STATE(6195)] = 256048, - [SMALL_STATE(6196)] = 256102, - [SMALL_STATE(6197)] = 256162, - [SMALL_STATE(6198)] = 256214, - [SMALL_STATE(6199)] = 256274, - [SMALL_STATE(6200)] = 256332, - [SMALL_STATE(6201)] = 256392, - [SMALL_STATE(6202)] = 256442, - [SMALL_STATE(6203)] = 256502, - [SMALL_STATE(6204)] = 256552, - [SMALL_STATE(6205)] = 256612, - [SMALL_STATE(6206)] = 256672, - [SMALL_STATE(6207)] = 256732, - [SMALL_STATE(6208)] = 256792, - [SMALL_STATE(6209)] = 256846, - [SMALL_STATE(6210)] = 256906, - [SMALL_STATE(6211)] = 256966, - [SMALL_STATE(6212)] = 257026, - [SMALL_STATE(6213)] = 257086, - [SMALL_STATE(6214)] = 257146, - [SMALL_STATE(6215)] = 257206, - [SMALL_STATE(6216)] = 257266, - [SMALL_STATE(6217)] = 257326, - [SMALL_STATE(6218)] = 257386, - [SMALL_STATE(6219)] = 257444, - [SMALL_STATE(6220)] = 257504, - [SMALL_STATE(6221)] = 257564, - [SMALL_STATE(6222)] = 257624, - [SMALL_STATE(6223)] = 257684, - [SMALL_STATE(6224)] = 257744, - [SMALL_STATE(6225)] = 257804, - [SMALL_STATE(6226)] = 257862, - [SMALL_STATE(6227)] = 257912, - [SMALL_STATE(6228)] = 257962, - [SMALL_STATE(6229)] = 258022, - [SMALL_STATE(6230)] = 258078, - [SMALL_STATE(6231)] = 258138, - [SMALL_STATE(6232)] = 258198, - [SMALL_STATE(6233)] = 258254, - [SMALL_STATE(6234)] = 258312, - [SMALL_STATE(6235)] = 258372, - [SMALL_STATE(6236)] = 258422, - [SMALL_STATE(6237)] = 258480, - [SMALL_STATE(6238)] = 258540, - [SMALL_STATE(6239)] = 258600, - [SMALL_STATE(6240)] = 258658, - [SMALL_STATE(6241)] = 258714, - [SMALL_STATE(6242)] = 258764, - [SMALL_STATE(6243)] = 258824, - [SMALL_STATE(6244)] = 258884, - [SMALL_STATE(6245)] = 258944, - [SMALL_STATE(6246)] = 259004, - [SMALL_STATE(6247)] = 259062, - [SMALL_STATE(6248)] = 259122, - [SMALL_STATE(6249)] = 259182, - [SMALL_STATE(6250)] = 259240, - [SMALL_STATE(6251)] = 259300, - [SMALL_STATE(6252)] = 259352, - [SMALL_STATE(6253)] = 259406, - [SMALL_STATE(6254)] = 259466, - [SMALL_STATE(6255)] = 259518, - [SMALL_STATE(6256)] = 259578, - [SMALL_STATE(6257)] = 259638, - [SMALL_STATE(6258)] = 259688, - [SMALL_STATE(6259)] = 259748, - [SMALL_STATE(6260)] = 259808, - [SMALL_STATE(6261)] = 259860, - [SMALL_STATE(6262)] = 259920, - [SMALL_STATE(6263)] = 259980, - [SMALL_STATE(6264)] = 260040, - [SMALL_STATE(6265)] = 260093, - [SMALL_STATE(6266)] = 260146, - [SMALL_STATE(6267)] = 260195, - [SMALL_STATE(6268)] = 260252, - [SMALL_STATE(6269)] = 260301, - [SMALL_STATE(6270)] = 260358, - [SMALL_STATE(6271)] = 260413, - [SMALL_STATE(6272)] = 260470, - [SMALL_STATE(6273)] = 260519, - [SMALL_STATE(6274)] = 260574, - [SMALL_STATE(6275)] = 260629, - [SMALL_STATE(6276)] = 260684, - [SMALL_STATE(6277)] = 260741, - [SMALL_STATE(6278)] = 260798, - [SMALL_STATE(6279)] = 260855, - [SMALL_STATE(6280)] = 260910, - [SMALL_STATE(6281)] = 260965, - [SMALL_STATE(6282)] = 261020, - [SMALL_STATE(6283)] = 261077, - [SMALL_STATE(6284)] = 261126, - [SMALL_STATE(6285)] = 261177, - [SMALL_STATE(6286)] = 261232, - [SMALL_STATE(6287)] = 261287, - [SMALL_STATE(6288)] = 261344, - [SMALL_STATE(6289)] = 261401, - [SMALL_STATE(6290)] = 261458, - [SMALL_STATE(6291)] = 261513, - [SMALL_STATE(6292)] = 261568, - [SMALL_STATE(6293)] = 261625, - [SMALL_STATE(6294)] = 261676, - [SMALL_STATE(6295)] = 261731, - [SMALL_STATE(6296)] = 261786, - [SMALL_STATE(6297)] = 261841, - [SMALL_STATE(6298)] = 261898, - [SMALL_STATE(6299)] = 261953, - [SMALL_STATE(6300)] = 262008, - [SMALL_STATE(6301)] = 262059, - [SMALL_STATE(6302)] = 262114, - [SMALL_STATE(6303)] = 262171, - [SMALL_STATE(6304)] = 262226, - [SMALL_STATE(6305)] = 262277, - [SMALL_STATE(6306)] = 262332, - [SMALL_STATE(6307)] = 262383, - [SMALL_STATE(6308)] = 262438, - [SMALL_STATE(6309)] = 262491, - [SMALL_STATE(6310)] = 262544, - [SMALL_STATE(6311)] = 262599, - [SMALL_STATE(6312)] = 262654, - [SMALL_STATE(6313)] = 262709, - [SMALL_STATE(6314)] = 262758, - [SMALL_STATE(6315)] = 262811, - [SMALL_STATE(6316)] = 262866, - [SMALL_STATE(6317)] = 262917, - [SMALL_STATE(6318)] = 262974, - [SMALL_STATE(6319)] = 263023, - [SMALL_STATE(6320)] = 263080, - [SMALL_STATE(6321)] = 263135, - [SMALL_STATE(6322)] = 263190, - [SMALL_STATE(6323)] = 263241, - [SMALL_STATE(6324)] = 263292, - [SMALL_STATE(6325)] = 263349, - [SMALL_STATE(6326)] = 263406, - [SMALL_STATE(6327)] = 263463, - [SMALL_STATE(6328)] = 263518, - [SMALL_STATE(6329)] = 263575, - [SMALL_STATE(6330)] = 263632, - [SMALL_STATE(6331)] = 263687, - [SMALL_STATE(6332)] = 263744, - [SMALL_STATE(6333)] = 263795, - [SMALL_STATE(6334)] = 263850, - [SMALL_STATE(6335)] = 263905, - [SMALL_STATE(6336)] = 263960, - [SMALL_STATE(6337)] = 264015, - [SMALL_STATE(6338)] = 264070, - [SMALL_STATE(6339)] = 264125, - [SMALL_STATE(6340)] = 264180, - [SMALL_STATE(6341)] = 264237, - [SMALL_STATE(6342)] = 264294, - [SMALL_STATE(6343)] = 264347, - [SMALL_STATE(6344)] = 264402, - [SMALL_STATE(6345)] = 264451, - [SMALL_STATE(6346)] = 264504, - [SMALL_STATE(6347)] = 264561, - [SMALL_STATE(6348)] = 264616, - [SMALL_STATE(6349)] = 264673, - [SMALL_STATE(6350)] = 264728, - [SMALL_STATE(6351)] = 264783, - [SMALL_STATE(6352)] = 264838, - [SMALL_STATE(6353)] = 264889, - [SMALL_STATE(6354)] = 264942, - [SMALL_STATE(6355)] = 264997, - [SMALL_STATE(6356)] = 265052, - [SMALL_STATE(6357)] = 265109, - [SMALL_STATE(6358)] = 265160, - [SMALL_STATE(6359)] = 265215, - [SMALL_STATE(6360)] = 265270, - [SMALL_STATE(6361)] = 265325, - [SMALL_STATE(6362)] = 265382, - [SMALL_STATE(6363)] = 265437, - [SMALL_STATE(6364)] = 265492, - [SMALL_STATE(6365)] = 265549, - [SMALL_STATE(6366)] = 265606, - [SMALL_STATE(6367)] = 265663, - [SMALL_STATE(6368)] = 265718, - [SMALL_STATE(6369)] = 265775, - [SMALL_STATE(6370)] = 265832, - [SMALL_STATE(6371)] = 265889, - [SMALL_STATE(6372)] = 265938, - [SMALL_STATE(6373)] = 265995, - [SMALL_STATE(6374)] = 266052, - [SMALL_STATE(6375)] = 266109, - [SMALL_STATE(6376)] = 266166, - [SMALL_STATE(6377)] = 266219, - [SMALL_STATE(6378)] = 266276, - [SMALL_STATE(6379)] = 266325, - [SMALL_STATE(6380)] = 266374, - [SMALL_STATE(6381)] = 266431, - [SMALL_STATE(6382)] = 266486, - [SMALL_STATE(6383)] = 266536, - [SMALL_STATE(6384)] = 266590, - [SMALL_STATE(6385)] = 266644, - [SMALL_STATE(6386)] = 266692, - [SMALL_STATE(6387)] = 266744, - [SMALL_STATE(6388)] = 266798, - [SMALL_STATE(6389)] = 266852, - [SMALL_STATE(6390)] = 266906, - [SMALL_STATE(6391)] = 266960, - [SMALL_STATE(6392)] = 267012, - [SMALL_STATE(6393)] = 267062, - [SMALL_STATE(6394)] = 267116, - [SMALL_STATE(6395)] = 267168, - [SMALL_STATE(6396)] = 267222, - [SMALL_STATE(6397)] = 267276, - [SMALL_STATE(6398)] = 267326, - [SMALL_STATE(6399)] = 267380, - [SMALL_STATE(6400)] = 267434, - [SMALL_STATE(6401)] = 267482, - [SMALL_STATE(6402)] = 267536, - [SMALL_STATE(6403)] = 267588, - [SMALL_STATE(6404)] = 267642, - [SMALL_STATE(6405)] = 267696, - [SMALL_STATE(6406)] = 267750, - [SMALL_STATE(6407)] = 267804, - [SMALL_STATE(6408)] = 267858, - [SMALL_STATE(6409)] = 267912, - [SMALL_STATE(6410)] = 267966, - [SMALL_STATE(6411)] = 268014, - [SMALL_STATE(6412)] = 268068, - [SMALL_STATE(6413)] = 268122, - [SMALL_STATE(6414)] = 268170, - [SMALL_STATE(6415)] = 268224, - [SMALL_STATE(6416)] = 268272, - [SMALL_STATE(6417)] = 268322, - [SMALL_STATE(6418)] = 268376, - [SMALL_STATE(6419)] = 268426, - [SMALL_STATE(6420)] = 268480, - [SMALL_STATE(6421)] = 268534, - [SMALL_STATE(6422)] = 268588, - [SMALL_STATE(6423)] = 268640, - [SMALL_STATE(6424)] = 268694, - [SMALL_STATE(6425)] = 268748, - [SMALL_STATE(6426)] = 268798, - [SMALL_STATE(6427)] = 268852, - [SMALL_STATE(6428)] = 268906, - [SMALL_STATE(6429)] = 268954, - [SMALL_STATE(6430)] = 269006, - [SMALL_STATE(6431)] = 269056, - [SMALL_STATE(6432)] = 269110, - [SMALL_STATE(6433)] = 269158, - [SMALL_STATE(6434)] = 269212, - [SMALL_STATE(6435)] = 269266, - [SMALL_STATE(6436)] = 269320, - [SMALL_STATE(6437)] = 269374, - [SMALL_STATE(6438)] = 269422, - [SMALL_STATE(6439)] = 269472, - [SMALL_STATE(6440)] = 269520, - [SMALL_STATE(6441)] = 269574, - [SMALL_STATE(6442)] = 269628, - [SMALL_STATE(6443)] = 269676, - [SMALL_STATE(6444)] = 269730, - [SMALL_STATE(6445)] = 269784, - [SMALL_STATE(6446)] = 269836, - [SMALL_STATE(6447)] = 269890, - [SMALL_STATE(6448)] = 269944, - [SMALL_STATE(6449)] = 269996, - [SMALL_STATE(6450)] = 270050, - [SMALL_STATE(6451)] = 270104, - [SMALL_STATE(6452)] = 270158, - [SMALL_STATE(6453)] = 270212, - [SMALL_STATE(6454)] = 270266, - [SMALL_STATE(6455)] = 270314, - [SMALL_STATE(6456)] = 270362, - [SMALL_STATE(6457)] = 270410, - [SMALL_STATE(6458)] = 270458, - [SMALL_STATE(6459)] = 270506, - [SMALL_STATE(6460)] = 270560, - [SMALL_STATE(6461)] = 270614, - [SMALL_STATE(6462)] = 270668, - [SMALL_STATE(6463)] = 270716, - [SMALL_STATE(6464)] = 270770, - [SMALL_STATE(6465)] = 270824, - [SMALL_STATE(6466)] = 270878, - [SMALL_STATE(6467)] = 270932, - [SMALL_STATE(6468)] = 270980, - [SMALL_STATE(6469)] = 271034, - [SMALL_STATE(6470)] = 271088, - [SMALL_STATE(6471)] = 271142, - [SMALL_STATE(6472)] = 271192, - [SMALL_STATE(6473)] = 271240, - [SMALL_STATE(6474)] = 271288, - [SMALL_STATE(6475)] = 271340, - [SMALL_STATE(6476)] = 271394, - [SMALL_STATE(6477)] = 271448, - [SMALL_STATE(6478)] = 271502, - [SMALL_STATE(6479)] = 271554, - [SMALL_STATE(6480)] = 271604, - [SMALL_STATE(6481)] = 271654, - [SMALL_STATE(6482)] = 271702, - [SMALL_STATE(6483)] = 271752, - [SMALL_STATE(6484)] = 271806, - [SMALL_STATE(6485)] = 271860, - [SMALL_STATE(6486)] = 271912, - [SMALL_STATE(6487)] = 271962, - [SMALL_STATE(6488)] = 272014, - [SMALL_STATE(6489)] = 272064, - [SMALL_STATE(6490)] = 272116, - [SMALL_STATE(6491)] = 272168, - [SMALL_STATE(6492)] = 272222, - [SMALL_STATE(6493)] = 272276, - [SMALL_STATE(6494)] = 272330, - [SMALL_STATE(6495)] = 272380, - [SMALL_STATE(6496)] = 272434, - [SMALL_STATE(6497)] = 272484, - [SMALL_STATE(6498)] = 272532, - [SMALL_STATE(6499)] = 272586, - [SMALL_STATE(6500)] = 272640, - [SMALL_STATE(6501)] = 272694, - [SMALL_STATE(6502)] = 272748, - [SMALL_STATE(6503)] = 272802, - [SMALL_STATE(6504)] = 272852, - [SMALL_STATE(6505)] = 272902, - [SMALL_STATE(6506)] = 272956, - [SMALL_STATE(6507)] = 273010, - [SMALL_STATE(6508)] = 273061, - [SMALL_STATE(6509)] = 273112, - [SMALL_STATE(6510)] = 273163, - [SMALL_STATE(6511)] = 273210, - [SMALL_STATE(6512)] = 273261, - [SMALL_STATE(6513)] = 273312, - [SMALL_STATE(6514)] = 273363, - [SMALL_STATE(6515)] = 273412, - [SMALL_STATE(6516)] = 273463, - [SMALL_STATE(6517)] = 273512, - [SMALL_STATE(6518)] = 273563, - [SMALL_STATE(6519)] = 273614, - [SMALL_STATE(6520)] = 273665, - [SMALL_STATE(6521)] = 273716, - [SMALL_STATE(6522)] = 273767, - [SMALL_STATE(6523)] = 273816, - [SMALL_STATE(6524)] = 273867, - [SMALL_STATE(6525)] = 273918, - [SMALL_STATE(6526)] = 273969, - [SMALL_STATE(6527)] = 274016, - [SMALL_STATE(6528)] = 274067, - [SMALL_STATE(6529)] = 274116, - [SMALL_STATE(6530)] = 274167, - [SMALL_STATE(6531)] = 274218, - [SMALL_STATE(6532)] = 274267, - [SMALL_STATE(6533)] = 274318, - [SMALL_STATE(6534)] = 274367, - [SMALL_STATE(6535)] = 274418, - [SMALL_STATE(6536)] = 274469, - [SMALL_STATE(6537)] = 274520, - [SMALL_STATE(6538)] = 274571, - [SMALL_STATE(6539)] = 274618, - [SMALL_STATE(6540)] = 274665, - [SMALL_STATE(6541)] = 274714, - [SMALL_STATE(6542)] = 274765, - [SMALL_STATE(6543)] = 274816, - [SMALL_STATE(6544)] = 274863, - [SMALL_STATE(6545)] = 274914, - [SMALL_STATE(6546)] = 274965, - [SMALL_STATE(6547)] = 275016, - [SMALL_STATE(6548)] = 275067, - [SMALL_STATE(6549)] = 275118, - [SMALL_STATE(6550)] = 275165, - [SMALL_STATE(6551)] = 275216, - [SMALL_STATE(6552)] = 275267, - [SMALL_STATE(6553)] = 275316, - [SMALL_STATE(6554)] = 275367, - [SMALL_STATE(6555)] = 275418, - [SMALL_STATE(6556)] = 275469, - [SMALL_STATE(6557)] = 275520, - [SMALL_STATE(6558)] = 275571, - [SMALL_STATE(6559)] = 275622, - [SMALL_STATE(6560)] = 275673, - [SMALL_STATE(6561)] = 275724, - [SMALL_STATE(6562)] = 275771, - [SMALL_STATE(6563)] = 275822, - [SMALL_STATE(6564)] = 275873, - [SMALL_STATE(6565)] = 275924, - [SMALL_STATE(6566)] = 275975, - [SMALL_STATE(6567)] = 276024, - [SMALL_STATE(6568)] = 276075, - [SMALL_STATE(6569)] = 276126, - [SMALL_STATE(6570)] = 276177, - [SMALL_STATE(6571)] = 276228, - [SMALL_STATE(6572)] = 276279, - [SMALL_STATE(6573)] = 276330, - [SMALL_STATE(6574)] = 276381, - [SMALL_STATE(6575)] = 276432, - [SMALL_STATE(6576)] = 276483, - [SMALL_STATE(6577)] = 276532, - [SMALL_STATE(6578)] = 276583, - [SMALL_STATE(6579)] = 276634, - [SMALL_STATE(6580)] = 276683, - [SMALL_STATE(6581)] = 276734, - [SMALL_STATE(6582)] = 276783, - [SMALL_STATE(6583)] = 276834, - [SMALL_STATE(6584)] = 276885, - [SMALL_STATE(6585)] = 276936, - [SMALL_STATE(6586)] = 276987, - [SMALL_STATE(6587)] = 277038, - [SMALL_STATE(6588)] = 277089, - [SMALL_STATE(6589)] = 277140, - [SMALL_STATE(6590)] = 277191, - [SMALL_STATE(6591)] = 277242, - [SMALL_STATE(6592)] = 277293, - [SMALL_STATE(6593)] = 277340, - [SMALL_STATE(6594)] = 277391, - [SMALL_STATE(6595)] = 277440, - [SMALL_STATE(6596)] = 277491, - [SMALL_STATE(6597)] = 277538, - [SMALL_STATE(6598)] = 277589, - [SMALL_STATE(6599)] = 277640, - [SMALL_STATE(6600)] = 277691, - [SMALL_STATE(6601)] = 277742, - [SMALL_STATE(6602)] = 277793, - [SMALL_STATE(6603)] = 277844, - [SMALL_STATE(6604)] = 277895, - [SMALL_STATE(6605)] = 277946, - [SMALL_STATE(6606)] = 277997, - [SMALL_STATE(6607)] = 278048, - [SMALL_STATE(6608)] = 278099, - [SMALL_STATE(6609)] = 278150, - [SMALL_STATE(6610)] = 278197, - [SMALL_STATE(6611)] = 278248, - [SMALL_STATE(6612)] = 278299, - [SMALL_STATE(6613)] = 278350, - [SMALL_STATE(6614)] = 278401, - [SMALL_STATE(6615)] = 278448, - [SMALL_STATE(6616)] = 278499, - [SMALL_STATE(6617)] = 278550, - [SMALL_STATE(6618)] = 278601, - [SMALL_STATE(6619)] = 278652, - [SMALL_STATE(6620)] = 278703, - [SMALL_STATE(6621)] = 278754, - [SMALL_STATE(6622)] = 278803, - [SMALL_STATE(6623)] = 278854, - [SMALL_STATE(6624)] = 278901, - [SMALL_STATE(6625)] = 278948, - [SMALL_STATE(6626)] = 278999, - [SMALL_STATE(6627)] = 279048, - [SMALL_STATE(6628)] = 279095, - [SMALL_STATE(6629)] = 279142, - [SMALL_STATE(6630)] = 279193, - [SMALL_STATE(6631)] = 279244, - [SMALL_STATE(6632)] = 279295, - [SMALL_STATE(6633)] = 279342, - [SMALL_STATE(6634)] = 279393, - [SMALL_STATE(6635)] = 279444, - [SMALL_STATE(6636)] = 279495, - [SMALL_STATE(6637)] = 279546, - [SMALL_STATE(6638)] = 279597, - [SMALL_STATE(6639)] = 279648, - [SMALL_STATE(6640)] = 279699, - [SMALL_STATE(6641)] = 279750, - [SMALL_STATE(6642)] = 279801, - [SMALL_STATE(6643)] = 279852, - [SMALL_STATE(6644)] = 279903, - [SMALL_STATE(6645)] = 279954, - [SMALL_STATE(6646)] = 280005, - [SMALL_STATE(6647)] = 280056, - [SMALL_STATE(6648)] = 280107, - [SMALL_STATE(6649)] = 280158, - [SMALL_STATE(6650)] = 280209, - [SMALL_STATE(6651)] = 280260, - [SMALL_STATE(6652)] = 280311, - [SMALL_STATE(6653)] = 280362, - [SMALL_STATE(6654)] = 280413, - [SMALL_STATE(6655)] = 280464, - [SMALL_STATE(6656)] = 280515, - [SMALL_STATE(6657)] = 280566, - [SMALL_STATE(6658)] = 280617, - [SMALL_STATE(6659)] = 280668, - [SMALL_STATE(6660)] = 280719, - [SMALL_STATE(6661)] = 280770, - [SMALL_STATE(6662)] = 280821, - [SMALL_STATE(6663)] = 280872, - [SMALL_STATE(6664)] = 280923, - [SMALL_STATE(6665)] = 280974, - [SMALL_STATE(6666)] = 281023, - [SMALL_STATE(6667)] = 281074, - [SMALL_STATE(6668)] = 281123, - [SMALL_STATE(6669)] = 281174, - [SMALL_STATE(6670)] = 281225, - [SMALL_STATE(6671)] = 281272, - [SMALL_STATE(6672)] = 281323, - [SMALL_STATE(6673)] = 281374, - [SMALL_STATE(6674)] = 281425, - [SMALL_STATE(6675)] = 281476, - [SMALL_STATE(6676)] = 281527, - [SMALL_STATE(6677)] = 281574, - [SMALL_STATE(6678)] = 281625, - [SMALL_STATE(6679)] = 281674, - [SMALL_STATE(6680)] = 281725, - [SMALL_STATE(6681)] = 281774, - [SMALL_STATE(6682)] = 281825, - [SMALL_STATE(6683)] = 281876, - [SMALL_STATE(6684)] = 281927, - [SMALL_STATE(6685)] = 281978, - [SMALL_STATE(6686)] = 282029, - [SMALL_STATE(6687)] = 282080, - [SMALL_STATE(6688)] = 282131, - [SMALL_STATE(6689)] = 282182, - [SMALL_STATE(6690)] = 282233, - [SMALL_STATE(6691)] = 282284, - [SMALL_STATE(6692)] = 282335, - [SMALL_STATE(6693)] = 282386, - [SMALL_STATE(6694)] = 282437, - [SMALL_STATE(6695)] = 282486, - [SMALL_STATE(6696)] = 282537, - [SMALL_STATE(6697)] = 282588, - [SMALL_STATE(6698)] = 282637, - [SMALL_STATE(6699)] = 282688, - [SMALL_STATE(6700)] = 282739, - [SMALL_STATE(6701)] = 282788, - [SMALL_STATE(6702)] = 282839, - [SMALL_STATE(6703)] = 282890, - [SMALL_STATE(6704)] = 282941, - [SMALL_STATE(6705)] = 282992, - [SMALL_STATE(6706)] = 283043, - [SMALL_STATE(6707)] = 283092, - [SMALL_STATE(6708)] = 283143, - [SMALL_STATE(6709)] = 283194, - [SMALL_STATE(6710)] = 283245, - [SMALL_STATE(6711)] = 283296, - [SMALL_STATE(6712)] = 283347, - [SMALL_STATE(6713)] = 283394, - [SMALL_STATE(6714)] = 283445, - [SMALL_STATE(6715)] = 283496, - [SMALL_STATE(6716)] = 283547, - [SMALL_STATE(6717)] = 283598, - [SMALL_STATE(6718)] = 283649, - [SMALL_STATE(6719)] = 283698, - [SMALL_STATE(6720)] = 283749, - [SMALL_STATE(6721)] = 283800, - [SMALL_STATE(6722)] = 283851, - [SMALL_STATE(6723)] = 283902, - [SMALL_STATE(6724)] = 283953, - [SMALL_STATE(6725)] = 284004, - [SMALL_STATE(6726)] = 284055, - [SMALL_STATE(6727)] = 284106, - [SMALL_STATE(6728)] = 284157, - [SMALL_STATE(6729)] = 284206, - [SMALL_STATE(6730)] = 284257, - [SMALL_STATE(6731)] = 284308, - [SMALL_STATE(6732)] = 284359, - [SMALL_STATE(6733)] = 284410, - [SMALL_STATE(6734)] = 284457, - [SMALL_STATE(6735)] = 284508, - [SMALL_STATE(6736)] = 284559, - [SMALL_STATE(6737)] = 284610, - [SMALL_STATE(6738)] = 284661, - [SMALL_STATE(6739)] = 284712, - [SMALL_STATE(6740)] = 284763, - [SMALL_STATE(6741)] = 284814, - [SMALL_STATE(6742)] = 284865, - [SMALL_STATE(6743)] = 284914, - [SMALL_STATE(6744)] = 284965, - [SMALL_STATE(6745)] = 285016, - [SMALL_STATE(6746)] = 285067, - [SMALL_STATE(6747)] = 285118, - [SMALL_STATE(6748)] = 285169, - [SMALL_STATE(6749)] = 285220, - [SMALL_STATE(6750)] = 285271, - [SMALL_STATE(6751)] = 285322, - [SMALL_STATE(6752)] = 285369, - [SMALL_STATE(6753)] = 285420, - [SMALL_STATE(6754)] = 285471, - [SMALL_STATE(6755)] = 285522, - [SMALL_STATE(6756)] = 285573, - [SMALL_STATE(6757)] = 285624, - [SMALL_STATE(6758)] = 285675, - [SMALL_STATE(6759)] = 285726, - [SMALL_STATE(6760)] = 285777, - [SMALL_STATE(6761)] = 285828, - [SMALL_STATE(6762)] = 285877, - [SMALL_STATE(6763)] = 285928, - [SMALL_STATE(6764)] = 285979, - [SMALL_STATE(6765)] = 286030, - [SMALL_STATE(6766)] = 286081, - [SMALL_STATE(6767)] = 286130, - [SMALL_STATE(6768)] = 286181, - [SMALL_STATE(6769)] = 286228, - [SMALL_STATE(6770)] = 286279, - [SMALL_STATE(6771)] = 286326, - [SMALL_STATE(6772)] = 286377, - [SMALL_STATE(6773)] = 286428, - [SMALL_STATE(6774)] = 286479, - [SMALL_STATE(6775)] = 286530, - [SMALL_STATE(6776)] = 286579, - [SMALL_STATE(6777)] = 286626, - [SMALL_STATE(6778)] = 286677, - [SMALL_STATE(6779)] = 286728, - [SMALL_STATE(6780)] = 286779, - [SMALL_STATE(6781)] = 286830, - [SMALL_STATE(6782)] = 286881, - [SMALL_STATE(6783)] = 286930, - [SMALL_STATE(6784)] = 286981, - [SMALL_STATE(6785)] = 287032, - [SMALL_STATE(6786)] = 287083, - [SMALL_STATE(6787)] = 287130, - [SMALL_STATE(6788)] = 287177, - [SMALL_STATE(6789)] = 287228, - [SMALL_STATE(6790)] = 287279, - [SMALL_STATE(6791)] = 287330, - [SMALL_STATE(6792)] = 287381, - [SMALL_STATE(6793)] = 287432, - [SMALL_STATE(6794)] = 287481, - [SMALL_STATE(6795)] = 287532, - [SMALL_STATE(6796)] = 287583, - [SMALL_STATE(6797)] = 287632, - [SMALL_STATE(6798)] = 287683, - [SMALL_STATE(6799)] = 287734, - [SMALL_STATE(6800)] = 287785, - [SMALL_STATE(6801)] = 287836, - [SMALL_STATE(6802)] = 287887, - [SMALL_STATE(6803)] = 287938, - [SMALL_STATE(6804)] = 287987, - [SMALL_STATE(6805)] = 288038, - [SMALL_STATE(6806)] = 288089, - [SMALL_STATE(6807)] = 288140, - [SMALL_STATE(6808)] = 288191, - [SMALL_STATE(6809)] = 288242, - [SMALL_STATE(6810)] = 288293, - [SMALL_STATE(6811)] = 288344, - [SMALL_STATE(6812)] = 288395, - [SMALL_STATE(6813)] = 288446, - [SMALL_STATE(6814)] = 288497, - [SMALL_STATE(6815)] = 288548, - [SMALL_STATE(6816)] = 288594, - [SMALL_STATE(6817)] = 288642, - [SMALL_STATE(6818)] = 288688, - [SMALL_STATE(6819)] = 288736, - [SMALL_STATE(6820)] = 288784, - [SMALL_STATE(6821)] = 288832, - [SMALL_STATE(6822)] = 288880, - [SMALL_STATE(6823)] = 288928, - [SMALL_STATE(6824)] = 288976, - [SMALL_STATE(6825)] = 289022, - [SMALL_STATE(6826)] = 289068, - [SMALL_STATE(6827)] = 289114, - [SMALL_STATE(6828)] = 289160, - [SMALL_STATE(6829)] = 289206, - [SMALL_STATE(6830)] = 289254, - [SMALL_STATE(6831)] = 289300, - [SMALL_STATE(6832)] = 289348, - [SMALL_STATE(6833)] = 289394, - [SMALL_STATE(6834)] = 289440, - [SMALL_STATE(6835)] = 289488, - [SMALL_STATE(6836)] = 289536, - [SMALL_STATE(6837)] = 289582, - [SMALL_STATE(6838)] = 289628, - [SMALL_STATE(6839)] = 289676, - [SMALL_STATE(6840)] = 289722, - [SMALL_STATE(6841)] = 289768, - [SMALL_STATE(6842)] = 289816, - [SMALL_STATE(6843)] = 289862, - [SMALL_STATE(6844)] = 289908, - [SMALL_STATE(6845)] = 289954, - [SMALL_STATE(6846)] = 290000, - [SMALL_STATE(6847)] = 290046, - [SMALL_STATE(6848)] = 290092, - [SMALL_STATE(6849)] = 290138, - [SMALL_STATE(6850)] = 290184, - [SMALL_STATE(6851)] = 290232, - [SMALL_STATE(6852)] = 290280, - [SMALL_STATE(6853)] = 290328, - [SMALL_STATE(6854)] = 290376, - [SMALL_STATE(6855)] = 290422, - [SMALL_STATE(6856)] = 290470, - [SMALL_STATE(6857)] = 290518, - [SMALL_STATE(6858)] = 290566, - [SMALL_STATE(6859)] = 290612, - [SMALL_STATE(6860)] = 290658, - [SMALL_STATE(6861)] = 290704, - [SMALL_STATE(6862)] = 290750, - [SMALL_STATE(6863)] = 290796, - [SMALL_STATE(6864)] = 290842, - [SMALL_STATE(6865)] = 290890, - [SMALL_STATE(6866)] = 290938, - [SMALL_STATE(6867)] = 290986, - [SMALL_STATE(6868)] = 291034, - [SMALL_STATE(6869)] = 291080, - [SMALL_STATE(6870)] = 291128, - [SMALL_STATE(6871)] = 291174, - [SMALL_STATE(6872)] = 291222, - [SMALL_STATE(6873)] = 291270, - [SMALL_STATE(6874)] = 291316, - [SMALL_STATE(6875)] = 291362, - [SMALL_STATE(6876)] = 291410, - [SMALL_STATE(6877)] = 291456, - [SMALL_STATE(6878)] = 291502, - [SMALL_STATE(6879)] = 291548, - [SMALL_STATE(6880)] = 291594, - [SMALL_STATE(6881)] = 291640, - [SMALL_STATE(6882)] = 291686, - [SMALL_STATE(6883)] = 291734, - [SMALL_STATE(6884)] = 291780, - [SMALL_STATE(6885)] = 291826, - [SMALL_STATE(6886)] = 291874, - [SMALL_STATE(6887)] = 291922, - [SMALL_STATE(6888)] = 291970, - [SMALL_STATE(6889)] = 292018, - [SMALL_STATE(6890)] = 292066, - [SMALL_STATE(6891)] = 292112, - [SMALL_STATE(6892)] = 292158, - [SMALL_STATE(6893)] = 292204, - [SMALL_STATE(6894)] = 292250, - [SMALL_STATE(6895)] = 292296, - [SMALL_STATE(6896)] = 292342, - [SMALL_STATE(6897)] = 292390, - [SMALL_STATE(6898)] = 292438, - [SMALL_STATE(6899)] = 292484, - [SMALL_STATE(6900)] = 292530, - [SMALL_STATE(6901)] = 292578, - [SMALL_STATE(6902)] = 292624, - [SMALL_STATE(6903)] = 292672, - [SMALL_STATE(6904)] = 292718, - [SMALL_STATE(6905)] = 292764, - [SMALL_STATE(6906)] = 292812, - [SMALL_STATE(6907)] = 292858, - [SMALL_STATE(6908)] = 292906, - [SMALL_STATE(6909)] = 292954, - [SMALL_STATE(6910)] = 293000, - [SMALL_STATE(6911)] = 293046, - [SMALL_STATE(6912)] = 293092, - [SMALL_STATE(6913)] = 293140, - [SMALL_STATE(6914)] = 293186, - [SMALL_STATE(6915)] = 293232, - [SMALL_STATE(6916)] = 293278, - [SMALL_STATE(6917)] = 293324, - [SMALL_STATE(6918)] = 293372, - [SMALL_STATE(6919)] = 293420, - [SMALL_STATE(6920)] = 293466, - [SMALL_STATE(6921)] = 293514, - [SMALL_STATE(6922)] = 293562, - [SMALL_STATE(6923)] = 293608, - [SMALL_STATE(6924)] = 293656, - [SMALL_STATE(6925)] = 293704, - [SMALL_STATE(6926)] = 293752, - [SMALL_STATE(6927)] = 293800, - [SMALL_STATE(6928)] = 293848, - [SMALL_STATE(6929)] = 293896, - [SMALL_STATE(6930)] = 293942, - [SMALL_STATE(6931)] = 293990, - [SMALL_STATE(6932)] = 294038, - [SMALL_STATE(6933)] = 294086, - [SMALL_STATE(6934)] = 294132, - [SMALL_STATE(6935)] = 294180, - [SMALL_STATE(6936)] = 294228, - [SMALL_STATE(6937)] = 294274, - [SMALL_STATE(6938)] = 294322, - [SMALL_STATE(6939)] = 294370, - [SMALL_STATE(6940)] = 294416, - [SMALL_STATE(6941)] = 294464, - [SMALL_STATE(6942)] = 294512, - [SMALL_STATE(6943)] = 294560, - [SMALL_STATE(6944)] = 294606, - [SMALL_STATE(6945)] = 294654, - [SMALL_STATE(6946)] = 294702, - [SMALL_STATE(6947)] = 294750, - [SMALL_STATE(6948)] = 294798, - [SMALL_STATE(6949)] = 294844, - [SMALL_STATE(6950)] = 294892, - [SMALL_STATE(6951)] = 294938, - [SMALL_STATE(6952)] = 294984, - [SMALL_STATE(6953)] = 295032, - [SMALL_STATE(6954)] = 295080, - [SMALL_STATE(6955)] = 295128, - [SMALL_STATE(6956)] = 295176, - [SMALL_STATE(6957)] = 295224, - [SMALL_STATE(6958)] = 295272, - [SMALL_STATE(6959)] = 295320, - [SMALL_STATE(6960)] = 295368, - [SMALL_STATE(6961)] = 295414, - [SMALL_STATE(6962)] = 295462, - [SMALL_STATE(6963)] = 295510, - [SMALL_STATE(6964)] = 295558, - [SMALL_STATE(6965)] = 295604, - [SMALL_STATE(6966)] = 295650, - [SMALL_STATE(6967)] = 295698, - [SMALL_STATE(6968)] = 295746, - [SMALL_STATE(6969)] = 295792, - [SMALL_STATE(6970)] = 295840, - [SMALL_STATE(6971)] = 295886, - [SMALL_STATE(6972)] = 295934, - [SMALL_STATE(6973)] = 295982, - [SMALL_STATE(6974)] = 296028, - [SMALL_STATE(6975)] = 296076, - [SMALL_STATE(6976)] = 296124, - [SMALL_STATE(6977)] = 296172, - [SMALL_STATE(6978)] = 296220, - [SMALL_STATE(6979)] = 296268, - [SMALL_STATE(6980)] = 296316, - [SMALL_STATE(6981)] = 296364, - [SMALL_STATE(6982)] = 296412, - [SMALL_STATE(6983)] = 296460, - [SMALL_STATE(6984)] = 296506, - [SMALL_STATE(6985)] = 296554, - [SMALL_STATE(6986)] = 296602, - [SMALL_STATE(6987)] = 296650, - [SMALL_STATE(6988)] = 296698, - [SMALL_STATE(6989)] = 296744, - [SMALL_STATE(6990)] = 296790, - [SMALL_STATE(6991)] = 296838, - [SMALL_STATE(6992)] = 296884, - [SMALL_STATE(6993)] = 296932, - [SMALL_STATE(6994)] = 296980, - [SMALL_STATE(6995)] = 297028, - [SMALL_STATE(6996)] = 297074, - [SMALL_STATE(6997)] = 297122, - [SMALL_STATE(6998)] = 297170, - [SMALL_STATE(6999)] = 297218, - [SMALL_STATE(7000)] = 297266, - [SMALL_STATE(7001)] = 297314, - [SMALL_STATE(7002)] = 297362, - [SMALL_STATE(7003)] = 297410, - [SMALL_STATE(7004)] = 297458, - [SMALL_STATE(7005)] = 297506, - [SMALL_STATE(7006)] = 297554, - [SMALL_STATE(7007)] = 297600, - [SMALL_STATE(7008)] = 297648, - [SMALL_STATE(7009)] = 297696, - [SMALL_STATE(7010)] = 297744, - [SMALL_STATE(7011)] = 297792, - [SMALL_STATE(7012)] = 297838, - [SMALL_STATE(7013)] = 297886, - [SMALL_STATE(7014)] = 297934, - [SMALL_STATE(7015)] = 297982, - [SMALL_STATE(7016)] = 298030, - [SMALL_STATE(7017)] = 298078, - [SMALL_STATE(7018)] = 298126, - [SMALL_STATE(7019)] = 298174, - [SMALL_STATE(7020)] = 298222, - [SMALL_STATE(7021)] = 298268, - [SMALL_STATE(7022)] = 298316, - [SMALL_STATE(7023)] = 298364, - [SMALL_STATE(7024)] = 298412, - [SMALL_STATE(7025)] = 298460, - [SMALL_STATE(7026)] = 298508, - [SMALL_STATE(7027)] = 298554, - [SMALL_STATE(7028)] = 298600, - [SMALL_STATE(7029)] = 298648, - [SMALL_STATE(7030)] = 298696, - [SMALL_STATE(7031)] = 298744, - [SMALL_STATE(7032)] = 298792, - [SMALL_STATE(7033)] = 298838, - [SMALL_STATE(7034)] = 298886, - [SMALL_STATE(7035)] = 298934, - [SMALL_STATE(7036)] = 298982, - [SMALL_STATE(7037)] = 299030, - [SMALL_STATE(7038)] = 299076, - [SMALL_STATE(7039)] = 299124, - [SMALL_STATE(7040)] = 299172, - [SMALL_STATE(7041)] = 299220, - [SMALL_STATE(7042)] = 299268, - [SMALL_STATE(7043)] = 299314, - [SMALL_STATE(7044)] = 299362, - [SMALL_STATE(7045)] = 299410, - [SMALL_STATE(7046)] = 299458, - [SMALL_STATE(7047)] = 299506, - [SMALL_STATE(7048)] = 299554, - [SMALL_STATE(7049)] = 299602, - [SMALL_STATE(7050)] = 299650, - [SMALL_STATE(7051)] = 299698, - [SMALL_STATE(7052)] = 299744, - [SMALL_STATE(7053)] = 299792, - [SMALL_STATE(7054)] = 299840, - [SMALL_STATE(7055)] = 299888, - [SMALL_STATE(7056)] = 299934, - [SMALL_STATE(7057)] = 299982, - [SMALL_STATE(7058)] = 300030, - [SMALL_STATE(7059)] = 300078, - [SMALL_STATE(7060)] = 300126, - [SMALL_STATE(7061)] = 300174, - [SMALL_STATE(7062)] = 300222, - [SMALL_STATE(7063)] = 300270, - [SMALL_STATE(7064)] = 300318, - [SMALL_STATE(7065)] = 300366, - [SMALL_STATE(7066)] = 300414, - [SMALL_STATE(7067)] = 300462, - [SMALL_STATE(7068)] = 300510, - [SMALL_STATE(7069)] = 300555, - [SMALL_STATE(7070)] = 300600, - [SMALL_STATE(7071)] = 300645, - [SMALL_STATE(7072)] = 300690, - [SMALL_STATE(7073)] = 300735, - [SMALL_STATE(7074)] = 300780, - [SMALL_STATE(7075)] = 300825, - [SMALL_STATE(7076)] = 300870, - [SMALL_STATE(7077)] = 300915, - [SMALL_STATE(7078)] = 300960, - [SMALL_STATE(7079)] = 301005, - [SMALL_STATE(7080)] = 301050, - [SMALL_STATE(7081)] = 301095, - [SMALL_STATE(7082)] = 301140, - [SMALL_STATE(7083)] = 301185, - [SMALL_STATE(7084)] = 301230, - [SMALL_STATE(7085)] = 301275, - [SMALL_STATE(7086)] = 301320, - [SMALL_STATE(7087)] = 301365, - [SMALL_STATE(7088)] = 301410, - [SMALL_STATE(7089)] = 301455, - [SMALL_STATE(7090)] = 301500, - [SMALL_STATE(7091)] = 301545, - [SMALL_STATE(7092)] = 301590, - [SMALL_STATE(7093)] = 301635, - [SMALL_STATE(7094)] = 301680, - [SMALL_STATE(7095)] = 301725, - [SMALL_STATE(7096)] = 301770, - [SMALL_STATE(7097)] = 301815, - [SMALL_STATE(7098)] = 301860, - [SMALL_STATE(7099)] = 301905, - [SMALL_STATE(7100)] = 301950, - [SMALL_STATE(7101)] = 301995, - [SMALL_STATE(7102)] = 302040, - [SMALL_STATE(7103)] = 302085, - [SMALL_STATE(7104)] = 302130, - [SMALL_STATE(7105)] = 302175, - [SMALL_STATE(7106)] = 302220, - [SMALL_STATE(7107)] = 302265, - [SMALL_STATE(7108)] = 302310, - [SMALL_STATE(7109)] = 302355, - [SMALL_STATE(7110)] = 302400, - [SMALL_STATE(7111)] = 302445, - [SMALL_STATE(7112)] = 302490, - [SMALL_STATE(7113)] = 302535, - [SMALL_STATE(7114)] = 302580, - [SMALL_STATE(7115)] = 302625, - [SMALL_STATE(7116)] = 302670, - [SMALL_STATE(7117)] = 302715, - [SMALL_STATE(7118)] = 302760, - [SMALL_STATE(7119)] = 302805, - [SMALL_STATE(7120)] = 302850, - [SMALL_STATE(7121)] = 302895, - [SMALL_STATE(7122)] = 302940, - [SMALL_STATE(7123)] = 302985, - [SMALL_STATE(7124)] = 303030, - [SMALL_STATE(7125)] = 303075, - [SMALL_STATE(7126)] = 303120, - [SMALL_STATE(7127)] = 303165, - [SMALL_STATE(7128)] = 303210, - [SMALL_STATE(7129)] = 303255, - [SMALL_STATE(7130)] = 303300, - [SMALL_STATE(7131)] = 303345, - [SMALL_STATE(7132)] = 303390, - [SMALL_STATE(7133)] = 303435, - [SMALL_STATE(7134)] = 303480, - [SMALL_STATE(7135)] = 303525, - [SMALL_STATE(7136)] = 303570, - [SMALL_STATE(7137)] = 303615, - [SMALL_STATE(7138)] = 303660, - [SMALL_STATE(7139)] = 303705, - [SMALL_STATE(7140)] = 303750, - [SMALL_STATE(7141)] = 303795, - [SMALL_STATE(7142)] = 303840, - [SMALL_STATE(7143)] = 303885, - [SMALL_STATE(7144)] = 303930, - [SMALL_STATE(7145)] = 303975, - [SMALL_STATE(7146)] = 304020, - [SMALL_STATE(7147)] = 304065, - [SMALL_STATE(7148)] = 304110, - [SMALL_STATE(7149)] = 304155, - [SMALL_STATE(7150)] = 304200, - [SMALL_STATE(7151)] = 304245, - [SMALL_STATE(7152)] = 304290, - [SMALL_STATE(7153)] = 304335, - [SMALL_STATE(7154)] = 304380, - [SMALL_STATE(7155)] = 304425, - [SMALL_STATE(7156)] = 304470, - [SMALL_STATE(7157)] = 304515, - [SMALL_STATE(7158)] = 304560, - [SMALL_STATE(7159)] = 304605, - [SMALL_STATE(7160)] = 304650, - [SMALL_STATE(7161)] = 304695, - [SMALL_STATE(7162)] = 304740, - [SMALL_STATE(7163)] = 304785, - [SMALL_STATE(7164)] = 304830, - [SMALL_STATE(7165)] = 304875, - [SMALL_STATE(7166)] = 304920, - [SMALL_STATE(7167)] = 304965, - [SMALL_STATE(7168)] = 305010, - [SMALL_STATE(7169)] = 305055, - [SMALL_STATE(7170)] = 305100, - [SMALL_STATE(7171)] = 305145, - [SMALL_STATE(7172)] = 305190, - [SMALL_STATE(7173)] = 305235, - [SMALL_STATE(7174)] = 305280, - [SMALL_STATE(7175)] = 305325, - [SMALL_STATE(7176)] = 305370, - [SMALL_STATE(7177)] = 305415, - [SMALL_STATE(7178)] = 305460, - [SMALL_STATE(7179)] = 305505, - [SMALL_STATE(7180)] = 305550, - [SMALL_STATE(7181)] = 305595, - [SMALL_STATE(7182)] = 305640, - [SMALL_STATE(7183)] = 305685, - [SMALL_STATE(7184)] = 305730, - [SMALL_STATE(7185)] = 305775, - [SMALL_STATE(7186)] = 305820, - [SMALL_STATE(7187)] = 305865, - [SMALL_STATE(7188)] = 305910, - [SMALL_STATE(7189)] = 305955, - [SMALL_STATE(7190)] = 306000, - [SMALL_STATE(7191)] = 306045, - [SMALL_STATE(7192)] = 306090, - [SMALL_STATE(7193)] = 306135, - [SMALL_STATE(7194)] = 306180, - [SMALL_STATE(7195)] = 306225, - [SMALL_STATE(7196)] = 306270, - [SMALL_STATE(7197)] = 306315, - [SMALL_STATE(7198)] = 306360, - [SMALL_STATE(7199)] = 306405, - [SMALL_STATE(7200)] = 306450, - [SMALL_STATE(7201)] = 306495, - [SMALL_STATE(7202)] = 306540, - [SMALL_STATE(7203)] = 306585, - [SMALL_STATE(7204)] = 306630, - [SMALL_STATE(7205)] = 306675, - [SMALL_STATE(7206)] = 306720, - [SMALL_STATE(7207)] = 306765, - [SMALL_STATE(7208)] = 306810, - [SMALL_STATE(7209)] = 306855, - [SMALL_STATE(7210)] = 306900, - [SMALL_STATE(7211)] = 306945, - [SMALL_STATE(7212)] = 306990, - [SMALL_STATE(7213)] = 307035, - [SMALL_STATE(7214)] = 307080, - [SMALL_STATE(7215)] = 307125, - [SMALL_STATE(7216)] = 307170, - [SMALL_STATE(7217)] = 307215, - [SMALL_STATE(7218)] = 307260, - [SMALL_STATE(7219)] = 307305, - [SMALL_STATE(7220)] = 307350, - [SMALL_STATE(7221)] = 307395, - [SMALL_STATE(7222)] = 307440, - [SMALL_STATE(7223)] = 307485, - [SMALL_STATE(7224)] = 307530, - [SMALL_STATE(7225)] = 307575, - [SMALL_STATE(7226)] = 307620, - [SMALL_STATE(7227)] = 307665, - [SMALL_STATE(7228)] = 307710, - [SMALL_STATE(7229)] = 307755, - [SMALL_STATE(7230)] = 307800, - [SMALL_STATE(7231)] = 307845, - [SMALL_STATE(7232)] = 307890, - [SMALL_STATE(7233)] = 307935, - [SMALL_STATE(7234)] = 307980, - [SMALL_STATE(7235)] = 308025, - [SMALL_STATE(7236)] = 308070, - [SMALL_STATE(7237)] = 308115, - [SMALL_STATE(7238)] = 308160, - [SMALL_STATE(7239)] = 308205, - [SMALL_STATE(7240)] = 308250, - [SMALL_STATE(7241)] = 308295, - [SMALL_STATE(7242)] = 308340, - [SMALL_STATE(7243)] = 308385, - [SMALL_STATE(7244)] = 308430, - [SMALL_STATE(7245)] = 308475, - [SMALL_STATE(7246)] = 308520, - [SMALL_STATE(7247)] = 308565, - [SMALL_STATE(7248)] = 308610, - [SMALL_STATE(7249)] = 308655, - [SMALL_STATE(7250)] = 308700, - [SMALL_STATE(7251)] = 308745, - [SMALL_STATE(7252)] = 308790, - [SMALL_STATE(7253)] = 308835, - [SMALL_STATE(7254)] = 308880, - [SMALL_STATE(7255)] = 308925, - [SMALL_STATE(7256)] = 308970, - [SMALL_STATE(7257)] = 309015, - [SMALL_STATE(7258)] = 309060, - [SMALL_STATE(7259)] = 309105, - [SMALL_STATE(7260)] = 309150, - [SMALL_STATE(7261)] = 309195, - [SMALL_STATE(7262)] = 309240, - [SMALL_STATE(7263)] = 309285, - [SMALL_STATE(7264)] = 309330, - [SMALL_STATE(7265)] = 309375, - [SMALL_STATE(7266)] = 309420, - [SMALL_STATE(7267)] = 309465, - [SMALL_STATE(7268)] = 309510, - [SMALL_STATE(7269)] = 309555, - [SMALL_STATE(7270)] = 309600, - [SMALL_STATE(7271)] = 309645, - [SMALL_STATE(7272)] = 309690, - [SMALL_STATE(7273)] = 309735, - [SMALL_STATE(7274)] = 309780, - [SMALL_STATE(7275)] = 309825, - [SMALL_STATE(7276)] = 309870, - [SMALL_STATE(7277)] = 309915, - [SMALL_STATE(7278)] = 309960, - [SMALL_STATE(7279)] = 310005, - [SMALL_STATE(7280)] = 310050, - [SMALL_STATE(7281)] = 310095, - [SMALL_STATE(7282)] = 310140, - [SMALL_STATE(7283)] = 310185, - [SMALL_STATE(7284)] = 310230, - [SMALL_STATE(7285)] = 310275, - [SMALL_STATE(7286)] = 310320, - [SMALL_STATE(7287)] = 310365, - [SMALL_STATE(7288)] = 310410, - [SMALL_STATE(7289)] = 310455, - [SMALL_STATE(7290)] = 310500, - [SMALL_STATE(7291)] = 310545, - [SMALL_STATE(7292)] = 310590, - [SMALL_STATE(7293)] = 310635, - [SMALL_STATE(7294)] = 310680, - [SMALL_STATE(7295)] = 310725, - [SMALL_STATE(7296)] = 310770, - [SMALL_STATE(7297)] = 310815, - [SMALL_STATE(7298)] = 310860, - [SMALL_STATE(7299)] = 310905, - [SMALL_STATE(7300)] = 310950, - [SMALL_STATE(7301)] = 310995, - [SMALL_STATE(7302)] = 311040, - [SMALL_STATE(7303)] = 311085, - [SMALL_STATE(7304)] = 311130, - [SMALL_STATE(7305)] = 311175, - [SMALL_STATE(7306)] = 311220, - [SMALL_STATE(7307)] = 311265, - [SMALL_STATE(7308)] = 311310, - [SMALL_STATE(7309)] = 311355, - [SMALL_STATE(7310)] = 311400, - [SMALL_STATE(7311)] = 311445, - [SMALL_STATE(7312)] = 311490, - [SMALL_STATE(7313)] = 311535, - [SMALL_STATE(7314)] = 311580, - [SMALL_STATE(7315)] = 311625, - [SMALL_STATE(7316)] = 311670, - [SMALL_STATE(7317)] = 311715, - [SMALL_STATE(7318)] = 311760, - [SMALL_STATE(7319)] = 311805, - [SMALL_STATE(7320)] = 311850, - [SMALL_STATE(7321)] = 311895, - [SMALL_STATE(7322)] = 311940, - [SMALL_STATE(7323)] = 311985, - [SMALL_STATE(7324)] = 312030, - [SMALL_STATE(7325)] = 312075, - [SMALL_STATE(7326)] = 312120, - [SMALL_STATE(7327)] = 312165, - [SMALL_STATE(7328)] = 312210, - [SMALL_STATE(7329)] = 312255, - [SMALL_STATE(7330)] = 312300, - [SMALL_STATE(7331)] = 312345, - [SMALL_STATE(7332)] = 312390, - [SMALL_STATE(7333)] = 312435, - [SMALL_STATE(7334)] = 312480, - [SMALL_STATE(7335)] = 312525, - [SMALL_STATE(7336)] = 312570, - [SMALL_STATE(7337)] = 312615, - [SMALL_STATE(7338)] = 312660, - [SMALL_STATE(7339)] = 312705, - [SMALL_STATE(7340)] = 312750, - [SMALL_STATE(7341)] = 312795, - [SMALL_STATE(7342)] = 312840, - [SMALL_STATE(7343)] = 312885, - [SMALL_STATE(7344)] = 312930, - [SMALL_STATE(7345)] = 312975, - [SMALL_STATE(7346)] = 313020, - [SMALL_STATE(7347)] = 313065, - [SMALL_STATE(7348)] = 313110, - [SMALL_STATE(7349)] = 313155, - [SMALL_STATE(7350)] = 313200, - [SMALL_STATE(7351)] = 313245, - [SMALL_STATE(7352)] = 313290, - [SMALL_STATE(7353)] = 313335, - [SMALL_STATE(7354)] = 313380, - [SMALL_STATE(7355)] = 313425, - [SMALL_STATE(7356)] = 313470, - [SMALL_STATE(7357)] = 313515, - [SMALL_STATE(7358)] = 313560, - [SMALL_STATE(7359)] = 313605, - [SMALL_STATE(7360)] = 313650, - [SMALL_STATE(7361)] = 313695, - [SMALL_STATE(7362)] = 313740, - [SMALL_STATE(7363)] = 313785, - [SMALL_STATE(7364)] = 313830, - [SMALL_STATE(7365)] = 313875, - [SMALL_STATE(7366)] = 313920, - [SMALL_STATE(7367)] = 313965, - [SMALL_STATE(7368)] = 314010, - [SMALL_STATE(7369)] = 314055, - [SMALL_STATE(7370)] = 314100, - [SMALL_STATE(7371)] = 314145, - [SMALL_STATE(7372)] = 314190, - [SMALL_STATE(7373)] = 314235, - [SMALL_STATE(7374)] = 314280, - [SMALL_STATE(7375)] = 314325, - [SMALL_STATE(7376)] = 314370, - [SMALL_STATE(7377)] = 314415, - [SMALL_STATE(7378)] = 314460, - [SMALL_STATE(7379)] = 314505, - [SMALL_STATE(7380)] = 314550, - [SMALL_STATE(7381)] = 314595, - [SMALL_STATE(7382)] = 314640, - [SMALL_STATE(7383)] = 314685, - [SMALL_STATE(7384)] = 314730, - [SMALL_STATE(7385)] = 314775, - [SMALL_STATE(7386)] = 314820, - [SMALL_STATE(7387)] = 314865, - [SMALL_STATE(7388)] = 314910, - [SMALL_STATE(7389)] = 314955, - [SMALL_STATE(7390)] = 315000, - [SMALL_STATE(7391)] = 315045, - [SMALL_STATE(7392)] = 315090, - [SMALL_STATE(7393)] = 315135, - [SMALL_STATE(7394)] = 315180, - [SMALL_STATE(7395)] = 315225, - [SMALL_STATE(7396)] = 315270, - [SMALL_STATE(7397)] = 315315, - [SMALL_STATE(7398)] = 315360, - [SMALL_STATE(7399)] = 315405, - [SMALL_STATE(7400)] = 315450, - [SMALL_STATE(7401)] = 315495, - [SMALL_STATE(7402)] = 315540, - [SMALL_STATE(7403)] = 315585, - [SMALL_STATE(7404)] = 315630, - [SMALL_STATE(7405)] = 315675, - [SMALL_STATE(7406)] = 315720, - [SMALL_STATE(7407)] = 315765, - [SMALL_STATE(7408)] = 315810, - [SMALL_STATE(7409)] = 315855, - [SMALL_STATE(7410)] = 315900, - [SMALL_STATE(7411)] = 315945, - [SMALL_STATE(7412)] = 315990, - [SMALL_STATE(7413)] = 316035, - [SMALL_STATE(7414)] = 316080, - [SMALL_STATE(7415)] = 316125, - [SMALL_STATE(7416)] = 316170, - [SMALL_STATE(7417)] = 316215, - [SMALL_STATE(7418)] = 316260, - [SMALL_STATE(7419)] = 316305, - [SMALL_STATE(7420)] = 316350, - [SMALL_STATE(7421)] = 316395, - [SMALL_STATE(7422)] = 316440, - [SMALL_STATE(7423)] = 316485, - [SMALL_STATE(7424)] = 316530, - [SMALL_STATE(7425)] = 316575, - [SMALL_STATE(7426)] = 316620, - [SMALL_STATE(7427)] = 316665, - [SMALL_STATE(7428)] = 316710, - [SMALL_STATE(7429)] = 316755, - [SMALL_STATE(7430)] = 316800, - [SMALL_STATE(7431)] = 316845, - [SMALL_STATE(7432)] = 316890, - [SMALL_STATE(7433)] = 316935, - [SMALL_STATE(7434)] = 316980, - [SMALL_STATE(7435)] = 317025, - [SMALL_STATE(7436)] = 317070, - [SMALL_STATE(7437)] = 317115, - [SMALL_STATE(7438)] = 317160, - [SMALL_STATE(7439)] = 317205, - [SMALL_STATE(7440)] = 317250, - [SMALL_STATE(7441)] = 317295, - [SMALL_STATE(7442)] = 317340, - [SMALL_STATE(7443)] = 317385, - [SMALL_STATE(7444)] = 317430, - [SMALL_STATE(7445)] = 317475, - [SMALL_STATE(7446)] = 317520, - [SMALL_STATE(7447)] = 317565, - [SMALL_STATE(7448)] = 317610, - [SMALL_STATE(7449)] = 317655, - [SMALL_STATE(7450)] = 317700, - [SMALL_STATE(7451)] = 317745, - [SMALL_STATE(7452)] = 317790, - [SMALL_STATE(7453)] = 317835, - [SMALL_STATE(7454)] = 317880, - [SMALL_STATE(7455)] = 317925, - [SMALL_STATE(7456)] = 317970, - [SMALL_STATE(7457)] = 318015, - [SMALL_STATE(7458)] = 318060, - [SMALL_STATE(7459)] = 318105, - [SMALL_STATE(7460)] = 318150, - [SMALL_STATE(7461)] = 318195, - [SMALL_STATE(7462)] = 318240, - [SMALL_STATE(7463)] = 318285, - [SMALL_STATE(7464)] = 318330, - [SMALL_STATE(7465)] = 318375, - [SMALL_STATE(7466)] = 318420, - [SMALL_STATE(7467)] = 318465, - [SMALL_STATE(7468)] = 318510, - [SMALL_STATE(7469)] = 318555, - [SMALL_STATE(7470)] = 318600, - [SMALL_STATE(7471)] = 318645, - [SMALL_STATE(7472)] = 318690, - [SMALL_STATE(7473)] = 318735, - [SMALL_STATE(7474)] = 318780, - [SMALL_STATE(7475)] = 318825, - [SMALL_STATE(7476)] = 318870, - [SMALL_STATE(7477)] = 318915, - [SMALL_STATE(7478)] = 318960, - [SMALL_STATE(7479)] = 319005, - [SMALL_STATE(7480)] = 319050, - [SMALL_STATE(7481)] = 319095, - [SMALL_STATE(7482)] = 319140, - [SMALL_STATE(7483)] = 319185, - [SMALL_STATE(7484)] = 319230, - [SMALL_STATE(7485)] = 319275, - [SMALL_STATE(7486)] = 319320, - [SMALL_STATE(7487)] = 319365, - [SMALL_STATE(7488)] = 319410, - [SMALL_STATE(7489)] = 319455, - [SMALL_STATE(7490)] = 319500, - [SMALL_STATE(7491)] = 319545, - [SMALL_STATE(7492)] = 319590, - [SMALL_STATE(7493)] = 319635, - [SMALL_STATE(7494)] = 319680, - [SMALL_STATE(7495)] = 319725, - [SMALL_STATE(7496)] = 319770, - [SMALL_STATE(7497)] = 319815, - [SMALL_STATE(7498)] = 319860, - [SMALL_STATE(7499)] = 319905, - [SMALL_STATE(7500)] = 319950, - [SMALL_STATE(7501)] = 319995, - [SMALL_STATE(7502)] = 320040, - [SMALL_STATE(7503)] = 320085, - [SMALL_STATE(7504)] = 320130, - [SMALL_STATE(7505)] = 320175, - [SMALL_STATE(7506)] = 320220, - [SMALL_STATE(7507)] = 320265, - [SMALL_STATE(7508)] = 320310, - [SMALL_STATE(7509)] = 320355, - [SMALL_STATE(7510)] = 320400, - [SMALL_STATE(7511)] = 320445, - [SMALL_STATE(7512)] = 320490, - [SMALL_STATE(7513)] = 320535, - [SMALL_STATE(7514)] = 320580, - [SMALL_STATE(7515)] = 320625, - [SMALL_STATE(7516)] = 320670, - [SMALL_STATE(7517)] = 320715, - [SMALL_STATE(7518)] = 320760, - [SMALL_STATE(7519)] = 320805, - [SMALL_STATE(7520)] = 320850, - [SMALL_STATE(7521)] = 320895, - [SMALL_STATE(7522)] = 320940, - [SMALL_STATE(7523)] = 320985, - [SMALL_STATE(7524)] = 321030, - [SMALL_STATE(7525)] = 321075, - [SMALL_STATE(7526)] = 321120, - [SMALL_STATE(7527)] = 321165, - [SMALL_STATE(7528)] = 321210, - [SMALL_STATE(7529)] = 321255, - [SMALL_STATE(7530)] = 321300, - [SMALL_STATE(7531)] = 321345, - [SMALL_STATE(7532)] = 321390, - [SMALL_STATE(7533)] = 321435, - [SMALL_STATE(7534)] = 321480, - [SMALL_STATE(7535)] = 321525, - [SMALL_STATE(7536)] = 321570, - [SMALL_STATE(7537)] = 321615, - [SMALL_STATE(7538)] = 321660, - [SMALL_STATE(7539)] = 321705, - [SMALL_STATE(7540)] = 321709, - [SMALL_STATE(7541)] = 321713, - [SMALL_STATE(7542)] = 321717, - [SMALL_STATE(7543)] = 321721, - [SMALL_STATE(7544)] = 321725, - [SMALL_STATE(7545)] = 321729, - [SMALL_STATE(7546)] = 321733, - [SMALL_STATE(7547)] = 321737, - [SMALL_STATE(7548)] = 321741, - [SMALL_STATE(7549)] = 321745, - [SMALL_STATE(7550)] = 321749, - [SMALL_STATE(7551)] = 321753, - [SMALL_STATE(7552)] = 321757, - [SMALL_STATE(7553)] = 321761, - [SMALL_STATE(7554)] = 321765, - [SMALL_STATE(7555)] = 321769, + [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, }; 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(6897), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [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), [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(2106), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [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), + [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), [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, 0, 57), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 57), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [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), + [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(sym_compilation_unit, 2, 0, 0), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3182), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2196), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2419), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3050), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5943), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(34), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3049), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6784), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3005), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4449), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7443), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7445), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7407), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6882), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7408), - [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), - [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6852), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6889), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(641), - [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7409), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7460), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7448), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7444), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6965), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(5078), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), - [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3172), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), - [454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2253), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2439), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), - [469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(432), - [472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5642), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(567), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5939), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(30), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3049), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3183), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2293), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6519), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3005), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4449), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7496), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7495), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7489), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6855), - [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7485), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2239), - [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6857), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), - [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(638), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7471), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7460), - [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7448), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7444), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6965), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5046), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), - [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 1, 0, 0), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_top_level, 2, 0, 0), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6900), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, 0, 0), - [723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, 0, 0), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, 0, 0), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, 0, 0), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 2, 0, 0), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 2, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, 0, 0), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), - [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2463), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(440), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(700), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6287), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2071), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2468), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6555), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3371), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1337), - [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3005), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2126), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4449), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7397), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7218), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6924), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6900), - [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3360), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(773), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6926), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7473), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(590), - [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7220), - [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1981), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7461), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7460), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7454), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7448), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7444), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6965), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3368), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), - [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7531), - [936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), - [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7125), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7439), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 1, 0, 0), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_expression, 4, 0, 26), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_expression, 4, 0, 26), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [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), + [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), + [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), + [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(2354), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 3, 0, 57), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1, 0, 0), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 1, 0, 0), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 57), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 4, 0, 57), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 57), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 4, 0, 57), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 2, 0, 0), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, 0, 57), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 57), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3040), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5574), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3049), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4709), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5676), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5930), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3689), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5899), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3642), - [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5129), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 9), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 9), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6155), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 75), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 75), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 9), - [3072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 9), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2, 0, 0), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 1, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, 0, 39), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, 0, 39), - [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 57), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 57), - [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 9), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 9), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3, 0, 0), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), - [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, 0, 74), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, 0, 74), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5, 0, 0), - [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, 0, 31), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, 0, 31), - [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 73), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 73), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 0), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5, 0, 0), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 121), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 121), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, 0, 113), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, 0, 113), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 68), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 68), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2, 0, 0), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 98), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, 0, 98), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, 0, 0), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, 0, 0), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 76), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 76), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, 0, 15), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, 0, 15), - [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2, 0, 0), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, 0, 0), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, 0, 95), - [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, 0, 95), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, 0, 0), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 77), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, 0, 77), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4, 0, 0), - [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4, 0, 0), - [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_foreach_statement, 2, 0, 14), - [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, 0, 14), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 2, 0, 16), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 2, 0, 16), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 1, 0, 15), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1, 0, 15), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 32), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 32), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1, 0, 0), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 24), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 24), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4, 0, 0), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4, 0, 0), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, 0, 11), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, 0, 11), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5, 0, 0), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7, 0, 0), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7, 0, 0), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 0), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 0), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, 0, 25), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, 0, 25), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6, 0, 0), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6, 0, 0), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, 0, 25), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, 0, 25), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 64), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 64), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, 0, 36), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, 0, 36), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, 0, 8), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, 0, 8), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, 0, 11), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, 0, 11), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, 0, 34), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, 0, 34), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 8), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, 0, 8), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, 0, 109), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, 0, 109), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3, 0, 0), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3, 0, 0), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 35), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 35), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, 0, 34), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, 0, 34), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1, 0, 0), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, 0, 10), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, 0, 24), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, 0, 24), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, 0, 65), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, 0, 65), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, 0, 54), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, 0, 54), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 87), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 87), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, 0, 85), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, 0, 85), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3558), - [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3589), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), - [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3727), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3642), - [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3950), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_statement, 1, 0, 0), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_statement, 1, 0, 0), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6167), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1, 0, 0), - [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), - [3430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 1, 0, 0), - [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4, 0, 0), - [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 145), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 145), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 93), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 93), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, 0, 193), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, 0, 193), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 143), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 143), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 92), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 92), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 114), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 114), - [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 144), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 144), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 118), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 118), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 141), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 141), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 119), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 119), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, 0, 142), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, 0, 142), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 172), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 172), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 171), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 171), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, 0, 170), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, 0, 170), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 117), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 117), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, 0, 94), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, 0, 94), - [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 96), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, 0, 96), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 116), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 116), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 120), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, 0, 120), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, 0, 115), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, 0, 115), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 146), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, 0, 146), - [3527] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2106), - [3531] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), SHIFT(2105), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2286), - [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2291), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2106), - [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2105), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [3554] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3123), - [3558] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3125), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [3568] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5662), - [3572] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3196), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [3578] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5638), - [3582] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3405), - [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2551), - [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2547), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, 0, 0), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, 0, 0), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, 0, 0), - [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3518), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 4), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), - [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3638] = {.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), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), - [3644] = {.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), - [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_constant_pattern, 1, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 37), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 37), REDUCE(sym_member_access_expression, 3, 0, 30), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, 0, 30), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, 0, 37), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, 0, 37), REDUCE(sym_member_access_expression, 3, 0, 30), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, 0, 30), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [3673] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2525), - [3677] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2516), - [3681] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4177), - [3685] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4199), - [3689] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5683), - [3693] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4579), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3052), - [3706] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3109), - [3710] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3110), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [3720] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2286), - [3724] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2291), - [3728] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5624), - [3732] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3682), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [3740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(1499), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 5), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3525), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [3770] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2846), - [3774] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2834), - [3778] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(5665), - [3782] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4058), - [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 0), REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 1, 0, 1), - [3789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [3792] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2826), - [3796] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, 1, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2828), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2828), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, 0, 40), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, 0, 40), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_pattern, 1, 0, 6), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_pattern, 1, 0, 6), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 6), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 1, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, 0, 7), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, 0, 7), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 6), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, 0, 26), - [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, 0, 26), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [3915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(4212), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, 0, 112), - [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, 0, 112), - [3926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, 0, 91), - [3928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, 0, 91), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1, 0, 0), - [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, 0, 7), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, 0, 7), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, 0, 6), - [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, 0, 6), - [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 6), - [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 6), - [3948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, 0, 71), - [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, 0, 71), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [3958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3503), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(3110), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, 0, 13), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, 0, 13), - [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__array_base_type, 1, 0, 0), - [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2269), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym__pointer_base_type, 1, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, 0, 45), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, 0, 45), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4, 0, 0), - [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3498), - [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3, 0, 0), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4, 0, 0), - [4066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5, 0, 0), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2, 0, 0), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3, 0, 0), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4, 0, 0), - [4084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, 0, 0), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, 0, 18), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, 0, 18), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3, 0, 0), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2, 0, 0), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, 0, 0), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [4132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, 0, 2), - [4136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [4138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 41), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1, 0, 0), SHIFT(2834), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3550), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3, 0, 0), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3, 0, 0), - [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3495), - [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, 0, 0), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 99), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 99), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_lvalue_expression, 1, 0, 0), - [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 156), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, 0, 78), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, 0, 78), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 134), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 134), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2, 0, 0), - [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, 0, 102), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, 0, 102), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [4251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 124), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3475), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 168), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 168), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 137), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 137), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, 0, 198), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, 0, 198), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 199), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 199), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 136), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 136), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 192), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 192), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 0), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 197), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 197), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 191), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 191), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 190), - [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 190), - [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, 0, 101), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, 0, 101), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 196), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 196), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 195), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 135), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 135), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 189), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 189), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, 0, 194), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, 0, 194), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 200), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 200), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 134), - [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 134), - [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 188), - [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 188), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, 0, 201), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, 0, 201), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, 0, 202), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, 0, 202), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 69), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 69), - [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, 0, 203), - [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, 0, 203), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 123), - [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 123), - [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, 0, 204), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, 0, 204), - [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, 0, 205), - [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, 0, 205), - [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 0), - [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 98), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 98), - [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 133), - [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 133), - [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, 1, 0), - [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 187), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 187), - [4384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2595), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [4389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 132), - [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 132), - [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 166), - [4395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 166), - [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 165), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 165), - [4401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 57), - [4403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 57), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 186), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 186), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 185), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, 0, 185), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 184), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 184), - [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 164), - [4419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 164), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, 0, 183), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, 0, 183), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 182), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 182), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 181), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 181), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 180), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 180), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 179), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 179), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, 0, 130), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, 0, 130), - [4453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 147), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 147), - [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, 0, 129), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, 0, 129), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, 0, 178), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, 0, 178), + [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), + [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), + [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), + [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), + [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), + [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_indexer_declaration, 5, 0, 128), - [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 128), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 177), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 177), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 0), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, 0, 58), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, 0, 58), - [4485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, 0, 127), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, 0, 127), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, 0, 126), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, 0, 126), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 57), - [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 57), - [4501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 77), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 77), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 125), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, 0, 125), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 99), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 99), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, 0, 124), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, 0, 124), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, 0, 49), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, 0, 49), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, 0, 175), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, 0, 175), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, 0, 122), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, 0, 122), - [4533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, 0, 174), - [4537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, 0, 173), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, 0, 173), - [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, 0, 103), - [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, 0, 103), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 163), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 163), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 148), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 148), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 149), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 149), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 162), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 162), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 169), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 169), - [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 150), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 150), - [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 152), - [4571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 152), - [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, 0, 161), - [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, 0, 161), + [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_indexer_declaration, 6, 0, 167), - [4583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 167), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, 0, 153), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, 0, 153), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, 0, 154), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, 0, 154), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 155), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 155), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, 0, 156), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, 0, 156), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 157), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, 0, 157), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, 0, 158), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, 0, 158), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, 1, 0), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 159), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 159), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, 1, 0), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, 0, 160), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, 0, 160), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, 0, 7), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [4649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, 0, 7), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 1, 53), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 1, 53), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3516), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), - [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 28), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 28), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, 0, 7), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2, 0, 0), - [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2, 0, 0), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2854), - [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3532), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [4755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4709), - [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [4776] = {.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), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(595), - [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), - [4789] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2954), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, 0, 0), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, 0, 56), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, 0, 56), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, 17, 7), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, 17, 7), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, 0, 29), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, 0, 26), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, 0, 26), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 40), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 40), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2, 0, 0), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4, 0, 0), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4, 0, 0), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1, 0, 0), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1, 0, 0), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3, 0, 0), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3, 0, 0), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, 0, 0), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, 0, 0), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(2954), - [4854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, 0, 8), - [4856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, 0, 8), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, 0, 7), - [4862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, 0, 7), - [4864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3, 0, 0), - [4866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3, 0, 0), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2, 0, 0), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 19), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 19), - [4886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 44), - [4888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 44), - [4890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [4892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2, 0, 0), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, 0, 47), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, 0, 47), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5, 0, 0), - [4910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3, 0, 0), - [4912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3, 0, 0), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, 0, 0), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, 0, 0), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 57), - [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 57), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 77), - [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, 0, 77), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3, 0, 0), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, 0, 0), - [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 0), - [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [4952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2, 0, 0), - [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, 0, 48), - [4956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, 0, 48), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [4960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4, 0, 0), - [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, 0, 17), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, 0, 17), - [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, 0, 0), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, 0, 0), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3, 0, 0), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3, 0, 0), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, 0, 42), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, 0, 42), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [4980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1, 0, 0), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4, 0, 0), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, 0, 0), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4, 0, 0), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, 0, 97), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, 0, 97), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 21), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 21), - [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), - [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4575), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3400), - [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6200), - [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 98), - [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, 0, 98), - [5034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, 0, 0), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, 0, 0), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4, 0, 0), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, 0, 0), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4, 0, 0), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4, 0, 0), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5, 0, 0), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 26), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 26), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1, 0, 0), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4, 0, 0), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4, 0, 0), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, 0, 0), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, 0, 0), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, 0, 0), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1, 0, 0), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, 0, 0), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, 0, 0), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, 0, 0), - [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3049), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, 0, 0), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, 0, 0), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6596), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [5147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3529), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3470), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(617), - [5182] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(3085), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3085), - [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3513), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(3159), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(573), - [5234] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(3159), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, 0, 0), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, 0, 0), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2, 0, 0), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2, 0, 0), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 0), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, 0, 61), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, 0, 61), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, 0, 5), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, 0, 62), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, 0, 62), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, 0, 61), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, 0, 61), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, 0, 43), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, 0, 43), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, 0, 0), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2, 0, 0), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 84), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 84), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, 0, 40), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, 0, 40), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, 0, 80), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, 0, 80), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, 0, 0), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, 0, 0), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 61), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, 0, 61), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, 0, 106), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, 0, 106), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, 0, 0), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, 0, 0), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 138), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, 0, 138), - [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym__expression_statement_expression, 1, 0, 0), - [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1, 0, 0), REDUCE(sym_non_lvalue_expression, 1, 0, 0), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3, 0, 0), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(605), - [5413] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2854), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4575), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4591), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [5465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1, 0, 0), - [5469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, 0, 151), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, 0, 151), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3616), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, 0, 131), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, 0, 131), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, 0, 176), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, 0, 176), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, 0, 0), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, 0, 0), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, 0, 0), - [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, 0, 0), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 40), - [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 40), - [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2, 0, 0), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [5688] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2106), - [5692] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2105), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1, 0, 0), REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [5699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(579), - [5702] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(2269), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 40), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 83), - [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 83), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2, 0, 0), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2, 0, 0), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2, 0, 0), SHIFT_REPEAT(3638), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, 0, 0), - [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, 0, 0), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, 0, 0), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, 0, 0), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), - [5847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5910), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 3, 0, 0), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 3, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [5908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [5911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), - [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [5917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4140), - [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7276), - [5923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4143), - [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6484), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 40), - [5943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, 0, 40), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2, 0, 0), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [6075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5941), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1, 0, 0), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5938), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [6235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [6287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5926), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [6292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5924), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, 0, 0), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5901), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3469), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, 0, 8), - [6465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, 0, 49), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4, 0, 0), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [6559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(639), - [6562] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), REDUCE(sym_array_creation_expression, 2, 17, 7), SHIFT(4281), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5882), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1, 0, 0), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1, 0, 0), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 57), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5898), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), SHIFT(4281), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5919), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5929), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [7207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5906), - [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [7242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), REDUCE(sym_type_pattern, 1, 0, 6), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, 0, 5), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, 0, 5), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5912), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [7434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5917), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 22), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 8), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 5), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5914), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, 0, 111), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, 0, 90), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, 0, 0), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, 0, 69), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, 0, 0), - [7654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, 0, 49), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5937), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [7671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5918), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [7680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2106), - [7683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2105), - [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), - [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5724), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [7765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [7769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [7809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3, 0, 0), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, 0, 5), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, 0, 0), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 0), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 5), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 0), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [7867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, 0, 5), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2, 0, 0), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4472), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, 0, 0), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, 0, 0), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, 0, 0), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1, 0, 0), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3, 0, 0), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, 0, 0), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [8106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5893), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5889), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6871), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7039), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [8232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5933), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [8315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5907), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [8358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2, 0, 0), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2, 0, 0), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), REDUCE(sym_type, 1, 0, 0), - [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), SHIFT(640), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, 0, 0), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, 0, 6), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 8), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), - [8556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(2970), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, 0, 57), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(5736), - [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 5), SHIFT(6226), - [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [8593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(5736), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [8598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2106), - [8601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(2105), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), - [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [8610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3558), - [8613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2, 0, 0), SHIFT(3589), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [8638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), - [8642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5620), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 5), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, 0, 6), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1, 0, 0), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [8749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), SHIFT_REPEAT(5720), - [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2, 0, 0), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [8760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [8782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2, 0, 0), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, 0, 1), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [8818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1, 0, 0), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), - [8829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2106), - [8832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), SHIFT(2105), - [8835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1, 0, 0), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6888), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6821), - [8899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), - [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), - [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [8919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [8927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), - [8929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 2, 0, 0), SHIFT_REPEAT(5931), - [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [8938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7060), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [8972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2, 0, 0), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6908), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [9082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1688), - [9085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), - [9088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3718), - [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), - [9094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2, 0, 0), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 25), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 88), - [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, 0, 8), - [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 25), - [9117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, 0, 8), - [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 65), - [9121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3534), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 88), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 65), - [9130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 88), - [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, 0, 8), - [9134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2638), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [9139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2704), - [9142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), SHIFT(2615), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 88), - [9147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 65), - [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 65), - [9151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), REDUCE(sym__reserved_identifier, 1, 0, 0), - [9154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 8), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 25), - [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, 0, 25), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), - [9164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), - [9167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [9178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, 0, 63), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, 0, 0), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), REDUCE(sym__simple_name, 1, 0, 0), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [9191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1, 0, 0), SHIFT(3518), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [9196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, 0, 0), - [9198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [9201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, 0, 0), - [9203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(3908), - [9206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(2970), - [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), - [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2, 0, 0), SHIFT_REPEAT(5615), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [9216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 65), - [9218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 25), - [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2, 0, 0), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [9224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, 0, 8), - [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2, 0, 0), - [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [9232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, 0, 0), SHIFT(526), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(6428), - [9248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), - [9250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1627), - [9253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1, 0, 0), - [9255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1, 0, 0), - [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 50), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 52), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, 0, 0), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), - [9281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [9284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(526), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, 0, 0), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2, 0, 0), - [9297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, 0, 63), - [9299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 23), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4, 0, 0), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [9321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), - [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 80), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [9338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5, 0, 0), - [9340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 0), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 66), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 82), - [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1, 0, 0), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [9380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 8), - [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, 0, 0), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 22), - [9388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4, 0, 0), - [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), - [9396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(1627), - [9399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2, 0, 0), SHIFT_REPEAT(6628), - [9402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, 0, 0), - [9404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [9406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6482), - [9409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6480), - [9412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6479), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), - [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(1627), - [9422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2, 0, 0), SHIFT_REPEAT(6624), - [9425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3962), - [9428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), - [9430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), - [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, 0, 0), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 89), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), - [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), - [9452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2, 0, 0), SHIFT_REPEAT(5927), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [9459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, 0, 0), - [9461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 27), - [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3, 0, 0), - [9465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 79), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [9469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3, 0, 0), - [9471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1, 0, 0), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 65), - [9513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 33), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [9529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 25), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, 0, 8), - [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, 0, 8), - [9543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), - [9557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(376), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7279), - [9563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 40), - [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 40), - [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 25), - [9569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 33), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5, 0, 0), - [9577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 0), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [9589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, 0, 88), - [9591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2, 0, 0), SHIFT_REPEAT(5675), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [9622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, 0, 59), - [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, 0, 65), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 57), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [9634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, 0, 88), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [9656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, 0, 6), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [9662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 105), - [9664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2, 0, 0), - [9666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 51), SHIFT_REPEAT(3034), - [9669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 51), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 66), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 25), - [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, 0, 8), - [9683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, 0, 25), - [9685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3, 0, 0), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, 0, 5), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 65), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, 0, 8), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1, 0, 0), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 55), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, 0, 60), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, 0, 65), - [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(1690), - [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 66), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 27), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1, 0, 0), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1, 0, 0), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, 0, 8), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 89), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, 0, 65), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 72), - [9768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, 0, 108), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, 0, 0), - [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, 0, 38), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1, 0, 0), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, 0, 89), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, 0, 88), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 49), - [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, 0, 6), - [9798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [9802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal_content, 1, 0, 0), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, 0, 86), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, 1, 22), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, 0, 8), - [9814] = {.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), - [9818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 69), - [9825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, 0, 0), - [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 25), - [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, 0, 27), - [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [9833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), REDUCE(sym_tuple_element, 2, 0, 22), - [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, 0, 5), - [9838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6596), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2, 0, 0), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, 0, 6), - [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5612), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2, 0, 0), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5871), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, 0, 0), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [9909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), SHIFT_REPEAT(5621), - [9912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2, 0, 0), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [9916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(536), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, 0, 49), - [9931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(703), - [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2, 0, 0), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 0), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, 0, 23), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), SHIFT_REPEAT(5873), - [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 81), SHIFT_REPEAT(5736), - [10023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 81), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [10029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5607), - [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, 0, 0), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [10040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 22), REDUCE(sym_tuple_element, 2, 0, 22), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [10061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1, 0, 0), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [10087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 22), REDUCE(sym_declaration_expression, 2, 1, 22), - [10090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, 0, 7), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1, 0, 0), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [10114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1, 0, 0), - [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1, 0, 0), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [10127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), SHIFT_REPEAT(3872), - [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, 0, 0), - [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1, 0, 0), - [10134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1, 0, 0), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [10150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, 0, 6), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [10202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 6), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(290), - [10211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), - [10213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, 0, 79), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [10236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5735), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [10241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(614), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2, 0, 0), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [10283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 5), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [10289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5734), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [10302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [10325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [10344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [10355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, 0, 59), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [10375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, 0, 6), - [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 0), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [10415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5878), - [10418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2, 0, 0), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [10424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 81), SHIFT_REPEAT(5715), - [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 81), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, 0, 69), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, 0, 105), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3, 0, 0), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4, 0, 0), - [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, 0, 49), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [10477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, 0, 0), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [10492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), - [10495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2, 0, 0), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [10525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 110), - [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, 0, 57), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [10555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 72), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7544), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 0), - [10567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, 0, 23), - [10569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4, 0, 0), - [10571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, 0, 108), - [10573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 5), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [10577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 5), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [10583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 8), - [10585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2, 0, 0), - [10587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, 0, 61), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1, 0, 0), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [10599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 25), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [10615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, 0, 55), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [10619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2, 0, 0), - [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3, 0, 0), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [10633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, 0, 86), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), - [10639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, 0, 140), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, 0, 22), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2, 0, 0), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [10661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 57), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), - [10667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 8), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, 0, 77), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [10681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, 0, 98), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [10685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 50), - [10687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, 0, 52), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [10699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, 0, 67), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [10769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 64), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 77), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 19), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, 0, 98), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [10845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, 0, 77), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [10853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 98), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, 0, 98), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [10911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, 0, 98), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2, 0, 0), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [11015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 85), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), - [11079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 87), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [11087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 7, 0, 139), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [11137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 1, 0, 6), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [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), + [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), + [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}}, REDUCE(sym__lambda_expression_init, 1, 0, 3), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [11191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4, 0, 0), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [11221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2, 0, 0), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 107), - [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, 0, 54), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [11257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, 0, 0), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, 0, 70), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [11287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3, 0, 0), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2, 0, 0), - [11323] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [11335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, 0, 7), - [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, 0, 77), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [11353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, 0, 77), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 46), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, 0, 109), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, 0, 47), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [11459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5, 0, 0), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [11469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, 0, 12), - [11471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, 0, 24), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5, 0, 0), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [11545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4, 0, 0), - [11547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4, 0, 0), - [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4, 0, 0), - [11551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3, 0, 0), - [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6, 0, 0), - [11555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2, 0, 0), - [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2, 0, 0), - [11559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3, 0, 0), - [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3, 0, 0), - [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3, 0, 0), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15, 0, 0), - [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14, 0, 0), - [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3, 0, 0), - [11571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3, 0, 0), - [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, 0, 20), - [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, 0, 20), - [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5, 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), }; enum ts_external_scanner_symbol_identifiers { @@ -766858,10 +795287,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__optional_semi] = true, }, [7] = { - [ts_external_token_interpolation_start_quote] = true, + [ts_external_token_raw_string_end] = true, }, [8] = { - [ts_external_token_raw_string_end] = true, + [ts_external_token_interpolation_start_quote] = true, }, [9] = { [ts_external_token_raw_string_content] = true,